/* Homepage and public site */

/* Navbar --------------------------------------------------------------- */
.vl-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vl-slate-100);
  box-shadow: var(--vl-shadow-xs);
}
.vl-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.vl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.6px;
  color: var(--vl-navy);
}
.vl-logo:hover { color: var(--vl-navy); text-decoration: none; }
.vl-logo { gap: 3px; }
.vl-logo-img { height: 28px; width: auto; display: block; }
.vl-logo .vl-tm--logo { font-size: 10px; font-weight: 700; align-self: flex-start; margin-top: 3px; opacity: 0.5; color: var(--vl-slate-500); }
.vl-logo-dot {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--vl-blue), #5b3fdb);
  box-shadow: var(--vl-shadow-blue);
}
/* Footer wordmark */
.vl-footer-logo { height: 26px; width: auto; display: block; margin-bottom: 14px; }
.vl-nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
}
.vl-nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--vl-slate-800);
  padding: 9px 14px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.vl-nav-link:hover { background: var(--vl-slate-100); color: var(--vl-navy); text-decoration: none; }

.vl-nav-avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 2px solid var(--vl-white);
  box-shadow: var(--vl-shadow-sm);
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.15s ease;
}
.vl-nav-avatar:hover { transform: scale(1.05); }

.vl-nav-menu { position: relative; }
.vl-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--vl-white);
  border: 1px solid var(--vl-slate-200);
  border-radius: 14px;
  box-shadow: var(--vl-shadow-lg);
  padding: 8px;
  min-width: 220px;
  display: none;
}
.vl-nav-menu.is-open .vl-nav-dropdown { display: block; animation: dropIn 0.18s ease; }
/* Top-level Workspace menu: organization, importer and tours in one place,
   instead of only being reachable from inside "My tours". */
.vl-nav-workspace .vl-nav-dropdown { right: auto; left: 0; }
.vl-nav-workspace-btn {
  border: 1px solid var(--vl-slate-200);
  background: none;
  border-radius: 999px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--vl-slate-800);
  cursor: pointer;
  white-space: nowrap;
}
.vl-nav-workspace-btn:hover { background: var(--vl-blue-light); color: var(--vl-blue-pressed); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.vl-nav-dropdown a, .vl-nav-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--vl-slate-800);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.12s ease, color 0.12s ease;
}
.vl-nav-dropdown a:hover, .vl-nav-dropdown button:hover {
  background: var(--vl-blue-light);
  color: var(--vl-blue-pressed);
  text-decoration: none;
}

/* Sign-in button - distinct, polished primary CTA */
.vl-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--vl-blue), #5b3fdb);
  box-shadow: var(--vl-shadow-blue);
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.vl-signin:hover { color: #fff; text-decoration: none; transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 8px 26px rgba(36,83,255,0.4); }
.vl-signin:active { transform: translateY(0); }
.vl-signin i { font-size: 13px; }

/* Submit-a-venue nav pill */
.vl-nav-submit {
  color: var(--vl-blue);
  background: var(--vl-blue-light);
  font-weight: 700;
}
.vl-nav-submit:hover { background: #dce6ff; color: var(--vl-blue-pressed); }

/* Avatar button + placeholder */
.vl-nav-avatar-btn { background: none; border: none; padding: 0; cursor: pointer; line-height: 0; }
.vl-nav-avatar--ph {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vl-blue), #5b3fdb);
  color: #fff; font-weight: 800; font-size: 15px;
}

@media (max-width: 860px) {
  .vl-nav-submit span, .vl-nav-submit { font-size: 13px; }
}
@media (max-width: 768px) {
  .vl-nav-link { display: none; }
  .vl-nav-link.always { display: inline-flex; }
  .vl-nav-inner { padding: 12px 16px; gap: 14px; }
}
@media (max-width: 480px) {
  .vl-nav-submit { display: none !important; }
  .vl-signin span { display: none; }
  .vl-signin { padding: 10px 13px; }
}

/* Hero ----------------------------------------------------------------- */
.vl-hero {
  padding: 96px 24px 72px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(36, 83, 255, 0.13), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(91, 63, 219, 0.10), transparent 60%),
    var(--vl-page-bg);
}
.vl-hero h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -1.2px;
  color: var(--vl-navy);
  line-height: 1.1;
}
.vl-hero p {
  font-size: 17px;
  color: var(--vl-slate-600);
  max-width: 660px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.vl-hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Hero social-proof stats band ----------------------------------------- */
.vl-hero-stats {
  margin: 40px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--vl-slate-100);
  border-radius: var(--vl-radius-card);
  box-shadow: var(--vl-shadow-sm);
}
.vl-stat { text-align: center; padding: 4px 6px; }
.vl-stat-num {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--vl-navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.vl-stat-label {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--vl-slate-500);
}
@media (max-width: 760px) {
  .vl-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px 8px; padding: 16px 14px; }
}
@media (max-width: 420px) {
  .vl-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Filters -------------------------------------------------------------- */
.vl-filters {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vl-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex-wrap: wrap;
}
.vl-tab {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--vl-white);
  border: 1.5px solid var(--vl-slate-200);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--vl-slate-800);
  transition: all 0.15s ease;
  font-family: inherit;
}
.vl-tab:hover {
  border-color: var(--vl-blue);
  color: var(--vl-blue);
  background: var(--vl-blue-tint);
}
.vl-tab.active {
  background: var(--vl-blue);
  color: var(--vl-white);
  border-color: var(--vl-blue);
  box-shadow: var(--vl-shadow-blue);
}

