/* ============================================
   VirtualGSM Product Page Framework
   Shared chrome + interactive demo primitives
   ============================================ */

/* ── Product hero ── */
.vgp-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: radial-gradient(ellipse at top right, rgba(21, 96, 240, 0.18), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(255, 138, 0, 0.08), transparent 55%),
              #0A0A0A;
  border-bottom: 1px solid #1c1c1c;
}
.vgp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vgp-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 80%);
}
.vgp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .vgp-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .vgp-hero {
    padding: 100px 0 60px;
  }
}
.vgp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FF8A00;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.2);
  margin-bottom: 24px;
}
.vgp-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FF8A00;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF8A00;
  animation: vgpPulse 2s ease-in-out infinite;
}
.vgp-hero h1 {
  font-size: clamp(46px, 5.6vw, 84px);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.vgp-hero h1 .vgp-accent { color: #FF8A00; }
.vgp-hero h1 .vgp-blue   { color: #1560F0; }
.vgp-hero h1 .vgp-strike { text-decoration: line-through; color: #5A5A5A; text-decoration-thickness: 4px; }
.vgp-hero__dek {
  font-size: 20px;
  color: #ABABAB;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 32px;
}
.vgp-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.vgp-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 8px;
  color: #22C55E;
  font-weight: 600;
  font-size: 15px;
}
.vgp-hero__price strong {
  color: #22C55E;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.vgp-hero__price span {
  color: rgba(34, 197, 94, 0.7);
  font-weight: 500;
}

/* ── Demo frame (the big interactive mock) ── */
.vgp-demo {
  position: relative;
  background: #0d0d0d;
  border: 1px solid #242424;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6),
              0 0 0 1px rgba(21, 96, 240, 0.15),
              0 0 60px rgba(21, 96, 240, 0.08);
  isolation: isolate;
}
.vgp-demo__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #161616;
  border-bottom: 1px solid #242424;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5A5A5A;
}
.vgp-demo__dots {
  display: flex;
  gap: 6px;
  margin-right: 10px;
}
.vgp-demo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
}
.vgp-demo__dot--live { background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.6); animation: vgpPulse 1.8s ease-in-out infinite; }
.vgp-demo__url {
  flex: 1;
  text-align: center;
  color: #6a6a6a;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.vgp-demo__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #22C55E;
}
.vgp-demo__body {
  background: #0a0a0a;
  position: relative;
  min-height: 400px;
}
.vgp-demo__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #0f0f0f;
  border-top: 1px solid #242424;
  font-size: 12px;
  color: #6a6a6a;
}
.vgp-demo__caption strong { color: #ababab; }
.vgp-demo__caption .vgp-demo__phase {
  color: #FF8A00;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ── Sticky product subnav ── */
.vgp-subnav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #1c1c1c;
}
.vgp-subnav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  overflow-x: auto;
}
.vgp-subnav__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: #fff;
  padding-right: 24px;
  border-right: 1px solid #242424;
  white-space: nowrap;
}
.vgp-subnav__brand .vgp-accent { color: #FF8A00; }
.vgp-subnav__links {
  display: flex;
  gap: 18px;
}
.vgp-subnav__link {
  font-size: 13px;
  font-weight: 500;
  color: #ABABAB;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.vgp-subnav__link:hover { color: #fff; }
.vgp-subnav__cta {
  margin-left: auto;
}
@media (max-width: 768px) {
  .vgp-subnav__cta { display: none; }
}

/* ── Feature row (alternating left/right) ── */
.vgp-feature {
  padding: 100px 0;
  border-bottom: 1px solid #161616;
}
.vgp-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vgp-feature--reverse .vgp-feature__inner > .vgp-feature__copy { order: 2; }
@media (max-width: 1024px) {
  .vgp-feature__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vgp-feature--reverse .vgp-feature__inner > .vgp-feature__copy { order: unset; }
}
.vgp-feature h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
  line-height: 1;
}
.vgp-feature__lede {
  font-size: 19px;
  color: #ABABAB;
  margin-bottom: 28px;
  max-width: 480px;
}
.vgp-feature__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.vgp-feature__bullet {
  display: block;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(21, 96, 240, 0.55);
  border-radius: 0 8px 8px 0;
  color: #B8B8B8;
  font-size: 15px;
  line-height: 1.6;
  transition: border-left-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.vgp-feature__bullet:hover {
  border-left-color: #FF8A00;
  background: rgba(255, 138, 0, 0.045);
  transform: translateX(2px);
}
.vgp-feature__bullet strong {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

/* ── Stat strip ── */
.vgp-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vgp-stat-strip { grid-template-columns: 1fr 1fr; }
}
.vgp-stat-strip__cell {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid #1c1c1c;
}
.vgp-stat-strip__cell:last-child { border-right: 0; }
@media (max-width: 768px) {
  .vgp-stat-strip__cell:nth-child(2) { border-right: 0; }
  .vgp-stat-strip__cell:nth-child(-n+2) { border-bottom: 1px solid #1c1c1c; }
}
.vgp-stat-strip__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.vgp-stat-strip__num .vgp-stat-strip__suffix { color: #FF8A00; font-size: 32px; }
.vgp-stat-strip__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5A5A5A;
  margin-top: 8px;
  display: block;
}

/* ── Pricing block ── */
.vgp-price-block {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vgp-price-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(21, 96, 240, 0.12), transparent 60%);
  pointer-events: none;
}
.vgp-price-block > * { position: relative; }
.vgp-price-block__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: -0.02em;
}
.vgp-price-block__amount .vgp-price-block__currency {
  font-size: 44px;
  color: #5A5A5A;
}
.vgp-price-block__amount .vgp-price-block__per {
  font-size: 22px;
  color: #5A5A5A;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
}
.vgp-price-block__sub {
  color: #ABABAB;
  font-size: 16px;
  margin-top: 16px;
}
.vgp-price-block__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  max-width: 520px;
  margin: 32px auto 36px;
  text-align: left;
}
@media (max-width: 640px) {
  .vgp-price-block__list { grid-template-columns: 1fr; }
}
.vgp-price-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ABABAB;
  font-size: 15px;
}
.vgp-price-block__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #1560F0;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================
   DEMO PRIMITIVES — reusable across products
   ============================================ */

