/* ============================================================
   VIBEX — vibex-home.css
   Dark neon + glassmorphism landing. Mobile-first.
   Tokens mirror /css/vibex-design-system.css (--vx-*).
   ============================================================ */

/* CSS-токени --vx-* живуть у /css/vibex-design-system.css (single source).
   Тут НЕ редекларуємо — лише використовуємо.
   Локальні допоміжні для цієї сторінки: */
:root {
  --vx-shell: min(1240px, 90vw);
  --vx-header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--vx-bg);
  color: var(--vx-text);
  font-family: var(--vx-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

:focus-visible {
  outline: 2px solid var(--vx-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- shared bits ---------- */
.vx-shell { width: var(--vx-shell); margin-inline: auto; }

.vx-pre {
  font-family: var(--vx-font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vx-pink);
  margin: 0 0 16px;
}
.vx-pre--center { text-align: center; }

.vx-h2 {
  font-family: var(--vx-font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}

.vx-grad-text {
  background: var(--vx-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vx-section { position: relative; padding: clamp(72px, 11vw, 130px) 0; }
.vx-section--alt { background: var(--vx-bg-2); }

.vx-section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.vx-section-head--wide { max-width: 880px; }

/* glass surface */
.vx-glass {
  background: var(--vx-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--vx-line);
}

/* buttons */
.vx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vx-font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--vx-r-pill);
  padding: 17px 30px;
  transition: transform .25s var(--vx-ease), box-shadow .25s var(--vx-ease), background .25s var(--vx-ease);
  white-space: nowrap;
}
.vx-btn .vx-arrow { transition: transform .25s var(--vx-ease); }
.vx-btn:hover .vx-arrow { transform: translateX(4px); }

.vx-btn--primary {
  background: var(--vx-grad);
  color: #fff;
  box-shadow: 0 8px 30px -6px var(--vx-pink-glow), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.vx-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px -6px var(--vx-pink-glow), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.vx-btn--ghost {
  background: var(--vx-glass);
  border: 1px solid var(--vx-line);
  backdrop-filter: blur(20px);
}
.vx-btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .22); }
.vx-btn--lg { font-size: 18px; padding: 21px 38px; }

.vx-link-underline { color: var(--vx-text-2); position: relative; }
.vx-link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--vx-ease);
}
.vx-link-underline:hover { color: var(--vx-text); }
.vx-link-underline:hover::after { transform: scaleX(1); }

/* online dot */
.vx-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--vx-green);
  box-shadow: 0 0 0 0 rgba(46, 204, 113, .55);
  animation: vx-pulse 2.4s var(--vx-ease) infinite;
  flex: none;
}
@keyframes vx-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, .5); }
  70% { box-shadow: 0 0 0 9px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* scroll reveal — TRANSFORM ONLY (opacity stays 1 so static DOM-clone captures,
   print and PDF always show content; only a gentle slide animates) */
.vx-reveal { transform: translateY(22px); transition: transform .55s var(--vx-ease); will-change: transform; }
.vx-reveal.is-in { transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.vx-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--vx-header-h);
  display: flex; align-items: center;
  transition: background .3s var(--vx-ease), border-color .3s var(--vx-ease), backdrop-filter .3s var(--vx-ease);
  border-bottom: 1px solid transparent;
}
.vx-header.is-stuck {
  background: rgba(10, 6, 18, .72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--vx-line);
}
.vx-header__inner { width: var(--vx-shell); margin-inline: auto; display: flex; align-items: center; gap: 22px; }