.vl-search-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vl-search-row .form-input { flex: 1 1 260px; }
.vl-search-row .form-select { flex: 0 0 190px; }
@media (max-width: 640px) {
  .vl-search-row .form-select { flex: 1 1 100%; }
}

/* Card grid ------------------------------------------------------------ */
.vl-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.vl-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 16px;
  color: var(--vl-slate-600);
  background: var(--vl-white);
  border-radius: var(--vl-radius-card);
  border: 1.5px dashed var(--vl-slate-200);
}

/* Load-more (progressive card loading) */
.vl-load-more-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vl-load-more-count { font-size: 13px; margin: 0; }

/* Trademark mark */
.vl-tm {
  font-size: 0.42em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 1px;
  color: currentColor;
  opacity: 0.6;
}
.vl-empty p { color: var(--vl-slate-600); }

/* "Did you mean...?" chips shown when a search matches nothing. */
.vl-suggest-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.vl-suggest-row .btn { text-transform: capitalize; }

.vl-card {
  background: var(--vl-card-bg);
  border-radius: var(--vl-radius-card);
  box-shadow: var(--vl-shadow-sm);
  border: 1px solid var(--vl-slate-100);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vl-shadow-lg);
  border-color: var(--vl-slate-200);
}

.vl-card-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--vl-slate-100);
  overflow: hidden;
  display: block;
}

.vl-pano-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.vl-pano-strip {
  position: absolute;
  inset: 0;
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: 0 50%;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.vl-pano-preview.vl-pano-loaded .vl-pano-strip { opacity: 1; }

.vl-card:hover .vl-pano-preview.vl-pano-loaded .vl-pano-strip,
.vl-card.vl-pano-active .vl-pano-preview.vl-pano-loaded .vl-pano-strip {
  animation: panoScroll 22s linear infinite;
}
@keyframes panoScroll {
  0%   { background-position: 0% 50%; }
  100% { background-position: -200% 50%; }
}

.vl-card-image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.vl-card-logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(11,18,36,0.05), rgba(11,18,36,0.45));
  transition: opacity 0.3s ease;
  z-index: 2;
}
.vl-card:hover .vl-card-logo-overlay,
.vl-card.vl-pano-active .vl-card-logo-overlay { opacity: 0; }
.vl-card-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 64%;
  padding: 9px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 22px rgba(11, 18, 36, 0.22);
}
.vl-card-logo-img {
  height: 42px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.vl-card-logo-fallback {
  font-size: 24px;
  font-weight: 800;
  color: var(--vl-white);
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
  letter-spacing: -0.6px;
  padding: 0 24px;
  text-align: center;
}

.vl-card-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  box-shadow: var(--vl-shadow-sm);
}

/* The body fills whatever height the grid row settles on, and the buttons
   sit at its foot. Without this, a card with no address and no tags kept its
   content at the top and left a pool of white below the buttons - which reads
   as a card that failed to load rather than a place with less to say. */
.vl-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.vl-card-actions { margin-top: auto; padding-top: 4px; }


