:root {
  --vt-navy: #061947;
  --vt-deep: #082a67;
  --vt-royal: #2563eb;
  --vt-blue-soft: #eef4ff;
  --vt-amber: #f59e0b;
  --vt-gold: #e6b84a;
  --vt-elite: #d97706;
  --vt-bg: #f8fafc;
  --vt-line: #e5eaf2;
  --vt-text: #0f172a;
  --vt-muted: #64748b;
  --vt-success: #16a34a;
  --vt-danger: #dc2626;
  --vt-shadow: 0 22px 55px rgba(6, 25, 71, .14);
  --vt-shadow-soft: 0 12px 34px rgba(6, 25, 71, .08);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(37, 99, 235, .075), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(245, 158, 11, .095), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--vt-bg) 48%, #ffffff 100%);
  color: var(--vt-text);
}

body, input, select, textarea, button { letter-spacing: 0; }
a, button, input, select, textarea { transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; height: auto; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .38);
  outline-offset: 2px;
}

.vt-shell { background: linear-gradient(180deg, rgba(238, 244, 255, .7), rgba(248, 250, 252, .85)); }
.vt-container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.vt-public-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, .86);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(15, 23, 42, .05);
}
.vt-public-header nav a { border-radius: 999px; }
.vt-public-header img { display: block; max-width: min(190px, 46vw); }
.vt-public-header nav a:hover { background: var(--vt-blue-soft); color: var(--vt-navy); }

.vt-footer {
  background:
    linear-gradient(135deg, rgba(10, 31, 92, .98), rgba(18, 61, 145, .98)),
    var(--vt-navy);
  color: #dbeafe;
}
.vt-footer a { color: #dbeafe; }
.vt-footer a:hover { color: #fff; }

.vt-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 18%, rgba(245, 158, 11, .2), transparent 18rem),
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, .22), transparent 22rem),
    linear-gradient(135deg, #04132f 0%, #061947 50%, #082a67 100%);
}
.vt-home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(4,19,47,.96), rgba(6,25,71,.92)),
    radial-gradient(circle at 82% 20%, rgba(245,158,11,.18), transparent 18rem),
    #061947;
}
.vt-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.vt-hero > * { min-width: 0; }
.vt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.vt-hero::after {
  content: "";
  position: absolute;
  width: 48rem;
  height: 48rem;
  right: -22rem;
  bottom: -26rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 42px rgba(255, 255, 255, .035), inset 0 0 0 88px rgba(255, 255, 255, .025);
  z-index: -1;
  pointer-events: none;
}
.vt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  padding: .35rem .8rem;
  color: #fde68a;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.vt-display {
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}
.vt-lead { color: #dbeafe; font-size: 1.05rem; line-height: 1.75; }

.vt-search {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.96);
  box-shadow: var(--vt-shadow);
}
.vt-search input { border: 0 !important; box-shadow: none !important; }

