/* ============================================================
   VIBEX — vibex-profile-view.css
   VIEW profile skin over BuddyBoss. Namespace: .vxp-*
   Variants: body.vibex-profile-page.vx-variant-{self|single|couple|creator}
   Cinematic dark hero + glass tab content. Tokens: --vx-* (fallbacks inline).
   Container-queries so frames respond to their own width (canvas preview).
   ============================================================ */

:root {
  --vxp-spring: cubic-bezier(.34, 1.5, .64, 1);
  --vxp-out: cubic-bezier(.22, .61, .36, 1);
  --vx-gold: #ffd84d;
  --vx-gold-2: #ff9100;
  --vx-green: #2ecc71;
  --vx-amber: #ffb23e;
}

/* container scope */
.vxp { container-type: inline-size; container-name: vxp; }

.vxp, .vxp * { box-sizing: border-box; }
.vxp {
  position: relative;
  background: var(--vx-bg, #0a0612);
  color: var(--vx-text, #fff);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: clip;
}

/* ---------- shared bits ---------- */
.vxp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15px;
  height: 50px; padding: 0 24px; border-radius: 50px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--vxp-spring), box-shadow .25s, border-color .2s, background .2s, color .2s;
  white-space: nowrap;
}
.vxp-btn svg { width: 19px; height: 19px; }
.vxp-btn--primary { color: #fff; background: var(--vx-grad, linear-gradient(135deg, #ff2d7e, #a855f7)); box-shadow: 0 10px 30px -10px rgba(255, 45, 126, .7); }
.vxp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(255, 45, 126, .85); }
.vxp-btn--super { color: #04222b; background: var(--vx-grad-cool, linear-gradient(135deg, #16e0ff, #a855f7)); box-shadow: 0 10px 30px -10px rgba(22, 224, 255, .6); }
.vxp-btn--super:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(22, 224, 255, .8); }
.vxp-btn--ghost { color: #fff; background: var(--vx-glass, rgba(255,255,255,.045)); border-color: var(--vx-border-strong, rgba(255,255,255,.16)); backdrop-filter: blur(12px); }
.vxp-btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.3); }
.vxp-btn--icon { width: 50px; padding: 0; flex: none; color: var(--vx-text-2, rgba(255,255,255,.72)); background: var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16)); }
.vxp-btn--icon:hover { color: #fff; transform: translateY(-2px); }
.vxp-btn--subscribe { color: #fff; background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 10px 30px -10px rgba(168, 85, 247, .7); }
.vxp-btn--subscribe b { font-weight: 800; } .vxp-btn--subscribe small { font-weight: 500; opacity: .8; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.vxp-hero { position: relative; isolation: isolate; }
.vxp-hero__cover { position: relative; height: 320px; overflow: hidden; }
@container vxp (min-width: 900px) { .vxp-hero__cover { height: 400px; } }
.vxp-hero__cover-img { position: absolute; inset: -6% -2% 0; background-size: cover; background-position: center; will-change: transform; }
.vx-variant-creator .vxp-hero__cover-img { animation: vxp-kenburns 16s ease-in-out infinite alternate; }
@keyframes vxp-kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.vxp-hero__cover-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,18,.35) 0%, transparent 28%, rgba(10,6,18,.4) 60%, var(--vx-bg, #0a0612) 100%); }
.vxp-hero__cover-edit { position: absolute; right: 16px; top: 16px; display: none; align-items: center; gap: 8px; white-space: nowrap; padding: 9px 15px; border-radius: 50px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(10,6,18,.55); border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16)); backdrop-filter: blur(10px); cursor: pointer; transition: background .2s, transform .2s; }
.vxp-hero__cover-edit svg { width: 15px; height: 15px; }
.vxp-hero__cover-edit:hover { background: rgba(10,6,18,.8); transform: translateY(-1px); }
.vx-variant-self .vxp-hero__cover-edit { display: inline-flex; }

/* meta row */
.vxp-hero__meta { position: relative; z-index: 2; width: min(960px, 100%); margin: -84px auto 0; padding: 0 max(16px, 4vw); }

/* avatar */
.vxp-avatar { position: relative; width: 132px; height: 132px; border-radius: 50%; margin-bottom: 16px; }
.vxp-avatar__img { width: 100%; height: 100%; border-radius: 50%; background-size: cover; background-position: center; border: 4px solid var(--vx-bg, #0a0612); box-shadow: 0 16px 46px -16px rgba(0,0,0,.9); }
.vx-variant-single .vxp-avatar__img { box-shadow: 0 0 0 2px rgba(255,45,126,.5), 0 0 30px -4px rgba(255,45,126,.55), 0 16px 46px -16px rgba(0,0,0,.9); }
.vx-variant-self .vxp-avatar__img { box-shadow: 0 0 0 2px rgba(22,224,255,.4), 0 0 26px -6px rgba(22,224,255,.4), 0 16px 46px -16px rgba(0,0,0,.9); }
/* creator: animated conic ring */
.vx-variant-creator .vxp-avatar { padding: 5px; }
.vx-variant-creator .vxp-avatar::before { content: ""; position: absolute; inset: 0; border-radius: 50%; z-index: -1; background: conic-gradient(from 0deg, #ffd84d, #ff9100, #ff2d7e, #a855f7, #16e0ff, #ffd84d); animation: vxp-ring 8s linear infinite; }
@keyframes vxp-ring { to { transform: rotate(360deg); } }
.vx-variant-creator .vxp-avatar__img { border-width: 5px; }

/* couple Venn */
.vxp-avatar--couple { width: 200px; height: 132px; }
.vxp-avatar--couple .vxp-avatar__c { position: absolute; top: 0; width: 116px; height: 116px; border-radius: 50%; background-size: cover; background-position: center; border: 4px solid var(--vx-bg, #0a0612); }
.vxp-avatar--couple .vxp-av-a { left: 0; z-index: 1; box-shadow: 0 0 0 2px rgba(255,45,126,.55), 0 0 28px -4px rgba(255,45,126,.5); }
.vxp-avatar--couple .vxp-av-b { right: 0; z-index: 2; box-shadow: 0 0 0 2px rgba(22,224,255,.55), 0 0 28px -4px rgba(22,224,255,.5); }
.vxp-avatar--couple .vxp-av-amp { position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 0 24px -2px rgba(168,85,247,.8); }
.vxp-avatar--couple .vxp-av-amp svg { width: 21px; height: 21px; }

/* online dot on avatar */
.vxp-avatar__dot { position: absolute; right: 8px; bottom: 8px; width: 22px; height: 22px; border-radius: 50%; border: 4px solid var(--vx-bg, #0a0612); }
.vxp-avatar--couple .vxp-avatar__dot { right: 2px; }
.vxp-avatar__dot--online { background: var(--vx-green, #2ecc71); box-shadow: 0 0 0 0 rgba(46,204,113,.55); animation: vxp-pulse 2.4s ease-out infinite; }
.vxp-avatar__dot--recent { background: var(--vx-amber, #ffb23e); }
.vxp-avatar__dot--offline { background: #5a5566; }
@keyframes vxp-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); } }

/* name + sub */
.vxp-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(28px, 5vw, 42px); line-height: 1.04; letter-spacing: -.02em; margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 10px; }
.vxp-name b { font-weight: 500; opacity: .85; }
.vxp-sub { margin-top: 10px; font-size: 15px; font-weight: 500; color: var(--vx-text-2, rgba(255,255,255,.72)); display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; }
.vxp-sub span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.vxp-sub svg { width: 15px; height: 15px; opacity: .8; }
/* online text states */
.vxp-online { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; white-space: nowrap; }
.vxp-online::before { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.vxp-online--online { color: var(--vx-green, #2ecc71); } .vxp-online--online::before { background: var(--vx-green, #2ecc71); box-shadow: 0 0 8px var(--vx-green, #2ecc71); }
.vxp-online--recent { color: var(--vx-amber, #ffb23e); } .vxp-online--recent::before { background: var(--vx-amber, #ffb23e); }
.vxp-online--offline { color: var(--vx-text-3, rgba(255,255,255,.45)); } .vxp-online--offline::before { background: transparent; border: 1.5px solid currentColor; }

/* badges */
.vxp-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.vxp-badge { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap; backdrop-filter: blur(10px); }
.vxp-badge svg { width: 14px; height: 14px; }
.vxp-badge--verified { color: var(--vx-cyan, #16e0ff); background: rgba(22,224,255,.1); border: 1px solid rgba(22,224,255,.4); }
.vxp-badge--boost { color: #2b1a00; background: linear-gradient(135deg, var(--vx-gold, #ffd84d), var(--vx-gold-2, #ff9100)); box-shadow: 0 0 16px -3px rgba(255,145,0,.7); }
.vxp-badge--creator { color: #2b1a00; background: linear-gradient(135deg, #ffd84d, #ff9100); box-shadow: 0 0 18px -3px rgba(255,145,0,.7); }
.vxp-badge--premium { color: #fff; background: var(--vx-grad, linear-gradient(135deg, #ff2d7e, #a855f7)); }
.vxp-badge--couple { color: #fff; background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 0 16px -4px rgba(168,85,247,.7); }
.vxp-badge--self { color: var(--vx-cyan, #16e0ff); background: rgba(22,224,255,.08); border: 1px solid rgba(22,224,255,.3); }
.vxp-badge--lite { color: var(--vx-text-2, rgba(255,255,255,.72)); background: var(--vx-glass-strong, rgba(255,255,255,.08)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); }

/* ============================================================
   ACTION BAR
   ============================================================ */
.vxp-actions { margin-top: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vxp-actions .vxp-btn--like { flex: 0 1 auto; }

/* stats strip */
.vxp-stats { width: min(960px, 100%); margin: 24px auto 0; padding: 0 max(16px, 4vw); }
.vxp-stats__inner { display: flex; gap: 0; padding: 16px 6px; border-radius: 20px; background: var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); backdrop-filter: blur(14px); overflow-x: auto; scrollbar-width: none; }
.vxp-stats__inner::-webkit-scrollbar { display: none; }
.vxp-stat { flex: 1; min-width: 84px; text-align: center; padding: 0 10px; border-right: 1px solid var(--vx-border, rgba(255,255,255,.09)); }
.vxp-stat:last-child { border-right: 0; }
.vxp-stat__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(19px, 3.4vw, 24px); line-height: 1; display: inline-flex; align-items: center; gap: 5px; }
.vxp-stat__num svg { width: 15px; height: 15px; }
.vxp-stat--rating .vxp-stat__num { color: var(--vx-gold, #ffd84d); }
.vxp-stat--vibes .vxp-stat__num { color: var(--vx-cyan, #16e0ff); }
.vxp-stat__label { margin-top: 7px; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--vx-text-3, rgba(255,255,255,.45)); }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.vxp-mobilebar { position: sticky; bottom: 0; z-index: 30; display: none; align-items: center; gap: 10px; margin-top: 24px; padding: 12px max(16px,4vw) max(12px, env(safe-area-inset-bottom)); background: linear-gradient(180deg, transparent, rgba(5,3,9,.92) 32%); backdrop-filter: blur(16px); }
.vxp-mobilebar .vxp-btn { flex: 1; }
.vxp-mobilebar .vxp-btn--icon { flex: none; }
@container vxp (max-width: 768px) {
  .vx-variant-single .vxp-actions, .vx-variant-couple .vxp-actions, .vx-variant-creator .vxp-actions { display: none; }
  .vx-variant-single .vxp-mobilebar, .vx-variant-couple .vxp-mobilebar, .vx-variant-creator .vxp-mobilebar, .vx-variant-self .vxp-mobilebar { display: flex; }
}

/* ============================================================
   TABS (BB object-nav skinned) + our wrapper
   ============================================================ */
.vxp-tabs-wrap { position: sticky; top: 0; z-index: 25; margin-top: 26px; padding: 10px max(16px,4vw); background: linear-gradient(180deg, var(--vx-bg, #0a0612) 62%, transparent); }
.vxp-tabs { width: min(960px,100%); margin: 0 auto; display: flex; gap: 6px; padding: 6px; border-radius: 50px; background: rgba(10,6,18,.85); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); backdrop-filter: blur(20px); overflow-x: auto; scrollbar-width: none; }
.vxp-tabs::-webkit-scrollbar { display: none; }
.vxp-tab { flex: none; display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--vx-text-2, rgba(255,255,255,.72)); background: none; border: 0; cursor: pointer; white-space: nowrap; transition: color .2s, background .25s; }
.vxp-tab.is-active { color: #fff; background: var(--vx-grad, linear-gradient(135deg,#ff2d7e,#a855f7)); box-shadow: 0 6px 20px -8px rgba(255,45,126,.7); }
.vx-variant-creator .vxp-tab.is-active { background: linear-gradient(135deg,#ffd84d,#ff9100); color: #2b1a00; }
.vx-variant-couple .vxp-tab.is-active { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.vx-variant-self .vxp-tab.is-active { background: linear-gradient(135deg,#16e0ff,#5b8def); color: #04222b; }

/* glass cards in tab content */
.vxp-body { width: min(960px,100%); margin: 8px auto 0; padding: 14px max(16px,4vw) 60px; }
.vxp-grid2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@container vxp (min-width: 720px) { .vxp-grid2 { grid-template-columns: 1fr 1fr; } }
.vxp-card { border-radius: 20px; background: var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); padding: 22px; backdrop-filter: blur(14px); }
.vxp-card--span { grid-column: 1 / -1; }
.vxp-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.vxp-card__ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; color: var(--vx-pink, #ff2d7e); background: rgba(255,45,126,.1); border: 1px solid rgba(255,45,126,.22); }
.vxp-card__ic svg { width: 17px; height: 17px; }
.vxp-card__title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; }
.vxp-card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.85); }
.vxp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vxp-chip { padding: 8px 14px; border-radius: 50px; font-size: 13.5px; font-weight: 600; color: #fff; background: var(--vx-glass-strong, rgba(255,255,255,.08)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); }

/* ============================================================
   EMPTY STATE (new user / no photo / no interests)
   ============================================================ */
.vxp-empty { width: min(960px,100%); margin: 18px auto 0; padding: 0 max(16px,4vw) 50px; }
.vxp-empty__card { border-radius: 22px; padding: 30px 26px; background: radial-gradient(90% 70% at 50% 0%, rgba(255,45,126,.1), transparent 62%), var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); text-align: center; }
.vxp-empty__icon { width: 72px; height: 72px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--vx-grad, linear-gradient(135deg,#ff2d7e,#a855f7)); box-shadow: 0 12px 34px -10px rgba(255,45,126,.8); }
.vxp-empty__icon svg { width: 32px; height: 32px; }
.vxp-empty__card h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 23px; margin: 0 0 8px; }
.vxp-empty__card > p { font-size: 15px; color: var(--vx-text-2, rgba(255,255,255,.72)); margin: 0 auto 22px; max-width: 380px; line-height: 1.5; }
.vxp-empty__steps { display: grid; gap: 10px; max-width: 440px; margin: 0 auto 24px; text-align: left; }
.vxp-estep { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: 15px; background: var(--vx-glass-strong, rgba(255,255,255,.06)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); transition: border-color .2s; }
.vxp-estep:hover { border-color: rgba(255,45,126,.4); }
.vxp-estep__num { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px; color: var(--vx-pink, #ff2d7e); background: rgba(255,45,126,.12); border: 1px solid rgba(255,45,126,.3); }
.vxp-estep__done .vxp-estep__num { color: #fff; background: var(--vx-green, #2ecc71); border-color: transparent; }
.vxp-estep__txt { flex: 1; min-width: 0; }
.vxp-estep__txt b { font-size: 14.5px; font-weight: 700; }
.vxp-estep__txt p { margin: 2px 0 0; font-size: 12.5px; color: var(--vx-text-3, rgba(255,255,255,.45)); }
.vxp-estep__txt p b { color: var(--vx-pink, #ff2d7e); }
.vxp-estep__chk { color: var(--vx-green, #2ecc71); flex: none; }
.vxp-estep__chk svg { width: 18px; height: 18px; }
.vxp-empty__card .vxp-btn { min-width: 240px; }
/* empty avatar with dashed add-ring — VIBEX gradient placeholder (ITER-3) */
.vxp-avatar--empty .vxp-avatar__img { background: linear-gradient(135deg, #ff2d7e 0%, #a855f7 55%, #16e0ff 100%); display: grid; place-items: center; }
.vxp-avatar--empty::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px dashed rgba(255,45,126,.5); }

/* ============================================================
   MATCH MODAL — VIBEX OWN STYLE (intentionally NOT Tinder 1:1)
   Brand signature: Venn-overlap avatars + neon spark-thread, vertical glass
   card, rising sparks (✦) instead of falling confetti, "Взаємний вайб".
   ============================================================ */
.vxp-match { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 26px; opacity: 0; pointer-events: none; transition: opacity .4s var(--vxp-out); }
.vxp-match.is-open { opacity: 1; pointer-events: auto; }
.vxp-match__scrim { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 42%, rgba(168,85,247,.3), transparent 70%), rgba(5,3,9,.9); backdrop-filter: blur(10px); }
.vxp-match__sparks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.vxp-spark { position: absolute; bottom: -20px; color: var(--vx-pink, #ff2d7e); font-size: 16px; opacity: 0; }
.vxp-match.is-open .vxp-spark { animation: vxp-rise var(--d, 2.6s) var(--vxp-out) var(--delay, 0s) infinite; }
@keyframes vxp-rise { 0% { opacity: 0; transform: translateY(0) scale(.6) rotate(0); } 15% { opacity: 1; } 100% { opacity: 0; transform: translateY(-86vh) scale(1.1) rotate(var(--r, 160deg)); } }

.vxp-match__card { position: relative; z-index: 1; width: 100%; max-width: 400px; border-radius: 28px; padding: 38px 30px 28px; text-align: center; background: linear-gradient(180deg, rgba(28,16,42,.97), rgba(10,6,18,.99)); border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16)); box-shadow: 0 40px 100px -34px rgba(0,0,0,.92); transform: translateY(30px) scale(.92); transition: transform .5s var(--vxp-spring); }
.vxp-match.is-open .vxp-match__card { transform: none; }
.vxp-match__kicker { font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--vx-pink-2, #ff6ad5); margin-bottom: 18px; }
/* Venn avatars w/ spark thread (brand-consistent with couple hero) */
.vxp-match__avatars { position: relative; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.vxp-match__av { position: absolute; top: 4px; width: 112px; height: 112px; border-radius: 50%; background-size: cover; background-position: center; border: 3px solid var(--vx-bg, #0a0612); }
.vxp-match__av--a { left: calc(50% - 96px); z-index: 1; box-shadow: 0 0 0 2px rgba(255,45,126,.6), 0 0 30px -4px rgba(255,45,126,.6); }
.vxp-match__av--b { right: calc(50% - 96px); z-index: 2; box-shadow: 0 0 0 2px rgba(22,224,255,.6), 0 0 30px -4px rgba(22,224,255,.6); }
.vxp-match.is-open.vxp-match--animate .vxp-match__av { transform: scale(0); }
.vxp-match.is-open.vxp-match--animate .vxp-match__av--a { animation: vxp-pop .6s var(--vxp-spring) .1s forwards; }
.vxp-match.is-open.vxp-match--animate .vxp-match__av--b { animation: vxp-pop .6s var(--vxp-spring) .22s forwards; }
@keyframes vxp-pop { to { transform: scale(1); } }
/* central spark node where they overlap */
.vxp-match__node { position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--vx-grad, linear-gradient(135deg,#ff2d7e,#a855f7)); box-shadow: 0 0 30px -2px rgba(255,45,126,.9); }
.vxp-match.is-open:not(.vxp-match--animate) .vxp-match__node { animation: vxp-beat 1.4s ease-in-out 1s infinite; }
.vxp-match.is-open.vxp-match--animate .vxp-match__node { transform: scale(0); animation: vxp-pop .5s var(--vxp-spring) .42s forwards, vxp-beat 1.4s ease-in-out 1s infinite; }
@keyframes vxp-beat { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.16); } }
.vxp-match__node svg { width: 24px; height: 24px; }
.vxp-match__title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(30px, 8vw, 40px); line-height: 1.02; letter-spacing: -.02em; margin: 14px 0 10px; background: var(--vx-grad, linear-gradient(135deg,#ff2d7e,#a855f7)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vxp-match__sub { font-size: 15px; line-height: 1.5; color: var(--vx-text-2, rgba(255,255,255,.72)); margin: 0 0 26px; }
.vxp-match__sub b { color: #fff; font-weight: 700; }
.vxp-match__cta { display: grid; gap: 11px; }
.vxp-match.is-open.vxp-match--animate .vxp-match__cta { transform: translateY(30px); opacity: 0; animation: vxp-slideup .5s var(--vxp-out) .6s forwards; }
@keyframes vxp-slideup { to { transform: none; opacity: 1; } }
.vxp-match__cta .vxp-btn { width: 100%; }
.vxp-match__close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--vx-text-2, rgba(255,255,255,.72)); background: var(--vx-glass, rgba(255,255,255,.06)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); cursor: pointer; }
.vxp-match__close svg { width: 16px; height: 16px; }

/* ============================================================
   GUEST OVERLAY
   ============================================================ */
.vxp-guest { position: relative; }
.vxp-guest__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; padding: 18px 20px; border-radius: 18px; background: radial-gradient(120% 100% at 0 0, rgba(255,45,126,.12), transparent 60%), var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid rgba(255,45,126,.25); }
.vxp-guest__cta p { flex: 1; min-width: 180px; margin: 0; font-size: 14.5px; font-weight: 600; }
.vxp-guest__cta p span { display: block; font-weight: 500; font-size: 12.5px; color: var(--vx-text-3, rgba(255,255,255,.45)); margin-top: 2px; }

/* full-screen guest gate (when a guest tries a gated action) */
.vxp-guest__blur { position: relative; }
.vxp-guest__blur > .vxp-body, .vxp-guest__blur .vxp-stats { filter: blur(7px); pointer-events: none; user-select: none; }
.vxp-guest__lock { position: absolute; inset: 0; z-index: 20; display: flex; align-items: center; justify-content: center; padding: 28px; background: linear-gradient(180deg, transparent, rgba(5,3,9,.6) 30%, rgba(5,3,9,.92)); }
.vxp-guest__lock-card { text-align: center; max-width: 360px; }
.vxp-guest__lock-card .vxp-empty__icon { margin-bottom: 16px; }
.vxp-guest__lock-card h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 8px; }
.vxp-guest__lock-card p { font-size: 14.5px; color: var(--vx-text-2, rgba(255,255,255,.72)); margin: 0 0 20px; }
.vxp-guest__lock-card .vxp-btn { width: 100%; margin-bottom: 10px; }

/* ============================================================
   CREATOR — Lite vs Premium tiers
   Lite: creator badge + subscribe + content + rating (muted, no gold ring).
   Premium: + verified + premium + boost + priority (gold everything).
   Controlled by .vx-creator-lite / .vx-creator-premium on the .vxp root.
   ============================================================ */
/* Lite — softer, silver/violet, NO animated gold ring */
.vx-creator-lite.vx-variant-creator .vxp-avatar { padding: 0; }
.vx-creator-lite.vx-variant-creator .vxp-avatar::before { display: none; }
.vx-creator-lite.vx-variant-creator .vxp-avatar__img { border-width: 4px; box-shadow: 0 0 0 2px rgba(168,85,247,.45), 0 0 26px -6px rgba(168,85,247,.4), 0 16px 46px -16px rgba(0,0,0,.9); }
.vx-creator-lite .vxp-tab.is-active { background: linear-gradient(135deg,#a855f7,#7c3aed); color: #fff; }
.vxp-tier-note { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 50px; }
.vxp-tier-note--lite { color: var(--vx-purple, #a855f7); background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.3); }
.vxp-tier-note--premium { color: #2b1a00; background: linear-gradient(135deg,#ffd84d,#ff9100); }
.vxp-tier-note svg { width: 13px; height: 13px; }
/* Premium — keep the animated gold ring (default creator) + priority chip pulse */
.vx-creator-premium .vxp-badge--boost { animation: vxp-boostpulse 1.9s ease-in-out infinite; }
@keyframes vxp-boostpulse { 0%,100% { box-shadow: 0 0 16px -4px rgba(255,145,0,.6); } 50% { box-shadow: 0 0 24px 0 rgba(255,145,0,.95); } }

/* ============================================================
   PHOTOS TAB — masonry + private/locked
   ============================================================ */
.vxp-photos { columns: 2; column-gap: 12px; }
@container vxp (min-width: 600px) { .vxp-photos { columns: 3; } }
@container vxp (min-width: 900px) { .vxp-photos { columns: 4; } }
.vxp-photo { position: relative; break-inside: avoid; margin-bottom: 12px; border-radius: 16px; overflow: hidden; cursor: pointer; border: 1px solid var(--vx-border, rgba(255,255,255,.09)); }
.vxp-photo__img { width: 100%; display: block; background-size: cover; background-position: center; transition: transform .4s var(--vxp-out); }
.vxp-photo:hover .vxp-photo__img { transform: scale(1.05); }
.vxp-photo--locked .vxp-photo__img { filter: blur(18px); transform: scale(1.12); }
.vxp-photo__lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #fff; background: linear-gradient(180deg, transparent, rgba(10,6,18,.45)); }
.vxp-photo__lock svg { width: 24px; height: 24px; }
.vxp-photo__lock b { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; }
.vxp-photo__lock span { font-size: 11.5px; color: rgba(255,255,255,.78); }
.vxp-photo__badge { position: absolute; top: 9px; left: 9px; height: 24px; padding: 0 10px; border-radius: 50px; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; backdrop-filter: blur(8px); }
.vxp-photo__badge svg { width: 11px; height: 11px; }
.vxp-photo__badge--ppv { color: #2b1a00; background: linear-gradient(135deg,#ffd84d,#ff9100); }
.vxp-photo__badge--subs { color: #fff; background: linear-gradient(135deg,#a855f7,#7c3aed); }

/* lightbox */
.vxp-lightbox { position: fixed; inset: 0; z-index: 310; display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; pointer-events: none; background: rgba(5,3,9,.95); transition: opacity .3s; }
.vxp-lightbox.is-open { opacity: 1; pointer-events: auto; }
.vxp-lightbox__img { max-width: 90vw; max-height: 86vh; width: min(560px, 90vw); aspect-ratio: 3/4; border-radius: 22px; background-size: cover; background-position: center; box-shadow: 0 40px 90px -30px rgba(0,0,0,.9); }
.vxp-lightbox__close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--vx-glass, rgba(255,255,255,.06)); border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16)); cursor: pointer; }
.vxp-lightbox__close svg { width: 22px; height: 22px; }

/* subscribe bottom-sheet (creator) */
.vxp-sheet { position: fixed; inset: 0; z-index: 305; display: flex; align-items: flex-end; opacity: 0; pointer-events: none; transition: opacity .35s var(--vxp-out); }
.vxp-sheet.is-open { opacity: 1; pointer-events: auto; }
.vxp-sheet__scrim { position: absolute; inset: 0; background: rgba(5,3,9,.7); backdrop-filter: blur(6px); }
.vxp-sheet__panel { position: relative; z-index: 1; width: 100%; max-width: 440px; margin: 0 auto; border-radius: 26px 26px 0 0; padding: 26px 22px calc(26px + env(safe-area-inset-bottom)); background: var(--vx-bg-3, #1a1226); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); border-bottom: 0; transform: translateY(100%); transition: transform .42s var(--vxp-spring); }
.vxp-sheet.is-open .vxp-sheet__panel { transform: none; }
.vxp-sheet__grab { width: 40px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.25); margin: -8px auto 16px; }

/* action sheet items: share / report / block ("..." menu, profile view) —
   inline styles in vibex-profile-view.js cover layout/color; this fills the gaps
   inline styles can't do (hover, transition) and constrains the SVG icons,
   which otherwise render at the browser's unstyled default size. */
.vxp-asheet__item { transition: background .2s; }
.vxp-asheet__item:hover { background: var(--vx-glass, rgba(255,255,255,.04)); }
.vxp-asheet__item svg { width: 19px; height: 19px; flex: none; }

.vxp-sheet h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 21px; margin: 0 0 4px; text-align: center; }
.vxp-sheet > .vxp-sheet__panel > p { text-align: center; font-size: 14px; color: var(--vx-text-2, rgba(255,255,255,.72)); margin: 0 0 20px; }
.vxp-tiers { display: grid; gap: 11px; grid-template-columns: repeat(3, 1fr); margin-bottom: 16px; }
.vxp-tier { position: relative; text-align: center; padding: 18px 12px; border-radius: 16px; cursor: pointer; background: var(--vx-glass-strong, rgba(255,255,255,.06)); border: 1px solid var(--vx-border, rgba(255,255,255,.09)); transition: transform .2s var(--vxp-spring), border-color .2s; }
.vxp-tier:hover { transform: translateY(-3px); border-color: rgba(168,85,247,.5); }
.vxp-tier--best { border-color: transparent; }
.vxp-tier--best::before { content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1.5px; background: linear-gradient(135deg,#a855f7,#7c3aed); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.vxp-tier__save { position: absolute; top: -10px; left: 50%; translate: -50% 0; font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 50px; color: #fff; background: linear-gradient(135deg,#a855f7,#7c3aed); }
.vxp-tier__period { font-size: 12.5px; font-weight: 600; color: var(--vx-text-2, rgba(255,255,255,.72)); }
.vxp-tier__price { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px; margin: 6px 0 2px; }
.vxp-tier__note { font-size: 11px; color: var(--vx-text-3, rgba(255,255,255,.45)); }

/* toast */
.vxp-toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 160%); z-index: 320; color: #fff; font-family: "Manrope", sans-serif; font-size: 13.5px; font-weight: 600; background: rgba(26,14,38,.97); border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16)); backdrop-filter: blur(18px); padding: 12px 18px; border-radius: 14px; box-shadow: 0 18px 50px -16px rgba(0,0,0,.8); transition: transform .4s var(--vxp-spring); max-width: 86vw; display: flex; align-items: center; gap: 9px; }
.vxp-toast.is-show { transform: translate(-50%, 0); }
.vxp-toast svg { width: 17px; height: 17px; color: var(--vx-pink, #ff2d7e); flex: none; }

/* ============================================================
   BUDDYBOSS NATIVE-DOM SKIN (Activity / Connections / Groups tabs)
   When a tab shows real BB content, skin its DOM under body.vibex-profile-page.
   We never touch BB IDs/AJAX hooks — visual only.
   ============================================================ */
body.vibex-profile-page #buddypress { background: none; }
body.vibex-profile-page #buddypress .activity-list li,
body.vibex-profile-page #buddypress .bp-list li {
  border-radius: 18px; margin: 0 0 12px; padding: 18px;
  background: var(--vx-glass, rgba(255,255,255,.045)); border: 1px solid var(--vx-border, rgba(255,255,255,.09));
}
body.vibex-profile-page #buddypress .activity-list li .activity-content { color: rgba(255,255,255,.85); }
body.vibex-profile-page #buddypress .activity-header,
body.vibex-profile-page #buddypress .activity-header a { color: #fff; }
body.vibex-profile-page #buddypress .activity-meta a {
  color: var(--vx-text-2, rgba(255,255,255,.72)); border-radius: 50px; border: 1px solid var(--vx-border, rgba(255,255,255,.09)); padding: 6px 13px;
}
body.vibex-profile-page #buddypress .activity-meta a:hover { color: #fff; border-color: var(--vx-pink, #ff2d7e); }
/* member/group grids */
body.vibex-profile-page #buddypress #members-list li .item-avatar img,
body.vibex-profile-page #buddypress #groups-list li .item-avatar img { border-radius: 16px; }
body.vibex-profile-page #buddypress .item-title a { color: #fff; font-weight: 700; }
/* BB submit/primary buttons */
body.vibex-profile-page #buddypress .generic-button a,
body.vibex-profile-page #buddypress a.button {
  border-radius: 50px; border: 1px solid var(--vx-border-strong, rgba(255,255,255,.16));
  background: var(--vx-glass, rgba(255,255,255,.045)); color: #fff; padding: 9px 16px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@container vxp (max-width: 480px) { .vxp-name { font-size: 28px; } }
@media (prefers-reduced-motion: reduce) {
  .vx-variant-creator .vxp-hero__cover-img, .vx-variant-creator .vxp-avatar::before,
  .vxp-avatar__dot--online, .vxp-match__node, .vxp-match.is-open .vxp-spark { animation: none !important; }
  .vxp *, .vxp *::before, .vxp *::after { transition-duration: .14s !important; }
}

/* ════════════════════════════════════════════════════════════
   PREMIUM POLISH PASS
   Доповнює існуючі класи (не переписує). Глибина, матеріальність,
   мікросвітіння — рівень преміум-продукту. Усе на --vx-* токенах.
   ════════════════════════════════════════════════════════════ */

/* ---- 1 · HERO: grain + vignette + багатший градієнт-меш ---- */
.vxp-hero__cover::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* верхній блиск + внутрішня віньєтка для кінематографічної глибини */
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(255,255,255,.07), transparent 50%),
    radial-gradient(140% 120% at 50% 120%, rgba(0,0,0,.55), transparent 60%);
  box-shadow: inset 0 0 120px 10px rgba(5,3,9,.5);
}
/* делікатне зерно поверх усього профілю (як на Home) */
.vxp::after {
  content: ""; position: absolute; inset: 0; z-index: 40; pointer-events: none; opacity: .028;
  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;
}
/* тонке фірмове сяйво ззаду меta-блоку */
.vxp-hero__meta::before {
  content: ""; position: absolute; left: max(16px,4vw); top: -40px; width: 240px; height: 240px; z-index: -1;
  background: radial-gradient(circle, rgba(255,45,126,.18), transparent 68%); pointer-events: none; filter: blur(8px);
}
.vx-variant-couple .vxp-hero__meta::before { background: radial-gradient(circle, rgba(168,85,247,.2), transparent 68%); }
.vx-variant-creator .vxp-hero__meta::before { background: radial-gradient(circle, rgba(255,145,0,.16), transparent 68%); }
.vx-variant-self .vxp-hero__meta::before { background: radial-gradient(circle, rgba(22,224,255,.15), transparent 68%); }

/* ---- 2 · AVATAR: двошарове кільце + внутрішній highlight ---- */
.vxp-avatar__img, .vxp-avatar--couple .vxp-avatar__c {
  position: relative;
}
.vxp-avatar::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: inset 0 2px 5px rgba(255,255,255,.18), inset 0 -8px 18px rgba(0,0,0,.4);
}
.vxp-avatar--couple::after, .vxp-avatar--empty::after { display: none; }

/* ---- 3 · BUTTONS: inset top-highlight + плавніший підйом + shimmer ---- */
.vxp-btn { position: relative; overflow: hidden; }
.vxp-btn--primary, .vxp-btn--super, .vxp-btn--subscribe {
  box-shadow: 0 10px 30px -10px rgba(255,45,126,.7), inset 0 1px 0 rgba(255,255,255,.28);
}
.vxp-btn--super { box-shadow: 0 10px 30px -10px rgba(22,224,255,.6), inset 0 1px 0 rgba(255,255,255,.4); }
.vxp-btn--subscribe { box-shadow: 0 10px 30px -10px rgba(168,85,247,.7), inset 0 1px 0 rgba(255,255,255,.28); }
.vxp-btn--ghost, .vxp-btn--icon { box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
/* діагональний відблиск при наведенні на головні дії */
.vxp-btn--primary::after, .vxp-btn--super::after, .vxp-btn--subscribe::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: none;
}
.vxp-btn--primary:hover::after, .vxp-btn--super:hover::after, .vxp-btn--subscribe:hover::after {
  animation: vxp-shimmer .8s var(--vxp-out);
}
@keyframes vxp-shimmer { from { left: -120%; } to { left: 160%; } }
.vxp-btn--primary:hover, .vxp-btn--super:hover, .vxp-btn--subscribe:hover { transform: translateY(-2px) scale(1.015); }

/* ---- 4 · STATS: матеріальніша панель + hover на кожну метрику ---- */
.vxp-stats__inner {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 50px -30px rgba(0,0,0,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.vxp-stat { border-radius: 12px; transition: background .2s var(--vxp-out); cursor: default; }
.vxp-stat:hover { background: rgba(255,255,255,.04); }
.vxp-stat__num { letter-spacing: -.01em; }

/* ---- 5 · TABS: inset highlight + тоньша рамка ---- */
.vxp-tabs { box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 36px -22px rgba(0,0,0,.9); }
.vxp-tab:not(.is-active):hover { color: #fff; background: rgba(255,255,255,.04); }
.vxp-tab.is-active { box-shadow: 0 6px 20px -8px rgba(255,45,126,.7), inset 0 1px 0 rgba(255,255,255,.3); }

/* ---- 6 · GLASS CARDS: верхній gradient-edge + hover-lift зі світінням ---- */
.vxp-card {
  position: relative; isolation: isolate;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 50px -34px rgba(0,0,0,.85);
  transition: transform .28s var(--vxp-out), border-color .28s, box-shadow .28s;
}
.vxp-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.16), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .7;
}
.vxp-card:hover {
  transform: translateY(-3px); border-color: rgba(255,45,126,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.9), 0 0 40px -16px rgba(255,45,126,.4);
}
.vx-variant-couple .vxp-card:hover { border-color: rgba(168,85,247,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.9), 0 0 40px -16px rgba(168,85,247,.45); }
.vx-variant-creator .vxp-card:hover { border-color: rgba(255,145,0,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.9), 0 0 40px -16px rgba(255,145,0,.4); }
.vx-variant-self .vxp-card:hover { border-color: rgba(22,224,255,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.9), 0 0 40px -16px rgba(22,224,255,.4); }
.vxp-card__ic { box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }

/* ---- 7 · CHIPS: інтерактивність + inset highlight ---- */
.vxp-chip {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s var(--vxp-out), border-color .2s, background .2s, color .2s;
}
.vxp-chip:hover { transform: translateY(-2px); border-color: rgba(255,45,126,.45); background: rgba(255,45,126,.08); }

/* ---- 8 · NAME: глибина над cover + tabular nums у віці ---- */
.vxp-name { text-shadow: 0 2px 24px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.35); }
.vxp-name b { font-variant-numeric: tabular-nums; }

/* ---- 9 · BADGES: inset highlight для «металевості» ---- */
.vxp-badge--boost, .vxp-badge--creator, .vxp-badge--premium, .vxp-badge--couple {
  box-shadow: 0 0 16px -3px rgba(255,145,0,.55), inset 0 1px 0 rgba(255,255,255,.4);
}
.vxp-badge--premium { box-shadow: 0 8px 20px -10px rgba(255,45,126,.6), inset 0 1px 0 rgba(255,255,255,.35); }
.vxp-badge--couple { box-shadow: 0 0 16px -4px rgba(168,85,247,.6), inset 0 1px 0 rgba(255,255,255,.3); }
/* пульс-сяйво для boost (преміум-сигнал) */
@media (prefers-reduced-motion: no-preference) {
  .vxp-badge--boost { animation: vxp-boostglow 2.8s ease-in-out infinite; }
  @keyframes vxp-boostglow {
    0%,100% { box-shadow: 0 0 14px -4px rgba(255,145,0,.5), inset 0 1px 0 rgba(255,255,255,.4); }
    50% { box-shadow: 0 0 22px -2px rgba(255,145,0,.85), inset 0 1px 0 rgba(255,255,255,.4); }
  }
}

/* ---- 10 · EMPTY STATE: матеріальніша картка + кроки ---- */
.vxp-empty__card { box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 60px -34px rgba(0,0,0,.85); }
.vxp-estep { box-shadow: inset 0 1px 0 rgba(255,255,255,.05); transition: transform .2s var(--vxp-out), border-color .2s, background .2s; }
.vxp-estep:hover { transform: translateX(3px); background: rgba(255,255,255,.045); }

/* ---- 11 · MATCH MODAL: глибша картка ---- */
.vxp-match__card { box-shadow: 0 40px 100px -34px rgba(0,0,0,.92), inset 0 1px 0 rgba(255,255,255,.1); }

/* ---- 12 · PROFILE COMPLETION WIDGET (нативний BB-віджет, тільки на своєму профілі) ----
   Launch Checklist п.18. BB малює прогрес-кільце/підпункти світлими кольорами
   (#F1F3F5 та системний текст) — перефарбовуємо в темне скло без зміни розмітки. */
.vxp-completion {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-radius: var(--vx-r, 16px);
  background: var(--vx-glass, rgba(255,255,255,.045));
  border: 1px solid var(--vx-line, rgba(255,255,255,.09));
}
.vxp-completion__title {
  margin: 0 0 12px;
  font-size: 14px; font-weight: 800; letter-spacing: .2px;
  color: var(--vx-text-2, rgba(255,255,255,.72));
}
.vxp-completion .profile_completion_wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.vxp-completion .pc_progress_graph path { stroke: rgba(255,255,255,.12); }
.vxp-completion .pc_progress_graph .pc_progress_rate { stroke: var(--vx-pink, #ff2d7e); }
.vxp-completion .progress_text_wrap h3 { margin: 0; color: var(--vx-text, #fff); }
.vxp-completion .progress_text_unit { color: var(--vx-text-3, rgba(255,255,255,.45)); }
.vxp-completion .progress_text_label { color: var(--vx-text-3, rgba(255,255,255,.45)); font-size: 13px; }
.vxp-completion .pc_detailed_progress { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1 1 220px; }
.vxp-completion .single_section_wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: var(--vx-text-2, rgba(255,255,255,.72));
  font-size: 13px;
}
.vxp-completion .single_section_wrap.completed { color: var(--vx-text, #fff); }
.vxp-completion .single_section_wrap .section_ico { color: var(--vx-green, #2ecc71); opacity: .35; }
.vxp-completion .single_section_wrap.completed .section_ico { opacity: 1; }
.vxp-completion .group_link { color: inherit; text-decoration: none; }
.vxp-completion .group_link:hover { color: var(--vx-pink, #ff2d7e); }
.vxp-completion .progress .completed_staus { color: var(--vx-text-3, rgba(255,255,255,.45)); font-size: 12px; }
/* BB-ядро задає .pc_detailed_progress li.incomplete/.completed span.completed_staus
   власними кольорами (#b71717 / #8a2), розрахованими під світлу тему — вони мають
   ВИЩУ специфічність (3 класи + 2 елементи), ніж правило вище (3 класи + 0
   елементів), тому реально перемагають у каскаді й рендерять майже нечитабельний
   тьмяно-червоний текст на тлі #0a0612 (контраст ~3:1, нижче порогу WCAG AA 4.5:1).
   Перебиваємо тим самим селектором + !important. */
.vxp-completion .pc_detailed_progress li.incomplete span.completed_staus { color: var(--vx-text-2, rgba(255,255,255,.7)) !important; }
.vxp-completion .pc_detailed_progress li.completed span.completed_staus { color: var(--vx-green, #2ecc71) !important; }
