:root {
  --vm-void: #000000;
  --vm-black: #050505;
  --vm-carbon: #0b0b0b;
  --vm-charcoal: #121212;
  --vm-graphite: #1a1a1a;
  --vm-slate: #242424;
  --vm-lime: #c8f542;
  --vm-lime-deep: #8fb82a;
  --vm-lime-dim: rgba(200, 245, 66, 0.12);
  --vm-lime-glow: rgba(200, 245, 66, 0.28);
  --vm-white: #ffffff;
  --vm-muted: #ffffff;
  --vm-faint: rgba(244, 245, 240, 0.08);
  --vm-line: rgba(244, 245, 240, 0.14);
  --vm-ink: #081000;
  --vm-font: "Outfit", system-ui, sans-serif;
  --vm-display: "Outfit", system-ui, sans-serif;
  --vm-safe-top: env(safe-area-inset-top, 0px);
  --vm-safe-right: env(safe-area-inset-right, 0px);
  --vm-safe-bottom: env(safe-area-inset-bottom, 0px);
  --vm-safe-left: env(safe-area-inset-left, 0px);
  --vm-header: calc(72px + var(--vm-safe-top));
  --vm-bottom: calc(56px + var(--vm-safe-bottom));
  --vm-wrap: 1200px;
  --vm-radius: 16px;
  --vm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vm-accent: #c8f542;
  --vm-header-bg: linear-gradient(to bottom, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.35) 70%, transparent);
  --vm-header-scrolled: rgba(5, 5, 5, 0.86);
  --vm-bottom-bg: rgba(5, 5, 5, 0.94);
  --vm-overlay: rgba(0, 0, 0, 0.62);
  --vm-input: #0a0a0a;
  --vm-icon-slot: #0a0a0a;
  --vm-shadow: rgba(0, 0, 0, 0.45);
  --vm-logo-glow: drop-shadow(0 0 10px rgba(200, 245, 66, 0.35));
  color-scheme: dark;
}

[data-theme="light"] {
  color-scheme: light;
  --vm-void: #e8eadf;
  --vm-black: #f3f4ee;
  --vm-carbon: #ffffff;
  --vm-charcoal: #ffffff;
  --vm-graphite: #eceee4;
  --vm-slate: #c9cebb;
  --vm-white: #14160f;
  --vm-muted: rgba(20, 22, 15, 0.64);
  --vm-faint: rgba(20, 22, 15, 0.1);
  --vm-line: rgba(20, 22, 15, 0.18);
  --vm-accent: #2f4a06;
  --vm-lime: #c4e83a;
  --vm-lime-deep: #6a8c12;
  --vm-lime-dim: rgba(47, 74, 6, 0.1);
  --vm-lime-glow: rgba(47, 74, 6, 0.16);
  --vm-ink: #14160f;
  --vm-header-bg: linear-gradient(to bottom, rgba(243, 244, 238, 0.97), rgba(243, 244, 238, 0.45) 70%, transparent);
  --vm-header-scrolled: rgba(243, 244, 238, 0.94);
  --vm-bottom-bg: rgba(243, 244, 238, 0.96);
  --vm-overlay: rgba(20, 22, 15, 0.48);
  --vm-input: #ffffff;
  --vm-icon-slot: #eef0e6;
  --vm-shadow: rgba(20, 22, 15, 0.1);
  --vm-logo-glow: drop-shadow(0 2px 8px rgba(20, 22, 15, 0.18));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--vm-header) + 12px);
  background: var(--vm-black);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--vm-black);
  color: var(--vm-white);
  font-family: var(--vm-font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: var(--vm-bottom);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.vm-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #050505;
  background-image: url("../images/fondo-viralmarket.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 72% center;
}

.vm-wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 5, 5, 0.88) 0%,
    rgba(5, 5, 5, 0.58) 38%,
    rgba(5, 5, 5, 0.28) 68%,
    rgba(5, 5, 5, 0.16) 100%
  );
}

[data-theme="light"] .vm-wallpaper::after {
  background: linear-gradient(
    105deg,
    rgba(243, 244, 238, 0.92) 0%,
    rgba(243, 244, 238, 0.76) 42%,
    rgba(243, 244, 238, 0.48) 100%
  );
}

main,
.vm-footer,
.vm-admin__card,
.vm-admin__main {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input:not([type="checkbox"]):not([type="radio"]) {
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-touch-callout: none;
}

h1,
h2,
h3 {
  font-family: var(--vm-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  margin: 0;
  overflow: visible;
  padding-bottom: 0.18em;
  overflow-clip-margin: 0.5em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vm-lime);
  color: var(--vm-ink);
  padding: 8px 12px;
  z-index: 100;
}

.vm-skip:focus {
  left: 12px;
  top: 12px;
}

.vm-wrap {
  width: min(var(--vm-wrap), calc(100% - 32px - var(--vm-safe-left) - var(--vm-safe-right)));
  margin-inline: auto;
  padding-left: var(--vm-safe-left);
  padding-right: var(--vm-safe-right);
}

.vm-kicker {
  margin: 0 0 10px;
  color: var(--vm-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vm-section-head {
  margin-bottom: 28px;
  max-width: 640px;
}

.vm-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.vm-section-head h2 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  overflow: visible;
}

.vm-section-head__lead {
  margin-top: 12px;
  color: var(--vm-muted);
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: vmRise 0.7s var(--vm-ease) forwards;
}

@keyframes vmRise {
  to {
    opacity: 1;
    transform: none;
  }
}

.vm-vline {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to top, transparent, var(--vm-lime), transparent);
  width: 1px;
  transform: rotate(-32deg);
  transform-origin: center;
}

.vm-vline--hero {
  right: 18%;
  top: -10%;
  height: 130%;
  opacity: 0.45;
}

.vm-vline--hero-2 {
  right: 26%;
  top: 8%;
  height: 90%;
  opacity: 0.18;
}

.vm-vline--card {
  right: 18px;
  bottom: 8px;
  height: 42px;
  opacity: 0;
  transition: opacity 0.25s var(--vm-ease);
}

.vm-vline--pack {
  top: 0;
  right: 28px;
  height: 72px;
  opacity: 0.35;
}

.vm-vline--rule {
  position: relative;
  display: block;
  width: 72px;
  height: 1px;
  transform: skewX(-32deg);
  background: var(--vm-lime);
  opacity: 0.7;
}

.vm-vline--progress {
  top: -8px;
  height: 28px;
  left: 62%;
  opacity: 0.9;
}

/* Buttons */
.vm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--vm-white);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s var(--vm-ease), background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.vm-btn__cut {
  display: none;
}