.vx-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--vx-font-display);
  font-weight: 700; font-size: 22px; letter-spacing: 3px;
}
.vx-logo__mark { background: var(--vx-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vx-badge-18 {
  font-family: var(--vx-font-body); font-weight: 800; font-size: 11px; letter-spacing: .5px;
  color: var(--vx-gold); border: 1px solid rgba(255, 216, 77, .4);
  background: rgba(255, 216, 77, .08);
  padding: 3px 8px; border-radius: var(--vx-r-pill);
}

.vx-nav { display: none; gap: 28px; margin-inline: auto; }
.vx-nav a { color: var(--vx-text-2); font-weight: 600; font-size: 14px; transition: color .2s var(--vx-ease); }
.vx-nav a:hover { color: var(--vx-text); }

.vx-header__right { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.vx-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--vx-text-2);
  transition: color .2s var(--vx-ease), background .2s var(--vx-ease);
}
.vx-icon-btn:hover { color: var(--vx-text); background: var(--vx-glass); }

.vx-lang { display: flex; align-items: center; font-weight: 700; font-size: 13px; }
.vx-lang button { color: var(--vx-text-3); padding: 4px 6px; transition: color .2s var(--vx-ease); }
.vx-lang button.is-active { color: var(--vx-text); }
.vx-lang span { color: var(--vx-text-3); }

.vx-auth { display: none; align-items: center; gap: 6px; }
.vx-auth .vx-signin { color: var(--vx-text-2); font-weight: 600; font-size: 14px; padding: 9px 14px; border-radius: var(--vx-r-pill); transition: color .2s var(--vx-ease); }
.vx-auth .vx-signin:hover { color: var(--vx-text); }
.vx-auth .vx-signup {
  font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: var(--vx-r-pill);
  background: var(--vx-glass); border: 1px solid var(--vx-line);
  transition: border-color .2s var(--vx-ease), background .2s var(--vx-ease);
}
.vx-auth .vx-signup:hover { border-color: var(--vx-pink); background: rgba(255, 45, 126, .12); }

.vx-burger { display: grid; }
@media (min-width: 1024px) {
  .vx-nav { display: flex; }
  .vx-auth { display: flex; }
  .vx-burger { display: none; }
}

/* mobile menu */
.vx-mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 6, 18, .96);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 8vw;
  transform: translateY(-100%);
  transition: transform .4s var(--vx-ease);
  visibility: hidden;
}
.vx-mobile-menu.is-open { transform: none; visibility: visible; }
.vx-mobile-menu a {
  font-family: var(--vx-font-display); font-weight: 600; font-size: 32px;
  padding: 12px 0; border-bottom: 1px solid var(--vx-line); color: var(--vx-text);
}
.vx-mobile-menu .vx-mm-cta { margin-top: 28px; border: 0; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.vx-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.vx-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vx-hero__bg image-slot,
.vx-hero__bg .vx-hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.vx-hero__bg .vx-hero-img { animation: vx-slowzoom 24s var(--vx-ease) infinite alternate; }
/* WordPress template fills these with a real photo via background-image */
.vx-hero-photo, .vx-creators-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
@keyframes vx-slowzoom { from { transform: scale(1); } to { transform: scale(1.07); } }

/* night-scene fallback (used until user drops a photo) */
.vx-hero-fallback {
  background:
    radial-gradient(120% 80% at 78% 18%, rgba(168, 85, 247, .42), transparent 55%),
    radial-gradient(90% 70% at 90% 75%, rgba(255, 45, 126, .32), transparent 60%),
    radial-gradient(70% 60% at 12% 30%, rgba(22, 224, 255, .12), transparent 60%),
    linear-gradient(160deg, #150a22 0%, #0a0612 70%);
}

.vx-hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 6, 18, .55) 0%, transparent 22%, transparent 50%, rgba(10, 6, 18, .72) 78%, rgba(10, 6, 18, .96) 100%),
    linear-gradient(90deg, rgba(10, 6, 18, .8) 0%, rgba(10, 6, 18, .35) 42%, transparent 72%);
}

.vx-hero__content {
  position: relative; z-index: 3;
  width: var(--vx-shell); margin-inline: auto;
  padding-bottom: clamp(96px, 14vh, 150px); padding-top: 120px;
}
/* hero content is always visible (no from-hidden animation — keeps it solid in
   static DOM-clone captures / print / PDF) */
