/* VoiceBlog marketing site
   Dark, violet/lime, glass-morphism. Self-contained — does not depend
   on landing.css (which is the per-tenant blog template's stylesheet). */

:root {
  --vb-bg: #0a0612;
  --vb-bg-2: #0f0a1c;
  --vb-card: rgba(255, 255, 255, 0.04);
  --vb-card-border: rgba(255, 255, 255, 0.08);
  --vb-text: #f8fafc;
  --vb-text-dim: #cbd5e1;
  --vb-text-mute: #94a3b8;
  --vb-violet: #a855f7;
  --vb-violet-2: #7c3aed;
  --vb-pink: #ec4899;
  --vb-lime: #a3e635;
  --vb-lime-2: #84cc16;
  --vb-radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.vb-marketing {
  background: var(--vb-bg);
  background-image:
    radial-gradient(at 12% 0%, rgba(168, 85, 247, 0.18) 0, transparent 45%),
    radial-gradient(at 88% 12%, rgba(236, 72, 153, 0.12) 0, transparent 45%),
    radial-gradient(at 50% 100%, rgba(124, 58, 237, 0.10) 0, transparent 50%);
  color: var(--vb-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.vb-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top nav ---------- */
.vb-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 6, 18, 0.7);
  border-bottom: 1px solid var(--vb-card-border);
}
.vb-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: 1200px; margin: 0 auto;
}
.vb-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
}
.vb-logo__mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--vb-violet), var(--vb-pink));
  display: grid; place-items: center;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
}
.vb-logo__mark svg { width: 18px; height: 18px; }
.vb-nav__links { display: flex; gap: 28px; align-items: center; }
.vb-nav__links a {
  color: var(--vb-text-dim); font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.vb-nav__links a:hover { color: var(--vb-text); }
.vb-nav__cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--vb-lime); color: #0a0612 !important;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
}
.vb-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(163, 230, 53, 0.3); }
@media (max-width: 720px) {
  .vb-nav__links { gap: 16px; }
  .vb-nav__links .vb-nav__hide-sm { display: none; }
}

/* ---------- Hero ---------- */
.vb-hero { padding: 80px 24px 60px; text-align: center; position: relative; }
.vb-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #d8b4fe; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.vb-hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--vb-lime);
  box-shadow: 0 0 10px var(--vb-lime);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.vb-hero__h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.04em;
  margin: 0 0 24px; max-width: 940px; margin-left: auto; margin-right: auto;
}
.vb-hero__h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--vb-violet), var(--vb-pink), var(--vb-lime));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vb-hero__sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--vb-text-dim); max-width: 680px;
  margin: 0 auto 40px;
}
.vb-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.vb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer; border: none;
}
.vb-btn--primary {
  background: var(--vb-lime); color: #0a0612;
  box-shadow: 0 8px 32px rgba(163, 230, 53, 0.25);
}
.vb-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(163, 230, 53, 0.4); }
.vb-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--vb-text);
  border: 1px solid var(--vb-card-border);
}
.vb-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Animated waveform under hero */
.vb-wave { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 60px; margin: 56px auto 0; max-width: 320px; }
.vb-wave span {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--vb-violet), var(--vb-pink));
  animation: wave 1.4s ease-in-out infinite;
}
@keyframes wave { 0%, 100% { height: 8px; } 50% { height: 50px; } }
.vb-wave span:nth-child(1) { animation-delay: 0s; }
.vb-wave span:nth-child(2) { animation-delay: 0.1s; }
.vb-wave span:nth-child(3) { animation-delay: 0.2s; }
.vb-wave span:nth-child(4) { animation-delay: 0.3s; }
.vb-wave span:nth-child(5) { animation-delay: 0.4s; }
.vb-wave span:nth-child(6) { animation-delay: 0.5s; }
.vb-wave span:nth-child(7) { animation-delay: 0.4s; }
.vb-wave span:nth-child(8) { animation-delay: 0.3s; }
.vb-wave span:nth-child(9) { animation-delay: 0.2s; }
.vb-wave span:nth-child(10) { animation-delay: 0.1s; }
.vb-wave span:nth-child(11) { animation-delay: 0.2s; }
.vb-wave span:nth-child(12) { animation-delay: 0.3s; }