.vm-btn__arrow {
  margin-left: 6px;
  font-weight: 700;
}

.vm-btn__label {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vm-btn--sm {
  min-height: 44px;
  padding: 0 14px;
}

.vm-btn--lg {
  min-height: 52px;
  padding: 0 24px;
}

.vm-btn--primary {
  background: var(--vm-lime);
  color: var(--vm-ink);
  box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.18), 0 10px 28px var(--vm-lime-glow);
}

.vm-btn--primary:active {
  transform: scale(0.98);
}

.vm-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .vm-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--vm-lime-glow);
  }
}

.vm-btn--ghost {
  background: transparent;
  border-color: var(--vm-line);
}

.vm-btn--ghost:hover {
  border-color: rgba(200, 245, 66, 0.45);
  color: var(--vm-accent);
}

.vm-btn--outline {
  background: transparent;
  border-color: var(--vm-line);
  width: 100%;
}

.vm-btn--outline:hover {
  border-color: var(--vm-accent);
  color: var(--vm-accent);
}

.vm-btn:focus-visible,
.vm-platform:focus-visible,
.vm-service:focus-visible,
.vm-qty__chip:focus-visible,
.vm-faq__q:focus-visible,
.vm-navbar__menu:focus-visible {
  outline: 2px solid var(--vm-accent);
  outline-offset: 3px;
}

/* Navbar */
.vm-navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--vm-header);
  padding-top: var(--vm-safe-top);
  background: var(--vm-header-bg);
  -webkit-backdrop-filter: blur(18px);
}

.vm-navbar.is-scrolled {
  background: var(--vm-header-scrolled);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--vm-faint);
}

.vm-navbar__bar {
  width: min(var(--vm-wrap), calc(100% - 16px));
  margin: 0 auto;
  height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding-left: max(8px, var(--vm-safe-left));
  padding-right: max(8px, var(--vm-safe-right));
  min-width: 0;
}

.vm-navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vm-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}

.vm-logo img,
.vm-navbar__brand img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  image-rendering: auto;
}

.vm-logo--nav {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  overflow: hidden;
  border-radius: 50%;
  background: #050505;
  transform: translateZ(0);
}

.vm-logo--nav img {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.vm-logo--footer {
  width: 148px;
  height: 148px;
  flex: none;
}

.vm-navbar__identity {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.vm-navbar__wordmark {
  font-family: var(--vm-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.vm-navbar__slogan {
  display: none;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vm-accent);
  white-space: nowrap;
}

.vm-navbar__wordmark span:last-child {
  color: var(--vm-accent);
}

.vm-navbar__center {
  display: none;
  justify-content: center;
  gap: 28px;
}

.vm-navbar__center a {
  font-size: 0.92rem;
  color: var(--vm-muted);
  transition: color 0.2s;
}

.vm-navbar__center a:hover {
  color: var(--vm-white);
}

.vm-navbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 6px;
  justify-self: end;
  min-width: 0;
}

.vm-navbar__right .vm-btn--primary {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  white-space: nowrap;
}

.vm-navbar__right .vm-btn--primary .vm-btn__label {
  font-size: 0.82rem;
}

.vm-navbar__login,
.vm-navbar__right .vm-btn--ghost {
  display: none;
}

.vm-navbar__menu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex: 0 0 40px;
}

.vm-navbar__menu span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--vm-white);
}

.vm-theme {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--vm-line);
  border-radius: 12px;
  color: var(--vm-white);
  flex: 0 0 40px;
  position: relative;
  z-index: 1;
}

.vm-theme svg {
  width: 20px;
  height: 20px;
}

[data-theme="dark"] .vm-theme__moon,
html:not([data-theme]) .vm-theme__moon {
  display: none;
}

[data-theme="light"] .vm-theme__sun {
  display: none;
}

[data-theme="light"] body::before {
  opacity: 0.02;
}

[data-theme="light"] .vm-hero__v {
  opacity: 0.28;
}

[data-theme="light"] .vm-toast {
  color: var(--vm-white);
}

/* Hero */
.vm-hero {
  position: relative;
  overflow: visible;
  padding: 20px 0 48px;
  min-height: calc(100svh - var(--vm-header) - var(--vm-bottom));
  display: flex;
  align-items: center;
}

.vm-hero__field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.vm-hero__v {
  position: absolute;
  right: -12%;
  top: -4%;
  width: min(780px, 110vw);
  height: auto;
  filter: drop-shadow(0 0 48px rgba(200, 245, 66, 0.22));
}