.vt-btn-primary, .vt-btn-secondary, .vt-btn-gold, .vt-btn-ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: .85rem;
  padding: .75rem 1.1rem;
  font-weight: 800;
}
.vt-btn-primary { background: linear-gradient(135deg, var(--vt-royal), var(--vt-deep)); color: #fff !important; box-shadow: 0 12px 24px rgba(37, 99, 235, .22); }
.vt-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(47, 107, 255, .28); }
.vt-btn-gold { background: linear-gradient(135deg, #fbbf24, var(--vt-amber)); color: #111827 !important; box-shadow: 0 12px 24px rgba(245, 158, 11, .28); }
.vt-btn-gold:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(245, 158, 11, .31); }
.vt-btn-secondary { border: 1px solid rgba(10,31,92,.16); background: #fff; color: var(--vt-navy) !important; }
.vt-btn-secondary:hover { background: var(--vt-blue-soft); }
.vt-btn-ghost { border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: #fff !important; }
.vt-btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

.vt-card {
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.94);
  box-shadow: var(--vt-shadow-soft);
}
.vt-card-hover:hover { transform: translateY(-3px); box-shadow: var(--vt-shadow); border-color: rgba(47,107,255,.25); }
.vt-glass {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.vt-hero-visual {
  align-self: center;
  justify-self: center;
  width: min(100%, 430px);
}
.vt-hero-visual .vt-illustration {
  max-height: clamp(190px, 28vw, 300px);
  object-fit: contain;
}
.vt-network-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.vt-network-card {
  width: min(100%, 520px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  padding: 1.1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.vt-hero-point {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  padding: .65rem .85rem;
  color: #dbeafe;
  font-size: .82rem;
  font-weight: 800;
}
.vt-mini-metric {
  border-radius: .9rem;
  background: rgba(255,255,255,.1);
  padding: .75rem;
}
.vt-mini-metric strong {
  display: block;
  color: #fbbf24;
  font-size: .92rem;
  font-weight: 900;
}
.vt-mini-metric span {
  display: block;
  margin-top: .2rem;
  color: #dbeafe;
  font-size: .72rem;
  font-weight: 700;
}
.vt-section-title { font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.12; font-weight: 900; color: var(--vt-text); }
.vt-section-kicker { color: var(--vt-royal); font-size: .78rem; font-weight: 900; text-transform: uppercase; }

.vt-stat {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.1rem;
  background: rgba(255,255,255,.1);
  padding: 1rem;
  color: #fff;
}
.vt-stat strong { display:block; font-size: 1.8rem; line-height: 1; }
.vt-stat-light {
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--vt-shadow-soft);
}
.vt-stat-light strong {
  display: block;
  color: var(--vt-navy);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 950;
}
.vt-stat-light span {
  display: block;
  margin-top: .35rem;
  color: var(--vt-muted);
  font-size: .82rem;
  font-weight: 800;
}

.vt-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,.9);
  background: #fff;
  padding: .35rem .75rem;
  color: var(--vt-muted);
  font-size: .75rem;
  font-weight: 800;
}
.vt-chip-blue { background: var(--vt-blue-soft); color: var(--vt-deep); border-color: #dbeafe; }
.vt-chip-gold { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.vt-chip-green { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
.vt-check-chip {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid #bbf7d0;
  background: #ecfdf5;
  padding: .75rem .9rem;
  color: #047857;
  font-size: .82rem;
  font-weight: 900;
}
.vt-check-chip::before {
  content: "";
  width: .55rem;
  height: .55rem;
  margin-right: .65rem;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,.14);
}
.vt-service-tile {
  min-height: 70px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  color: var(--vt-navy);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(6,25,71,.06);
}
.vt-service-tile:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-2px);
  box-shadow: var(--vt-shadow-soft);
}

.vt-form input, .vt-form select, .vt-form textarea,
input.vt-input, select.vt-input, textarea.vt-input {
  border-radius: .95rem !important;
  border-color: #dbe3ef !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.vt-form input:focus, .vt-form select:focus, .vt-form textarea:focus,
input.vt-input:focus, select.vt-input:focus, textarea.vt-input:focus {
  border-color: var(--vt-royal) !important;
  box-shadow: 0 0 0 4px rgba(47,107,255,.14) !important;
}

.vt-directory-grid { display: grid; gap: 1.5rem; }
.vt-company-card {
  min-width: 0;
  border-radius: 1.4rem;
  border: 1px solid rgba(226,232,240,.95);
  background:
    linear-gradient(180deg, rgba(238,244,255,.55), rgba(255,255,255,.92) 42%),
    #fff;
  box-shadow: var(--vt-shadow-soft);
}
.vt-company-card:hover { transform: translateY(-2px); box-shadow: var(--vt-shadow); border-color: rgba(47,107,255,.24); }
.vt-avatar-ring { box-shadow: 0 0 0 4px rgba(47,107,255,.09), 0 10px 24px rgba(15,23,42,.12); }

.vt-dashboard-bg {
  background:
    radial-gradient(circle at 20% 0%, rgba(47,107,255,.1), transparent 24rem),
    radial-gradient(circle at 100% 20%, rgba(245,158,11,.12), transparent 22rem),
    var(--vt-bg);
}
.vt-sidebar {
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.16), transparent 12rem),
    linear-gradient(180deg, #04132f, #061947);
  box-shadow: var(--vt-shadow);
}
.vt-admin-hero, .vt-dashboard-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 78% 20%, rgba(245,158,11,.2), transparent 16rem),
    linear-gradient(135deg, #04132f, #061947 52%, #082a67);
  box-shadow: var(--vt-shadow);
}
.vt-admin-hero::after, .vt-dashboard-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .55;
}
.vt-admin-hero > *, .vt-dashboard-hero > * { position: relative; z-index: 1; }