/* Faux device frames */
.vgp-phone {
  width: 280px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 32px;
  padding: 12px 8px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vgp-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 3px;
}
.vgp-phone__screen {
  background: #0f0f0f;
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
  margin-top: 12px;
}

/* Demo cell / table row primitives */
.vgp-row {
  display: grid;
  grid-template-columns: var(--cols, 1fr 1fr 1fr);
  gap: 1px;
  background: #1a1a1a;
  align-items: center;
}
.vgp-row > * {
  background: #0f0f0f;
  padding: 10px 14px;
  font-size: 13px;
  color: #ABABAB;
}
.vgp-row--head > * {
  background: #161616;
  color: #5A5A5A;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Aging badges */
.vgp-age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}
.vgp-age::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.vgp-age--green { color: #22C55E; background: rgba(34,197,94,0.1); }
.vgp-age--green::before { background: #22C55E; box-shadow: 0 0 6px #22C55E; }
.vgp-age--yellow { color: #EAB308; background: rgba(234,179,8,0.1); }
.vgp-age--yellow::before { background: #EAB308; box-shadow: 0 0 6px #EAB308; }
.vgp-age--red { color: #EF4444; background: rgba(239,68,68,0.1); }
.vgp-age--red::before { background: #EF4444; box-shadow: 0 0 6px #EF4444; }

/* Avatar ring (for live presence) */
.vgp-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
}
.vgp-avatar--blue { background: #1560F0; }
.vgp-avatar--orange { background: #FF8A00; }
.vgp-avatar--green { background: #22C55E; }
.vgp-avatar--purple { background: #A855F7; }

/* Source badge (used by IH and LotRival) */
.vgp-src {
  display: inline-block;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  background: #1a1a1a;
  color: #ABABAB;
  border: 1px solid #2a2a2a;
}
.vgp-src--cl { color: #A855F7; border-color: rgba(168,85,247,0.3); }
.vgp-src--ebay { color: #EAB308; border-color: rgba(234,179,8,0.3); }
.vgp-src--cars { color: #1560F0; border-color: rgba(21,96,240,0.3); }
.vgp-src--at { color: #FF8A00; border-color: rgba(255,138,0,0.3); }
.vgp-src--fb { color: #22C55E; border-color: rgba(34,197,94,0.3); }
.vgp-src--mc { color: #EF4444; border-color: rgba(239,68,68,0.3); }

/* Field input mock */
.vgp-field {
  background: #161616;
  border: 1px solid #242424;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-height: 40px;
}
.vgp-field__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5A5A5A;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.vgp-field__value {
  color: #fff;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.vgp-field--filling .vgp-field__value { color: transparent; }
.vgp-field--active { border-color: #1560F0; box-shadow: 0 0 0 3px rgba(21,96,240,0.15); }
.vgp-field--filled { border-color: rgba(34,197,94,0.4); }

.vgp-caret {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: #1560F0;
  margin-left: 1px;
  animation: vgpCaret 0.9s step-end infinite;
  vertical-align: middle;
}
@keyframes vgpCaret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Money pop */
.vgp-money-pop {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #22C55E;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Sparkline / mini chart */
.vgp-spark {
  height: 60px;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(21,96,240,0.05));
}
.vgp-spark__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

/* Race board bar (ShutBoard) */
.vgp-race {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vgp-race__row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.vgp-race__name {
  color: #fff;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
}
.vgp-race__bar {
  height: 14px;
  background: #1a1a1a;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.vgp-race__fill {
  height: 100%;
  background: linear-gradient(90deg, #1560F0, #2E7BFF);
  border-radius: 7px;
  width: var(--w, 0%);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(21,96,240,0.4);
}
.vgp-race__fill--orange { background: linear-gradient(90deg, #FF8A00, #FFA640); box-shadow: 0 0 12px rgba(255,138,0,0.4); }
.vgp-race__fill--green { background: linear-gradient(90deg, #22C55E, #4ade80); box-shadow: 0 0 12px rgba(34,197,94,0.4); }
.vgp-race__count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Table for sales log / lead list / etc */
.vgp-table {
  width: 100%;
  font-size: 12px;
}
.vgp-table th {
  background: #161616;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #242424;
}
.vgp-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #161616;
  color: #ABABAB;
  font-size: 13px;
}
.vgp-table tr:last-child td { border-bottom: 0; }
.vgp-table tr.vgp-table__row--new td {
  background: rgba(34, 197, 94, 0.04);
  animation: vgpRowFlash 1.6s ease-out;
}
.vgp-table strong { color: #fff; }

/* Notification toast */
.vgp-toast {
  position: absolute;
  background: #161616;
  border: 1px solid #242424;
  border-left: 3px solid #1560F0;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #DADADA;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}
.vgp-toast--in { opacity: 1; transform: translateY(0); }
.vgp-toast--success { border-left-color: #22C55E; }
.vgp-toast--warn { border-left-color: #FF8A00; }
.vgp-toast strong { color: #fff; }

/* TV Board panel container */
.vgp-tv {
  height: 360px;
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}
.vgp-tv__panel {
  position: absolute;
  inset: 0;
  padding: 24px 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.vgp-tv__panel--active {
  opacity: 1;
  transform: translateY(0);
}
.vgp-tv__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #FF8A00;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.vgp-tv__h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.vgp-tv__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.vgp-tv__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a2a2a;
  transition: background 0.3s ease, width 0.3s ease;
}
.vgp-tv__dot--active { background: #FF8A00; width: 22px; border-radius: 3px; }

/* Pacing gauge */
.vgp-gauge {
  position: relative;
  height: 18px;
  background: #1a1a1a;
  border-radius: 9px;
  overflow: hidden;
  margin: 16px 0 8px;
}
.vgp-gauge__fill {
  height: 100%;
  background: linear-gradient(90deg, #22C55E 0%, #22C55E 60%, #FF8A00 80%, #EF4444 100%);
  border-radius: 9px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.vgp-gauge__needle {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: left 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Spinner / progress arc */
.vgp-spin {
  width: 14px;
  height: 14px;
  border: 2px solid #242424;
  border-top-color: #1560F0;
  border-radius: 50%;
  animation: vgpSpin 0.9s linear infinite;
  display: inline-block;
}

/* Source-fanout pill (IH demo) */
.vgp-fanout {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.vgp-fanout__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #161616;
  border: 1px solid #242424;
  border-radius: 100px;
  font-size: 11px;
  color: #ABABAB;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.vgp-fanout__pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #5a5a5a;
  border-radius: 50%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.vgp-fanout__pill--scanning::before {
  background: #FF8A00;
  box-shadow: 0 0 8px #FF8A00;
  animation: vgpPulse 0.8s ease-in-out infinite;
}
.vgp-fanout__pill--done {
  border-color: rgba(34,197,94,0.3);
  color: #22C55E;
}
.vgp-fanout__pill--done::before {
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

/* Speed-to-lead timer (Lotups) */
.vgp-timer {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #22C55E;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 30px rgba(34,197,94,0.4);
  font-variant-numeric: tabular-nums;
}
.vgp-timer--warn { color: #FF8A00; text-shadow: 0 0 30px rgba(255,138,0,0.4); }
.vgp-timer--red { color: #EF4444; text-shadow: 0 0 30px rgba(239,68,68,0.4); }

/* Tower queue (Lotups) */
.vgp-queue {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vgp-queue__seat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #0f0f0f;
  border: 1px solid #1c1c1c;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.vgp-queue__seat--up {
  border-color: rgba(255,138,0,0.4);
  background: rgba(255,138,0,0.05);
}
.vgp-queue__seat--out {
  opacity: 0.4;
  filter: grayscale(0.6);
}
.vgp-queue__pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #5a5a5a;
  width: 28px;
}
.vgp-queue__seat--up .vgp-queue__pos { color: #FF8A00; }
.vgp-queue__name {
  flex: 1;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}
.vgp-queue__status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a5a5a;
  font-weight: 600;
}
.vgp-queue__seat--up .vgp-queue__status { color: #FF8A00; }

/* Animations ───────────────────────── */
@keyframes vgpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes vgpSpin {
  to { transform: rotate(360deg); }
}
@keyframes vgpRowFlash {
  0% { background: rgba(34, 197, 94, 0.18); }
  100% { background: rgba(34, 197, 94, 0.04); }
}
@keyframes vgpDropIn {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes vgpFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21,96,240,0); }
  50% { box-shadow: 0 0 0 6px rgba(21,96,240,0.18); }
}

/* Utility: faux cursor (live presence) */
.vgp-cursor {
  position: absolute;
  pointer-events: none;
  width: 18px;
  height: 18px;
  z-index: 10;
  transition: left 1.2s cubic-bezier(0.5, 0, 0.5, 1), top 1.2s cubic-bezier(0.5, 0, 0.5, 1);
}
.vgp-cursor svg { width: 100%; height: 100%; }
.vgp-cursor__label {
  position: absolute;
  top: 18px;
  left: 14px;
  background: var(--cursor-color, #1560F0);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Cell editing flash */
.vgp-cell--editing {
  background: rgba(21, 96, 240, 0.1) !important;
  outline: 1.5px solid rgba(21, 96, 240, 0.4);
  outline-offset: -1px;
}
.vgp-cell--just-saved {
  animation: vgpRowFlash 1.5s ease-out;
}

/* Pricing tier card (multi-tier products) */
.vgp-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .vgp-tier-grid { grid-template-columns: 1fr; }
}
.vgp-tier {
  background: #0f0f0f;
  border: 1px solid #242424;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vgp-tier--featured {
  border-color: #1560F0;
  background: linear-gradient(180deg, rgba(21,96,240,0.06), #0f0f0f 50%);
  box-shadow: 0 16px 48px rgba(21,96,240,0.2);
}
.vgp-tier__badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: #1560F0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 100px;
}
.vgp-tier__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vgp-tier__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0;
}
.vgp-tier__price small {
  font-size: 18px;
  color: #5a5a5a;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.vgp-tier__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
  flex: 1;
}
.vgp-tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ABABAB;
}
.vgp-tier__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* CTA mini-band inside product page */
.vgp-cta-mini {
  background: linear-gradient(135deg, #161616, #0f0f0f);
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vgp-cta-mini::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(21,96,240,0.4), rgba(255,138,0,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.vgp-cta-mini h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 16px;
}
.vgp-cta-mini p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 28px;
  color: #ABABAB;
}
@media (max-width: 768px) {
  .vgp-cta-mini { padding: 36px 24px; }
}

/* "How it works" rail */
.vgp-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .vgp-rail { grid-template-columns: 1fr 1fr; gap: 8px; }
}
.vgp-rail__step {
  padding: 24px 20px;
  border-right: 1px solid #1c1c1c;
  position: relative;
}
.vgp-rail__step:last-child { border-right: 0; }
.vgp-rail__num {
  display: none;
}
.vgp-rail__step {
  padding-top: 24px;
}
.vgp-rail__step::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #FF8A00;
  margin-bottom: 14px;
}
.vgp-rail__t {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.vgp-rail__d {
  font-size: 14px;
  color: #ABABAB;
  line-height: 1.55;
}

/* Page chrome — overrides for richer hero buttons */
.vgp-hero .vgsm-btn--primary {
  padding: 16px 30px;
  font-size: 15px;
}
.vgp-hero .vgsm-btn--ghost {
  padding: 16px 30px;
  font-size: 15px;
  background: rgba(255,255,255,0.04);
  border-color: #2a2a2a;
}

/* Demo wrap responsive */
@media (max-width: 1024px) {
  .vgp-demo__body { min-height: 360px; }
}

/* Two-column inline with screenshot-style demo */
.vgp-mini-demo {
  background: #0a0a0a;
  border: 1px solid #1c1c1c;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.vgp-mini-demo__caption {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5a5a5a;
  margin-bottom: 14px;
  font-weight: 600;
}