.vl-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--vl-navy);
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
/* ── Card slots, all fixed ─────────────────────────────────────────────
   A card is a recognisable shape, not a variable-length document. Each row
   below reserves its space whether or not it has anything to put in it, so
   a place with three tags and a long name occupies exactly the same box as
   one with neither. That is what makes a grid of them scannable.
   ───────────────────────────────────────────────────────────────────── */

/* One line, ellipsised. Reserving a second line meant every card with a
   short name carried 22px of blank, and almost every real name fits one line
   at this width - so the reservation was paying for the exception and
   charging the rule. */
.vl-card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 7px;
}

.vl-card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--vl-slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vl-card-meta i { font-size: 11.5px; opacity: 0.7; }

/* Kept for anywhere still rendering a subtitle (the details panel). */
.vl-card-subtitle {
  font-size: 13.5px;
  color: var(--vl-slate-600);
  margin: 0 0 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
.vl-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.vl-card-tags span {
  background: var(--vl-slate-100);
  color: var(--vl-slate-800);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.vl-card-actions { display: flex; gap: 8px; margin-top: auto; }
.vl-card-actions .btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* Sections ------------------------------------------------------------- */
.vl-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.vl-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--vl-navy);
  letter-spacing: -0.6px;
}
.vl-section p { color: var(--vl-slate-600); line-height: 1.75; max-width: 760px; font-size: 15.5px; }

.vl-how-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.vl-how-step {
  background: var(--vl-white);
  border-radius: var(--vl-radius-card);
  padding: 28px;
  box-shadow: var(--vl-shadow-sm);
  border: 1px solid var(--vl-slate-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vl-how-step:hover { transform: translateY(-2px); box-shadow: var(--vl-shadow-md); }
.vl-how-step-num {
  display: inline-flex;
  width: 40px; height: 40px;
  background: var(--vl-blue-light);
  color: var(--vl-blue);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 16px;
}
.vl-how-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--vl-navy); }
.vl-how-step p  { font-size: 14px; color: var(--vl-slate-600); margin: 0; line-height: 1.65; }