.vx-hero__inner { max-width: 660px; }
.vx-hero h1 {
  font-family: var(--vx-font-display); font-weight: 700;
  font-size: clamp(38px, 6vw, 62px); line-height: 1.04; letter-spacing: -.02em;
  margin: 0 0 22px; text-wrap: balance;
}
.vx-hero h1 .vx-grad-text { display: inline; }
.vx-hero__sub { font-size: clamp(16px, 2.4vw, 20px); color: var(--vx-text-2); max-width: 500px; margin: 0 0 34px; }
.vx-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.vx-hero__online {
  position: absolute; left: 0; bottom: 28px; z-index: 3;
  width: var(--vx-shell); left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
}
.vx-hero__online-inner { display: flex; align-items: center; gap: 10px; }
.vx-hero__online span { font-weight: 500; font-size: 13px; color: var(--vx-text-2); }
.vx-hero__online b { color: var(--vx-text); font-variant-numeric: tabular-nums; }

.vx-scroll-hint {
  position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%);
  width: 1px; height: 42px; overflow: hidden; background: rgba(255, 255, 255, .12);
}
.vx-scroll-hint::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(var(--vx-pink), transparent);
  animation: vx-scroll 1.8s var(--vx-ease) infinite;
}
@keyframes vx-scroll { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

@media (max-width: 600px) { .vx-scroll-hint { display: none; } }

/* ============================================================
   SECTION 2 — LIVE FACES
   ============================================================ */
.vx-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .vx-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .vx-cards { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.vx-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--vx-r-lg);
  overflow: hidden; cursor: pointer; isolation: isolate;
  border: 1px solid var(--vx-line);
  transition: transform .35s var(--vx-ease), box-shadow .35s var(--vx-ease);
}
.vx-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .8), 0 0 30px -8px var(--vx-pink-glow); }
.vx-card__photo { position: absolute; inset: 0; z-index: 0; }
.vx-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(10, 6, 18, .25) 60%, rgba(10, 6, 18, .92) 100%);
}
/* abstract figure-silhouette placeholder */
.vx-card__photo--ph::before {
  content: ""; position: absolute; left: 50%; bottom: -8%; width: 78%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(58% 42% at 50% 0, rgba(255, 255, 255, .14), transparent 70%),
    radial-gradient(46% 60% at 50% 70%, rgba(0, 0, 0, .35), transparent 72%);
  border-radius: 50% 50% 44% 44% / 36% 36% 64% 64%;
  filter: blur(2px);
}

.vx-card__badges { position: absolute; inset: 12px 12px auto 12px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.vx-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .3px; padding: 4px 9px; border-radius: var(--vx-r-pill);
  background: rgba(10, 6, 18, .5); backdrop-filter: blur(8px); border: 1px solid var(--vx-line);
}
.vx-tag--verified { color: var(--vx-cyan); border-color: rgba(22, 224, 255, .4); }
.vx-tag--pair { color: var(--vx-pink-2); border-color: rgba(255, 106, 213, .4); }
.vx-tag--model { color: var(--vx-gold); border-color: rgba(255, 216, 77, .4); }
.vx-card__online { display: flex; align-items: center; }

.vx-card__meta { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; }
.vx-card__name { font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 6px; }
.vx-card__name svg { color: var(--vx-cyan); }
.vx-card__sub { font-size: 12.5px; color: var(--vx-text-2); margin-top: 2px; }
.vx-card__hi {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 13px; font-weight: 700; color: var(--vx-pink-2);
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--vx-ease), transform .3s var(--vx-ease);
}
.vx-card:hover .vx-card__hi, .vx-card:focus-visible .vx-card__hi { opacity: 1; transform: none; }