/* ---------- Sections ---------- */
.vb-section { padding: 100px 24px; }
.vb-section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.vb-section__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--vb-violet);
  margin-bottom: 16px;
}
.vb-section__h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin: 0 0 18px;
}
.vb-section__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--vb-text-dim); margin: 0;
}

/* ---------- Illustrated step rows ---------- */
.vb-step-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 60px 0;
}
.vb-step-row + .vb-step-row { border-top: 1px solid rgba(255, 255, 255, 0.04); }
.vb-step-row--reverse .vb-step-row__copy { order: 2; }
.vb-step-row--reverse .vb-step-row__mock { order: 1; }
@media (max-width: 880px) {
  .vb-step-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .vb-step-row--reverse .vb-step-row__copy,
  .vb-step-row--reverse .vb-step-row__mock { order: initial; }
}

.vb-step-row__num {
  display: inline-block;
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vb-violet);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  margin-bottom: 20px;
}
.vb-step-row__h {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 18px;
}
.vb-step-row__p {
  color: var(--vb-text-dim); font-size: 17px; margin: 0 0 22px; line-height: 1.6;
}
.vb-step-row__list { list-style: none; padding: 0; margin: 0; }
.vb-step-row__list li {
  padding: 6px 0 6px 28px; position: relative;
  color: var(--vb-text-dim); font-size: 15.5px;
}
.vb-step-row__list li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(163, 230, 53, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6.5' stroke='%23a3e635' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ----- Mock 1: phone with recorder ----- */
.vb-mock__phone {
  width: min(280px, 80%); margin: 0 auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 38px;
  background: linear-gradient(180deg, #1a1130, #0a0612);
  padding: 14px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow:
    0 30px 80px rgba(168, 85, 247, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}
.vb-mock__phone::before {
  content: ''; position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px; border-radius: 14px;
  background: #050208;
}
.vb-mock__phone-screen {
  height: 100%; border-radius: 26px;
  background: linear-gradient(180deg, #14092a, #0a0612);
  padding: 56px 22px 22px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.vb-mock__phone-app {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--vb-text-mute); margin-bottom: 4px;
}
.vb-mock__phone-title { font-size: 16px; font-weight: 700; margin-bottom: 30px; color: var(--vb-text); }
.vb-mock__phone-timer {
  font-size: 36px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--vb-violet), var(--vb-pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.vb-mock__phone-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 40px; margin-bottom: 40px;
}
.vb-mock__phone-wave span {
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--vb-violet), var(--vb-pink));
  animation: wave 1.4s ease-in-out infinite;
}
.vb-mock__phone-wave span:nth-child(2n) { animation-delay: 0.2s; }
.vb-mock__phone-wave span:nth-child(3n) { animation-delay: 0.4s; }
.vb-mock__phone-wave span:nth-child(5n) { animation-delay: 0.6s; }
.vb-mock__phone-record {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(236, 72, 153, 0.15);
  border: 2px solid rgba(236, 72, 153, 0.4);
  display: grid; place-items: center;
  margin-bottom: 16px;
  position: relative;
}
.vb-mock__phone-record::after {
  content: ''; width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--vb-pink), #ff4757);
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.6);
  animation: pulse 1.6s infinite;
}
.vb-mock__phone-hint { font-size: 12px; color: var(--vb-text-mute); }

/* ----- Mock 2: transcript → article transformation ----- */
.vb-mock--transform { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; }
@media (max-width: 600px) { .vb-mock--transform { grid-template-columns: 1fr; } .vb-mock__arrow { transform: rotate(90deg); } }
.vb-mock-card {
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  border-radius: 14px; padding: 18px;
  font-size: 12px; line-height: 1.5;
}
.vb-mock-card__label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vb-text-mute); margin-bottom: 10px;
}
.vb-mock-card--raw { color: var(--vb-text-mute); }
.vb-mock-card--raw .vb-mock-card__text { color: var(--vb-text-dim); font-style: italic; }
.vb-mock-card--raw .vb-mock-card__text em {
  color: rgba(236, 72, 153, 0.7); font-style: normal;
  background: rgba(236, 72, 153, 0.08); padding: 0 4px; border-radius: 3px;
}
.vb-mock-card--polished {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.02));
}
.vb-mock-card__hero {
  height: 70px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.4), rgba(163, 230, 53, 0.3));
  margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.vb-mock-card__hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.vb-mock-card__title {
  font-size: 14px; font-weight: 700; color: var(--vb-text);
  margin-bottom: 8px; line-height: 1.3;
}
.vb-mock-card__line {
  height: 6px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}