.vm-hero__dust span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--vm-lime);
  opacity: 0.35;
  border-radius: 50%;
}

.vm-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  width: 100%;
}

.vm-hero__copy {
  min-width: 0;
}

.vm-hero h1 {
  font-size: clamp(3.15rem, 10.5vw, 5.8rem);
  max-width: none;
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow: visible;
}

.vm-hero__grow {
  font-size: 1.44em;
  line-height: 0.95;
}

.vm-hero__accent {
  color: var(--vm-accent);
  display: inline-block;
  white-space: nowrap;
  font-size: 0.69em;
  letter-spacing: -0.03em;
}

.vm-hero__lead {
  max-width: 42ch;
  margin: 16px 0 22px;
  color: var(--vm-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  overflow: visible;
}

.vm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vm-hero__cta .vm-btn {
  flex: 1 1 150px;
}

.vm-hero__networks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.vm-hero__net {
  min-height: 136px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  color: #14160f;
  cursor: pointer;
}

.vm-hero__net span:last-child {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.vm-hero__net [data-icon] {
  display: grid;
  width: 56px;
  height: 56px;
}

.vm-hero__net svg,
.vm-hero__net img {
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: contain;
}

.vm-hero__net [data-icon="instagram"] img {
  border-radius: 14px;
}

.vm-hero__net [data-icon="facebook"] img,
.vm-hero__net [data-icon="tiktok"] img {
  border-radius: 50%;
  object-fit: cover;
}

.vm-hero__net [data-icon="youtube"] img {
  border-radius: 12px;
}

.vm-hero__net.is-active,
.vm-hero__net:hover {
  border-color: var(--vm-accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--vm-accent) 35%, transparent), 0 8px 24px var(--vm-lime-glow);
}

.vm-hero__benefits {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--vm-faint);
}

.vm-hero__benefits h2,
.vm-hero__trust li {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-family: var(--vm-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  padding-bottom: 0;
  color: var(--vm-white);
}

.vm-hero__benefits h2 {
  margin: 0 0 14px;
  text-align: center;
}

.vm-hero__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.vm-hero__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-hero__trust-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  display: block;
  object-fit: contain;
}

/* Selector */
.vm-selector {
  padding: 0;
  min-width: 0;
}

.vm-selector__frame {
  width: 100%;
  margin: 0;
  padding: 18px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%),
    var(--vm-carbon);
  border: 1px solid color-mix(in srgb, var(--vm-accent) 22%, var(--vm-line));
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(200, 245, 66, 0.06),
    0 24px 80px var(--vm-shadow),
    0 0 60px rgba(200, 245, 66, 0.1);
  position: relative;
}

.vm-selector__frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, var(--vm-lime), transparent);
  opacity: 0.7;
  border-radius: 20px 20px 0 0;
}

.vm-selector__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vm-selector__head > div {
  width: 100%;
}

.vm-selector__head .vm-selector__cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 58px;
  margin: 0 0 14px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--vm-lime);
  color: var(--vm-ink);
  font-size: clamp(1.35rem, 3.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.18), 0 10px 28px var(--vm-lime-glow);
  animation: vmCueBtn 1.2s ease-in-out infinite;
}

.vm-selector__cue-text {
  color: inherit;
}

.vm-selector__cue-arrow {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  color: var(--vm-ink);
  animation: vmCue 1.05s ease-in-out infinite;
}

@keyframes vmCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.45;
  }
}

@keyframes vmCueBtn {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.18), 0 8px 22px var(--vm-lime-glow);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.45), 0 0 28px var(--vm-lime), 0 12px 36px var(--vm-lime-glow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vm-selector__cue-arrow,
  .vm-selector__head .vm-selector__cue {
    animation: none;
  }
}

.vm-selector__head h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  overflow: visible;
  line-height: 1.3;
  padding-bottom: 0;
}

.vm-selector__steps {
  display: none;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-selector__steps li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--vm-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.vm-selector__steps li span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--vm-line);
  font-size: 0.62rem;
}

.vm-selector__steps li.is-on {
  color: var(--vm-white);
}

.vm-selector__steps li.is-on span {
  background: var(--vm-lime);
  color: var(--vm-ink);
  border-color: var(--vm-lime);
}

.vm-selector__grid {
  display: grid;
  gap: 16px;
}

.vm-step {
  padding: 14px 0 6px;
  border-top: 1px solid var(--vm-faint);
}

.vm-step__label {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--vm-muted);
  font-size: 0.92rem;
}

.vm-step__label span {
  color: var(--vm-accent);
  font-variant-numeric: tabular-nums;
}

.vm-step__platforms,
.vm-step__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vm-platform,
.vm-service,
.vm-pack,
.vm-plan,
.vm-proof__card {
  position: relative;
  background: var(--vm-charcoal);
  border: 1px solid var(--vm-faint);
  border-radius: 14px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s var(--vm-ease), background 0.2s, box-shadow 0.2s;
}

.vm-platform,
.vm-service,
.vm-faq__q,
.vm-qty__chip {
  touch-action: manipulation;
}

.vm-platform {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.vm-platform__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--vm-icon-slot);
}

.vm-platform__icon svg,
.vm-platform__icon img {
  width: 22px;
  height: 22px;
  max-width: none;
  object-fit: contain;
}

.vm-platform__icon img {
  border-radius: 6px;
}