/* locked */
.vx-card--locked .vx-card__photo { filter: blur(9px); transform: scale(1.06); }
.vx-card--locked .vx-card__lock {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; text-align: center; padding: 16px;
  background: rgba(10, 6, 18, .35);
}
.vx-card--locked .vx-card__lock svg { color: var(--vx-text); opacity: .9; }
.vx-card--locked .vx-card__lock span { font-size: 12.5px; font-weight: 600; color: var(--vx-text-2); max-width: 130px; }
.is-authed .vx-card--locked .vx-card__photo { filter: none; transform: none; }
.is-authed .vx-card--locked .vx-card__lock { display: none; }

.vx-cards-cta { text-align: center; margin-top: clamp(34px, 5vw, 48px); }
.is-authed .vx-cards-cta__loggedout { display: none; }

/* ============================================================
   SECTION 3 — MOOD CHIPS
   ============================================================ */
.vx-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 920px; margin: 0 auto; }
.vx-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: var(--vx-r-pill);
  font-weight: 600; font-size: 14.5px;
  background: var(--vx-glass); color: var(--vx-text);
  position: relative; backdrop-filter: blur(20px);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  transition: transform .25s var(--vx-ease), box-shadow .25s var(--vx-ease);
}
.vx-chip::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 45, 126, .5), rgba(168, 85, 247, .5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .25s var(--vx-ease); opacity: .6;
}
.vx-chip svg { color: var(--vx-pink-2); transition: color .25s var(--vx-ease); flex: none; }
.vx-chip:hover { transform: scale(1.03); box-shadow: 0 8px 30px -10px var(--vx-pink-glow); }
.vx-chip:hover::before { opacity: 1; }
.vx-chip.is-active {
  background: var(--vx-grad); color: #fff; border-color: transparent;
  box-shadow: 0 8px 30px -8px var(--vx-pink-glow);
}
.vx-chip.is-active::before { opacity: 0; }
.vx-chip.is-active svg { color: #fff; }
.vx-chips-note { text-align: center; color: var(--vx-text-3); font-size: 13.5px; margin: 28px auto 0; }

/* ============================================================
   SECTION 4 — HOW IT WORKS
   ============================================================ */
.vx-steps { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .vx-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.vx-step { position: relative; padding: 34px 28px 32px; border-radius: var(--vx-r-lg); background: var(--vx-bg-3); border: 1px solid var(--vx-line); overflow: hidden; }
.vx-step__num {
  position: absolute; top: -14px; right: 8px; font-family: var(--vx-font-display); font-weight: 700;
  font-size: 96px; color: rgba(255, 255, 255, .04); line-height: 1; pointer-events: none;
}
.vx-step__icon {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--vx-grad-deep); margin-bottom: 22px; color: #fff;
  box-shadow: 0 10px 30px -10px var(--vx-pink-glow);
}
.vx-step h3 { font-family: var(--vx-font-display); font-weight: 600; font-size: 21px; margin: 0 0 10px; }
.vx-step p { color: var(--vx-text-2); font-size: 15px; margin: 0; }

/* ============================================================
   SECTION 5 — STATS + QUOTES
   ============================================================ */
.vx-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: center; margin-bottom: clamp(48px, 7vw, 72px); }
@media (max-width: 600px) {
  .vx-stats { grid-template-columns: 1fr 1fr; }
  .vx-stat:first-child { grid-column: 1 / -1; }
}
.vx-stat__num { font-family: var(--vx-font-display); font-weight: 700; font-size: clamp(40px, 8vw, 84px); line-height: 1; letter-spacing: -.02em; }
.vx-stat__label { color: var(--vx-text-2); font-size: 14px; margin-top: 8px; }

.vx-quotes { position: relative; max-width: 760px; margin: 0 auto; }
.vx-quote {
  display: none; position: relative; overflow: hidden;
  background: var(--vx-glass); border: 1px solid var(--vx-line); border-radius: var(--vx-r);
  padding: 30px 34px;
}
.vx-quote::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--vx-grad-deep); }
.vx-quote.is-active { display: block; }
.vx-quote p { font-family: var(--vx-font-display); font-weight: 500; font-size: clamp(18px, 2.5vw, 23px); line-height: 1.4; margin: 0 0 18px; }
.vx-quote cite { font-style: normal; color: var(--vx-text-2); font-size: 14px; }
.vx-quote cite b { color: var(--vx-text); font-weight: 700; }
.vx-quotes-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.vx-quotes-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .2); transition: background .25s var(--vx-ease), width .25s var(--vx-ease); }
.vx-quotes-dots button.is-active { background: var(--vx-pink); width: 22px; border-radius: var(--vx-r-pill); }