.vb-mock-card__line--full { width: 100%; }
.vb-mock-card__line--75 { width: 75%; }
.vb-mock-card__line--90 { width: 90%; }
.vb-mock-card__line--60 { width: 60%; }

.vb-mock__arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--vb-violet);
}
.vb-mock__arrow svg { width: 36px; height: 36px; }
.vb-mock__arrow-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--vb-violet);
}

/* ----- Mock 3: article + social fan-out ----- */
.vb-mock--distribute { position: relative; padding: 24px; }
.vb-mock__browser {
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.vb-mock__browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vb-mock__browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.vb-mock__browser-url {
  flex: 1; margin-left: 12px;
  font-size: 11px; color: var(--vb-text-mute);
  font-family: ui-monospace, monospace;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px; border-radius: 4px;
}
.vb-mock__browser-content { padding: 18px; }
.vb-mock__browser-hero {
  height: 90px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.4), rgba(163, 230, 53, 0.3));
  margin-bottom: 14px; position: relative; overflow: hidden;
}
.vb-mock__browser-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.vb-mock__browser-title {
  font-size: 16px; font-weight: 700; color: var(--vb-text);
  margin-bottom: 10px;
}

.vb-mock__social-fan {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 24px;
}
.vb-mock__social {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  font-size: 12.5px; font-weight: 600; color: var(--vb-text-dim);
  animation: pop 0.5s ease-out backwards;
}
.vb-mock__social::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(163, 230, 53, 0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6.5' stroke='%23a3e635' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.vb-mock__social:nth-child(1) { animation-delay: 0.1s; }
.vb-mock__social:nth-child(2) { animation-delay: 0.2s; }
.vb-mock__social:nth-child(3) { animation-delay: 0.3s; }
.vb-mock__social:nth-child(4) { animation-delay: 0.4s; }
.vb-mock__social:nth-child(5) { animation-delay: 0.5s; }
.vb-mock__social:nth-child(6) { animation-delay: 0.6s; }
.vb-mock__social:nth-child(7) { animation-delay: 0.7s; }
.vb-mock__social:nth-child(8) { animation-delay: 0.8s; }
.vb-mock__social:nth-child(9) { animation-delay: 0.9s; }
@keyframes pop {
  0% { opacity: 0; transform: scale(0.6) translateY(8px); }
  60% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Feature grid ---------- */
.vb-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .vb-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .vb-features { grid-template-columns: 1fr; } }
.vb-feature {
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  border-radius: var(--vb-radius); padding: 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.vb-feature::after {
  content: ''; position: absolute; inset: -1px -1px auto -1px;
  height: 3px; border-radius: var(--vb-radius) var(--vb-radius) 0 0;
  background: linear-gradient(90deg, var(--vb-feat-c1, #a855f7), var(--vb-feat-c2, #ec4899));
  opacity: 0.7; transition: opacity 0.2s;
}
.vb-feature:hover {
  transform: translateY(-4px);
  border-color: var(--vb-feat-border, rgba(168, 85, 247, 0.45));
  box-shadow: 0 18px 48px var(--vb-feat-shadow, rgba(168, 85, 247, 0.18));
}
.vb-feature:hover::after { opacity: 1; }
.vb-feature__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--vb-feat-bg1, rgba(168, 85, 247, 0.25)), var(--vb-feat-bg2, rgba(236, 72, 153, 0.18)));
  display: grid; place-items: center; margin-bottom: 16px;
  color: var(--vb-feat-icon, #c084fc);
  box-shadow: 0 4px 16px var(--vb-feat-shadow, rgba(168, 85, 247, 0.1));
}
.vb-feature__icon svg { width: 24px; height: 24px; }
.vb-feature__h { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--vb-text); }
.vb-feature__p { font-size: 14.5px; color: var(--vb-text-dim); margin: 0; line-height: 1.55; }

/* Per-card color themes */
.vb-feature--violet  { --vb-feat-c1: #a855f7; --vb-feat-c2: #ec4899; --vb-feat-icon: #c084fc; --vb-feat-bg1: rgba(168, 85, 247, 0.25); --vb-feat-bg2: rgba(236, 72, 153, 0.18); --vb-feat-border: rgba(168, 85, 247, 0.5); --vb-feat-shadow: rgba(168, 85, 247, 0.2); }
.vb-feature--sky     { --vb-feat-c1: #0ea5e9; --vb-feat-c2: #06b6d4; --vb-feat-icon: #38bdf8; --vb-feat-bg1: rgba(14, 165, 233, 0.25); --vb-feat-bg2: rgba(6, 182, 212, 0.18); --vb-feat-border: rgba(14, 165, 233, 0.5); --vb-feat-shadow: rgba(14, 165, 233, 0.2); }
.vb-feature--amber   { --vb-feat-c1: #f59e0b; --vb-feat-c2: #f97316; --vb-feat-icon: #fbbf24; --vb-feat-bg1: rgba(245, 158, 11, 0.28); --vb-feat-bg2: rgba(249, 115, 22, 0.2); --vb-feat-border: rgba(245, 158, 11, 0.5); --vb-feat-shadow: rgba(245, 158, 11, 0.2); }
.vb-feature--rose    { --vb-feat-c1: #f43f5e; --vb-feat-c2: #ec4899; --vb-feat-icon: #fb7185; --vb-feat-bg1: rgba(244, 63, 94, 0.25); --vb-feat-bg2: rgba(236, 72, 153, 0.18); --vb-feat-border: rgba(244, 63, 94, 0.5); --vb-feat-shadow: rgba(244, 63, 94, 0.2); }
.vb-feature--emerald { --vb-feat-c1: #10b981; --vb-feat-c2: #14b8a6; --vb-feat-icon: #34d399; --vb-feat-bg1: rgba(16, 185, 129, 0.25); --vb-feat-bg2: rgba(20, 184, 166, 0.18); --vb-feat-border: rgba(16, 185, 129, 0.5); --vb-feat-shadow: rgba(16, 185, 129, 0.2); }
.vb-feature--lime    { --vb-feat-c1: #a3e635; --vb-feat-c2: #84cc16; --vb-feat-icon: #bef264; --vb-feat-bg1: rgba(163, 230, 53, 0.28); --vb-feat-bg2: rgba(132, 204, 22, 0.2); --vb-feat-border: rgba(163, 230, 53, 0.5); --vb-feat-shadow: rgba(163, 230, 53, 0.2); }
.vb-feature--cyan    { --vb-feat-c1: #06b6d4; --vb-feat-c2: #0ea5e9; --vb-feat-icon: #22d3ee; --vb-feat-bg1: rgba(6, 182, 212, 0.25); --vb-feat-bg2: rgba(14, 165, 233, 0.18); --vb-feat-border: rgba(6, 182, 212, 0.5); --vb-feat-shadow: rgba(6, 182, 212, 0.2); }
.vb-feature--fuchsia { --vb-feat-c1: #d946ef; --vb-feat-c2: #a855f7; --vb-feat-icon: #e879f9; --vb-feat-bg1: rgba(217, 70, 239, 0.25); --vb-feat-bg2: rgba(168, 85, 247, 0.18); --vb-feat-border: rgba(217, 70, 239, 0.5); --vb-feat-shadow: rgba(217, 70, 239, 0.2); }

/* ---------- Pricing ---------- */
.vb-pricing__toggle {
  display: inline-flex; align-items: center; padding: 4px;
  border-radius: 999px; background: var(--vb-card);
  border: 1px solid var(--vb-card-border);
  margin: 0 auto 50px; gap: 4px;
}
.vb-pricing__toggle button {
  padding: 10px 22px; border-radius: 999px;
  background: transparent; color: var(--vb-text-dim);
  border: none; cursor: pointer; font-size: 14.5px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.vb-pricing__toggle button.is-active {
  background: linear-gradient(135deg, var(--vb-violet), var(--vb-pink));
  color: white;
}
.vb-pricing__toggle .vb-save {
  margin-left: 6px; font-size: 11px; padding: 2px 6px;
  background: rgba(163, 230, 53, 0.2); color: var(--vb-lime);
  border-radius: 6px; font-weight: 700;
}

.vb-plans { display: grid; grid-template-columns: repeat(3, minmax(260px, 320px)); gap: 22px; justify-content: center; max-width: 1100px; margin: 0 auto; }
@media (max-width: 880px) { .vb-plans { grid-template-columns: minmax(0, 360px); max-width: 360px; } }

.vb-plan {
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column;
  position: relative; transition: transform 0.2s, border-color 0.2s;
}
.vb-plan:hover { transform: translateY(-4px); }
.vb-plan--highlighted {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.06));
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 24px 60px rgba(168, 85, 247, 0.15);
}
.vb-plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--vb-violet), var(--vb-pink));
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vb-plan__name { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.vb-plan__tag { color: var(--vb-text-mute); font-size: 13.5px; margin: 0 0 22px; min-height: 38px; }
.vb-plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.vb-plan__price .amount { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.vb-plan__price .currency { font-size: 18px; color: var(--vb-text-dim); }
.vb-plan__cycle { color: var(--vb-text-mute); font-size: 13px; margin-bottom: 24px; min-height: 18px; }
.vb-plan__features { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.vb-plan__features li {
  padding: 7px 0 7px 26px; position: relative;
  color: var(--vb-text-dim); font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.vb-plan__features li:last-child { border-bottom: none; }
.vb-plan__features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(163, 230, 53, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6.5' stroke='%23a3e635' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}
.vb-plan__cta { width: 100%; justify-content: center; }

/* ---------- BYO keys callout ---------- */
.vb-callout {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(163, 230, 53, 0.04));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 800px) { .vb-callout { grid-template-columns: 1fr; padding: 32px; } }
.vb-callout__h { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.15; }
.vb-callout__p { color: var(--vb-text-dim); margin: 0; }
.vb-callout__keys { display: flex; flex-wrap: wrap; gap: 10px; }
.vb-key {
  padding: 8px 16px; border-radius: 999px;
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  font-size: 13.5px; font-weight: 600; color: var(--vb-text-dim);
}

/* ---------- FAQ ---------- */
.vb-faq { max-width: 780px; margin: 0 auto; }
.vb-faq details {
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  border-radius: 12px; padding: 4px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.vb-faq details[open] { border-color: rgba(168, 85, 247, 0.3); }
.vb-faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 0; font-size: 16.5px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.vb-faq summary::-webkit-details-marker { display: none; }
.vb-faq summary::after {
  content: '+'; font-size: 24px; color: var(--vb-violet);
  font-weight: 300; transition: transform 0.2s;
}
.vb-faq details[open] summary::after { transform: rotate(45deg); }
.vb-faq__a { padding: 0 0 18px; color: var(--vb-text-dim); margin: 0; }

/* ---------- "See it live" — JeffreyLong.com example ---------- */
.vb-live { max-width: 760px; margin: 0 auto; }
.vb-live__card {
  display: block; border-radius: 18px; overflow: hidden;
  background: var(--vb-card); border: 1px solid var(--vb-card-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  color: inherit;
}
.vb-live__card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.25);
}
.vb-live__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vb-live__dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.vb-live__dot:nth-child(1) { background: #ff5f57; }
.vb-live__dot:nth-child(2) { background: #febc2e; }
.vb-live__dot:nth-child(3) { background: #28c840; }
.vb-live__url {
  flex: 1; margin-left: 16px;
  font-size: 13px; color: var(--vb-text-mute);
  font-family: ui-monospace, monospace;
  background: rgba(255,255,255,0.05);
  padding: 5px 14px; border-radius: 6px;
}
.vb-live__screen {
  padding: 60px 40px;
  background:
    radial-gradient(at 20% 0%, rgba(212, 175, 122, 0.12) 0, transparent 50%),
    radial-gradient(at 80% 100%, rgba(168, 85, 247, 0.08) 0, transparent 50%),
    #0b0a10;
  text-align: center;
}
.vb-live__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #d4af7a;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(212, 175, 122, 0.1); border: 1px solid rgba(212, 175, 122, 0.3);
  margin-bottom: 14px;
}
.vb-live__h1 {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 12px;
  font-family: 'Playfair Display', Georgia, serif;
}
.vb-live__sub {
  font-size: 15px; color: var(--vb-text-dim); max-width: 380px; margin: 0 auto;
}
.vb-live__cta {
  display: block; text-align: center;
  padding: 18px; font-weight: 700; font-size: 15px;
  background: linear-gradient(90deg, var(--vb-violet), var(--vb-pink));
  color: white;
  transition: filter 0.2s;
}
.vb-live__card:hover .vb-live__cta { filter: brightness(1.15); }

/* ---------- Final CTA ---------- */
.vb-cta-band {
  text-align: center; padding: 100px 24px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}
.vb-cta-band__h {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 20px;
}
.vb-cta-band__h em { font-style: normal; background: linear-gradient(120deg, var(--vb-violet), var(--vb-pink), var(--vb-lime)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vb-cta-band__p { color: var(--vb-text-dim); margin: 0 0 32px; }

/* ---------- Footer ---------- */
.vb-footer {
  border-top: 1px solid var(--vb-card-border);
  padding: 60px 24px 40px; color: var(--vb-text-mute);
  font-size: 14px;
}
.vb-footer__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.vb-footer a:hover { color: var(--vb-text); }

/* ---------- Reveal-on-scroll ---------- */
.vb-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.vb-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== Mobile optimizations (≤640px) ==========
   Tightens spacing, lets the hero headline shrink, makes CTAs full-width,
   and ensures no section creates horizontal scroll on a 320px viewport. */
@media (max-width: 640px) {
  body.vb-marketing { font-size: 16px; }
  .vb-wrap { padding: 0 16px; }
  .vb-section { padding: 56px 16px; }
  .vb-section__head { margin-bottom: 36px; }

  /* Nav: tighter */
  .vb-nav__inner { padding: 14px 16px; }
  .vb-logo { font-size: 17px; }
  .vb-nav__cta { padding: 9px 14px; font-size: 14px; }

  /* Hero: less vertical, smaller h1 floor so it fits 320px */
  .vb-hero { padding: 48px 16px 36px; }
  .vb-hero__h1 { font-size: clamp(30px, 9vw, 56px); margin-bottom: 18px; }
  .vb-hero__sub { font-size: 16px; margin-bottom: 28px; }
  .vb-hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .vb-btn { padding: 14px 22px; font-size: 15px; justify-content: center; width: 100%; }
  .vb-wave { margin-top: 36px; height: 44px; }

  /* Section headings: shorter rhythm */
  .vb-section__h2 { font-size: clamp(26px, 6vw, 36px); }

  /* Step rows: tighter spacing */
  .vb-step-row { gap: 24px; padding: 28px 0; }
  .vb-step-row__h { font-size: clamp(24px, 6vw, 32px); margin-bottom: 14px; }
  .vb-step-row__p { font-size: 16px; }

  /* Phone mock: smaller so it doesn't dominate */
  .vb-mock__phone { width: min(220px, 70%); }
  .vb-mock__phone-screen { padding: 48px 16px 18px; }
  .vb-mock__phone-timer { font-size: 30px; margin-bottom: 14px; }

  /* Transform mock: keep tight */
  .vb-mock--transform { gap: 14px; }

  /* Browser frame in distribute mock */
  .vb-mock__browser-content { padding: 14px; }
  .vb-mock__browser-title { font-size: 14px; }

  /* Features: smaller padding (already 1-col under 600px) */
  .vb-feature { padding: 20px; }
  .vb-feature__h { font-size: 16px; }

  /* Pricing: toggle + cards */
  .vb-pricing__toggle { width: 100%; max-width: 360px; }
  .vb-pricing__toggle button { flex: 1; padding: 9px 8px; font-size: 13px; }
  .vb-pricing__toggle .vb-save { display: none; }
  .vb-plans { gap: 16px; }
  .vb-plan { padding: 28px 22px; }
  .vb-plan__price .amount { font-size: 38px; }

  /* BYO callout: tighter */
  .vb-callout { padding: 28px 22px; gap: 24px; }
  .vb-callout__h { font-size: 26px; }

  /* See-it-live */
  .vb-live__screen { padding: 36px 20px; }
  .vb-live__h1 { font-size: 30px; }
  .vb-live__bar { padding: 10px 12px; }
  .vb-live__url { font-size: 11px; padding: 4px 10px; }

  /* FAQ */
  .vb-faq details { padding: 2px 16px; }
  .vb-faq summary { font-size: 15px; padding: 14px 0; }

  /* Final CTA band */
  .vb-cta-band { padding: 64px 16px; }
}

/* Even narrower (≤380px): squeeze for tiny phones */
@media (max-width: 380px) {
  .vb-hero__h1 { font-size: 28px; }
  .vb-section__h2 { font-size: 24px; }
  .vb-step-row__h { font-size: 22px; }
  .vb-mock__phone { width: 200px; }
}

/* Prevent any rogue element from creating horizontal scroll on mobile */
html, body { overflow-x: hidden; }