.vm-platform__name,
.vm-service__name {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.vm-platform__handle,
.vm-service__hint {
  display: block;
  color: var(--vm-muted);
  font-size: 0.72rem;
}

.vm-platform.is-active,
.vm-service.is-active,
.vm-qty__chip.is-active {
  border-color: var(--vm-accent);
  background: linear-gradient(160deg, var(--vm-lime-dim), transparent 55%);
}

.vm-platform.is-active .vm-vline--card {
  opacity: 0.9;
}

.vm-service {
  min-height: 72px;
  padding: 14px 12px;
}

.vm-qty__chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.vm-qty__chip {
  min-height: 44px;
  border: 1px solid var(--vm-faint);
  border-radius: 10px;
  background: var(--vm-graphite);
  font-size: 0.82rem;
  font-weight: 600;
  touch-action: manipulation;
}

.vm-selector--panel .vm-step {
  padding: 10px 0 4px;
}

.vm-selector--panel .vm-step__label {
  margin: 0 0 10px;
  color: var(--vm-accent);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.vm-selector--panel .vm-platform {
  min-height: 96px;
  border-radius: 12px;
  padding: 12px 14px;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(20, 22, 15, 0.12);
  color: #14160f;
}

.vm-selector--panel .vm-platform__name {
  color: #14160f;
}

.vm-selector--panel .vm-platform.is-active,
.vm-selector--panel .vm-platform:hover {
  border-color: var(--vm-accent);
  background: #fff;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--vm-accent) 35%, transparent), 0 8px 24px var(--vm-lime-glow);
}

.vm-selector--panel .vm-platform.is-active {
  background: linear-gradient(160deg, rgba(200, 245, 66, 0.14), #fff 55%);
}

.vm-selector--panel .vm-platform__icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 16px;
  background: transparent;
}

.vm-selector--panel .vm-platform__icon svg,
.vm-selector--panel .vm-platform__icon img {
  width: 66px;
  height: 66px;
}

.vm-selector--panel .vm-platform__icon img {
  border-radius: 12px;
}

.vm-selector--panel .vm-platform__icon img[src*="tiktok"],
.vm-selector--panel .vm-platform__icon img[src*="facebook"] {
  border-radius: 50%;
  object-fit: cover;
}

.vm-selector--panel .vm-platform__handle {
  display: none;
}

.vm-selector--panel .vm-service {
  min-height: 64px;
  padding: 12px 10px;
}

.vm-selector--panel .vm-qty__slider {
  display: none;
}

.vm-selector--panel .vm-vline--card {
  display: none;
}

.vm-selector--panel .vm-price {
  display: block;
  position: static;
  margin-top: 8px;
  padding: 14px 0 0;
  border-top: 1px solid var(--vm-faint);
  background: transparent;
}

.vm-qty__slider {
  display: block;
  margin-top: 14px;
}

.vm-qty__track {
  position: relative;
  display: block;
  height: 6px;
  background: var(--vm-slate);
  overflow: hidden;
}

.vm-qty__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--vm-lime-deep), var(--vm-lime));
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.vm-qty:not(.is-picked) .vm-qty__slider input[type="range"]::-webkit-slider-thumb,
.vm-qty:not(.is-picked) .vm-qty__slider input[type="range"]::-moz-range-thumb {
  opacity: 0.35;
}

.vm-qty__slider input[type="range"] {
  width: 100%;
  margin-top: 8px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  height: 44px;
}

.vm-qty__slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.vm-qty__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 28px;
  margin-top: -11px;
  background: var(--vm-lime);
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 82%);
  cursor: pointer;
}

.vm-qty__slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 28px;
  border: 0;
  background: var(--vm-lime);
  cursor: pointer;
}

.vm-price {
  padding: 0;
  background: transparent;
  border: 0;
}

.vm-price__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.vm-price__kicker {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.vm-price__summary {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--vm-white);
}

.vm-price__amount {
  font-family: var(--vm-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--vm-accent);
  line-height: 1.1;
  white-space: nowrap;
}

.vm-price__amount small,
.vm-pack__now small {
  font-family: var(--vm-font);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--vm-muted);
}

.vm-price__note {
  margin: 6px 0 16px;
  color: var(--vm-muted);
  font-size: 0.82rem;
}

.vm-price .vm-btn,
.vm-pack .vm-btn {
  width: 100%;
}

/* Benefits */
.vm-benefits {
  padding: 8px 0 36px;
}

.vm-benefits__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 14px 0;
  border-block: 1px solid var(--vm-faint);
}

.vm-benefits__row p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--vm-muted);
}

.vm-benefits__mark {
  width: 7px;
  height: 7px;
  background: var(--vm-lime);
  clip-path: polygon(0 100%, 100% 0, 100% 35%, 0 100%);
}

/* Packs, club y más */
.vm-packs,
.vm-how,
.vm-follow,
.vm-proof,
.vm-faq {
  padding: 28px 0 48px;
}

/* Packs */
.vm-packs {
  background: transparent;
}

.vm-pack {
  min-height: 100%;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-pack.is-recommended {
  border-color: var(--vm-accent);
  transform: translateY(0);
  box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.18), 0 24px 50px rgba(0, 0, 0, 0.35);
}

.vm-pack__badge {
  color: var(--vm-ink);
  background: var(--vm-lime);
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.vm-pack__head h3 {
  font-size: 1.6rem;
}

.vm-pack__head p,
.vm-pack__list {
  color: var(--vm-muted);
}

.vm-pack__list {
  display: grid;
  gap: 8px;
  flex: 1;
}

.vm-pack__list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  margin-right: 8px;
  background: var(--vm-lime);
  transform: skewX(-32deg);
  vertical-align: middle;
}

/* Video plans */
.vm-plans {
  padding: 36px 0 56px;
  background: transparent;
}