/* ============================================================
   SECTION 6 — TRUST
   ============================================================ */
.vx-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .vx-trust { grid-template-columns: repeat(4, 1fr); } }
.vx-trust__item { padding: 26px 22px; border-radius: var(--vx-r-lg); background: var(--vx-glass); border: 1px solid var(--vx-line); }
.vx-trust__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; color: var(--vx-cyan); background: rgba(22, 224, 255, .08); border: 1px solid rgba(22, 224, 255, .2); }
.vx-trust__item h4 { font-family: var(--vx-font-display); font-weight: 600; font-size: 16px; margin: 0 0 7px; }
.vx-trust__item p { color: var(--vx-text-2); font-size: 13.5px; margin: 0; }

/* ============================================================
   SECTION 7 — CREATORS
   ============================================================ */
.vx-creators { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .vx-creators { grid-template-columns: 1fr 1fr; gap: 64px; } }
.vx-creators__visual { position: relative; aspect-ratio: 4 / 5; border-radius: var(--vx-r-xl); overflow: hidden; border: 1px solid var(--vx-line); }
.vx-creators__visual image-slot, .vx-creators__visual .vx-creators-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.vx-creators-fallback {
  position: relative;
  background: radial-gradient(80% 60% at 70% 25%, rgba(255, 45, 126, .35), transparent 60%),
    radial-gradient(70% 70% at 30% 80%, rgba(168, 85, 247, .3), transparent 60%),
    linear-gradient(150deg, #1a1226, #0a0612);
}
.vx-creators-fallback::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 60%; height: 75%; transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 0, rgba(255, 255, 255, .12), transparent 70%);
  border-radius: 50% 50% 40% 40% / 30% 30% 70% 70%;
}
.vx-creators__tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--vx-r-pill); font-size: 13px; font-weight: 700; color: var(--vx-gold);
  background: rgba(10, 6, 18, .6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 216, 77, .3);
}
.vx-creators__list { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 14px; }
.vx-creators__list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--vx-text-2); }
.vx-creators__list li b { color: var(--vx-text); font-weight: 700; }
.vx-creators__list svg { color: var(--vx-pink); flex: none; margin-top: 2px; }
.vx-split-revenue { font-family: var(--vx-font-display); }

/* ============================================================
   SECTION 8 — PRICING
   ============================================================ */