.vt-table-card {
  border-radius: 1.25rem;
  border: 1px solid var(--vt-line);
  background: #fff;
  box-shadow: var(--vt-shadow-soft);
  overflow: hidden;
}
.vt-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: var(--vt-muted);
}
.vt-rfq-row {
  display: block;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
}
.vt-rfq-row:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-1px);
  box-shadow: var(--vt-shadow-soft);
}
.vt-membership-panel {
  border: 1px solid rgba(245,158,11,.28);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fff7ed, #fff 42%);
  padding: 1.5rem;
  box-shadow: var(--vt-shadow-soft);
}
.vt-membership-panel p {
  color: #475569;
  font-size: .9rem;
  line-height: 1.6;
}
.vt-final-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,.22), transparent 18rem),
    linear-gradient(135deg, #04132f, #061947 58%, #082a67);
  padding: 2rem;
  color: #fff;
  box-shadow: var(--vt-shadow);
}
@media (min-width: 1024px) {
  .vt-final-cta { grid-template-columns: 1fr auto; padding: 2.5rem; }
}

.vt-route-line {
  position: relative;
  padding-left: 2rem;
}
.vt-route-line::before {
  content: "";
  position: absolute;
  left: .55rem;
  top: .2rem;
  bottom: .2rem;
  width: 2px;
  background: linear-gradient(var(--vt-royal), var(--vt-amber));
}

.vt-illustration { display: block; width: 100%; max-width: 100%; height: auto; filter: drop-shadow(0 22px 36px rgba(0,0,0,.2)); }
.vt-section-illustration {
  display: block;
  width: min(100%, 520px);
  max-height: clamp(220px, 36vw, 430px);
  object-fit: contain;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .vt-public-header img { max-width: 108px; }
  .vt-public-header nav { flex: 1; }
  .vt-public-header nav a { min-height: 36px; padding: .45rem .4rem; }
  .vt-display { font-size: clamp(2rem, 10vw, 2.45rem) !important; line-height: 1.04; }
  .vt-lead { font-size: .98rem; line-height: 1.65; }
  .vt-hero { border-radius: 0 0 1.5rem 1.5rem; }
  .vt-hero::after { width: 22rem; height: 22rem; right: -12rem; bottom: -10rem; }
  .vt-hero-visual { width: min(100%, 290px); padding: .65rem !important; }
  .vt-hero-visual .vt-illustration { max-height: 210px; }
  .vt-section-illustration { max-height: 255px; }
  .vt-card, .vt-company-card { border-radius: 1rem; }
  .vt-search { border-radius: 1rem; }
  .vt-network-card { padding: .85rem; border-radius: 1rem; }
  .vt-network-card img { max-height: 210px !important; }
  .vt-stat-light strong { font-size: 1.45rem; }
  .vt-final-cta { padding: 1.35rem; border-radius: 1rem; }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .vt-hero-visual { width: min(100%, 460px); }
  .vt-section-illustration { max-height: 360px; }
}

/* Site-wide redesign pass */
[x-cloak] { display: none !important; }
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
h1, h2, h3, h4, .vt-display, .vt-section-title { font-family: Inter, system-ui, sans-serif; }
main, section, article, aside, div, form, table { min-width: 0; }
p, h1, h2, h3, h4, h5, h6, a, button, span, label, td, th { overflow-wrap: anywhere; }
button, [type="button"], [type="submit"], [role="button"], a[class*="btn"], .vt-btn-primary, .vt-btn-secondary, .vt-btn-gold, .vt-btn-ghost {
  min-height: 44px;
}
input, select, textarea { font-size: 16px; }
@media (min-width: 640px) {
  input, select, textarea { font-size: .875rem; }
}