.vm-plans__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 840px;
  color: var(--vm-muted);
  font-size: 0.9rem;
}

.vm-plans__flow li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vm-plans__flow span {
  color: var(--vm-accent);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.vm-plan {
  min-height: 100%;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-plan.is-featured {
  border-color: var(--vm-accent);
  box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.2), 0 20px 50px var(--vm-lime-glow);
  background: linear-gradient(165deg, rgba(200, 245, 66, 0.1), var(--vm-charcoal) 40%);
}

.vm-plan__badge {
  color: var(--vm-ink);
  background: var(--vm-lime);
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

.vm-plan__head h3 {
  font-size: 1.7rem;
  line-height: 1.2;
}

.vm-plan__head p,
.vm-plan__list {
  color: var(--vm-muted);
}

.vm-plan__list {
  display: grid;
  gap: 8px;
  flex: 1;
}

.vm-plan__list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  margin-right: 8px;
  background: var(--vm-lime);
}

.vm-plan .vm-btn {
  width: 100%;
  margin-top: auto;
}

.vm-plan__cadence {
  margin: 0 0 6px;
  color: var(--vm-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vm-plans--social {
  padding: 48px 0 64px;
  border-top: 1px solid var(--vm-faint);
  background: transparent;
}

.vm-social__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 22px;
  max-width: 720px;
}

.vm-social__chips li {
  padding: 6px 12px;
  border: 1px solid var(--vm-line);
  border-radius: 999px;
  background: var(--vm-charcoal);
  color: var(--vm-white);
  font-size: 0.82rem;
  font-weight: 500;
}

.vm-social__nets-label {
  margin: 0 0 10px;
  text-align: center;
  color: var(--vm-muted);
  font-size: 0.82rem;
}

.vm-social__nets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
}

.vm-social__net {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--vm-faint);
  border-radius: 999px;
  background: var(--vm-carbon);
  font-size: 0.86rem;
  font-weight: 600;
}

.vm-social__net [data-icon] {
  display: grid;
  width: 18px;
  height: 18px;
}

.vm-social__net svg,
.vm-social__net img {
  width: 18px;
  height: 18px;
  max-width: none;
  object-fit: contain;
  border-radius: 4px;
}

.vm-social__steps {
  display: grid;
  gap: 12px;
  margin: 28px auto 0;
  max-width: 960px;
}

.vm-social__steps li {
  padding: 16px 18px;
  border: 1px solid var(--vm-faint);
  border-radius: 14px;
  background: var(--vm-charcoal);
}

.vm-social__steps h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.vm-social__steps p {
  margin: 0;
  color: var(--vm-muted);
  font-size: 0.92rem;
}

.vm-social__unsure {
  display: grid;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 560px;
  text-align: center;
}

.vm-social__unsure p {
  margin: 0;
  color: var(--vm-muted);
}

.vm-social__unsure .vm-btn {
  justify-self: center;
}

.vm-social__fine {
  margin: 20px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--vm-muted);
  font-size: 0.82rem;
}

.vm-nets {
  border: 0;
  padding: 0;
  min-width: 0;
}

.vm-nets legend {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.vm-nets__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vm-net-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--vm-faint);
  border-radius: 10px;
  background: var(--vm-input);
  font-size: 0.9rem;
  color: var(--vm-white);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.vm-net-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.vm-net-check__box {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--vm-line);
  border-radius: 6px;
  background: var(--vm-carbon);
}

.vm-net-check__box::after {
  content: "";
  width: 5px;
  height: 10px;
  margin-top: -2px;
  border: solid var(--vm-ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
}

.vm-net-check:has(input:checked) {
  border-color: var(--vm-accent);
  background: linear-gradient(160deg, var(--vm-lime-dim), var(--vm-input) 60%);
}

.vm-net-check input:checked + .vm-net-check__box {
  background: var(--vm-lime);
  border-color: var(--vm-lime);
}

.vm-net-check input:checked + .vm-net-check__box::after {
  transform: rotate(45deg) scale(1);
}

.vm-net-check:focus-within {
  outline: 2px solid var(--vm-accent);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .vm-social__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vm-pack__old {
  color: var(--vm-muted);
  text-decoration: line-through;
  font-size: 0.86rem;
}

.vm-pack__now {
  font-family: var(--vm-display);
  font-size: 2.1rem;
  color: var(--vm-accent);
}

.vm-pack__save {
  margin-top: 4px;
  font-size: 0.82rem;
}

/* How */
.vm-how__line {
  display: grid;
  gap: 8px;
}

.vm-how__line > li:not(.vm-how__join) {
  padding: 18px 0;
  border-top: 1px solid var(--vm-faint);
}

.vm-how__num {
  color: var(--vm-accent);
  font-family: var(--vm-display);
  font-size: 1.4rem;
}

.vm-how__line h3 {
  margin: 6px 0 8px;
  font-size: 1.5rem;
}

.vm-how__line p {
  color: var(--vm-muted);
}

.vm-how__join {
  display: none;
}

/* Tracker */
.vm-follow__grid {
  display: grid;
  gap: 24px;
}

.vm-tracker {
  padding: 22px 18px;
  background: var(--vm-carbon);
  border: 1px solid var(--vm-line);
}

.vm-tracker__id {
  font-family: var(--vm-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.vm-tracker__bar {
  position: relative;
  height: 6px;
  margin: 18px 0 16px;
  background: var(--vm-slate);
  overflow: hidden;
}

.vm-tracker__fill {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--vm-lime-deep), var(--vm-lime));
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.vm-tracker__steps {
  display: grid;
  gap: 8px;
}

.vm-tracker__steps li {
  display: flex;
  justify-content: space-between;
  color: var(--vm-muted);
  font-size: 0.92rem;
}

.vm-tracker__steps .is-done {
  color: var(--vm-white);
}

.vm-tracker__steps .is-current {
  color: var(--vm-accent);
}

.vm-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vm-lime);
  box-shadow: 0 0 0 0 var(--vm-lime-glow);
  animation: vmPulse 1.6s infinite;
}

@keyframes vmPulse {
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
}

/* Proof */
.vm-proof__card {
  min-height: 210px;
  padding: 18px;
}

.vm-proof__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vm-muted);
}