.vx-plans { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 14px; }
@media (min-width: 880px) { .vx-plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.vx-plan {
  position: relative; padding: 30px 28px; border-radius: var(--vx-r-lg);
  background: var(--vx-bg-3); border: 1px solid var(--vx-line);
  display: flex; flex-direction: column;
  transition: transform .3s var(--vx-ease), box-shadow .3s var(--vx-ease);
}
.vx-plan:hover { transform: translateY(-4px); }
.vx-plan--featured { border-color: transparent; background: var(--vx-bg-2); }
.vx-plan--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--vx-grad-deep);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
@media (min-width: 880px) { .vx-plan--featured { transform: scale(1.04); } .vx-plan--featured:hover { transform: scale(1.04) translateY(-4px); } }
.vx-plan__pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--vx-grad); color: #fff; font-weight: 700; font-size: 11.5px; letter-spacing: .5px;
  padding: 5px 14px; border-radius: var(--vx-r-pill); white-space: nowrap;
  box-shadow: 0 6px 20px -6px var(--vx-pink-glow);
}
.vx-plan__name { font-family: var(--vx-font-display); font-weight: 600; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; color: var(--vx-text-2); }
.vx-plan--featured .vx-plan__name { color: var(--vx-pink-2); }
.vx-plan__price { font-family: var(--vx-font-display); font-weight: 700; font-size: 38px; margin: 12px 0 2px; line-height: 1; }
.vx-plan__price small { font-size: 14px; font-weight: 500; color: var(--vx-text-3); font-family: var(--vx-font-body); }
.vx-plan__feats { list-style: none; padding: 0; margin: 24px 0 26px; display: grid; gap: 13px; }
.vx-plan__feats li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--vx-text-2); padding-bottom: 13px; border-bottom: 1px solid var(--vx-line); }
.vx-plan__feats li:last-child { border-bottom: 0; padding-bottom: 0; }
.vx-plan__feats b { color: var(--vx-text); font-weight: 700; }
.vx-plan__feats .vx-yes { color: var(--vx-green); }
.vx-plan__feats .vx-no { color: var(--vx-text-3); }
.vx-plan__cta { margin-top: auto; text-align: center; padding: 13px; border-radius: var(--vx-r-pill); font-weight: 700; font-size: 14.5px; border: 1px solid var(--vx-line); transition: border-color .2s var(--vx-ease), background .2s var(--vx-ease); }
.vx-plan__cta:hover { border-color: rgba(255, 255, 255, .25); }
.vx-plan--featured .vx-plan__cta { background: var(--vx-grad); border-color: transparent; box-shadow: 0 8px 24px -8px var(--vx-pink-glow); }
.vx-plans-cta { text-align: center; margin-top: clamp(34px, 5vw, 48px); }

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.vx-faq { max-width: 760px; margin: 0 auto; }
.vx-faq__item { border-bottom: 1px solid var(--vx-line); }
.vx-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left; font-family: var(--vx-font-display); font-weight: 500; font-size: clamp(17px, 2.4vw, 21px);
  color: var(--vx-text); transition: color .2s var(--vx-ease);
}
.vx-faq__q:hover { color: var(--vx-pink-2); }
.vx-faq__icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--vx-text-3); transition: transform .3s var(--vx-ease), color .3s var(--vx-ease); }
.vx-faq__item.is-open .vx-faq__icon { transform: rotate(45deg); color: var(--vx-pink); }
.vx-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--vx-ease); }
.vx-faq__a-inner { padding: 0 4px 26px; color: var(--vx-text-2); font-size: 15.5px; max-width: 620px; }

/* ============================================================
   SECTION 10 — FINAL CTA
   ============================================================ */
.vx-final { position: relative; text-align: center; overflow: hidden; padding: clamp(100px, 16vw, 180px) 0; }
.vx-final__glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 0;
  width: 760px; height: 760px; max-width: 120vw;
  background: radial-gradient(circle, rgba(255, 45, 126, .22), rgba(168, 85, 247, .12) 40%, transparent 68%);
  pointer-events: none; filter: blur(10px);
}
.vx-final__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.vx-final h2 { font-family: var(--vx-font-display); font-weight: 700; font-size: clamp(48px, 11vw, 100px); line-height: .98; letter-spacing: -.03em; margin: 0 0 20px; }
.vx-final p { font-size: clamp(16px, 2.5vw, 20px); color: var(--vx-text-2); margin: 0 0 38px; }
.vx-final__fine { margin-top: 22px; font-size: 13px; color: var(--vx-text-3); }

/* ============================================================
   SECTION 11 — FOOTER
   ============================================================ */