.vt-app-nav {
  position: sticky;
  top: 0;
  z-index: 38;
  border-bottom: 1px solid rgba(226,232,240,.88);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  backdrop-filter: blur(18px);
}
.vt-app-nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: .65rem .95rem;
  color: #475569;
  font-size: .875rem;
  font-weight: 850;
}
.vt-app-nav-link:hover,
.vt-app-nav-link.is-active {
  background: var(--vt-blue-soft);
  color: var(--vt-navy);
}
.vt-mobile-nav-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: .9rem;
  padding: .7rem .85rem;
  color: #334155;
  font-size: .92rem;
  font-weight: 850;
}
.vt-mobile-nav-link:hover { background: var(--vt-blue-soft); color: var(--vt-navy); }
.vt-icon-btn {
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: .95rem;
  background: #fff;
  color: var(--vt-navy);
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.vt-icon-btn:hover { background: var(--vt-blue-soft); border-color: rgba(37,99,235,.25); }
.vt-user-menu {
  display: inline-flex;
  min-height: 44px;
  max-width: 230px;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: 999px;
  background: #fff;
  padding: .35rem .55rem .35rem .35rem;
  color: #334155;
  font-size: .875rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.vt-user-avatar {
  display: inline-flex;
  height: 34px;
  width: 34px;
  shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vt-navy), var(--vt-royal));
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
}

.vt-auth-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 12%, rgba(245,158,11,.18), transparent 20rem),
    radial-gradient(circle at 82% 12%, rgba(37,99,235,.2), transparent 24rem),
    linear-gradient(135deg, #04132f 0%, #061947 54%, #082a67 100%);
}
.vt-auth-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 50px 50px;
}
.vt-auth-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}

.vt-page-band {
  background:
    radial-gradient(circle at 8% 0%, rgba(37,99,235,.08), transparent 22rem),
    radial-gradient(circle at 95% 8%, rgba(245,158,11,.1), transparent 22rem),
    #f8fafc;
}
.vt-page-card,
.vt-table-card,
.vt-card,
.vt-company-card {
  overflow: hidden;
}
.vt-card :where(img, svg):not(.vt-logo-mark):not(.vt-membership-badge) {
  max-height: 420px;
  object-fit: contain;
}
.vt-card :where(table) { width: 100%; }
.vt-table-card table,
.vt-card table {
  border-collapse: separate;
  border-spacing: 0;
}
.vt-table-card th,
.vt-table-card td,
.vt-card th,
.vt-card td {
  vertical-align: top;
}
.vt-table-card thead,
.vt-card thead {
  background: #f8fafc;
}
.vt-table-card th,
.vt-card th {
  color: #475569;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.vt-table-card td,
.vt-card td {
  color: #334155;
}
.vt-form label,
form label {
  color: #334155;
  font-size: .86rem;
  font-weight: 850;
}
.vt-form input,
.vt-form select,
.vt-form textarea,
form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
form select,
form textarea {
  min-height: 44px;
}
.vt-form [type="file"],
form [type="file"] {
  min-height: 44px;
  border-radius: .9rem;
}
.vt-sidebar {
  border-radius: 1.35rem;
}
.vt-sidebar a {
  border-radius: .9rem !important;
}
.vt-sidebar a:hover {
  transform: translateX(2px);
}
.vt-dashboard-hero h1,
.vt-admin-hero h1 {
  font-weight: 950;
  letter-spacing: 0;
}

.vt-public-header {
  min-height: 68px;
}
.vt-public-header .vt-container,
.vt-public-header > div {
  min-width: 0;
}
.vt-public-header nav {
  min-width: 0;
}
.vt-public-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.vt-footer {
  margin-top: auto;
}
.vt-footer img { max-width: 150px; }

.vt-plan-highlight {
  border-color: rgba(245,158,11,.42) !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(245,158,11,.12), transparent 12rem),
    linear-gradient(180deg, #fff7ed, #fff 44%);
}

@media (max-width: 767px) {
  .vt-container { width: min(100% - 1rem, 1180px); }
  .vt-public-header > div,
  .vt-app-nav > div { padding-left: .75rem; padding-right: .75rem; }
  .vt-public-header nav {
    gap: .2rem;
    justify-content: flex-end;
  }
  .vt-public-header nav a {
    font-size: .75rem;
    min-height: 44px !important;
    padding-inline: .46rem !important;
  }
  .vt-btn-primary,
  .vt-btn-secondary,
  .vt-btn-gold,
  .vt-btn-ghost {
    width: 100%;
    padding-inline: .9rem;
    text-align: center;
  }
  .vt-card,
  .vt-company-card,
  .vt-table-card,
  .vt-auth-card {
    border-radius: 1rem;
  }
  .vt-card,
  .vt-company-card {
    box-shadow: 0 10px 26px rgba(6,25,71,.08);
  }
  .vt-card :where(img, svg):not(.vt-logo-mark):not(.vt-membership-badge) {
    max-height: 260px;
  }
  .vt-card table,
  .vt-table-card table {
    min-width: 620px;
  }
  .vt-table-card,
  .vt-card:has(table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 360px) {
  .vt-public-header > div {
    gap: .35rem !important;
  }
  .vt-public-header img {
    max-width: 96px !important;
  }
  .vt-public-header nav {
    gap: .12rem;
  }
  .vt-public-header nav a {
    font-size: .7rem;
    padding-inline: .32rem !important;
  }
}

@media (min-width: 768px) {
  .vt-btn-primary,
  .vt-btn-secondary,
  .vt-btn-gold,
  .vt-btn-ghost {
    width: auto;
  }
}

/* Uploaded VUtrans visual system */
.vt-brand-art {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.vt-media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}
.vt-media-frame img {
  display: block;
  width: 100%;
  max-height: clamp(240px, 34vw, 430px);
  object-fit: cover;
}
.vt-media-frame--light {
  border-color: rgba(226,232,240,.95);
  background: #fff;
  box-shadow: var(--vt-shadow-soft);
}
.vt-media-frame--light img { max-height: clamp(220px, 30vw, 360px); }
.vt-feature-strip {
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: var(--vt-shadow-soft);
}
.vt-feature-strip img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: center;
}
.vt-visual-band {
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #061947, #0b2d71);
  color: #fff;
  box-shadow: var(--vt-shadow);
}
.vt-visual-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
}
.vt-page-hero {
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(245,158,11,.18), transparent 18rem),
    linear-gradient(135deg, #061947, #0b2d71);
  box-shadow: var(--vt-shadow);
}
.vt-page-hero img {
  width: 100%;
  max-height: 310px;
  object-fit: cover;
}
.vt-dashboard-visual,
.vt-admin-command {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.vt-dashboard-visual img,
.vt-admin-command img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}
.vt-badge-art {
  display: block;
  width: 100%;
  max-height: 118px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .vt-media-frame img,
  .vt-media-frame--light img,
  .vt-page-hero img,
  .vt-feature-strip img,
  .vt-visual-band img {
    max-height: 230px;
  }
  .vt-visual-band img { min-height: 210px; }
}

