/* ============================================================
   Voice & Chat AI — animated graphics (WhatsApp, Phone, Flow)
   ============================================================ */

/* ---------- shared ---------- */
.vcg-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--site-cyan); }
.vcg-pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--site-mint); box-shadow: 0 0 8px var(--site-mint); animation: vcgPulse 1.4s infinite; vertical-align: middle; margin-right: 8px; }
@keyframes vcgPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }

/* ---------- HERO TRIO (WhatsApp + Phone + Action) ---------- */
.vcg-hero-trio {
  display: grid; grid-template-columns: 320px 360px 1fr; gap: 22px;
  max-width: 1320px; margin: 56px auto 0; padding: 0 32px; align-items: stretch;
}
@media (max-width: 1100px) {
  .vcg-hero-trio { grid-template-columns: 1fr 1fr; }
  .vcg-hero-trio > .vcg-action { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .vcg-hero-trio { grid-template-columns: 1fr; padding: 0 16px; }
}

/* ----- WhatsApp Phone ----- */
.vcg-wa-phone {
  position: relative; aspect-ratio: 9/19; max-height: 680px;
  border: 10px solid #0a0e1c; border-radius: 38px; overflow: hidden;
  background: #0b141a; box-shadow:
    0 0 0 2px rgba(255,255,255,0.04),
    0 30px 80px -20px rgba(0,85,255,0.45),
    0 0 60px rgba(94,255,164,0.18) inset;
}
.vcg-wa-phone::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000; border-radius: 0 0 14px 14px; z-index: 5;
}
.vcg-wa-status {
  position: absolute; top: 0; left: 0; right: 0; height: 36px; padding: 8px 22px 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  font: 600 11px/1 -apple-system, system-ui, sans-serif; color: #fff; z-index: 6;
}
.vcg-wa-status .right { display: flex; gap: 5px; align-items: center; }
.vcg-wa-status svg { width: 14px; height: 10px; }
.vcg-wa-head {
  position: relative; z-index: 4;
  margin-top: 36px; padding: 10px 14px; display: flex; gap: 10px; align-items: center;
  background: linear-gradient(180deg, #1f2c33, #1a262d);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vcg-wa-back { color: #fff; opacity: 0.7; font-size: 18px; line-height: 1; }
.vcg-wa-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #0055FF, #5EFFA4);
  display: grid; place-items: center; color: #fff; font: 700 12px var(--font-mono);
  position: relative;
}
.vcg-wa-avatar::after {
  content: ''; position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px;
  border-radius: 50%; background: #25d366; border: 2px solid #1a262d;
}
.vcg-wa-name { color: #fff; font: 600 14px -apple-system, system-ui, sans-serif; line-height: 1.1; }
.vcg-wa-online { color: #b3c4cb; font: 400 11px -apple-system, system-ui, sans-serif; margin-top: 2px; }
.vcg-wa-icons { margin-left: auto; display: flex; gap: 16px; color: #b3c4cb; }
.vcg-wa-icons svg { width: 18px; height: 18px; }

.vcg-wa-body {
  position: absolute; top: 96px; bottom: 60px; left: 0; right: 0;
  background: #0b141a;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(94,255,164,0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 64%, rgba(79,200,255,0.04) 0 1px, transparent 1px);
  background-size: 36px 36px, 60px 60px;
  padding: 14px 12px 12px; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
}
.vcg-wa-body::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><g fill='%23ffffff' opacity='0.015'><path d='M40 60c0 11 9 20 20 20s20-9 20-20-9-20-20-20-20 9-20 20zm80 80c0 11 9 20 20 20s20-9 20-20-9-20-20-20-20 9-20 20z'/></g></svg>");
  opacity: 0.6; pointer-events: none;
}
.vcg-wa-day {
  align-self: center; padding: 4px 10px; background: rgba(11,30,42,0.7);
  color: #b3c4cb; font: 500 10.5px -apple-system, system-ui, sans-serif;
  border-radius: 8px; margin: 4px 0 8px;
}

.vcg-wa-msg {
  max-width: 78%; padding: 7px 10px 7px 11px; font: 400 13.5px/1.32 -apple-system, system-ui, sans-serif;
  border-radius: 7px; position: relative; word-wrap: break-word;
  animation: vcgMsgIn 0.45s cubic-bezier(0.16,1,0.3,1) backwards;
}
.vcg-wa-msg.in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.vcg-wa-msg.out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }
.vcg-wa-msg .meta { display: inline-block; margin-left: 6px; color: rgba(255,255,255,0.55); font-size: 10px; vertical-align: bottom; }
.vcg-wa-msg .ticks { display: inline-block; margin-left: 3px; color: #53bdeb; }
.vcg-wa-msg .ticks svg { width: 14px; height: 10px; vertical-align: -1px; }
@keyframes vcgMsgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vcg-wa-voice {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  max-width: 86%; background: #202c33; border-radius: 7px; align-self: flex-start;
  animation: vcgMsgIn 0.45s cubic-bezier(0.16,1,0.3,1) backwards;
}
.vcg-wa-voice .play { width: 22px; height: 22px; border-radius: 50%; background: #00a884; display: grid; place-items: center; color: #fff; flex-shrink: 0; font-size: 10px; }
.vcg-wa-voice .bars { display: flex; align-items: center; gap: 1.5px; height: 18px; flex: 1; }
.vcg-wa-voice .bars span { width: 1.6px; background: #8696a0; border-radius: 1px; }
.vcg-wa-voice .bars span.played { background: #53bdeb; }
.vcg-wa-voice .dur { font: 500 10.5px var(--font-mono); color: #8696a0; }

.vcg-wa-action {
  align-self: flex-end; max-width: 84%;
  padding: 8px 10px; background: #005c4b; border-radius: 7px;
  border-left: 2px solid #5EFFA4;
  font: 400 12.5px/1.4 -apple-system, system-ui, sans-serif; color: #e9edef;
  animation: vcgMsgIn 0.45s cubic-bezier(0.16,1,0.3,1) backwards;
}
.vcg-wa-action .stamp { display: block; font: 600 9.5px var(--font-mono); letter-spacing: 0.16em; color: #5EFFA4; margin-bottom: 4px; }
.vcg-wa-action .row { display: flex; justify-content: space-between; font: 500 11px var(--font-mono); color: rgba(255,255,255,0.78); margin-top: 2px; }

.vcg-wa-typing {
  align-self: flex-start; padding: 8px 12px; background: #202c33; border-radius: 7px;
  display: flex; gap: 3px; align-items: center;
  animation: vcgMsgIn 0.3s cubic-bezier(0.16,1,0.3,1) backwards;
}
.vcg-wa-typing span { width: 6px; height: 6px; border-radius: 50%; background: #8696a0; animation: vcgTypeBounce 1.2s infinite; }
.vcg-wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.vcg-wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes vcgTypeBounce { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.vcg-wa-input {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: #1f2c33; padding: 10px 8px; display: flex; align-items: center; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.vcg-wa-input .field {
  flex: 1; height: 36px; background: #2a3942; border-radius: 18px;
  display: flex; align-items: center; padding: 0 14px;
  color: #8696a0; font: 400 13px -apple-system, system-ui, sans-serif;
}
.vcg-wa-input .send {
  width: 38px; height: 38px; border-radius: 50%; background: #00a884;
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.vcg-wa-input .send svg { width: 18px; height: 18px; }

/* ----- Phone Call ----- */
.vcg-call {
  position: relative; aspect-ratio: 9/19; max-height: 680px;
  border: 10px solid #0a0e1c; border-radius: 38px; overflow: hidden;
  background: #04060d; box-shadow:
    0 0 0 2px rgba(255,255,255,0.04),
    0 30px 80px -20px rgba(0,85,255,0.55);
}
.vcg-call::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000; border-radius: 0 0 14px 14px; z-index: 5;
}
.vcg-call-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(0,85,255,0.35), transparent 70%),
    radial-gradient(70% 40% at 50% 90%, rgba(94,255,164,0.18), transparent 70%),
    linear-gradient(180deg, #04060d 0%, #0b1024 50%, #04060d 100%);
}
.vcg-call-status { position: absolute; top: 8px; left: 22px; right: 22px; z-index: 6;
  display: flex; justify-content: space-between; color: #fff; font: 600 11px/1 -apple-system, system-ui, sans-serif; padding-top: 2px; }
.vcg-call-inner { position: relative; padding: 56px 22px 24px; height: 100%; display: flex; flex-direction: column; }
.vcg-call-tag {
  align-self: center; padding: 4px 12px; border: 1px solid rgba(94,255,164,0.4);
  background: rgba(94,255,164,0.08); color: #5EFFA4;
  font: 600 10px var(--font-mono); letter-spacing: 0.18em;
  border-radius: 100px; margin-bottom: 22px;
}
.vcg-call-name {
  color: #fff; text-align: center; font: 400 26px/1.1 var(--font-display);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.vcg-call-num {
  color: rgba(255,255,255,0.55); text-align: center;
  font: 500 12.5px var(--font-mono); letter-spacing: 0.04em; margin-bottom: 22px;
}
.vcg-call-orb {
  width: 168px; height: 168px; border-radius: 50%; align-self: center; position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(0,85,255,0.6), rgba(25,0,255,0.2) 60%, transparent 80%);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.vcg-call-orb::before, .vcg-call-orb::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(79,200,255,0.45); animation: vcgOrbRipple 2.4s infinite;
}
.vcg-call-orb::after { animation-delay: 1.2s; }
@keyframes vcgOrbRipple {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.vcg-call-orb-core {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, #4FC8FF, #0055FF);
  box-shadow: 0 0 30px rgba(0,85,255,0.6);
  display: grid; place-items: center; color: #fff; z-index: 2;
  font: 600 11px var(--font-mono); letter-spacing: 0.12em;
}
.vcg-call-wave {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  height: 42px; margin-bottom: 14px;
}
.vcg-call-wave span {
  width: 3px; background: linear-gradient(180deg, #4FC8FF, #5EFFA4);
  border-radius: 2px; transition: height 60ms linear;
}
.vcg-call-trans {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 12px; margin-bottom: 16px;
  font: 400 12px/1.4 -apple-system, system-ui, sans-serif; color: rgba(255,255,255,0.85);
  min-height: 78px; display: flex; flex-direction: column; gap: 6px;
}
.vcg-call-trans .speaker { font: 600 9px var(--font-mono); letter-spacing: 0.18em; opacity: 0.6; }
.vcg-call-trans .agent .speaker { color: #5EFFA4; }
.vcg-call-trans .cust .speaker { color: #4FC8FF; }
.vcg-call-trans .line { animation: vcgFadeIn 0.4s; }
@keyframes vcgFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.vcg-call-controls {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: auto;
}
.vcg-call-btn {
  aspect-ratio: 1; max-width: 56px; margin: 0 auto;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: #fff;
}
.vcg-call-btn svg { width: 22px; height: 22px; }
.vcg-call-btn.end { background: #f04747; box-shadow: 0 8px 24px rgba(240,71,71,0.4); }

/* ----- Action panel (right) ----- */
.vcg-action {
  background: linear-gradient(180deg, rgba(15,21,48,0.7), rgba(5,7,15,0.5));
  border: 1px solid var(--site-line);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.vcg-action::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 80% 0%, rgba(94,255,164,0.12), transparent 70%);
}
.vcg-action-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--site-line);
  font: 500 11px var(--font-mono); letter-spacing: 0.14em; color: var(--site-text-3);
}
.vcg-action-head .id { color: var(--site-mint); }
.vcg-action-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; flex: 1; position: relative; }

.vcg-step-row {
  display: grid; grid-template-columns: 22px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02);
  font: 500 12px var(--font-mono); color: var(--site-text-2);
  transition: all 0.4s;
}
.vcg-step-row.active {
  border-color: rgba(79,200,255,0.5);
  background: rgba(79,200,255,0.07);
  box-shadow: 0 0 22px rgba(79,200,255,0.18);
}
.vcg-step-row.done { border-color: rgba(94,255,164,0.3); }
.vcg-step-row.done .vcg-step-icon { background: rgba(94,255,164,0.15); color: var(--site-mint); }
.vcg-step-row.done .vcg-step-time { color: var(--site-mint); }
.vcg-step-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: var(--site-text-3);
  font-size: 10px;
}
.vcg-step-row.active .vcg-step-icon { background: rgba(79,200,255,0.2); color: var(--site-cyan); animation: vcgSpin 1.2s linear infinite; }
@keyframes vcgSpin { to { transform: rotate(360deg); } }
.vcg-step-label { color: #fff; }
.vcg-step-label .sub { display: block; color: var(--site-text-3); font-weight: 400; font-size: 10.5px; letter-spacing: 0.04em; margin-top: 2px; }
.vcg-step-time { font-size: 10.5px; color: var(--site-text-3); }

.vcg-action-foot {
  padding: 14px 18px; border-top: 1px solid var(--site-line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  background: rgba(0,0,0,0.25);
}
.vcg-action-stat .l { font: 500 9.5px var(--font-mono); letter-spacing: 0.18em; color: var(--site-text-3); }
.vcg-action-stat .v { font: 400 18px var(--font-display); color: #fff; margin-top: 2px; letter-spacing: -0.02em; }
.vcg-action-stat .v.mint { color: var(--site-mint); }

/* ---------- WHAT THIS DOES (animated 6-step flow) ---------- */
.vcg-what { padding: 100px 0; background: var(--site-bg); border-top: 1px solid var(--site-line); position: relative; }
.vcg-what::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 50% at 50% 0%, rgba(0,85,255,0.1), transparent 70%);
}
.vcg-what .container { position: relative; }
.vcg-what-flow {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  position: relative;
}
@media (max-width: 1100px) { .vcg-what-flow { grid-template-columns: repeat(3, 1fr); row-gap: 22px; } }
@media (max-width: 640px) { .vcg-what-flow { grid-template-columns: repeat(2, 1fr); } }

.vcg-what-step {
  position: relative;
  padding: 22px 18px 22px;
  border: 1px solid var(--site-line);
  background: linear-gradient(180deg, rgba(15,21,48,0.6), rgba(5,7,15,0.3));
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.vcg-what-step::after {
  content: ''; position: absolute; right: -10px; top: 50%; width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--site-cyan), transparent);
  z-index: 2;
}
.vcg-what-step:last-child::after { display: none; }
.vcg-what-num { font: 500 10.5px var(--font-mono); letter-spacing: 0.16em; color: var(--site-cyan); }
.vcg-what-title { color: #fff; font: 400 18px/1.2 var(--font-display); letter-spacing: -0.01em; }
.vcg-what-desc { color: var(--site-text-2); font-size: 12.5px; line-height: 1.45; }
.vcg-what-mini {
  margin-top: auto; height: 96px; border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25); padding: 8px; display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}

/* Mini visuals */
.vcg-mini-bubble { padding: 4px 7px; background: #202c33; color: #e9edef; font: 400 10px/1.2 -apple-system, system-ui, sans-serif; max-width: 80%; border-radius: 4px; }
.vcg-mini-bubble.in { align-self: flex-start; }
.vcg-mini-bubble.out { align-self: flex-end; background: #005c4b; }

.vcg-mini-orb {
  margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,85,255,0.6), rgba(25,0,255,0.2));
  border: 1px solid rgba(79,200,255,0.45);
  position: relative; display: grid; place-items: center;
  color: #fff; font: 600 9px var(--font-mono); letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(0,85,255,0.4);
}
.vcg-mini-orb::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed rgba(79,200,255,0.4); animation: vcgSpin 8s linear infinite; }

.vcg-mini-rule {
  display: flex; gap: 5px; align-items: center;
  font: 500 9.5px var(--font-mono); color: var(--site-text-2);
  padding: 2px 0;
}
.vcg-mini-rule .k { color: var(--site-cyan); }
.vcg-mini-rule.ok::before { content: '✓'; color: var(--site-mint); }

.vcg-mini-approve {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; background: rgba(255,176,32,0.12);
  border: 1px solid rgba(255,176,32,0.4); border-radius: 4px;
  font: 500 10px var(--font-mono); color: var(--site-amber);
}
.vcg-mini-approve .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--site-amber); animation: vcgPulse 1.4s infinite; }

.vcg-mini-out {
  font: 500 9.5px var(--font-mono); color: var(--site-mint);
  padding: 4px 6px; background: rgba(94,255,164,0.08);
  border: 1px solid rgba(94,255,164,0.25); border-radius: 3px;
}

.vcg-mini-spark {
  display: flex; gap: 3px; align-items: flex-end; height: 38px; margin-top: auto;
}
.vcg-mini-spark span { flex: 1; background: linear-gradient(180deg, var(--site-cyan), rgba(79,200,255,0.3)); border-radius: 1px; }

/* ---------- WAYS TO START ---------- */
.vcg-ways { padding: 100px 0; background: var(--site-bg); border-top: 1px solid var(--site-line); }
.vcg-ways-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .vcg-ways-grid { grid-template-columns: 1fr; } }

.vcg-way {
  position: relative; padding: 32px 28px;
  border: 1px solid var(--site-line);
  background: linear-gradient(180deg, rgba(15,21,48,0.5), rgba(5,7,15,0.25));
  display: flex; flex-direction: column; gap: 16px;
  min-height: 380px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.vcg-way:hover { border-color: rgba(79,200,255,0.5); background: linear-gradient(180deg, rgba(20,30,68,0.7), rgba(8,11,28,0.4)); transform: translateY(-2px); }
.vcg-way-num { font: 500 10.5px var(--font-mono); letter-spacing: 0.18em; color: var(--site-cyan); }
.vcg-way-title { color: #fff; font: 400 30px/1.1 var(--font-display); letter-spacing: -0.025em; }
.vcg-way-dur { font: 500 11px var(--font-mono); letter-spacing: 0.12em; color: var(--site-mint); }
.vcg-way-who { font-size: 13px; color: var(--site-text-2); line-height: 1.5; }
.vcg-way-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.vcg-way-list li { font: 400 12px/1.4 var(--font-mono); color: var(--site-text-2); padding-left: 16px; position: relative; }
.vcg-way-list li::before { content: '›'; position: absolute; left: 0; color: var(--site-cyan); }
.vcg-way-cta { margin-top: auto; }

/* ---------- FAQ ---------- */
.vcg-faq { padding: 100px 0; background: var(--site-bg); border-top: 1px solid var(--site-line); }
.vcg-faq-list { margin-top: 48px; max-width: 920px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; }
.vcg-faq-item {
  border-bottom: 1px solid var(--site-line);
  padding: 22px 0;
  cursor: pointer;
}
.vcg-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  color: #fff; font: 400 22px/1.3 var(--font-display); letter-spacing: -0.01em;
}
.vcg-faq-q .toggle {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--site-line); display: grid; place-items: center;
  color: var(--site-cyan); font-size: 14px;
  transition: transform 0.3s;
}
.vcg-faq-item.open .vcg-faq-q .toggle { transform: rotate(45deg); }
.vcg-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
  color: var(--site-text-2); font-size: 15px; line-height: 1.6;
}
.vcg-faq-item.open .vcg-faq-a { max-height: 280px; padding-top: 14px; }

/* ---------- STICKY CTA ---------- */
.vcg-sticky {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 80; display: flex; gap: 8px; align-items: center;
  padding: 8px 8px 8px 18px;
  background: rgba(8,12,28,0.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(79,200,255,0.4);
  box-shadow: 0 14px 40px -10px rgba(0,85,255,0.45), 0 0 24px rgba(94,255,164,0.15);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.vcg-sticky.hidden { transform: translate(-50%, 120px); opacity: 0; pointer-events: none; }
.vcg-sticky-text { color: #fff; font: 500 12.5px var(--font-mono); letter-spacing: 0.04em; }
.vcg-sticky-text .pulse { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--site-mint); margin-right: 8px; vertical-align: middle; animation: vcgPulse 1.4s infinite; }
.vcg-sticky .btn { padding: 8px 14px; font-size: 11px; border-radius: 100px; }
@media (max-width: 640px) {
  .vcg-sticky { left: 12px; right: 12px; transform: none; bottom: 12px; padding: 6px 6px 6px 12px; }
  .vcg-sticky.hidden { transform: translateY(120px); }
  .vcg-sticky-text { font-size: 11px; }
  .vcg-sticky-text .label { display: none; }
}

/* ---------- VISUAL PILLARS ---------- */
.vp-pillars { padding: 110px 0; }
.vp-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1000px) { .vp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vp-grid { grid-template-columns: 1fr; } }

.vp-card {
  border: 1px solid var(--site-line);
  background: linear-gradient(180deg, rgba(15,21,48,0.55), rgba(5,7,15,0.3));
  display: flex; flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); overflow: hidden;
}
.vp-card:hover { border-color: rgba(79,200,255,0.45); transform: translateY(-2px); box-shadow: 0 14px 40px -16px rgba(0,85,255,0.4); }
.vp-card-vis { height: 168px; padding: 14px; border-bottom: 1px solid var(--site-line); background: rgba(0,0,0,0.25); position: relative; overflow: hidden; }
.vp-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.vp-card-top { display: flex; justify-content: space-between; align-items: center; }
.vp-card-num { font: 500 10.5px var(--font-mono); letter-spacing: 0.18em; color: var(--site-cyan); }
.vp-card-ico { width: 28px; height: 28px; border: 1px solid var(--site-line-2); display: grid; place-items: center; color: var(--site-cyan); }
.vp-card-name { color: #fff; font: 400 22px/1.2 var(--font-display); letter-spacing: -0.015em; margin: 2px 0; }
.vp-card-sub { color: var(--site-text-2); font-size: 13.5px; line-height: 1.5; margin: 0; }
.vp-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.vp-card-tags span {
  font: 500 10px var(--font-mono); letter-spacing: 0.06em; color: var(--site-text-2);
  padding: 4px 8px; border: 1px solid var(--site-line); background: rgba(255,255,255,0.02);
}

/* shared mini visual surfaces */
.vp-mini { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); }
.vp-mini-row { display: flex; justify-content: space-between; align-items: center; font-size: 9.5px; letter-spacing: 0.12em; color: var(--site-text-3); }
.vp-mini-ch { color: var(--site-cyan); }
.vp-mini-time { color: var(--site-mint); }
.vp-mini-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--site-mint); animation: vcgPulse 1.4s infinite; }
.vp-mini-bub { padding: 6px 9px; font: 400 11px/1.3 -apple-system, system-ui, sans-serif; max-width: 86%; border-radius: 4px; }
.vp-mini-bub.in { background: #202c33; color: #e9edef; align-self: flex-start; }
.vp-mini-bub.out { background: #005c4b; color: #e9edef; align-self: flex-end; border-left: 2px solid #5EFFA4; }
.vp-mini-stamp { display: block; font: 600 8.5px var(--font-mono); letter-spacing: 0.16em; color: #5EFFA4; margin-bottom: 2px; }

/* outbound */
.vp-mini-bar { height: 6px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.vp-mini-bar span { display: block; height: 100%; background: linear-gradient(90deg, #4FC8FF, #5EFFA4); transition: width 0.3s linear; }
.vp-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: auto; }
.vp-mini-stats div { display: flex; flex-direction: column; }
.vp-mini-stats b { color: #fff; font: 400 14px var(--font-display); letter-spacing: -0.02em; }
.vp-mini-stats span { font-size: 9px; letter-spacing: 0.1em; color: var(--site-text-3); }

/* channels */
.vp-mini-channels .vp-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; height: 100%; }
.vp-mini-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02);
  font-size: 9px; letter-spacing: 0.06em; color: var(--site-text-2);
  padding: 6px 4px; transition: all 0.3s;
}
.vp-mini-cell svg { width: 14px; height: 14px; color: var(--site-text-3); }
.vp-mini-cell.on { border-color: rgba(79,200,255,0.6); background: rgba(79,200,255,0.1); color: #fff; box-shadow: 0 0 14px rgba(79,200,255,0.3); }
.vp-mini-cell.on svg { color: var(--site-cyan); }

/* voice */
.vp-mini-wave { display: flex; align-items: center; gap: 1.5px; height: 50px; flex: 1; }
.vp-mini-wave span { flex: 1; background: linear-gradient(180deg, #4FC8FF, rgba(79,200,255,0.35)); transition: height 80ms linear; }
.vp-mini-tags { display: flex; gap: 3px; flex-wrap: wrap; }
.vp-mini-tags span { font-size: 8.5px; letter-spacing: 0.08em; padding: 2px 6px; border: 1px solid rgba(255,255,255,0.08); color: var(--site-text-2); background: rgba(255,255,255,0.02); }

/* flow */
.vp-mini-flow { gap: 3px; }
.vp-flow-row {
  display: grid; grid-template-columns: 10px 1fr 14px; align-items: center; gap: 8px;
  padding: 4px 6px; font-size: 10px; letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); color: var(--site-text-2);
  transition: all 0.3s;
}
.vp-flow-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.vp-flow-row.active { border-color: rgba(79,200,255,0.5); background: rgba(79,200,255,0.08); color: #fff; }
.vp-flow-row.active .vp-flow-dot { background: var(--site-cyan); animation: vcgPulse 1s infinite; }
.vp-flow-row.done { border-color: rgba(94,255,164,0.3); color: var(--site-mint); }
.vp-flow-row.done .vp-flow-dot { background: var(--site-mint); }
.vp-flow-t { font-size: 11px; }

/* dash */
.vp-mini-dash { gap: 4px; }

/* ---------- ANIMATED CHANNEL REEL ---------- */
.vcg-reel {
  margin-top: 22px; padding: 14px 0;
  border-top: 1px solid var(--site-line); border-bottom: 1px solid var(--site-line);
  overflow: hidden; mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.vcg-reel-track {
  display: flex; gap: 36px; align-items: center; width: max-content;
  animation: vcgReelScroll 30s linear infinite;
}
.vcg-reel-item {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 11px var(--font-mono); letter-spacing: 0.12em; color: var(--site-text-2);
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  white-space: nowrap;
}
.vcg-reel-item svg { color: var(--site-cyan); width: 13px; height: 13px; }
.vcg-reel-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--site-mint); animation: vcgPulse 1.4s infinite; }
@keyframes vcgReelScroll { to { transform: translateX(-50%); } }