.vx-footer { background: var(--vx-bg-2); border-top: 1px solid var(--vx-line); padding: clamp(56px, 8vw, 80px) 0 32px; }
.vx-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
@media (min-width: 768px) { .vx-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.vx-footer h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--vx-text-3); margin: 0 0 18px; font-weight: 700; }
.vx-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.vx-footer ul a { color: var(--vx-text-2); font-size: 14.5px; transition: color .2s var(--vx-ease); }
.vx-footer ul a:hover { color: var(--vx-text); }
.vx-footer__brand .vx-logo { margin-bottom: 16px; }
.vx-footer__brand p { color: var(--vx-text-3); font-size: 13.5px; max-width: 260px; margin: 0 0 8px; }
.vx-footer__made { display: inline-flex; align-items: center; gap: 7px; color: var(--vx-text-2); font-size: 13.5px; }
.vx-footer__bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between;
  margin-top: clamp(48px, 7vw, 72px); padding-top: 26px; border-top: 1px solid var(--vx-line);
}
.vx-footer__bar p { color: var(--vx-text-3); font-size: 13px; margin: 0; }
.vx-socials { display: flex; gap: 10px; }
.vx-socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--vx-text-2); background: var(--vx-glass); border: 1px solid var(--vx-line); transition: color .2s var(--vx-ease), border-color .2s var(--vx-ease), transform .2s var(--vx-ease); }
.vx-socials a:hover { color: var(--vx-text); border-color: var(--vx-pink); transform: translateY(-2px); }

/* toast for demo actions */
.vx-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140%);
  z-index: 200; background: rgba(26, 18, 38, .96); border: 1px solid var(--vx-line);
  backdrop-filter: blur(20px); padding: 14px 20px; border-radius: var(--vx-r);
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, .7); transition: transform .4s var(--vx-ease);
  max-width: min(440px, 90vw);
}
.vx-toast.is-show { transform: translateX(-50%) translateY(0); }
.vx-toast svg { color: var(--vx-pink); flex: none; }

/* demo banner / login simulator */
.vx-demo {
  position: fixed; right: 18px; bottom: 18px; z-index: 150;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 9px 9px 16px; border-radius: var(--vx-r-pill);
  background: rgba(18, 11, 28, .9); backdrop-filter: blur(20px); border: 1px solid var(--vx-line);
  font-size: 12.5px; font-weight: 600; color: var(--vx-text-2);
  box-shadow: 0 14px 40px -14px rgba(0, 0, 0, .7);
}
.vx-demo__toggle {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: var(--vx-r-pill);
  background: var(--vx-glass); border: 1px solid var(--vx-line); color: var(--vx-text); font-weight: 700; font-size: 12.5px;
  transition: background .2s var(--vx-ease), border-color .2s var(--vx-ease);
}
.vx-demo__toggle:hover { border-color: var(--vx-pink); }
.is-authed .vx-demo__toggle { background: rgba(46, 204, 113, .14); border-color: rgba(46, 204, 113, .45); color: var(--vx-green); }
@media (max-width: 600px) { .vx-demo { left: 18px; right: 18px; justify-content: space-between; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .vx-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PRODUCTION ADAPTATION — locked-cards для гостей через шорткод
   [vibex_profiles_grid] повертає N реальних карток. На лендингу
   ми хочемо: для гостя — перші 6 видно, 7+ заблюрено з лок-оверлеєм.
   Це працює і з нашими демо-картками, і з картками шорткоду.
   ============================================================ */

/* Auth юзер — все відкрите, ніяких overlay */
body.is-authed .vx-card--locked { 
  filter: none !important; 
  pointer-events: auto !important; 
}
body.is-authed .vx-card__lock { display: none !important; }

/* Guest юзер + є шорткод-картки — застосувати lock з 7-ї */
.vx-cards[data-lock-after="6"] > *:nth-child(n+7) {
  position: relative;
  overflow: hidden;
}
.vx-cards[data-lock-after="6"] > *:nth-child(n+7) > *:not(.vx-card__lock):not(.vx-locked-overlay) {
  filter: blur(10px) saturate(.7);
  pointer-events: none;
}
.vx-cards[data-lock-after="6"] > *:nth-child(n+7)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,.2) 0%, rgba(10,6,18,.85) 100%);
  z-index: 5;
  pointer-events: none;
}