/* VUtrans uploaded brand bundle rebuild */
.vt-brand-logo-img {
  display: block;
  object-fit: contain;
}
.vt-home-hero--photo {
  min-height: clamp(640px, 82vh, 860px);
  background-size: cover;
  background-position: center;
}
.vt-home-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 10, 28, .96) 0%, rgba(5, 19, 47, .82) 42%, rgba(5, 19, 47, .22) 100%),
    linear-gradient(180deg, rgba(2, 10, 28, .08), rgba(2, 10, 28, .88));
  pointer-events: none;
}
.vt-hero-command-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}
.vt-icon-card {
  min-width: 0;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.15rem;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--vt-shadow-soft);
}
.vt-icon-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.vt-service-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.vt-image-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 360px;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: var(--vt-shadow);
}
.vt-image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,10,28,.93), rgba(5,19,47,.62), rgba(5,19,47,.12));
}
.vt-image-hero > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .vt-public-header img { max-width: 142px; }
  .vt-home-hero--photo {
    min-height: auto;
    background-position: 62% center;
  }
  .vt-image-hero {
    min-height: 300px;
    background-position: 62% center;
  }
}

/* Modern authenticated UI */
.vt-dashboard-bg {
  background:
    radial-gradient(circle at 8% 0%, rgba(37,99,235,.09), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(245,158,11,.12), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 48%, #ffffff 100%);
}
.vt-modern-app-nav {
  border-bottom: 1px solid rgba(203,213,225,.82);
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(6,25,71,.08);
  backdrop-filter: blur(18px);
}
.vt-app-nav-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: .55rem .9rem;
  color: #475569;
  font-weight: 850;
}
.vt-app-nav-link:hover,
.vt-app-nav-link.is-active {
  background: #eef4ff;
  color: var(--vt-navy);
}
.vt-icon-btn {
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: .9rem;
  background: #fff;
  color: var(--vt-navy);
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.vt-user-menu {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: 999px;
  background: #fff;
  padding: .35rem .75rem .35rem .35rem;
  color: #0f172a;
  font-size: .875rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.vt-user-avatar {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vt-navy), var(--vt-royal));
  color: #fff;
  font-weight: 950;
}
.vt-mobile-nav-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: .85rem;
  padding: .65rem .8rem;
  color: #334155;
  font-weight: 800;
}
.vt-mobile-nav-link:hover { background: #eef4ff; color: var(--vt-navy); }
.vt-modern-sidebar {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 78% 8%, rgba(245,158,11,.22), transparent 10rem),
    linear-gradient(180deg, #061947, #0b2d71);
  box-shadow: 0 24px 65px rgba(6,25,71,.22);
}
.vt-side-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: .95rem;
  padding: .65rem .8rem;
  color: #dbeafe;
}
.vt-side-link:hover,
.vt-side-link.is-active {
  background: rgba(255,255,255,.13);
  color: #fff;
  transform: translateX(2px);
}
.vt-console-hero,
.vt-admin-command-hero {
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 75% 10%, rgba(245,158,11,.24), transparent 16rem),
    linear-gradient(135deg, #04132f, #082a67 54%, #0b3a8f);
  box-shadow: var(--vt-shadow);
}
.vt-quick-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  padding: .7rem .85rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 900;
}
.vt-console-stat,
.vt-admin-stat {
  position: relative;
  overflow: hidden;
}
.vt-console-stat::after,
.vt-admin-stat::after {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  right: -3rem;
  top: -3rem;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
}
.vt-console-stat img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.vt-admin-module-tile {
  display: block;
  min-height: 140px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(6,25,71,.07);
}
.vt-admin-module-tile:hover {
  border-color: rgba(37,99,235,.32);
  background: #eef4ff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6,25,71,.12);
}
.vt-admin-module-tile img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: .75rem;
}
@media (max-width: 767px) {
  .vt-console-hero,
  .vt-admin-command-hero {
    border-radius: 1.1rem;
  }
  .vt-quick-action {
    font-size: .8rem;
    padding-inline: .55rem;
  }
}