.vm-proof__placeholder {
  height: 72px;
  margin: 18px 0;
  background: repeating-linear-gradient(
    -32deg,
    var(--vm-faint),
    var(--vm-faint) 8px,
    transparent 8px,
    transparent 16px
  );
}

.vm-proof__placeholder--bars {
  background: linear-gradient(90deg, var(--vm-faint) 20%, transparent 20% 24%, var(--vm-faint) 24% 48%, transparent 48% 52%, var(--vm-lime-dim) 52% 78%, transparent 78%);
}

.vm-proof__placeholder--dots {
  background-image: radial-gradient(circle, var(--vm-line) 1.5px, transparent 2px);
  background-size: 18px 18px;
}

.vm-proof__soon {
  color: var(--vm-muted);
  font-size: 0.86rem;
}

/* FAQ */
.vm-faq__item {
  border-bottom: 1px solid var(--vm-faint);
}

.vm-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.vm-faq__q i {
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--vm-accent);
  border-bottom: 1px solid var(--vm-accent);
  transform: rotate(45deg);
  transition: transform 0.2s var(--vm-ease);
  flex: 0 0 12px;
  margin-top: 4px;
}

.vm-faq__item.is-open .vm-faq__q i {
  transform: rotate(-135deg);
}

.vm-faq__a {
  display: none;
  padding: 0 0 16px;
  color: var(--vm-muted);
  max-width: 62ch;
}

.vm-faq__item.is-open .vm-faq__a {
  display: block;
}

/* Footer */
.vm-footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--vm-faint);
}

.vm-footer__brand {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-bottom: 24px;
}

.vm-footer__brand img {
  width: 100%;
  height: 100%;
}

.vm-footer__name {
  font-family: var(--vm-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vm-footer__slogan {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--vm-muted);
}

.vm-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.vm-footer__links a,
.vm-footer__links button {
  color: var(--vm-muted);
  font-size: 0.88rem;
}

.vm-footer__copy {
  color: #fff;
  font-size: 0.78rem;
}

/* Admin */
.vm-admin {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(24px + var(--vm-safe-top)) 16px calc(24px + var(--vm-safe-bottom));
}

.vm-admin--app {
  display: block;
  padding: 0 0 48px;
}

.vm-admin__card {
  width: min(420px, 100%);
  padding: 28px 22px;
  background: var(--vm-charcoal);
  border: 1px solid var(--vm-line);
  border-radius: 16px;
}

.vm-admin__card h1 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.vm-admin__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-admin__lead {
  color: var(--vm-muted);
  margin: 0 0 18px;
}

.vm-admin__error {
  margin: 0 0 14px;
  color: #e8b4b4;
  font-size: 0.9rem;
}

.vm-admin__card .vm-btn {
  width: 100%;
  margin-top: 8px;
}

.vm-admin__back {
  margin-top: 16px;
  text-align: center;
}

.vm-admin__back a,
.vm-admin__bar a {
  color: var(--vm-muted);
  font-size: 0.88rem;
}

.vm-admin__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: calc(14px + var(--vm-safe-top)) 20px 14px;
  border-bottom: 1px solid var(--vm-faint);
}

.vm-admin__bar nav {
  display: flex;
  gap: 16px;
}

.vm-admin__main {
  padding-top: 32px;
}

.vm-admin__main h1 {
  font-size: 2rem;
}

.vm-admin__status {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--vm-muted);
}

.vm-admin__out {
  margin-top: 16px;
  padding: 14px;
  overflow: auto;
  background: var(--vm-carbon);
  border: 1px solid var(--vm-faint);
  border-radius: 12px;
  font-size: 0.82rem;
  white-space: pre-wrap;
}

.vm-admin__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.vm-admin__stat {
  padding: 16px;
  border-radius: 14px;
  background: var(--vm-carbon);
  border: 1px solid var(--vm-faint);
}

.vm-admin__stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--vm-muted);
  margin-bottom: 6px;
}

.vm-admin__stat strong {
  font-size: 1.35rem;
  font-weight: 700;
}

.vm-admin__stat small {
  display: block;
  margin-top: 4px;
  color: var(--vm-muted);
  font-size: 0.78rem;
}

.vm-admin__stat--accent {
  border-color: color-mix(in srgb, var(--vm-accent) 40%, var(--vm-faint));
}

.vm-admin__h2 {
  margin: 28px 0 12px;
  font-size: 1.1rem;
}

.vm-admin__table-wrap {
  overflow: auto;
  border: 1px solid var(--vm-faint);
  border-radius: 14px;
}

.vm-admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.vm-admin__table th,
.vm-admin__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--vm-faint);
  text-align: left;
  vertical-align: top;
}

.vm-admin__table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vm-muted);
  background: color-mix(in srgb, var(--vm-carbon) 80%, transparent);
}

.vm-admin__table tr:last-child td {
  border-bottom: 0;
}

.vm-admin__table a {
  color: var(--vm-accent);
  text-decoration: none;
}