/* Pricing page ---------------------------------------------------------- */
.vl-billing-toggle {
  display: inline-flex; gap: 4px; margin-top: 22px;
  background: var(--vl-white); border: 1.5px solid var(--vl-slate-200);
  border-radius: 999px; padding: 4px;
}
.vl-bt-opt {
  border: none; background: transparent; cursor: pointer;
  padding: 8px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; color: var(--vl-slate-600);
  font-family: inherit; transition: all 0.15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.vl-bt-opt.active { background: var(--vl-blue); color: #fff; box-shadow: var(--vl-shadow-blue); }
.vl-bt-save {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px;
  background: var(--vl-green-light); color: #0c7a3c;
  padding: 2px 8px; border-radius: 999px;
}
.vl-bt-opt.active .vl-bt-save { background: rgba(255,255,255,0.2); color: #fff; }

.vl-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.vl-plan-card {
  position: relative;
  background: var(--vl-white);
  border: 1.5px solid var(--vl-slate-200);
  border-radius: var(--vl-radius-card);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vl-plan-card:hover { transform: translateY(-3px); box-shadow: var(--vl-shadow-md); }
.vl-plan-card--hot { border-color: var(--vl-blue); box-shadow: 0 12px 34px rgba(36,83,255,0.14); }
.vl-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--vl-blue); color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 999px; box-shadow: var(--vl-shadow-blue);
  white-space: nowrap;
}
.vl-plan-card h3 { margin: 0 0 6px; font-size: 19px; }
.vl-plan-tagline { font-size: 13px; color: var(--vl-slate-600); margin: 0 0 16px; min-height: 38px; }
.vl-plan-price { margin-bottom: 18px; display: flex; align-items: baseline; gap: 6px; }
.vl-plan-amount { font-size: 34px; font-weight: 800; letter-spacing: -1px; color: var(--vl-navy); font-variant-numeric: tabular-nums; }
.vl-plan-per { font-size: 13px; color: var(--vl-slate-500); font-weight: 600; }
/* "Coming soon" pill shown in place of a price while paid tiers are hidden */
.vl-plan-soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.2px;
  color: var(--vl-blue, #2453ff);
  background: linear-gradient(135deg, rgba(36, 83, 255, 0.10), rgba(91, 63, 219, 0.10));
  border: 1px solid rgba(36, 83, 255, 0.22);
}
.vl-plan-soon i { font-size: 12px; opacity: 0.8; }
.vl-plan-features { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.vl-plan-features li {
  font-size: 13.5px; color: var(--vl-slate-700); padding: 7px 0 7px 26px;
  position: relative; border-bottom: 1px dashed var(--vl-slate-100);
}
.vl-plan-features li::before {
  content: "\2713"; position: absolute; left: 2px; top: 7px;
  color: var(--vl-green); font-weight: 800;
}

/* "For every industry" sector grid ------------------------------------- */
.vl-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.vl-industry-card {
  background: var(--vl-white);
  border: 1px solid var(--vl-slate-100);
  border-radius: var(--vl-radius-card);
  padding: 20px;
  box-shadow: var(--vl-shadow-xs);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vl-industry-card:hover { transform: translateY(-2px); box-shadow: var(--vl-shadow-md); }
.vl-industry-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  font-size: 15px; margin-bottom: 12px;
}
.vl-industry-card h3 { font-size: 15px; margin: 0 0 5px; color: var(--vl-navy); letter-spacing: -0.2px; }
.vl-industry-card p { font-size: 13px; color: var(--vl-slate-600); margin: 0; line-height: 1.55; }

.vl-partner-banner {
  background: linear-gradient(135deg, var(--vl-blue) 0%, #5b3fdb 100%);
  color: var(--vl-white);
  border-radius: 18px;
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(36, 83, 255, 0.25);
}
.vl-partner-banner h2 { color: var(--vl-white); margin: 0; font-size: 26px; letter-spacing: -0.5px; }
.vl-partner-banner p  { color: rgba(255,255,255,0.9); margin: 8px 0 0; font-size: 15.5px; }
.vl-partner-banner .btn { background: var(--vl-white); color: var(--vl-blue-pressed); border-color: var(--vl-white); }
.vl-partner-banner .btn:hover { background: var(--vl-slate-100); border-color: var(--vl-slate-100); color: var(--vl-blue-pressed); }

/* Footer --------------------------------------------------------------- */
.vl-footer {
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(36, 83, 255, 0.14), transparent 65%),
    radial-gradient(600px 300px at 88% 100%, rgba(91, 63, 219, 0.10), transparent 65%),
    var(--vl-navy);
  color: var(--vl-slate-300);
  padding: 60px 24px 26px;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vl-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.vl-footer h4 {
  color: var(--vl-white); font-size: 12.5px; margin: 0 0 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.vl-footer p  { color: var(--vl-slate-400); font-size: 13.5px; line-height: 1.7; max-width: 320px; margin: 0 0 18px; }
.vl-footer a {
  color: var(--vl-slate-300);
  display: block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease, transform 0.15s ease;
}
.vl-footer a:hover { color: var(--vl-white); text-decoration: none; transform: translateX(2px); }
.vl-footer-brand .vl-footer-logo { height: 28px; }
.vl-footer-social { display: flex; gap: 10px; }
.vl-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; padding: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--vl-slate-300); font-size: 15px;
  transition: all 0.15s ease;
}
.vl-footer-social a:hover { background: var(--vl-blue); border-color: var(--vl-blue); color: #fff; transform: translateY(-2px); }
.vl-footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 13px;
  color: var(--vl-slate-500);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.vl-footer-bottom a { display: inline; padding: 0; color: var(--vl-slate-300); }
.vl-footer-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.vl-footer-badges span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--vl-slate-400);
}
.vl-footer-badges i { color: #7c8cff; font-size: 12px; }
@media (max-width: 960px) { .vl-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .vl-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .vl-footer-bottom { justify-content: center; text-align: center; }
}

/* Legal pages (privacy / terms) */
.vl-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
.vl-legal-eyebrow {
  text-transform: uppercase; letter-spacing: 1px; font-size: 12px; font-weight: 700;
  color: var(--vl-blue); margin: 0 0 6px;
}
.vl-legal h1 { font-size: clamp(28px, 4vw, 38px); margin: 0 0 6px; letter-spacing: -0.6px; }
.vl-legal-updated { color: var(--vl-slate-500); font-size: 13.5px; margin: 0 0 28px; }
.vl-legal h2 { font-size: 19px; margin: 30px 0 10px; color: var(--vl-navy); }
.vl-legal p { font-size: 15px; line-height: 1.75; color: var(--vl-slate-700); margin: 0 0 14px; }
.vl-legal ul { margin: 0 0 16px; padding-left: 22px; }
.vl-legal li { font-size: 15px; line-height: 1.7; color: var(--vl-slate-700); margin-bottom: 8px; }
.vl-legal-foot { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--vl-slate-100); }
/* (footer responsive rules live with the footer block above) */

/* Compact hero (homepage with map) ------------------------------------ */
.vl-hero--compact { padding: 64px 24px 36px; }

/* Google Map section --------------------------------------------------- */
.vl-map-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px 4px;
}
.vl-map-shell {
  background: var(--vl-white);
  border: 1px solid var(--vl-slate-100);
  border-radius: var(--vl-radius-card);
  box-shadow: var(--vl-shadow-sm);
  overflow: hidden;
}
.vl-map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
.vl-map-header-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--vl-blue-light);
  color: var(--vl-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.vl-map-header h2 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.4px; }