/* Site-wide premium alignment pass */
html { overflow-x: hidden; }
body { min-width: 320px; }
img, svg, video { max-width: 100%; height: auto; }
.vt-page-shell {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
  padding-block: clamp(1.25rem, 3vw, 2.5rem);
}
.vt-page-shell--narrow { width: min(100% - 2rem, 64rem); }
.vt-titlebar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.vt-titlebar h1,
.vt-titlebar h2 {
  letter-spacing: 0;
}
.vt-eyebrow {
  color: var(--vt-royal);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vt-section-panel,
.vt-form-panel,
.vt-table-panel,
.vt-list-panel {
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 1.15rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(6,25,71,.08);
}
.vt-section-panel,
.vt-form-panel,
.vt-list-panel { padding: clamp(1rem, 2vw, 1.5rem); }
.vt-table-panel { overflow: hidden; }
.vt-record-card {
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 10px 26px rgba(6,25,71,.07);
}
.vt-record-card:hover,
.vt-company-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(6,25,71,.13);
}
.vt-status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: .25rem .7rem;
  font-size: .75rem;
  font-weight: 900;
}
.vt-route-line {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  gap: .75rem;
  align-items: center;
}
.vt-route-arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vt-amber), #facc15);
  color: #061947;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(245,158,11,.28);
}
.vt-kpi-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.vt-kpi-tile {
  border: 1px solid rgba(226,232,240,.95);
  border-radius: .95rem;
  background: #f8fafc;
  padding: .85rem;
}
.vt-kpi-tile p:first-child {
  color: #64748b;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.vt-kpi-tile p:last-child {
  margin-top: .2rem;
  color: #0f172a;
  font-weight: 950;
}
.vt-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.vt-form-panel :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea),
.vt-auth-card :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea),
.vt-section-panel :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea),
.vt-list-panel :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  border-color: #cbd5e1;
  border-radius: .8rem;
  min-height: 44px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.vt-form-panel :is(input, select, textarea):focus,