.vm-admin__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.vm-admin__filters .vm-field {
  min-width: 160px;
  margin: 0;
}

.vm-admin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vm-admin__actions form {
  margin: 0;
}

.vm-admin__ok {
  color: #6ee7a0;
  margin: 0 0 12px;
}

.vm-pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--vm-faint);
}

.vm-admin__manual-form {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin-top: 20px;
}

.vm-admin__manual-form .vm-field small {
  display: block;
  margin-top: 4px;
  color: var(--vm-muted);
  font-size: 0.78rem;
}

.vm-pill--pending_payment { background: #3d3420; color: #f5d782; }
.vm-pill--paid { background: #1e3a2f; color: #8ef0b8; }
.vm-pill--processing { background: #1a2f4a; color: #9ecbff; }
.vm-pill--completed { background: #1e3a2f; color: #8ef0b8; }
.vm-pill--failed { background: #3a1e1e; color: #ffb4b4; }
.vm-pill--cancelled { background: #2a2a2a; color: #aaa; }

/* Bottom nav + sticky buy */
.vm-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 56px;
  height: auto;
  padding: 6px var(--vm-safe-left) calc(6px + var(--vm-safe-bottom)) var(--vm-safe-right);
  background: var(--vm-bottom-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--vm-faint);
}

.vm-bottom a,
.vm-bottom button {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 44px;
  color: var(--vm-muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  touch-action: manipulation;
}

.vm-bottom svg {
  width: 22px;
  height: 22px;
}

.vm-bottom .is-active {
  color: var(--vm-accent);
}

.vm-sticky-buy {
  position: fixed;
  left: calc(12px + var(--vm-safe-left));
  right: calc(12px + var(--vm-safe-right));
  bottom: calc(var(--vm-bottom) + 10px);
  z-index: 54;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 10px 12px;
  background: var(--vm-carbon);
  border: 1px solid var(--vm-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vm-sticky-buy[hidden],
.vm-sticky-buy[data-keyboard] {
  display: none !important;
}

.vm-sticky-buy span {
  display: block;
  color: var(--vm-muted);
  font-size: 0.72rem;
}

.vm-sticky-buy strong {
  color: var(--vm-accent);
}

/* Drawer / modal / fields */
.vm-drawer,
.vm-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.vm-drawer[hidden],
.vm-modal[hidden] {
  display: none !important;
}

.vm-drawer__backdrop,
.vm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--vm-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vm-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  padding: calc(24px + var(--vm-header)) calc(22px + var(--vm-safe-right)) calc(24px + var(--vm-safe-bottom)) 22px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--vm-carbon);
  border-left: 1px solid var(--vm-line);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.vm-modal__panel {
  position: relative;
  width: min(420px, calc(100% - 28px - var(--vm-safe-left) - var(--vm-safe-right)));
  max-height: calc(100dvh - 24px - var(--vm-safe-top) - var(--vm-safe-bottom));
  margin: max(12px, var(--vm-safe-top)) auto max(12px, var(--vm-safe-bottom));
  padding: 28px 22px 22px;
  background: var(--vm-charcoal);
  border: 1px solid var(--vm-line);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.vm-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
}

.vm-modal__close span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--vm-white);
}

.vm-modal__close span:first-child {
  transform: rotate(45deg);
}

.vm-modal__close span:last-child {
  transform: rotate(-45deg);
}

.vm-modal__lead,
.vm-modal__fine {
  color: var(--vm-muted);
  margin: 8px 0 16px;
}

.vm-modal__fine {
  font-size: 0.78rem;
  margin: 12px 0 0;
}

.vm-modal__price {
  margin: 8px 0 16px;
  color: var(--vm-accent);
  font-family: var(--vm-display);
  font-size: 1.6rem;
}

.vm-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--vm-muted);
}

.vm-field input,
.vm-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  background: var(--vm-input);
  border: 1px solid var(--vm-line);
  border-radius: 10px;
  color: var(--vm-white);
  font-size: 16px;
}

.vm-field textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
}

.vm-field input:focus,
.vm-field textarea:focus {
  outline: 1px solid var(--vm-accent);
}

.vm-toasts {
  position: fixed;
  top: calc(var(--vm-header) + 10px);
  right: calc(12px + var(--vm-safe-right));
  z-index: 75;
  display: grid;
  gap: 8px;
  width: min(320px, calc(100% - 24px - var(--vm-safe-left) - var(--vm-safe-right)));
}

.vm-toast {
  padding: 12px 14px;
  background: var(--vm-graphite);
  border: 1px solid color-mix(in srgb, var(--vm-accent) 35%, var(--vm-line));
  color: var(--vm-white);
  font-size: 0.88rem;
  animation: vmRise 0.35s var(--vm-ease);
}

@media (max-width: 767.98px) {
  .vm-wallpaper {
    background-position: 82% center;
  }

  .vm-wallpaper::after {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.86) 0%,
      rgba(5, 5, 5, 0.62) 42%,
      rgba(5, 5, 5, 0.42) 100%
    );
  }

  .vm-hero {
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 32px;
  }

  .vm-hero__layout {
    gap: 20px;
    min-width: 0;
  }

  .vm-hero__v {
    opacity: 0.42;
    right: -28%;
  }

  .vm-hero__net span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .vm-hero__accent {
    white-space: normal;
  }

  .vm-selector,
  .vm-selector__frame,
  .vm-selector__grid,
  .vm-selector__controls,
  .vm-step,
  .vm-step__platforms,
  .vm-step__services {
    min-width: 0;
    max-width: 100%;
  }

  .vm-selector__frame {
    padding: 16px 12px 14px;
    overflow: visible;
  }

  .vm-selector__head {
    flex-direction: column;
  }

  .vm-selector__head .vm-selector__cue {
    font-size: clamp(1rem, 4.2vw, 1.35rem);
    min-height: 50px;
    padding: 0 14px;
    letter-spacing: 0.04em;
  }

  .vm-selector--panel .vm-step__label {
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    line-height: 1.3;
  }

  .vm-step__platforms,
  .vm-step__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vm-selector--panel .vm-platform {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: auto;
    padding: 12px 8px 10px;
    gap: 8px;
    overflow: visible;
  }

  .vm-selector--panel .vm-platform__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .vm-selector--panel .vm-platform__icon svg,
  .vm-selector--panel .vm-platform__icon img {
    width: 44px;
    height: 44px;
    max-width: 100%;
    max-height: 100%;
  }

  .vm-selector--panel .vm-platform__meta {
    min-width: 0;
    width: 100%;
  }

  .vm-selector--panel .vm-platform__name {
    font-size: 0.84rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .vm-selector--panel .vm-service {
    min-height: auto;
    padding: 12px 8px;
  }

  .vm-selector--panel .vm-service__name {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .vm-selector--panel .vm-service__hint {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .vm-qty__chips {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .vm-qty__chip {
    min-height: 40px;
    padding: 0 4px;
    font-size: 0.72rem;
  }

  .vm-price__row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .vm-price__amount {
    white-space: normal;
  }
}

@media (max-width: 379px) {
  .vm-navbar__wordmark {
    display: none;
  }

  .vm-step__platforms {
    gap: 8px;
  }

  .vm-selector--panel .vm-platform__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .vm-selector--panel .vm-platform__icon svg,
  .vm-selector--panel .vm-platform__icon img {
    width: 38px;
    height: 38px;
  }

  .vm-selector--panel .vm-platform__name {
    font-size: 0.78rem;
  }

  .vm-qty__chips {
    gap: 4px;
  }

  .vm-qty__chip {
    font-size: 0.68rem;
    padding: 0 2px;
  }
}

@media (max-width: 340px) {
  .vm-navbar__right .vm-btn--primary {
    display: none;
  }
}

@media (max-width: 767px) {
  .vm-hero h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.4rem);
  }

  .vm-hero__accent {
    font-size: clamp(1rem, 4.3vw, 1.67rem);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .vm-hero {
    min-height: auto;
    padding: 16px 0 20px;
    align-items: flex-end;
  }

  .vm-hero h1 {
    font-size: clamp(2.65rem, 10vw, 3.9rem);
  }
}

@media (min-width: 430px) {
  .vm-wrap {
    width: min(var(--vm-wrap), calc(100% - 40px));
  }

  .vm-hero {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  :root {
    --vm-header: 92px;
  }

  body {
    padding-bottom: 0;
  }

  .vm-navbar {
    padding-top: 0;
    height: 92px;
  }

  .vm-navbar__bar {
    height: 100%;
    gap: 12px;
    grid-template-columns: auto 1fr;
    width: min(var(--vm-wrap), calc(100% - 32px));
    padding-left: var(--vm-safe-left);
    padding-right: var(--vm-safe-right);
  }

  .vm-logo--nav {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
  }

  .vm-bottom,
  .vm-sticky-buy,
  .vm-navbar__menu {
    display: none;
  }

  .vm-navbar__center {
    display: flex;
  }

  .vm-navbar__login,
  .vm-navbar__right .vm-btn--ghost {
    display: inline-flex;
  }

  .vm-navbar__right {
    gap: 8px;
  }

  .vm-theme {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .vm-navbar__right .vm-btn--primary {
    min-height: 44px;
    padding: 0 14px;
  }

  .vm-navbar__right .vm-btn--primary .vm-btn__label {
    font-size: 0.92rem;
  }

  .vm-navbar__wordmark {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .vm-navbar__slogan {
    display: block;
  }

  .vm-hero {
    min-height: calc(100svh - var(--vm-header));
    align-items: center;
    padding: 36px 0 56px;
  }

  .vm-hero__v {
    right: 2%;
    top: -4%;
  }

  .vm-hero__cta .vm-btn {
    flex: 0 0 auto;
  }

  .vm-selector__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .vm-selector__frame {
    padding: 22px 22px 20px;
  }

  .vm-step__platforms {
    grid-template-columns: 1fr 1fr;
  }

  .vm-selector__grid,
  .vm-selector--panel .vm-selector__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vm-price {
    position: static;
  }

  .vm-benefits__row {
    grid-template-columns: repeat(4, 1fr);
  }

  .vm-plans__flow {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .vm-plan.is-featured {
    transform: translateY(-8px);
  }

  .vm-how__line {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: stretch;
  }

  .vm-how__line > li:not(.vm-how__join) {
    border-top: 0;
    padding: 8px 0 0;
  }

  .vm-how__join {
    display: block;
    height: auto;
    background: linear-gradient(to top right, transparent 46%, var(--vm-lime) 46% 54%, transparent 54%);
    opacity: 0.55;
    min-height: 120px;
  }

  .vm-follow__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
  }

  .vm-faq__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .vm-navbar__center {
    gap: 36px;
  }

  .vm-hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 48px;
  }

  .vm-hero h1 {
    max-width: none;
  }

  .vm-hero__v {
    width: min(820px, 58vw);
    right: -6%;
  }

  .vm-pack.is-recommended {
    transform: translateY(-10px);
  }
}

@media (min-width: 1440px) {
  :root {
    --vm-wrap: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