.vl-map-count {
  background: var(--vl-blue); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 2px 10px; border-radius: 999px;
}
.vl-map-subtitle { margin: 0; font-size: 13.5px; color: var(--vl-slate-500); margin-left: auto; }
.vl-map-frame { position: relative; }
.vl-map-canvas { width: 100%; height: 56vh; min-height: 420px; max-height: 640px; background: var(--vl-slate-100); }
.vl-map-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(247, 249, 252, 0.94); z-index: 2;
}
.vl-map-loader-text { font-size: 13.5px; color: var(--vl-slate-600); font-weight: 600; }
.vl-spinner {
  width: 30px; height: 30px; border-radius: 999px;
  border: 3px solid var(--vl-slate-200); border-top-color: var(--vl-blue);
  animation: vlspin 0.8s linear infinite;
}
@keyframes vlspin { to { transform: rotate(360deg); } }

/* Map-view chip in the homepage filter tabs */
.vl-tab--map {
  display: inline-flex; align-items: center;
  color: var(--vl-blue);
  border-color: var(--vl-blue-light);
  background: var(--vl-blue-tint);
  font-weight: 700;
  text-decoration: none;
}
.vl-tab--map:hover { text-decoration: none; }

/* Explore page (full-screen map) --------------------------------------- */
.vl-explore {
  display: flex;
  flex-direction: column;
  /* fill the viewport below the sticky navbar */
  min-height: calc(100vh - 61px);
}
.vl-explore-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: var(--vl-white);
  border-bottom: 1px solid var(--vl-slate-100);
}
.vl-explore-heading { display: flex; align-items: center; gap: 10px; }
.vl-explore-heading h1 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -0.4px; }
.vl-explore-tabs { flex: 1 1 auto; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vl-explore-gallery-link { flex-shrink: 0; }
/* Step-by-step exit from the map: label changes with what it will undo. */
.vl-explore-back { flex-shrink: 0; margin-left: auto; white-space: nowrap; }
.vl-explore-map-wrap { position: relative; flex: 1; min-height: 420px; }
.vl-explore-map { position: absolute; inset: 0; background: var(--vl-slate-100); }
@media (max-width: 640px) {
  .vl-explore-bar { padding: 10px 14px; gap: 10px; }
  .vl-explore-heading h1 { font-size: 16px; }
  .vl-explore-gallery-link span { display: none; }
  .vl-explore-back [data-back-label] { display: none; }
  .vl-explore-back { margin-left: 0; }
}

/* Map cluster bubble */
.vl-cluster-circle {
  border-radius: 999px; background: var(--vl-blue);
  border: 3px solid #fff; color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(36,83,255,0.45); font-family: var(--vl-font-body);
}
@media (max-width: 640px) {
  .vl-map-canvas { height: 50vh; min-height: 340px; }
  .vl-map-subtitle { display: none; }
}

/* Generic category badge fallback (custom categories). Specific badge-<type>
   colours live in tokens.css - the single source of truth for badges. */
.vl-card-type-badge.badge { text-transform: capitalize; }

/* More-Info modal ------------------------------------------------------ */
.vl-info-modal { width: min(560px, 100%); padding: 0; position: relative; }
.vl-info-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 999px;
  border: none; background: rgba(255,255,255,0.9); color: var(--vl-slate-700);
  cursor: pointer; box-shadow: var(--vl-shadow-sm); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.vl-info-close:hover { background: var(--vl-slate-100); color: var(--vl-navy); }
#infoModalBody { padding: 24px; }
.vl-info-head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; padding-right: 30px; }
.vl-info-logo { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; background: var(--vl-slate-100); flex-shrink: 0; }
.vl-info-logo--ph { display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: var(--vl-blue); }
.vl-info-title { font-size: 21px; margin: 6px 0 2px; letter-spacing: -0.4px; }
.vl-info-area { font-size: 13.5px; color: var(--vl-slate-500); margin: 0; }
.vl-info-desc { font-size: 14px; color: var(--vl-slate-700); line-height: 1.6; margin: 0 0 16px; }
.vl-info-rows { display: grid; gap: 10px; margin-bottom: 16px; }
.vl-info-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.vl-info-row > i { color: var(--vl-blue); width: 18px; text-align: center; margin-top: 3px; }
.vl-info-row-label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--vl-slate-400); }
.vl-info-row-value { display: block; color: var(--vl-slate-800); }
.vl-info-chips { margin-bottom: 14px; }
.vl-info-chips-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--vl-slate-400); margin-bottom: 6px; }
.vl-info-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--vl-slate-100); margin-bottom: 16px; background: var(--vl-slate-100); }
.vl-info-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.vl-info-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.vl-info-actions .btn-primary { flex: 1 1 100%; }