.vt-auth-card :is(input, select, textarea):focus,
.vt-section-panel :is(input, select, textarea):focus,
.vt-list-panel :is(input, select, textarea):focus {
  border-color: var(--vt-royal);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14);
}
.vt-auth-shell {
  background:
    linear-gradient(90deg, rgba(2,10,28,.86), rgba(2,10,28,.55)),
    url("/media/vutrans/brand/vutrans-hero-logistics.png") center/cover no-repeat;
}
.vt-auth-card {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.95);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}
.vt-auth-card .vt-btn-primary,
.vt-auth-card button[type="submit"] {
  min-height: 44px;
  border-radius: .85rem;
}
.vt-rfq-card {
  position: relative;
  overflow: hidden;
}
.vt-rfq-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--vt-amber), var(--vt-royal));
}
.vt-company-card {
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.vt-profile-cover {
  border-radius: 1.5rem;
  background:
    linear-gradient(90deg, rgba(4,19,47,.96), rgba(8,42,103,.72)),
    url("/media/vutrans/brand/vutrans-directory-network.png") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--vt-shadow);
}
.vt-profile-cover .vt-card,
.vt-profile-cover .vt-kpi-tile {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.vt-profile-cover .vt-kpi-tile p:first-child { color: #bfdbfe; }
.vt-profile-cover .vt-kpi-tile p:last-child { color: #fff; }
.vt-company-profile-hero {
  min-height: 0;
}
.vt-profile-main-grid {
  display: grid;
  gap: 1.25rem;
}
.vt-profile-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.25rem;
}
.vt-profile-logo-frame {
  display: flex;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 1.15rem;
  background: rgba(255,255,255,.96);
  padding: .65rem;
  box-shadow: 0 22px 48px rgba(0,0,0,.26), inset 0 0 0 1px rgba(10,31,92,.06);
}
.vt-profile-logo-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.vt-profile-badges .vt-membership-badge {
  width: auto;
  height: 42px;
  max-height: 42px;
  max-width: 172px;
}
.vt-profile-visual-panel {
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(4,19,47,.08), rgba(4,19,47,.22)),
    url("/media/vutrans/brand/vutrans-directory-network.png") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 18px 42px rgba(0,0,0,.22);
}
.vt-tabs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .4rem;
  scrollbar-width: thin;
}
.vt-tabs a {
  white-space: nowrap;
  border-radius: 999px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding-inline: .85rem;
  font-weight: 850;
}
.vt-messaging-shell {
  border-radius: 1.25rem;
  box-shadow: 0 22px 60px rgba(6,25,71,.12);
}
.vt-chat-bubble {
  box-shadow: 0 10px 24px rgba(6,25,71,.08);
}
.vt-admin-list-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(226,232,240,.95);
  background: #fff;
  box-shadow: 0 12px 34px rgba(6,25,71,.08);
}
.vt-public-mini-hero {
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 86% 12%, rgba(245,158,11,.24), transparent 14rem),
    linear-gradient(135deg, #04132f, #0b2d71);
  color: #fff;
  box-shadow: var(--vt-shadow);
}
.vt-public-mini-hero p { color: #dbeafe; }
.vt-icon-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .85rem;
}
.vt-icon-strip img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .vt-page-shell { width: min(100% - 1rem, 80rem); padding-block: 1rem; }
  .vt-titlebar { flex-direction: column; }
  .vt-route-line { grid-template-columns: 1fr; }
  .vt-route-arrow { transform: rotate(90deg); }
  .vt-section-panel,
  .vt-form-panel,
  .vt-list-panel { border-radius: 1rem; }
  .vt-action-row > * { width: 100%; justify-content: center; }
  .vt-profile-cover { border-radius: 1.1rem; }
  .vt-profile-logo-frame {
    width: 82px;
    height: 82px;
    border-radius: 1rem;
  }
  .vt-profile-badges .vt-membership-badge {
    width: auto;
    height: 38px;
    max-width: 136px;
    max-height: 38px;
  }
}
@media (min-width: 640px) {
  .vt-profile-identity {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .vt-profile-main-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: stretch;
  }
}