/* lock-overlay (CSS-only, не потребує елементу) */
.vx-cards[data-lock-after="6"] > *:nth-child(n+7) .vx-locked-overlay,
.vx-cards[data-lock-after="6"] > *:nth-child(n+7)::before {
  content: '🔒';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  color: #fff;
  font-size: 28px;
  filter: drop-shadow(0 0 12px rgba(255,45,126,.6));
}

/* ============================================================
   v3 FIXES (16 Jun 2026)
   Перебиваємо BuddyBoss inline-style який вантажиться ПІСЛЯ нас.
   ВСІ селектори з префіксом body.vibex-template-home + !important.
   ============================================================ */

/* ── 1) HERO ЗАГОЛОВКИ: повністю білий, з власним кольором замість BB-сірого ── */
body.vibex-template-home .vx-hero h1,
body.vibex-template-home .vx-hero__title {
  color: #ffffff !important;
}
body.vibex-template-home .vx-hero h1 span:first-child,
body.vibex-template-home .vx-hero__title-line-1 {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* ── 2) ВСІ заголовки секцій: білі, BB не перебиває ── */
body.vibex-template-home h1,
body.vibex-template-home h2,
body.vibex-template-home h3,
body.vibex-template-home h4,
body.vibex-template-home h5,
body.vibex-template-home .vx-h2,
body.vibex-template-home .vx-h3,
body.vibex-template-home .vx-section-head h2 {
  color: #ffffff !important;
}

/* ── 3) ГРАДІЄНТНИЙ ТЕКСТ (Premium counters 12 480+ / 150 / 98%) ──
   `--vx-grad` міг бути не визначений → backgroup transparent → текст невидимий.
   Жорстко даємо fallback. */
body.vibex-template-home .vx-grad-text,
body.vibex-template-home .vx-stat__num,
body.vibex-template-home .vx-h2 .vx-grad-text,
body.vibex-template-home .vx-creators h2 .vx-grad-text {
  background: linear-gradient(135deg, #ff2d7e 0%, #a855f7 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ── 4) FAQ — перебиваємо BuddyBoss --bb-primary-color (#385DFF) ──
   В скріні #7 видно сині accordion bars — це BB-blue. */
body.vibex-template-home .vx-faq__q,
body.vibex-template-home .vx-faq__item,
body.vibex-template-home .vx-faq__a,
body.vibex-template-home .vx-faq__a-inner {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}
body.vibex-template-home .vx-faq__q {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
}
body.vibex-template-home .vx-faq__q span,
body.vibex-template-home .vx-faq__a-inner {
  color: #ffffff !important;
}
body.vibex-template-home .vx-faq__q:hover {
  background: rgba(255, 45, 126, 0.08) !important;
  border-color: rgba(255, 45, 126, 0.35) !important;
}
body.vibex-template-home .vx-faq__q[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(255, 45, 126, 0.1), rgba(168, 85, 247, 0.1)) !important;
  border-color: rgba(255, 45, 126, 0.4) !important;
}

/* ── 5) PREHEADERS «онлайн зараз», «питання», «тарифи» — рожевий ── */
body.vibex-template-home .vx-pre {
  color: #ff2d7e !important;
}

/* ── 6) Картки в Live: гарантовано показуються навіть якщо JS не виконавсь ── */
body.vibex-template-home #vx-cards {
  min-height: 280px;
}
body.vibex-template-home #vx-cards:empty::before {
  content: '';
  display: block;
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── 7) Mood chips: контейнер гарантовано видно ── */
body.vibex-template-home #vx-chips {
  min-height: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 40px auto 0;
}
body.vibex-template-home .vx-chip {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 50px !important;
  padding: 11px 18px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.22s cubic-bezier(.34, 1.56, .64, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
body.vibex-template-home .vx-chip:hover {
  border-color: rgba(255, 45, 126, 0.5) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
body.vibex-template-home .vx-chip.is-active {
  background: linear-gradient(135deg, #ff2d7e, #a855f7) !important;
  border-color: transparent !important;
  color: #fff !important;
}