/* Subscriptions + beta waitlist ---------------------------------------- */
.vl-subs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 820px) { .vl-subs-grid { grid-template-columns: 1fr; } }

.vl-subs-soon {
  background: var(--vl-white);
  border: 1.5px dashed var(--vl-slate-300);
  border-radius: var(--vl-radius-card);
  padding: 28px;
}
.vl-subs-badge {
  display: inline-block;
  background: var(--vl-amber-light);
  color: var(--vl-amber);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.vl-subs-soon h3 { font-size: 19px; margin: 0 0 8px; color: var(--vl-navy); }
.vl-subs-soon p  { margin: 0; font-size: 14.5px; color: var(--vl-slate-600); }

.vl-waitlist {
  background: linear-gradient(135deg, var(--vl-blue) 0%, #5b3fdb 100%);
  color: #fff;
  border-radius: var(--vl-radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 16px 44px rgba(36, 83, 255, 0.22);
}
.vl-waitlist-copy h3 { color: #fff; margin: 0 0 8px; font-size: 20px; }
.vl-waitlist-copy p  { color: rgba(255,255,255,0.92); margin: 0; font-size: 14.5px; line-height: 1.6; }
.vl-waitlist-action { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.vl-waitlist-action .btn-primary {
  background: #fff; color: var(--vl-blue-pressed); border-color: #fff;
}
.vl-waitlist-action .btn-primary:hover { background: var(--vl-slate-100); color: var(--vl-blue-pressed); }
.vl-waitlist-state {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 16px; border-radius: 10px;
}
.vl-waitlist-state--ok { background: rgba(255,255,255,0.22); }

/* AI editor token pill */
.ai-pill--tokens { background: rgba(245,158,11,0.16); color: #ffd9a0; border-color: rgba(245,158,11,0.4); margin-right: 8px; }

/* Guided tour / coachmark styles live in tour.css (single source of truth,
   loaded on every page that loads tour.js). The stale copy that used to live
   here (it lacked .vlt-x) has been removed. */

/* Usage meters (account page) ------------------------------------------ */
.vl-usage-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 9px; }
.vl-usage-title { font-weight: 700; font-size: 14px; color: var(--vl-navy); display: inline-flex; align-items: center; gap: 8px; }
.vl-usage-title i { color: var(--vl-blue); }
.vl-usage-num { font-size: 13.5px; font-weight: 600; color: var(--vl-slate-700); }
.vl-usage-track { height: 10px; border-radius: 999px; background: var(--vl-slate-100); overflow: hidden; }
.vl-usage-fill { height: 100%; border-radius: 999px; transition: width 0.45s ease, background 0.2s ease; }
.vl-usage-fill.ok   { background: linear-gradient(90deg, var(--vl-blue), #6aa0ff); }
.vl-usage-fill.warn { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.vl-usage-fill.crit { background: linear-gradient(90deg, #dc2626, #f87171); }
.vl-usage-foot { display: flex; justify-content: space-between; margin-top: 7px; font-size: 12px; color: var(--vl-slate-500); }
