/* ============================================================
   Vested design system
   --------------------------------------------------------------
   Tokens are layered: PRIMITIVES (raw values) feed SEMANTICS
   (design intent). Always reference semantic tokens from rules;
   only reach for primitives when adding new semantics here.
   ============================================================ */

/* Self-hosted Founders Grotesk — Safari renders web-served fonts more
 * reliably when they live on the same origin. */
@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/founders-grotesk/founders-grotesk-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/founders-grotesk/founders-grotesk-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/founders-grotesk/founders-grotesk-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/founders-grotesk/founders-grotesk-bold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

/* Self-hosted DM Mono (latin) — removes the render-blocking Google Fonts
   request and its two third-party connections. */
@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono/dm-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono/dm-mono-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---------- Color primitives ---------- */
  --vc-color-black:           #000000;
  --vc-color-white:           #ffffff;
  --vc-color-cream:           #eff0e9;
  --vc-color-orange:          #e5511c;
  --vc-color-orange-soft:     #fadcd2;
  --vc-color-orange-burnt:    #4f1b08;
  --vc-color-neutral-300:     #ababab;
  --vc-color-neutral-400:     #a3a3a3;
  --vc-color-neutral-500:     #737373;
  --vc-color-neutral-600:     #5e5e5e;
  --vc-color-neutral-900:     #1d1d1d;

  /* ---------- Surface ---------- */
  --vc-bg:                    var(--vc-color-black);
  --vc-bg-soft:               #0d0d0d;
  --vc-surface-cream:         var(--vc-color-cream);
  --vc-surface-glass:         rgba(255, 255, 255, 0.3);

  /* ---------- Text ---------- */
  --vc-text-primary:          var(--vc-color-white);
  --vc-text-secondary:        var(--vc-color-neutral-400);
  --vc-text-tertiary:         var(--vc-color-neutral-500);
  --vc-text-quaternary:       var(--vc-color-neutral-600);
  --vc-text-inverse:          var(--vc-color-black);
  --vc-text-accent:           var(--vc-color-orange);

  /* ---------- Accent ---------- */
  --vc-accent:                var(--vc-color-orange);
  --vc-accent-soft:           var(--vc-color-orange-soft);

  /* ---------- Lines / dividers / track ---------- */
  --vc-line:                  rgba(255, 255, 255, 0.22);
  --vc-line-dim:              rgba(255, 255, 255, 0.08);
  --vc-divider-dot:           var(--vc-color-neutral-300);
  --vc-track:                 var(--vc-color-neutral-600);
  --vc-track-active:          var(--vc-color-orange-burnt);

  /* ---------- Typography: families ---------- */
  --vc-font-display:          "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
  --vc-font-body:             "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
  --vc-font-mono:             "DM Mono", ui-monospace, "SF Mono", "Courier New", monospace;

  /* ---------- Typography: scale ----------
     display-xl: hero (72)
     display-lg: section title (56)
     h2: in-section prominent (36)
     h3: caption / lead (24)
     h4: card title (20)
     h5: body / summary (18)
     h6: footer headings (16)
     sm: button label (15)
     xs: meta / byline / link (14)
     2xs: badge / overline (12) */
  --vc-text-display-xl:       72px;
  --vc-text-display-lg:       56px;
  --vc-text-h2:               36px;
  --vc-text-h3:               24px;
  --vc-text-h4:               20px;
  --vc-text-h5:               18px;
  --vc-text-h6:               16px;
  --vc-text-sm:               15px;
  --vc-text-xs:               14px;
  --vc-text-2xs:              12px;

  --vc-tracking-tight:        0;

  /* ---------- Layout ---------- */
  --vc-container:             1072px;
  --vc-gutter:                64px;

  /* ---------- Radii ---------- */
  --vc-radius-xs:             4px;
  --vc-radius-sm:             8px;
  --vc-radius-md:             20px;
  --vc-radius-lg:             22px;
  --vc-radius-pill:           999px;

  /* ---------- Shadows ---------- */
  --vc-shadow-card:
    0 26px 60px rgba(0, 0, 0, 0.5);

  --vc-service-row-gap:        0px;
  --vc-service-row-height:     244px;
  --vc-service-row-label-size: 42px;
  --vc-service-row-label-transform: none;
  --vc-service-row-label-weight: 500;
  --vc-service-row-row-gap: clamp(20px, 2.8vw, 40px);
  --vc-service-row-padding-inline: 0px;
  --vc-service-row-divider-height: 1px;
  --vc-process-grid-gap:       48px;
  --vc-process-node-size:      15px;
  --vc-process-timeline-column: 32px;

  /* ---------- Motion ---------- */
  --vc-ease:                  180ms ease;
  --vc-ease-reveal:           760ms cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--vc-bg);
  color: var(--vc-text-primary);
  scroll-padding-top: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--vc-text-primary);
  background: var(--vc-bg);
  font-family: var(--vc-font-body);
  font-feature-settings: "salt" 1, "cv01" 1, "cv03" 1, "cv04" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body,
button,
input,
textarea {
  font-family: var(--vc-font-body);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--vc-accent);
  outline-offset: 4px;
}

.vc-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: var(--vc-radius-pill);
  background: var(--vc-text-primary);
  color: var(--vc-text-inverse);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xs);
  font-weight: 600;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform var(--vc-ease);
}

.vc-skip-link:focus-visible {
  transform: translateY(0);
}

.vc-launch-nav {
  --vc-nav-cream: #ffffff;
  --vc-nav-ink: #0c0c0a;
  --vc-nav-muted: rgba(12, 12, 10, 0.58);
  --vc-nav-material-alpha: 1;
  --vc-nav-notch-alpha: 1;
  --vc-nav-glass-blur: 0px;
  --vc-nav-glass-saturate: 1;
  --vc-nav-top-shadow-alpha: 0;
  --vc-nav-depth-shadow-alpha: 0;
  --vc-nav-highlight-alpha: 0;
  --vc-nav-notch-closed: clamp(214px, 18vw, 232px);
  --vc-nav-notch-open: min(820px, calc(100vw + 120px));
  --vc-nav-notch-width: var(--vc-nav-notch-closed);
  --vc-nav-content-width: min(760px, calc(100vw - 40px));
  --vc-nav-link-gap: clamp(22px, 2.6vw, 34px);
  --vc-nav-logo-gap: clamp(48px, 5vw, 70px);

  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 64px;
  color: var(--vc-nav-ink);
  pointer-events: auto;
}

.vc-launch-nav[data-nav-open="true"] {
  --vc-nav-notch-width: var(--vc-nav-notch-open);
}

.vc-launch-nav[data-nav-scrolled="true"] {
  --vc-nav-material-alpha: 1;
  --vc-nav-notch-alpha: 1;
  --vc-nav-glass-blur: 0px;
  --vc-nav-glass-saturate: 1;
  --vc-nav-top-shadow-alpha: 0;
  --vc-nav-depth-shadow-alpha: 0;
  --vc-nav-highlight-alpha: 0;
  --vc-nav-muted: rgba(12, 12, 10, 0.68);
}

.vc-launch-nav[data-nav-open="true"] {
  --vc-nav-material-alpha: 1;
  --vc-nav-notch-alpha: 1;
  --vc-nav-glass-blur: 0px;
  --vc-nav-glass-saturate: 1;
  --vc-nav-depth-shadow-alpha: 0;
  --vc-nav-highlight-alpha: 0;
}

.vc-launch-nav__base {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.vc-launch-nav__base::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 34px;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 360ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 360ms cubic-bezier(0.19, 1, 0.22, 1),
    backdrop-filter 360ms cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-backdrop-filter 360ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__base::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 50%;
  width: calc(var(--vc-nav-notch-width) - 16px);
  height: 33px;
  border-radius: 0 0 999px 999px;
  background: transparent;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    width 680ms cubic-bezier(0.2, 1.16, 0.28, 1),
    opacity 360ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__notch {
  position: absolute;
  top: 23px;
  left: 50%;
  width: var(--vc-nav-notch-width);
  height: 36px;
  overflow: visible;
  color: #ffffff;
  filter: none;
  transform: translateX(-50%);
  transition:
    width 680ms cubic-bezier(0.2, 1.16, 0.28, 1),
    color 360ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 360ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: width;
}

.vc-launch-nav__notch path {
  fill: currentColor;
}

.vc-launch-nav__links {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--vc-nav-content-width);
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: var(--vc-nav-link-gap);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -8px, 0);
  transition:
    opacity 260ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav[data-nav-open="true"] .vc-launch-nav__links {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  transition-delay: 90ms;
}

.vc-launch-nav__links a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--vc-nav-muted);
  font-family: var(--vc-font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 240ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 240ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__links a:nth-child(2) {
  margin-right: var(--vc-nav-logo-gap);
}

.vc-launch-nav__links a:nth-child(3) {
  margin-left: var(--vc-nav-logo-gap);
}

.vc-launch-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.46);
  transition:
    opacity 220ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__links a:hover,
.vc-launch-nav__links a:focus-visible {
  color: var(--vc-nav-ink);
  transform: translateY(-1px);
}

.vc-launch-nav__links a:hover::after,
.vc-launch-nav__links a:focus-visible::after {
  opacity: 0.52;
  transform: scaleX(1);
}

.vc-nav-label-short {
  display: none;
}

.vc-launch-nav__brand {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--vc-nav-ink);
  cursor: pointer;
  pointer-events: auto;
  transform: translateX(-50%);
  transition:
    color 260ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__brand:hover,
.vc-launch-nav__brand:focus-visible,
.vc-launch-nav[data-nav-open="true"] .vc-launch-nav__brand {
  color: var(--vc-nav-ink);
  transform: translateX(-50%) translateY(1px) scale(1.02);
}

.vc-launch-nav__links a:focus-visible {
  outline: 2px solid rgba(229, 81, 28, 0.56);
  outline-offset: 4px;
}

.vc-launch-nav__brand:focus-visible {
  outline: none;
}

.vc-launch-nav__brand::after {
  content: "";
  position: absolute;
  inset: 9px 7px;
  border: 1px solid rgba(12, 12, 10, 0.34);
  border-radius: var(--vc-radius-pill);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86);
  transition:
    opacity 220ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav__brand:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.vc-launch-nav__mark {
  display: block;
  width: 34px;
  height: 30px;
  background: url("assets/vested/hero-logo.png") center / contain no-repeat;
  filter: brightness(0) saturate(100%);
  pointer-events: none;
  transform-origin: center;
  transition:
    filter 260ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-launch-nav[data-nav-open="true"] .vc-launch-nav__mark {
  transform: scale(1.08);
}

.vc-page {
  /* clip without creating a scroll container — sticky positioning
     inside sections would break with overflow: hidden */
  overflow: clip;
  background:
    radial-gradient(circle at 70% 14%, rgba(229, 81, 28, 0.08), transparent 26%),
    var(--vc-bg);
}

main > section,
.vc-footer {
  scroll-margin-top: 0;
}

.vc-container {
  width: min(calc(100% - (var(--vc-gutter) * 2)), var(--vc-container));
  margin-inline: auto;
}

.vc-title {
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-display-lg);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: var(--vc-tracking-tight);
  text-transform: uppercase;
}

.vc-title--hero {
  width: min(508px, 100%);
  font-size: var(--vc-text-display-xl);
  font-weight: 700;
  text-align: center;
}

.vc-section-copy > p {
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
  max-width: min(100%, var(--vc-section-copy-measure, 506px));
}

.vc-section-copy > p + p {
  margin-top: 0.5em;
}

.vc-eyebrow {
  max-width: 100%;
  color: var(--vc-accent);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-h6);
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.3px;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.vc-liquid-button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 19px 24px 13px;
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-right-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--vc-radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(29, 29, 29, 0.55);
  box-shadow:
    inset -4px -4px 2px -5px rgba(255, 255, 255, 0.5),
    inset 4px 4px 2px -5px rgba(255, 255, 255, 0.5),
    inset 0 0 33px rgba(242, 242, 242, 0.42);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-body);
  font-size: var(--vc-text-sm);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    transform var(--vc-ease),
    border-color var(--vc-ease),
    background-color var(--vc-ease),
    box-shadow var(--vc-ease);
}

.vc-liquid-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.82);
  background-color: rgba(229, 81, 28, 0.18);
  box-shadow:
    inset -4px -4px 2px -5px rgba(255, 255, 255, 0.6),
    inset 4px 4px 2px -5px rgba(255, 255, 255, 0.6),
    inset 0 0 33px rgba(242, 242, 242, 0.5),
    0 8px 24px rgba(229, 81, 28, 0.18);
}

.vc-liquid-button:active {
  transform: translateY(0);
  transition-duration: 60ms;
}

.vc-liquid-button--hero {
  isolation: isolate;
  margin-top: 4px;
  padding: 23px 28px 17px;
  border-color: rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.64);
  border-right-color: rgba(255, 205, 172, 0.12);
  border-bottom-color: rgba(18, 10, 8, 0.42);
  background: #00000012;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    inset 1px 0 0 rgba(255, 255, 255, 0.22),
    inset -1px 0 0 rgba(255, 186, 150, 0.14),
    inset -22px 0 40px rgba(255, 105, 72, 0.08),
    inset 0 0 18px rgba(255, 255, 255, 0.055),
    0 22px 64px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(229, 81, 28, 0.1);
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.72),
    0 0 20px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px) saturate(1.45) contrast(1.04) brightness(1.03);
  -webkit-backdrop-filter: blur(14px) saturate(1.45) contrast(1.04) brightness(1.03);
  transition:
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 260ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-liquid-button--hero .vc-liquid-button__label {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

.vc-hero {
  position: relative;
  isolation: isolate;
  min-height: 854px;
  overflow: hidden;
  background: var(--vc-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  opacity: 1;
  pointer-events: none;
}

.vc-hero::after {
  content: none;
}

.vc-hero__scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vc-hero__scene > span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.vc-hero__static-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.vc-hero__static-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  will-change: opacity, filter;
  animation:
    vc-hero-bloom-arrive 3500ms ease-out both,
    vc-hero-bloom-pulse 22s ease-in-out 3500ms infinite alternate-reverse;
}

@keyframes vc-hero-bloom-arrive {
  0% {
    opacity: 0.18;
    filter: brightness(0.42) saturate(0.55);
  }
  100% {
    opacity: 1;
    filter: brightness(1.1) saturate(1.06);
  }
}

@keyframes vc-hero-bloom-pulse {
  0% {
    opacity: 0.82;
    filter: brightness(0.86) saturate(0.92);
  }
  100% {
    opacity: 1;
    filter: brightness(1.1) saturate(1.06);
  }
}

.vc-hero__glow {
  position: absolute;
  inset: -4% -6%;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 34% at 50% 62%, rgba(255, 168, 96, 0.22), rgba(255, 92, 36, 0.07) 38%, rgba(0, 0, 0, 0) 72%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  opacity: 0;
  animation:
    vc-hero-glow-arrive 3200ms ease-out 400ms both,
    vc-hero-glow-drift 26s ease-in-out 3600ms infinite alternate;
}

@keyframes vc-hero-glow-arrive {
  0% {
    opacity: 0;
    transform: translate3d(0, 1%, 0) scale(0.96);
  }
  100% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes vc-hero-glow-drift {
  0% {
    transform: translate3d(-1.6%, -0.6%, 0) scale(1);
    opacity: 0.82;
  }
  100% {
    transform: translate3d(2.2%, 0.6%, 0) scale(1.08);
    opacity: 1;
  }
}

.vc-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 854px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 28px;
  will-change: opacity, transform;
}

.vc-title--hero {
  color: var(--vc-text-primary);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.64),
    0 0 52px rgba(229, 81, 28, 0.12);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .vc-title--hero {
    background: none;
    -webkit-background-clip: initial;
    background-clip: border-box;
    color: var(--vc-text-primary);
  }
}

.vc-liquid-button--hero::before,
.vc-liquid-button--hero::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.vc-liquid-button--hero::before {
  z-index: 1;
  inset: -12% -6%;
  background:
    radial-gradient(64px 42px at 16% 40%, rgba(255, 232, 211, 0.065), rgba(255, 232, 211, 0) 72%),
    radial-gradient(106px 66px at 84% 46%, rgba(255, 107, 55, 0.16), rgba(255, 107, 55, 0) 70%),
    radial-gradient(140px 78px at 50% 118%, rgba(229, 81, 28, 0.14), rgba(229, 81, 28, 0) 74%);
  opacity: 0.5;
  filter: blur(10px) saturate(1.35);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 360ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 360ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-liquid-button--hero::after {
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0 1px, rgba(255, 255, 255, 0.11) 2px, rgba(255, 255, 255, 0) 24%),
    radial-gradient(78% 150% at 50% -42%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(100% 120% at 50% 116%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 62%),
    linear-gradient(90deg, rgba(255, 236, 219, 0.18), rgba(255, 255, 255, 0) 11%, rgba(255, 255, 255, 0) 89%, rgba(255, 183, 148, 0.16));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 2px rgba(255, 255, 255, 0.34),
    inset 0 -1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.64;
  transition:
    opacity 260ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-liquid-button--hero:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.32);
  border-top-color: rgba(255, 255, 255, 0.76);
  background-color: rgba(255, 255, 255, 0.052);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    inset 1px 0 0 rgba(255, 255, 255, 0.28),
    inset -1px 0 0 rgba(255, 186, 150, 0.18),
    inset -24px 0 42px rgba(255, 105, 72, 0.11),
    inset 0 0 22px rgba(255, 255, 255, 0.07),
    0 26px 74px rgba(0, 0, 0, 0.52),
    0 0 48px rgba(229, 81, 28, 0.14);
}

.vc-liquid-button--hero:hover::before {
  opacity: 0.66;
  filter: blur(9px) saturate(1.35);
  transform: translate3d(3px, -1px, 0) scale(1.015);
}

.vc-liquid-button--hero:hover::after {
  opacity: 0.78;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 1px 2px rgba(255, 255, 255, 0.44),
    inset 0 -1px 2px rgba(0, 0, 0, 0.26);
}

.vc-liquid-button--hero:active {
  transform: translateY(0) scale(0.992);
}

.vc-liquid-button--hero:focus-visible {
  outline-color: rgba(255, 255, 255, 0.88);
  outline-offset: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  .vc-hero__content {
    animation: vc-hero-content-arrive 900ms cubic-bezier(0.19, 1, 0.22, 1) backwards;
  }

  .vc-liquid-button--hero {
    animation: vc-hero-button-settle 1100ms cubic-bezier(0.19, 1, 0.22, 1) 120ms backwards;
  }
}

@keyframes vc-hero-content-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vc-hero-button-settle {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vc-proof-video {
  position: relative;
  isolation: isolate;
  display: grid;
  --vc-proof-frame-x: 2.05%;
  height: clamp(640px, 100svh, 980px);
  margin-top: -1px;
  overflow: hidden;
  background: var(--vc-bg);
  place-items: center;
}

.vc-proof-video::before,
.vc-proof-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vc-proof-video::before {
  z-index: 3;
  background:
    linear-gradient(180deg, var(--vc-bg) 0%, rgba(0, 0, 0, 0.6) 2%, rgba(0, 0, 0, 0.3) 6%, rgba(0, 0, 0, 0.12) 11%, rgba(0, 0, 0, 0.04) 16%, rgba(0, 0, 0, 0) 24%),
    linear-gradient(0deg, var(--vc-bg) 0%, rgba(0, 0, 0, 0.3) 5%, rgba(0, 0, 0, 0) 14%);
}

.vc-proof-video::after {
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(229, 81, 28, 0.1), rgba(229, 81, 28, 0) 44%),
    linear-gradient(90deg, var(--vc-bg) 0%, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0) 86%, var(--vc-bg) 100%);
  opacity: 0.44;
}

.vc-proof-video__frame {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max(100vw, min(203.62svh, 1995px));
  height: auto;
  aspect-ratio: 1800 / 884;
  overflow: hidden;
  border-radius: clamp(0px, 1.9vw, 30px);
  background: var(--vc-bg);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translate(calc(-50% + var(--vc-proof-frame-x)), -50%);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 3%, rgba(0, 0, 0, 0.44) 7%, rgba(0, 0, 0, 0.72) 12%, rgba(0, 0, 0, 0.9) 18%, black 26%, black 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 3%, rgba(0, 0, 0, 0.44) 7%, rgba(0, 0, 0, 0.72) 12%, rgba(0, 0, 0, 0.9) 18%, black 26%, black 100%);
}

.vc-proof-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: normal;
  transform-origin: center;
}

.vc-proof-video__media::before,
.vc-proof-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.vc-proof-video__media::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 35%);
}

.vc-proof-video__media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0.7)),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 72%, rgba(0, 0, 0, 0.48) 100%);
  mix-blend-mode: multiply;
  opacity: 0.56;
}

.vc-proof-video__media picture {
  display: contents;
}

.vc-proof-video__media img,
.vc-proof-video__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.vc-proof-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(16, 16, 16, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -18px 28px rgba(0, 0, 0, 0.22),
    inset 0 0 32px rgba(242, 242, 242, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.52),
    0 0 44px rgba(229, 81, 28, 0.18);
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vc-proof-play::before,
.vc-proof-play::after,
.vc-play-button::before,
.vc-play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--vc-text-primary);
  opacity: 0;
  transition: opacity var(--vc-ease);
}

.vc-proof-play::before,
.vc-play-button::before {
  transform: translate(-7px, -50%);
}

.vc-proof-play::after,
.vc-play-button::after {
  transform: translate(3px, -50%);
}

.vc-proof-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: rgba(255, 255, 255, 0.38);
  background-color: rgba(229, 81, 28, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -18px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 32px rgba(242, 242, 242, 0.12),
    0 22px 54px rgba(0, 0, 0, 0.58),
    0 0 56px rgba(229, 81, 28, 0.24);
}

.vc-proof-play img {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  transition: opacity var(--vc-ease);
}

.vc-proof-play[aria-pressed="true"],
.vc-play-button[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.34);
  background-color: rgba(229, 81, 28, 0.18);
}

.vc-proof-play[aria-pressed="true"]::before,
.vc-proof-play[aria-pressed="true"]::after,
.vc-play-button[aria-pressed="true"]::before,
.vc-play-button[aria-pressed="true"]::after {
  opacity: 1;
}

.vc-proof-play[aria-pressed="true"] img,
.vc-play-button[aria-pressed="true"] img {
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .vc-proof-play {
    animation: vc-vssl-play-breathe 2600ms cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  }
}

@keyframes vc-vssl-play-breathe {
  from {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      inset 0 -18px 28px rgba(0, 0, 0, 0.22),
      inset 0 0 32px rgba(242, 242, 242, 0.08),
      0 18px 48px rgba(0, 0, 0, 0.52),
      0 0 38px rgba(229, 81, 28, 0.14);
  }

  to {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -18px 28px rgba(0, 0, 0, 0.2),
      inset 0 0 34px rgba(242, 242, 242, 0.1),
      0 20px 52px rgba(0, 0, 0, 0.56),
      0 0 52px rgba(229, 81, 28, 0.2);
  }
}

.vc-proof-close {
  position: absolute;
  z-index: 6;
  top: clamp(20px, 4vw, 36px);
  right: clamp(20px, 4vw, 36px);
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--vc-font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.vc-proof-close:hover,
.vc-proof-close:focus-visible {
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(255, 255, 255, 0.62);
  transform: scale(1.06);
}

.vc-proof-close svg {
  display: block;
  width: 18px;
  height: 18px;
}

.vc-proof-video.is-playing .vc-proof-close {
  display: inline-flex;
}

.vc-proof-video.is-playing .vc-proof-play {
  display: none;
}

.vc-proof-video.is-playing .vc-proof-video__player {
  pointer-events: auto;
}

/* Playing state: keep the top blend that fades the video into the page,
 * but clear the bottom darkening so the native HTML5 controls bar reads. */
.vc-proof-video.is-playing::before {
  background:
    linear-gradient(180deg, var(--vc-bg) 0%, rgba(0, 0, 0, 0.8) 4%, rgba(0, 0, 0, 0.52) 11%, rgba(0, 0, 0, 0.3) 19%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0) 52%);
}

.vc-proof-video.is-playing .vc-proof-video__media::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 24%),
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 35%);
}

.vc-video-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-height: min(820px, calc(100vh - 48px));
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--vc-text-primary);
}

.vc-video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vc-video-dialog__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 72% 0%, rgba(229, 81, 28, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(4, 4, 4, 0.96);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.72),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.vc-video-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 14px;
}

.vc-video-dialog__header h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-video-dialog__close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-body);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--vc-ease), border-color var(--vc-ease);
}

.vc-video-dialog__close:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.vc-video-dialog__media {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #000;
  object-fit: contain;
}

.vc-metrics {
  --vc-metrics-title-opacity: 1;
  --vc-metrics-title-y: 0px;
  --vc-metrics-stage-opacity: 1;
  --vc-metrics-stage-y: 0px;
  --vc-metrics-stage-scale: 1;
  --vc-metrics-stage-blur: 0px;
  --vc-metrics-stack-rotate: 0deg;

  position: relative;
  isolation: isolate;
  height: 172vh;
  min-height: 1120px;
  overflow: clip;
  background: var(--vc-bg);
}

.vc-metrics::before,
.vc-metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vc-metrics::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, transparent 18%, transparent 74%, rgba(0, 0, 0, 0.8) 100%),
    radial-gradient(ellipse at 50% 49%, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.62) 88%);
}

.vc-metrics::after {
  top: auto;
  z-index: 1;
  height: 22vh;
  background: linear-gradient(180deg, transparent, var(--vc-bg) 86%);
}

.vc-metrics__sticky {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.vc-metrics__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 55%, black 0%, rgba(0, 0, 0, 0.96) 38%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.42) 78%, rgba(0, 0, 0, 0.12) 92%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 55%, black 0%, rgba(0, 0, 0, 0.96) 38%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.42) 78%, rgba(0, 0, 0, 0.12) 92%, transparent 100%);
}

.vc-metrics__spotlight :is(img, object) {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  display: block;
  width: min(1024px, calc(100vw - (var(--vc-gutter) * 2)), calc((100vh - 88px) * 1.49));
  min-width: 0;
  max-width: none;
  height: auto;
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
  transform-origin: top center;
}

.vc-metrics__frame {
  position: relative;
  z-index: 2;
  width: min(1024px, calc(100vw - (var(--vc-gutter) * 2)), calc((100vh - 88px) * 1.49));
  aspect-ratio: 1024 / 687;
}

.vc-metrics .vc-title {
  position: absolute;
  top: 17.8%;
  left: 50%;
  width: max-content;
  opacity: var(--vc-metrics-title-opacity);
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--vc-metrics-title-y), 0);
  font-size: clamp(42px, 5.45vw, 56px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.vc-metrics__stage {
  position: absolute;
  top: 61.5%;
  left: 50%;
  z-index: 1;
  width: min(521px, 51%);
  aspect-ratio: 521 / 363;
  perspective: 1200px;
  opacity: var(--vc-metrics-stage-opacity);
  filter: blur(var(--vc-metrics-stage-blur));
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--vc-metrics-stage-y), 0)
    rotate(var(--vc-metrics-stack-rotate))
    scale(var(--vc-metrics-stage-scale));
  transform-style: preserve-3d;
  will-change: opacity, filter, transform;
}

.vc-stat-stack {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: visible;
  list-style: none;
  transform-style: preserve-3d;
}

.vc-stat-card {
  --vc-stat-border-alpha: 0.13;
  --vc-stat-fill-alpha: 0.18;
  --vc-stat-inner-alpha: 0.034;
  --vc-stat-sheen-alpha: 0.34;
  --vc-stat-surface-blur: 10px;

  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 92.13%;
  aspect-ratio: 480 / 290;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, var(--vc-stat-border-alpha));
  background:
    radial-gradient(132% 96% at 48% 4%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012) 48%, rgba(255, 255, 255, 0.024)),
    rgba(24, 24, 24, var(--vc-stat-fill-alpha));
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    inset 0 0 34px rgba(255, 255, 255, var(--vc-stat-inner-alpha));
  backdrop-filter: blur(var(--vc-stat-surface-blur)) saturate(1.1);
  -webkit-backdrop-filter: blur(var(--vc-stat-surface-blur)) saturate(1.1);
  transform-origin: center;
  will-change: filter, transform, opacity;
}

.vc-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.01) 28%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.04)),
    radial-gradient(120% 84% at 50% 100%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 66%);
  opacity: var(--vc-stat-sheen-alpha);
  pointer-events: none;
}

.vc-stat-card--back {
  --vc-stat-border-alpha: 0.1;
  --vc-stat-fill-alpha: 0.07;
  --vc-stat-inner-alpha: 0.018;
  --vc-stat-sheen-alpha: 0.14;
  --vc-stat-surface-blur: 6px;

  z-index: 1;
  opacity: 0.36;
  transform: translate(-50%, -50%) translate3d(-250px, -116px, 0) rotate(-8deg) scale(0.92);
}

.vc-stat-card--mid {
  --vc-stat-border-alpha: 0.11;
  --vc-stat-fill-alpha: 0.09;
  --vc-stat-inner-alpha: 0.022;
  --vc-stat-sheen-alpha: 0.16;
  --vc-stat-surface-blur: 7px;

  z-index: 2;
  opacity: 0.42;
  transform: translate(-50%, -50%) translate3d(250px, -112px, 0) rotate(6deg) scale(0.92);
}

.vc-stat-card--front {
  --vc-stat-border-alpha: 0.2;
  --vc-stat-fill-alpha: 0.46;
  --vc-stat-inner-alpha: 0.052;
  --vc-stat-sheen-alpha: 0.38;
  --vc-stat-surface-blur: 12px;

  z-index: 3;
  background:
    radial-gradient(132% 96% at 48% 4%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
    rgba(24, 24, 24, var(--vc-stat-fill-alpha));
  transform: translate(-50%, -50%) translate3d(0, 118px, 0) rotate(0deg) scale(1);
}

.vc-stat-card--front::before {
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.01) 28%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.04));
}

.vc-stat-card strong {
  position: relative;
  z-index: 2;
  font-family: var(--vc-font-display);
  font-size: clamp(80px, 11.7vw, 120px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-stat-card__value--wide {
  font-size: clamp(66px, 9.1vw, 102px);
}

.vc-stat-card strong span {
  color: var(--vc-text-primary);
}

.vc-stat-card strong span:last-child {
  color: var(--vc-accent);
}

.vc-stat-card p {
  position: relative;
  z-index: 2;
  font-family: var(--vc-font-display);
  max-width: none;
  font-size: clamp(15px, 1.95vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .vc-stat-card strong,
  .vc-stat-card p {
    transition: opacity 260ms ease;
  }
}

.vc-built {
  --vc-built-progress: 0;
  --vc-built-content-opacity: 1;
  --vc-built-content-y: 0px;

  position: relative;
  isolation: isolate;
  z-index: 4;
  margin-top: clamp(-93px, -7.75vw, -64px);
  height: auto;
  min-height: 0;
  padding: clamp(92px, 8vw, 132px) 0;
  overflow: clip;
  background: var(--vc-bg);
}

.vc-built__inner {
  position: relative;
  width: min(1288px, calc(100% - var(--vc-gutter) * 2));
  min-height: 940px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: clamp(40px, 4.8vw, 60px);
  align-items: center;
}

.vc-built__fan {
  position: relative;
  z-index: 1;
  margin-left: clamp(-190px, -10vw, -116px);
  width: min(620px, 47vw);
  height: clamp(820px, 62vw, 940px);
  min-height: 820px;
  pointer-events: none;
}

.vc-built__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(188px, 15vw, 232px);
  aspect-ratio: 4 / 5;
  border-radius: clamp(8px, 0.72vw, 12px);
  overflow: hidden;
  background: var(--vc-bg-soft);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transform: translate(-50%, -50%) translate3d(var(--vc-built-x), var(--vc-built-y), 0) rotate(var(--vc-built-r)) scale(var(--vc-built-s, 1));
  opacity: var(--vc-built-o, 1);
  transform-origin: center;
  backface-visibility: hidden;
}

.vc-built__card img,
.vc-built__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-built__card video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 146%;
  height: 146%;
  background: var(--vc-bg-soft);
  transform: translate(-50%, -50%) rotate(var(--vc-built-media-r, calc(var(--vc-built-r, 0deg) * -1)));
  transform-origin: center;
}

.vc-built__card--1 {
  --vc-built-x: -360px;
  --vc-built-y: -280px;
  --vc-built-r: -42deg;
  --vc-built-s: 0.96;
  --vc-built-o: 1;
  z-index: 1;
}

.vc-built__card--2 {
  --vc-built-x: -156px;
  --vc-built-y: -204px;
  --vc-built-r: -22deg;
  --vc-built-s: 1;
  --vc-built-o: 1;
  z-index: 2;
}

.vc-built__card--3 {
  --vc-built-x: -52px;
  --vc-built-y: -52px;
  --vc-built-r: 3deg;
  --vc-built-s: 1;
  --vc-built-o: 1;
  z-index: 3;
}

.vc-built__card--4 {
  --vc-built-x: -120px;
  --vc-built-y: 126px;
  --vc-built-r: 28deg;
  --vc-built-s: 1;
  --vc-built-o: 1;
  z-index: 7;
}

.vc-built__card--5 {
  --vc-built-x: -328px;
  --vc-built-y: 248px;
  --vc-built-r: 52deg;
  --vc-built-s: 0.98;
  --vc-built-o: 1;
  z-index: 6;
}

.vc-built__card--6 {
  --vc-built-x: -558px;
  --vc-built-y: 214px;
  --vc-built-r: 78deg;
  --vc-built-s: 0.96;
  --vc-built-o: 1;
  z-index: 5;
}

.vc-built__card--7 {
  --vc-built-x: -662px;
  --vc-built-y: 22px;
  --vc-built-r: 104deg;
  --vc-built-s: 0.94;
  --vc-built-o: 1;
  z-index: 4;
}

.vc-built__card--8 {
  --vc-built-x: -620px;
  --vc-built-y: -176px;
  --vc-built-r: 130deg;
  --vc-built-s: 0.92;
  --vc-built-o: 1;
  z-index: 3;
}

.vc-built__card--9 {
  --vc-built-x: -456px;
  --vc-built-y: -302px;
  --vc-built-r: 156deg;
  --vc-built-s: 0.9;
  --vc-built-o: 1;
  z-index: 2;
}

.vc-built__card--10 {
  --vc-built-x: -220px;
  --vc-built-y: -330px;
  --vc-built-r: 182deg;
  --vc-built-s: 0.9;
  --vc-built-o: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .vc-built__fan {
    will-change: transform;
  }

  .vc-built__card {
    will-change: transform;
  }
}

.vc-built__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  min-width: 0;
  max-width: 100%;
  opacity: var(--vc-built-content-opacity);
  transform: translate3d(0, var(--vc-built-content-y), 0);
}

.vc-built .vc-title {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(44px, 4.6vw, 56px);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.vc-built__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vc-built__content .vc-liquid-button {
  min-width: 146px;
}

@media (min-width: 1180px) {
  .vc-built__inner {
    width: min(1288px, calc(100% - 20px));
    grid-template-columns: minmax(0, 500px) minmax(0, 636px);
    gap: 68px;
    min-height: 940px;
  }

  .vc-built__fan {
    margin-left: -170px;
    width: 620px;
    height: clamp(840px, 58vw, 940px);
    min-height: 840px;
  }

  .vc-built__card {
    width: clamp(202px, 14.6vw, 224px);
  }

  .vc-built .vc-title {
    font-size: clamp(52px, 3.8vw, 56px);
    line-height: 1.2;
    letter-spacing: 0;
  }

}

@media (min-width: 981px) and (max-width: 1179px) {
  .vc-built {
    padding: clamp(82px, 9vw, 112px) 0;
  }

  .vc-built__inner {
    width: calc(100% - 64px);
    min-height: clamp(720px, 76vw, 820px);
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: clamp(28px, 4vw, 48px);
  }

  .vc-built__fan {
    width: min(470px, 45vw);
    height: clamp(640px, 67vw, 720px);
    min-height: 640px;
    margin-left: clamp(-104px, -7.8vw, -70px);
  }

  .vc-built__card {
    width: clamp(168px, 17vw, 194px);
  }

  .vc-built__content {
    max-width: 520px;
  }

  .vc-built .vc-title {
    font-size: clamp(42px, 4.8vw, 52px);
    line-height: 1.08;
  }
}

@media (min-width: 1680px) {
  .vc-built__inner {
    width: 1288px;
    grid-template-columns: 500px 636px;
    gap: 92px;
  }

  .vc-built__fan {
    margin-left: -188px;
    width: 660px;
    height: 980px;
    min-height: 980px;
  }

  .vc-built__card {
    width: 236px;
  }
}

.vc-support {
  --vc-support-card-width: 402px;
  --vc-support-card-height: calc(var(--vc-support-card-width) * 1.25);
  --vc-support-card-top: 116px;
  --vc-support-card-bottom-gap: 190px;
  --vc-support-rail-y-pad: 96px;

  position: relative;
  height: calc(var(--vc-support-card-top) + var(--vc-support-card-height) + var(--vc-support-card-bottom-gap));
  scroll-margin-top: 0;
  overflow: hidden;
  background: var(--vc-bg);
  isolation: isolate;
}

.vc-support::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--vc-bg) 72%);
  pointer-events: none;
}

.vc-support__grid {
  position: relative;
  height: 100%;
}

.vc-support__intro {
  position: absolute;
  top: var(--vc-support-card-top);
  left: 0;
  z-index: 3;
  display: flex;
  width: 506px;
  height: var(--vc-support-card-height);
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.vc-support__intro::before {
  content: "";
  position: absolute;
  inset: -52px -112px -56px -50vw;
  z-index: 0;
  background: var(--vc-bg);
  -webkit-mask-image:
    linear-gradient(
      90deg,
      #000 0%,
      #000 calc(100% - 340px),
      rgba(0, 0, 0, 0.78) calc(100% - 240px),
      rgba(0, 0, 0, 0.34) calc(100% - 112px),
      rgba(0, 0, 0, 0) 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      #000 0%,
      #000 calc(100% - 340px),
      rgba(0, 0, 0, 0.78) calc(100% - 240px),
      rgba(0, 0, 0, 0.34) calc(100% - 112px),
      rgba(0, 0, 0, 0) 100%
    );
  pointer-events: none;
}

.vc-support__copy {
  position: relative;
  z-index: 1;
  width: 506px;
}

.vc-arrow-controls {
  position: relative;
  z-index: 1;
}

.vc-support .vc-title {
  width: 456px;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.88);
}

.vc-support .vc-title span {
  display: block;
}

.vc-support__text {
  width: 506px;
  margin-top: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.vc-arrow-controls {
  display: flex;
  gap: 8px;
}

.vc-arrow-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-right-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(29, 29, 29, 0.58);
  box-shadow:
    inset -4.5px -4.5px 1.5px -5.25px rgba(255, 255, 255, 0.5),
    inset 4.5px 4.5px 1.5px -5.25px rgba(255, 255, 255, 0.5),
    inset 0 0 33px rgba(242, 242, 242, 0.5);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background-color var(--vc-ease), border-color var(--vc-ease), transform var(--vc-ease);
}

.vc-arrow-controls img {
  width: 24px;
  height: 24px;
}

.vc-arrow-controls button:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.vc-arrow-controls button:disabled {
  opacity: 0.36;
  cursor: default;
}

.vc-arrow-controls button:disabled:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background-color: transparent;
  transform: none;
}

.vc-card-rail {
  --vc-support-rail-slot: 586px;
  --vc-support-container-width: min(calc(100vw - (var(--vc-gutter) * 2)), var(--vc-container));
  --vc-support-container-edge: calc((100vw - var(--vc-support-container-width)) / 2);
  --vc-support-focus-left: calc(var(--vc-support-container-edge) + var(--vc-support-rail-slot));
  --vc-support-rail-runway: var(--vc-support-focus-left);
  --vc-support-focus: start;
  --vc-rail-left-cut: 0px;
  --vc-rail-left-fade: 0px;
  --vc-rail-right-mask: 0px;
  --vc-rail-copy-fade-start: var(--vc-support-container-edge);
  --vc-rail-copy-fade-end: calc(var(--vc-support-container-edge) + 506px);
  --vc-rail-tail-room: max(var(--vc-rail-right-mask), calc(100vw - var(--vc-support-focus-left) - var(--vc-support-card-width)));

  position: absolute;
  top: calc(var(--vc-support-card-top) - var(--vc-support-rail-y-pad));
  left: calc(var(--vc-support-container-edge) * -1);
  z-index: 1;
  display: flex;
  width: 100vw;
  min-width: 0;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--vc-support-rail-y-pad) var(--vc-rail-tail-room) var(--vc-support-rail-y-pad) var(--vc-support-rail-runway);
  perspective: 1200px;
  perspective-origin: var(--vc-support-focus-left) 55%;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) var(--vc-rail-copy-fade-start),
      rgba(0, 0, 0, 0.16) calc(var(--vc-rail-copy-fade-start) + 82px),
      rgba(0, 0, 0, 0.56) calc(var(--vc-rail-copy-fade-start) + 258px),
      rgba(0, 0, 0, 0.88) calc(var(--vc-rail-copy-fade-end) - 72px),
      #000 var(--vc-rail-copy-fade-end),
      #000 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) var(--vc-rail-copy-fade-start),
      rgba(0, 0, 0, 0.16) calc(var(--vc-rail-copy-fade-start) + 82px),
      rgba(0, 0, 0, 0.56) calc(var(--vc-rail-copy-fade-start) + 258px),
      rgba(0, 0, 0, 0.88) calc(var(--vc-rail-copy-fade-end) - 72px),
      #000 var(--vc-rail-copy-fade-end),
      #000 100%
    );
  scrollbar-width: none;
  scroll-padding-left: var(--vc-support-rail-runway);
  scroll-snap-type: x mandatory;
  transform-style: preserve-3d;
}

.vc-card-rail.is-scrolled-left {
  --vc-rail-left-cut: 0px;
  --vc-rail-left-fade: 0px;
}

.vc-card-rail.is-at-end {
  --vc-rail-right-mask: 0px;
}

.vc-card-rail::-webkit-scrollbar {
  display: none;
}

.vc-image-card {
  --vc-card-scale: 1;
  --vc-card-x: 0px;
  --vc-card-y: 0px;
  --vc-card-z: 0px;
  --vc-card-rotate: 0deg;
  --vc-card-rotate-x: 0deg;
  --vc-card-rotate-y: 0deg;
  --vc-card-blur: 0px;
  --vc-card-brightness: 1;

  position: relative;
  width: var(--vc-support-card-width);
  height: var(--vc-support-card-height);
  flex: 0 0 var(--vc-support-card-width);
  overflow: visible;
  border-radius: var(--vc-radius-md);
  background: transparent;
  pointer-events: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transform-style: preserve-3d;
}

.vc-image-card__surface {
  appearance: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--vc-radius-md);
  background-color: #33140e;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: inherit;
  cursor: default;
  font: inherit;
  pointer-events: none;
  filter:
    brightness(var(--vc-card-brightness))
    blur(var(--vc-card-blur));
  opacity: 1;
  transform:
    translate3d(var(--vc-card-x), var(--vc-card-y), var(--vc-card-z))
    rotateX(var(--vc-card-rotate-x))
    rotateY(var(--vc-card-rotate-y))
    rotate(var(--vc-card-rotate))
    scale(var(--vc-card-scale));
  transform-origin: center center;
  text-align: left;
  transition: box-shadow var(--vc-ease);
  will-change: transform, filter;
}

/* Sector card backgrounds are gated behind `.is-bg-loaded` (added by an
   IntersectionObserver when the section nears the viewport) so these ~1.17MB
   of below-the-fold images stay off the initial load. The gate sits on the
   stable .vc-support section, so cloned rail cards pick them up too. */
.vc-support.is-bg-loaded .vc-image-card--public-speakers .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-public-speakers.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--hospitality .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-hospitality.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--fintech .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-fintech.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--accountants .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-accountants.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--sports .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-sports.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--recruiters .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-recruiters.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--law-firms .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-law-firms.jpg");
}

.vc-support.is-bg-loaded .vc-image-card--family-offices .vc-image-card__surface {
  background-image: url("assets/vested/optimized/we-support-family-offices.jpg");
}

.vc-image-card.is-active .vc-image-card__surface {
  filter: none;
  opacity: 1;
}

.vc-approach {
  --vc-approach-stage-height: min(clamp(520px, 31vw, 620px), calc(100vh - clamp(270px, 22vw, 320px)));
  --vc-approach-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --vc-approach-slide-x: 0;
  --vc-approach-tab-x: 0;

  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
  background: var(--vc-bg);
  padding: clamp(82px, 6vw, 104px) 0 clamp(24px, 2.4vw, 34px);
}

.vc-approach::after {
  content: none;
}

.vc-approach__sticky {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  background: var(--vc-bg);
  padding: 0;
}

.vc-approach__sticky > .vc-title {
  width: min(calc(100% - (var(--vc-gutter) * 2)), var(--vc-container));
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
}

.vc-approach__panel {
  position: relative;
  width: 100%;
  margin-top: clamp(26px, 2.7vw, 38px);
  overflow: hidden;
}

.vc-tabs {
  --vc-tab-line-size: min(340px, 100%);

  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 4;
  height: 68px;
  width: 100%;
  background: #090909;
}

.vc-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  pointer-events: none;
  transform: translate3d(calc(var(--vc-approach-tab-x, 0) * 100%), 0, 0);
  transition: transform 960ms var(--vc-approach-ease);
  will-change: transform;
}

.vc-tabs::before {
  top: 0;
  bottom: 0;
  z-index: 0;
  background: var(--vc-surface-cream);
}

.vc-approach__panel.is-content-active {
  --vc-approach-slide-x: 1;
  --vc-approach-tab-x: 1;
}

.vc-tabs button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--vc-text-tertiary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  padding: 22px clamp(28px, 3.1vw, 48px);
  transition: color 220ms ease;
}

.vc-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(229, 81, 28, 0.16), var(--vc-accent) 58%, rgba(255, 137, 68, 0.92));
  box-shadow: 0 -1px 14px rgba(229, 81, 28, 0.22);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.vc-tabs button:first-child {
  border-right: 1px solid rgba(239, 240, 233, 0.08);
}

.vc-tabs button:hover {
  color: rgba(255, 255, 255, 0.82);
}

.vc-tabs button.is-active {
  color: var(--vc-accent);
}

.vc-tabs button.is-active::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--vc-accent);
  flex: 0 0 auto;
}

.vc-tabs button.is-autoplaying::after {
  opacity: 1;
  animation: vc-tab-progress var(--vc-tab-progress-duration, 6500ms) linear forwards;
}

.vc-tabs button.is-autoplay-paused::after {
  animation-play-state: paused;
}

.vc-approach__content {
  position: relative;
  height: var(--vc-approach-stage-height);
  width: 100%;
  overflow: hidden;
  background: #080808;
  isolation: isolate;
}

.vc-approach__panes {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: var(--vc-surface-cream);
  box-shadow: 28px 0 64px rgba(0, 0, 0, 0.22);
  transform: translate3d(calc(var(--vc-approach-slide-x, 0) * 100%), 0, 0);
  transition:
    transform 960ms var(--vc-approach-ease),
    box-shadow 960ms var(--vc-approach-ease);
  will-change: transform;
}

.vc-approach__panes::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16), transparent);
  pointer-events: none;
}

.vc-approach__panel.is-content-active .vc-approach__panes {
  box-shadow: -28px 0 64px rgba(0, 0, 0, 0.22);
}

.vc-tab-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 1.6vw, 28px);
  width: 100%;
  height: 100%;
  padding: clamp(44px, 3.3vw, 58px) clamp(42px, 4vw, 72px);
  color: var(--vc-text-inverse);
  background: transparent;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: vc-approach-copy-in 620ms var(--vc-approach-ease) both;
}

.vc-tab-panel[hidden] {
  display: none;
}

.vc-tab-panel__texture {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 536px;
  height: 100%;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.vc-tab-panel h3 {
  width: 100%;
  font-family: var(--vc-font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.vc-tab-panel p {
  max-width: 520px;
  font-family: var(--vc-font-display);
  font-size: clamp(18px, 1vw, 20px);
  line-height: 1.46;
}

.vc-tab-panel p + p {
  margin-top: 3px;
}

.vc-approach__image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: #100a08;
  transform: translate3d(calc(var(--vc-approach-slide-x, 0) * -100%), 0, 0);
  transition: transform 960ms var(--vc-approach-ease);
  will-change: transform;
}

.vc-approach__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 520ms ease,
    transform 1200ms var(--vc-approach-ease),
    object-position 1200ms var(--vc-approach-ease),
    filter 1200ms var(--vc-approach-ease);
}

.vc-approach__media.is-active {
  opacity: 1;
}

.vc-approach__panel.is-content-active .vc-approach__media {
  object-position: 55% 50%;
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.02);
}

.vc-approach.is-scroll-driven .vc-tabs::before,
.vc-approach.is-scroll-driven .vc-approach__panes,
.vc-approach.is-scroll-driven .vc-approach__image {
  transition: none;
}

@keyframes vc-approach-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vc-tab-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.vc-services-work {
  --vc-services-glow-y: 50%;
  --vc-services-glow-opacity: 0.78;

  position: relative;
  z-index: 4;
  isolation: isolate;
  margin-top: -1px;
  overflow: hidden;
  background: var(--vc-bg);
  box-shadow: 0 -56px 0 var(--vc-bg);
  padding: clamp(44px, 3.9vw, 62px) 0 clamp(112px, 10vw, 152px);
}

.vc-services-work::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(72px, 7vw, 128px);
  background: linear-gradient(180deg, var(--vc-bg), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.vc-services-work__glow {
  position: absolute;
  z-index: 0;
  top: var(--vc-services-glow-y);
  right: -520px;
  left: min(14vw, 220px);
  height: clamp(780px, 76vw, 1260px);
  background:
    radial-gradient(ellipse at 74% 50%, rgba(229, 81, 28, 0.32), transparent 31%),
    radial-gradient(ellipse at 84% 38%, rgba(255, 137, 68, 0.13), transparent 28%);
  filter: blur(14px);
  opacity: var(--vc-services-glow-opacity);
  -webkit-mask-image: radial-gradient(ellipse at 74% 50%, #000 0%, rgba(0, 0, 0, 0.9) 42%, rgba(0, 0, 0, 0.26) 66%, transparent 84%);
  mask-image: radial-gradient(ellipse at 74% 50%, #000 0%, rgba(0, 0, 0, 0.9) 42%, rgba(0, 0, 0, 0.26) 66%, transparent 84%);
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
  transition: opacity 480ms ease;
  will-change: top;
}

.vc-services {
  position: relative;
  z-index: 2;
}

.vc-service-list {
  display: flex;
  flex-direction: column;
  gap: var(--vc-service-row-gap);
  margin-top: clamp(48px, 4.8vw, 68px);
  list-style: none;
}

.vc-service-row {
  --vc-service-row-delay: 0ms;

  position: relative;
  z-index: 0;
  width: 100%;
  isolation: isolate;
}

.vc-service-row::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 calc(var(--vc-service-row-padding-inline) * -1);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.012) 24%, transparent 48%, rgba(229, 81, 28, 0.045) 100%);
  opacity: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  pointer-events: none;
  transform: scaleX(0.982);
  transform-origin: left center;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-service-row--strategy {
  --vc-service-row-delay: 0ms;
}

.vc-service-row--visual-assets {
  --vc-service-row-delay: 110ms;
}

.vc-service-row--management {
  --vc-service-row-delay: 220ms;
}

.vc-service-row__divider {
  position: relative;
  display: block;
  width: 100%;
  height: var(--vc-service-row-divider-height);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), var(--vc-line-dim), rgba(255, 255, 255, 0.04));
  overflow: hidden;
  transform-origin: left center;
}

.vc-service-row__divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 81, 28, 0.08), rgba(255, 255, 255, 0.45) 44%, rgba(229, 81, 28, 0.5));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 320ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-service-row__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: var(--vc-service-row-height);
  padding-block: 42px;
  padding-inline: var(--vc-service-row-padding-inline);
  transition: transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-service-row__copy {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(330px, 0.78fr) minmax(360px, 0.9fr);
  grid-template-areas:
    "label items"
    "summary items";
  column-gap: clamp(56px, 8vw, 132px);
  row-gap: 22px;
  align-items: center;
}

.vc-service-row__label {
  grid-area: label;
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--vc-font-display);
  font-size: var(--vc-service-row-label-size);
  font-weight: var(--vc-service-row-label-weight);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: var(--vc-service-row-label-transform);
  margin: 0;
  white-space: normal;
  text-wrap: balance;
  user-select: none;
  transition: color 520ms ease, transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-service-row__summary {
  grid-area: summary;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.42;
  transition: color 520ms ease, transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vc-service-row__items {
  grid-area: items;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 42px;
  align-self: center;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  transition: color 520ms ease;
}

.vc-service-row--management .vc-service-row__items {
  grid-template-columns: minmax(0, 1fr);
}

.vc-service-row__items li {
  --vc-service-item-delay: 0ms;

  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  opacity: 0.82;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 420ms ease var(--vc-service-item-delay),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1) var(--vc-service-item-delay),
    color 420ms ease;
}

.vc-service-row__items li:nth-child(2) {
  --vc-service-item-delay: 35ms;
}

.vc-service-row__items li:nth-child(3) {
  --vc-service-item-delay: 70ms;
}

.vc-service-row__items li:nth-child(4) {
  --vc-service-item-delay: 105ms;
}

.vc-service-row__items li:nth-child(5) {
  --vc-service-item-delay: 140ms;
}

.vc-service-row__items li:nth-child(6) {
  --vc-service-item-delay: 175ms;
}

.vc-service-row__items li::before {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.52;
}

.vc-service-row .vc-service-row__label {
  margin-left: 1px;
}

/* `is-engaged` latches on once a row has been reached and is never removed, so
   a row that scrolls up out of view stays lit. `is-active` (the row currently
   at the scroll-focus line) shares the identical lit treatment. */
.vc-service-row.is-active::before,
.vc-service-row.is-engaged::before {
  opacity: 0.62;
  transform: scaleX(1);
}

.vc-service-row.is-active .vc-service-row__divider::after,
.vc-service-row.is-engaged .vc-service-row__divider::after {
  opacity: 1;
  transform: scaleX(1);
}

.vc-service-row.is-active .vc-service-row__inner,
.vc-service-row.is-engaged .vc-service-row__inner {
  transform: translate3d(0, -2px, 0);
}

.vc-service-row.is-active .vc-service-row__label,
.vc-service-row.is-engaged .vc-service-row__label {
  color: rgba(255, 255, 255, 0.96);
  transform: translate3d(0, -2px, 0);
}

.vc-service-row.is-active .vc-service-row__summary,
.vc-service-row.is-engaged .vc-service-row__summary {
  color: rgba(255, 255, 255, 0.72);
  transform: translate3d(0, -1px, 0);
}

.vc-service-row.is-active .vc-service-row__items,
.vc-service-row.is-engaged .vc-service-row__items {
  color: rgba(255, 255, 255, 0.9);
}

.vc-service-row.is-active .vc-service-row__items li,
.vc-service-row.is-engaged .vc-service-row__items li {
  opacity: 1;
  transform: translate3d(5px, 0, 0);
}

.vc-service-row.is-active .vc-service-row__items li::before,
.vc-service-row.is-engaged .vc-service-row__items li::before {
  background: var(--vc-accent);
  opacity: 0.9;
}

.vc-process-section {
  position: relative;
  --vc-track: rgba(229, 81, 28, 0.48);
  --vc-track-active: var(--vc-accent);

  background: var(--vc-bg);
  overflow: hidden;
  padding: 0;
}

.vc-process-section::before {
  content: none;
}

.vc-process {
  position: relative;
  z-index: 1;
  min-height: 1156px;
  padding-top: clamp(96px, 7vw, 118px);
}

.vc-process .vc-title {
  text-align: center;
}

.vc-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--vc-container);
  margin: 64px auto 0;
  isolation: isolate;
}

.vc-timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: var(--vc-timeline-track-end, 100%);
  background: linear-gradient(180deg, rgba(229, 81, 28, 0.2), rgba(229, 81, 28, 0.68) 45%, rgba(229, 81, 28, 0.32));
  pointer-events: none;
}

.vc-timeline__progress {
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: var(--vc-timeline-progress, 0px);
  background: linear-gradient(180deg, rgba(255, 138, 90, 0.95) 0%, var(--vc-accent) 18%, var(--vc-accent) 82%, rgba(255, 138, 90, 0.95) 100%);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 10px rgba(229, 81, 28, 0.55),
    0 0 22px rgba(229, 81, 28, 0.28);
  transition: height 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-timeline__item {
  position: relative;
  display: grid;
  min-height: 272px;
  grid-template-columns: minmax(0, 472px) var(--vc-process-timeline-column) minmax(0, 472px);
  gap: 0 var(--vc-process-grid-gap);
}

.vc-timeline__item:last-child {
  min-height: 178px;
}

.vc-timeline__item::before {
  content: none;
}

.vc-timeline__item::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin-top: 32px;
  width: var(--vc-process-node-size);
  height: var(--vc-process-node-size);
  border-radius: 50%;
  border: 1px solid var(--vc-track);
  background: var(--vc-bg);
  z-index: 1;
  transition:
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-timeline__item:first-child::after {
  margin-top: 24px;
}

.vc-timeline__item.is-current::after {
  border-color: var(--vc-accent);
  background: var(--vc-accent);
  box-shadow: none;
}

.vc-timeline__item.is-past::after {
  border-color: var(--vc-accent);
  background: var(--vc-accent);
}

/* Once an item has been reached it stays fully lit — scrolling further or
   past the section never dims it back down. */
.vc-timeline__item.is-past h3,
.vc-timeline__item.is-past ul,
.vc-timeline__item.is-past p {
  color: var(--vc-text-primary);
}

.vc-timeline__item h3 {
  grid-column: 1;
  grid-row: 1;
  padding-top: 42px;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  color: var(--vc-text-tertiary);
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-timeline__item h3::before {
  content: none;
}

.vc-timeline__item.is-current h3 {
  color: var(--vc-text-primary);
}

.vc-timeline__item ul,
.vc-timeline__item p {
  grid-column: 3;
  grid-row: 1;
  padding-top: 42px;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h4);
  font-weight: 400;
  line-height: 1.2;
  color: var(--vc-text-tertiary);
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-timeline__item.is-current ul,
.vc-timeline__item.is-current p {
  color: var(--vc-text-primary);
}

.vc-timeline__item:first-child h3,
.vc-timeline__item:first-child ul,
.vc-timeline__item:nth-child(2) ul {
  padding-top: 32px;
}

.vc-timeline__item ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: disc;
  padding-left: 30px;
  font-feature-settings: "salt" 1, "cv01" 1, "cv03" 1, "cv04" 1;
}

.vc-timeline__item p {
  max-width: 276px;
}

.vc-timeline__item p + p {
  margin-top: 12px;
}

.vc-timeline__item .vc-timeline__copy {
  grid-column: 3;
  grid-row: 1;
  padding-top: 42px;
}

.vc-timeline__item .vc-timeline__copy p {
  padding-top: 0;
}

.vc-studio {
  background: var(--vc-bg);
  padding-top: 66px;
}

.vc-studio__video {
  position: relative;
  height: 737px;
  margin-top: 46px;
  overflow: hidden;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.vc-studio__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.vc-studio__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.vc-play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background-color var(--vc-ease), scale var(--vc-ease);
}

.vc-play-button:hover {
  background: rgba(255, 255, 255, 0.42);
  scale: 1.05;
}

.vc-play-button img {
  width: 20px;
  height: 20px;
}

.vc-studio__copy {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  width: min(525px, calc(100% - 48px));
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-right-color: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.48);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.38);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.vc-studio__copy p {
  margin: 0;
}

.vc-studio__copy p + p {
  margin-top: 16px;
}

.vc-catalog {
  position: relative;
  display: flex;
  min-height: 1080px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
  overflow: hidden;
  background: #000;
  padding: 128px 0 96px;
  isolation: isolate;
}

.vc-catalog::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -213px;
  left: calc(50% - 137px);
  width: 1777px;
  height: 1115px;
  background: url("assets/vested/catalog-figma-vector.svg") center / 100% 100% no-repeat;
  opacity: 1;
  transform: translateX(-50%) rotate(20.26deg);
  transform-origin: center;
  pointer-events: none;
}

.vc-catalog::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 7%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.68) 93%, #000 100%),
    linear-gradient(180deg, #000 0%, transparent 16%, transparent 84%, #000 100%);
  pointer-events: none;
}

.vc-catalog__intro {
  --vc-section-copy-measure: 616px;

  position: relative;
  z-index: 5;
  width: min(700px, 100%);
  text-align: center;
}

.vc-catalog__intro p {
  width: min(100%, var(--vc-section-copy-measure));
  margin: 16px auto 0;
}

.vc-catalog__eyebrow {
  margin: 0 0 12px;
  color: var(--vc-accent);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-2xs);
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vc-catalog__button {
  position: relative;
  z-index: 5;
  margin-top: -8px;
}

.vc-brochure-dialog {
  width: min(560px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--vc-text-primary);
}

.vc-brochure-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.vc-brochure-dialog__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--vc-radius-md);
  background:
    radial-gradient(ellipse at 84% 0%, rgba(229, 81, 28, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.022)),
    rgba(4, 4, 4, 0.94);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.7),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.vc-brochure-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-body);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--vc-ease), border-color var(--vc-ease);
}

.vc-brochure-dialog__close svg {
  display: block;
  width: 16px;
  height: 16px;
}

.vc-brochure-dialog__close:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.vc-brochure-dialog__header {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding-right: 38px;
}

.vc-brochure-dialog__header h2 {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.vc-brochure-dialog__header > p:last-child {
  max-width: 40ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  line-height: 1.36;
}

.vc-brochure-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.vc-brochure-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.vc-brochure-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--vc-font-mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.vc-brochure-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--vc-radius-xs);
  background: rgba(255, 255, 255, 0.055);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-body);
  font-size: var(--vc-text-sm);
  letter-spacing: 0;
  outline: none;
  padding: 12px 14px;
  text-transform: none;
  transition: border-color var(--vc-ease), background-color var(--vc-ease), box-shadow var(--vc-ease);
}

.vc-brochure-form input:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(229, 81, 28, 0.16);
}

.vc-brochure-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.vc-brochure-form__actions .vc-liquid-button {
  min-width: 158px;
  border: 0;
}

.vc-brochure-form__download {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--vc-font-body);
  font-size: var(--vc-text-sm);
  font-weight: 600;
  text-transform: uppercase;
}

.vc-brochure-form__status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  line-height: 1.4;
}

.vc-catalog__fan {
  position: relative;
  z-index: 3;
  width: 1484px;
  max-width: none;
  height: 480px;
  overflow: visible;
  perspective: 900px;
  perspective-origin: 50% 100%;
  transform-style: preserve-3d;
  user-select: none;
}

.vc-catalog__card {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 50%;
  display: block;
  width: var(--vc-card-width, 320px);
  height: var(--vc-card-height, 440px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--vc-bg-soft);
  color: inherit;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: bottom center;
  transform:
    translate3d(calc(-50% + var(--vc-card-x, 0px)), 0, 0)
    rotateY(var(--vc-card-rotate-y, 0deg));
  opacity: var(--vc-card-opacity, 1);
  z-index: var(--vc-card-zi, 1);
  will-change: transform, opacity, height, width;
  backface-visibility: hidden;
  pointer-events: none;
}

.vc-catalog__card.is-active {
  box-shadow:
    0 38px 92px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.vc-catalog__card img,
.vc-catalog__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Bottom fade gradient on every card */
.vc-catalog__card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.48) 72%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

/* Distance-based darkening overlay (drives the depth feel) */
.vc-catalog__card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, var(--vc-card-overlay, 0));
  pointer-events: none;
}

/* Pre-hydrate initial slot positions so the fan paints correctly before
 * the rAF tick takes over. JS overrides these via inline style on each card. */
.vc-catalog__card:nth-child(1) {
  --vc-card-x: -638.4px;
  --vc-card-rotate-y: -23.25deg;
  --vc-card-width: 320px;
  --vc-card-height: 273px;
  --vc-card-zi: 4;
  --vc-card-opacity: 0.6;
  --vc-card-overlay: 0.55;
}

.vc-catalog__card:nth-child(2) {
  --vc-card-x: -348px;
  --vc-card-rotate-y: -15deg;
  --vc-card-width: 320px;
  --vc-card-height: 350px;
  --vc-card-zi: 7;
  --vc-card-opacity: 1;
  --vc-card-overlay: 0.28;
}

.vc-catalog__card:nth-child(3) {
  --vc-card-x: 0px;
  --vc-card-rotate-y: 0deg;
  --vc-card-width: 320px;
  --vc-card-height: 440px;
  --vc-card-zi: 10;
  --vc-card-opacity: 1;
  --vc-card-overlay: 0;
}

.vc-catalog__card:nth-child(4) {
  --vc-card-x: 348px;
  --vc-card-rotate-y: 15deg;
  --vc-card-width: 320px;
  --vc-card-height: 350px;
  --vc-card-zi: 7;
  --vc-card-opacity: 1;
  --vc-card-overlay: 0.28;
}

.vc-catalog__card:nth-child(5) {
  --vc-card-x: 638.4px;
  --vc-card-rotate-y: 23.25deg;
  --vc-card-width: 320px;
  --vc-card-height: 273px;
  --vc-card-zi: 4;
  --vc-card-opacity: 0.6;
  --vc-card-overlay: 0.55;
}

.vc-catalog__card:nth-child(n+6) {
  --vc-card-x: 1100px;
  --vc-card-rotate-y: 30deg;
  --vc-card-width: 320px;
  --vc-card-height: 217px;
  --vc-card-zi: 0;
  --vc-card-opacity: 0;
  --vc-card-overlay: 0.9;
}

.vc-catalog > .vc-liquid-button {
  position: relative;
  z-index: 5;
  margin-top: 0;
}

.vc-founder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 17% 0%, rgba(229, 81, 28, 0.18), transparent 34%),
    radial-gradient(ellipse at 86% 22%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #000 0%, #080808 48%, #000 100%);
  padding: clamp(106px, 9vw, 154px) 0;
  isolation: isolate;
}

.vc-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, transparent 66%);
  opacity: 0.2;
}

.vc-founder__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.vc-founder__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vc-radius-md);
  background: #0d0d0d;
  box-shadow:
    0 44px 92px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.vc-founder__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(90deg, rgba(229, 81, 28, 0.1), transparent 48%);
  pointer-events: none;
}

.vc-founder__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.96) contrast(1.04);
}

.vc-founder__tag {
  position: absolute;
  z-index: 2;
  top: clamp(18px, 3vw, 28px);
  left: clamp(18px, 3vw, 28px);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--vc-radius-pill);
  background:
    linear-gradient(135deg, rgba(229, 81, 28, 0.3), rgba(255, 255, 255, 0.1) 44%, rgba(0, 0, 0, 0.5) 100%),
    rgba(0, 0, 0, 0.34);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  backdrop-filter: blur(12px) saturate(1.12);
}

/* The tag text is rendered as an inline SVG outline so it renders identically
 * across browsers (Safari in particular has webfont-in-SVG quirks). A
 * visually-hidden text span sits alongside so search engines and screen
 * readers still see real "Aaron Godsi" text in the DOM. */
.vc-founder__tag-svg {
  display: block;
  width: auto;
  height: 18px;
}

.vc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vc-founder__content {
  display: flex;
  max-width: 682px;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.vc-founder .vc-title {
  max-width: 640px;
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.vc-founder__copy {
  display: grid;
  width: 100%;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.vc-founder__copy p {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  line-height: 1.54;
}

.vc-founder__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vc-founder__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vc-radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-2xs);
  letter-spacing: 0.7px;
  line-height: 1;
  text-transform: uppercase;
}

.vc-founder__button {
  margin-top: 6px;
}

@keyframes vc-catalog-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .vc-catalog__fan {
    animation: vc-catalog-float 5200ms ease-in-out infinite alternate;
  }
}

.vc-contact-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--vc-bg);
  padding-top: clamp(132px, 10vw, 168px);
}

.vc-contact-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  background:
    radial-gradient(ellipse at 16% 0%, rgba(229, 81, 28, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.vc-contact-page__glow {
  position: absolute;
  top: -150px;
  left: max(-220px, -12vw);
  width: min(760px, 66vw);
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(229, 81, 28, 0.14), rgba(229, 81, 28, 0) 70%);
  filter: blur(92px);
  opacity: 0.8;
  pointer-events: none;
}

.vc-contact {
  --vc-contact-container: 1184px;

  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - (var(--vc-gutter) * 2)), var(--vc-contact-container));
  gap: clamp(84px, 8vw, 120px);
  padding-bottom: clamp(88px, 8vw, 124px);
}

.vc-contact__hero {
  display: grid;
  grid-template-columns: minmax(0, 640fr) minmax(390px, 472fr);
  gap: clamp(64px, 5vw, 72px);
  align-items: start;
}

.vc-contact__intro {
  display: grid;
  min-height: 883px;
  align-content: start;
  gap: clamp(56px, 5vw, 72px);
}

.vc-contact__title {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(58px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-contact__title span {
  display: block;
}

.vc-contact__title span:last-child {
  color: var(--vc-accent);
}

.vc-contact__promises {
  display: grid;
  width: min(496px, 100%);
  gap: 18px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 400;
  line-height: 1.5;
  list-style: none;
}

.vc-contact__promises li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.vc-contact__promises li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vc-accent);
  box-shadow: 0 0 12px rgba(229, 81, 28, 0.32);
}

.vc-contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(496px, 100%);
}

.vc-contact-quick-links a {
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  padding: 2px 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--vc-radius-pill);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  line-height: 1;
  transition:
    border-color var(--vc-ease),
    background-color var(--vc-ease),
    color var(--vc-ease),
    transform var(--vc-ease);
}

.vc-contact-quick-links a:hover {
  border-color: rgba(229, 81, 28, 0.46);
  background-color: rgba(229, 81, 28, 0.08);
  color: var(--vc-text-primary);
  transform: translateY(-1px);
}

.vc-contact-form {
  display: grid;
  width: 100%;
  max-width: 472px;
  gap: 26px;
  margin-left: auto;
}

.vc-contact-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vc-contact-field {
  position: relative;
  display: block;
  min-width: 0;
}

.vc-contact-field span {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  line-height: 1.5;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    color var(--vc-ease),
    font-size var(--vc-ease),
    top var(--vc-ease),
    transform var(--vc-ease);
}

.vc-contact-field input,
.vc-contact-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  line-height: 1.5;
  caret-color: var(--vc-accent);
  transition:
    border-color var(--vc-ease),
    background-color var(--vc-ease);
}

.vc-contact-field input {
  height: 55px;
  padding: 20px 12px 8px;
}

.vc-contact-field textarea {
  min-height: 120px;
  padding: 34px 12px 10px;
  resize: vertical;
}

.vc-contact-field--textarea span {
  top: 20px;
  transform: none;
}

.vc-contact-field:focus-within span,
.vc-contact-field:has(input:not(:placeholder-shown)) span,
.vc-contact-field:has(textarea:not(:placeholder-shown)) span {
  top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--vc-text-2xs);
  transform: none;
}

.vc-contact-field:focus-within input,
.vc-contact-field:focus-within textarea {
  border-color: rgba(229, 81, 28, 0.62);
  background-color: rgba(255, 255, 255, 0.015);
}

.vc-contact-choice {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px 0 0;
  border: 0;
}

.vc-contact-choice legend {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-2xs);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vc-contact-choice__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-contact-choice label {
  cursor: pointer;
}

.vc-contact-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vc-contact-choice span {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  padding: 2px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--vc-radius-pill);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    border-color var(--vc-ease),
    background-color var(--vc-ease),
    color var(--vc-ease),
    transform var(--vc-ease);
}

.vc-contact-choice input:focus-visible + span {
  outline: 2px solid rgba(229, 81, 28, 0.76);
  outline-offset: 3px;
}

.vc-contact-choice input:checked + span {
  border-color: rgba(229, 81, 28, 0.72);
  background: rgba(229, 81, 28, 0.12);
  color: var(--vc-text-primary);
}

.vc-contact-choice label:hover span {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.76);
  transform: translateY(-1px);
}

.vc-contact-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vc-contact-form__actions .vc-liquid-button {
  min-width: 155px;
}

.vc-contact-form__feedback {
  display: grid;
  gap: 4px;
}

.vc-contact-form__feedback p,
.vc-contact-form__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xs);
  line-height: 1.4;
}

.vc-contact-form__status:empty {
  display: none;
}

.vc-contact-form__consents {
  display: grid;
  gap: 10px;
}

.vc-contact-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-text-tertiary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xs);
  line-height: 1.5;
}

.vc-contact-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--vc-accent);
}

.vc-contact-consent a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-decoration-color: rgba(229, 81, 28, 0.48);
  text-underline-offset: 3px;
}

.vc-contact__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(52px, 5vw, 72px);
}

.vc-contact__details article {
  --vc-contact-detail-icon: url("assets/vested/contact-icon-pin.svg");

  display: grid;
  min-width: 0;
  align-content: start;
  gap: 16px;
}

.vc-contact__details article:nth-child(2) {
  --vc-contact-detail-icon: url("assets/vested/contact-icon-mail.svg");
}

.vc-contact__details article:nth-child(3) {
  --vc-contact-detail-icon: url("assets/vested/contact-icon-phone.svg");
}

.vc-contact__details article::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    var(--vc-contact-detail-icon) center / 18px 18px no-repeat,
    rgba(229, 81, 28, 0.1);
}

.vc-contact__details h3 {
  margin: 0;
  color: rgba(229, 229, 229, 0.92);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xs);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.vc-contact__details p {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  line-height: 1.5;
}

.vc-contact__details a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1179px) {
  .vc-contact__details article {
    justify-items: center;
    text-align: center;
  }

  .vc-contact__details p {
    justify-content: center;
  }
}

.vc-contact-offices {
  position: relative;
  z-index: 1;
  scroll-margin-top: 0;
  background: var(--vc-bg);
  padding-top: 64px;
}

.vc-contact-offices__title {
  margin: 0 0 48px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(44px, 4.7vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-contact-offices__map {
  position: relative;
  height: min(61.42vw, 737px);
  min-height: 520px;
  overflow: hidden;
  border-block: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.vc-contact-offices__map-frame {
  position: absolute;
  inset: -1px;
  z-index: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 0;
  filter: grayscale(1) invert(0.93) hue-rotate(178deg) saturate(0.52) contrast(0.94) brightness(0.68);
  opacity: 0.92;
  transition: opacity 420ms var(--vc-ease-out);
}

.vc-contact-offices__map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-contact-offices__map-canvas {
  position: absolute;
  inset: -1px;
  z-index: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--vc-ease-out);
}

.vc-contact-offices__map.is-map-ready .vc-contact-offices__map-frame {
  opacity: 0;
}

.vc-contact-offices__map.is-map-ready .vc-contact-offices__map-canvas {
  opacity: 1;
  pointer-events: auto;
}

.vc-contact-offices__map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: min(480px, 72vw);
  height: 128px;
  background:
    linear-gradient(105deg, #050505 0%, rgba(5, 5, 5, 0.9) 44%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.72) 52%, rgba(5, 5, 5, 0) 100%);
  pointer-events: none;
}

.vc-contact-offices__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 51% 48%, rgba(229, 81, 28, 0.16), rgba(229, 81, 28, 0) 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.44)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04) 43%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.vc-contact-offices__card {
  position: absolute;
  right: clamp(32px, 7vw, 150px);
  bottom: clamp(32px, 5vw, 56px);
  z-index: 2;
  display: grid;
  width: min(420px, calc(100% - 48px));
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(243, 243, 243, 0.46);
  border-radius: var(--vc-radius-xs);
  background:
    linear-gradient(135deg, rgba(229, 81, 28, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.72);
  color: var(--vc-text-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vc-contact-offices__card strong,
.vc-contact-offices__card span,
.vc-contact-offices__card a {
  font-family: var(--vc-font-body);
  font-weight: 400;
}

.vc-contact-offices__card strong {
  font-size: var(--vc-text-h6);
  line-height: 1.5;
}

.vc-contact-offices__card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.vc-contact-offices__card a {
  width: fit-content;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(229, 81, 28, 0.58);
  text-underline-offset: 3px;
}

.vc-footer {
  position: relative;
  overflow: hidden;
  --vc-footer-width: min(90vw, 2500px);
  background: var(--vc-bg);
  padding: clamp(72px, 6vw, 80px) 0 64px;
}

.vc-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.24) 84%, #000 100%);
  pointer-events: none;
}

.vc-footer__flare {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1123px;
  background:
    linear-gradient(223deg, rgba(229, 81, 28, 0.92) 0%, rgba(229, 81, 28, 0) 50%);
  opacity: 0.92;
  pointer-events: none;
}

.vc-footer__cta,
.vc-footer__nav,
.vc-footer__wordmark {
  position: relative;
  z-index: 1;
}

.vc-footer__cta {
  display: flex;
  width: min(942px, calc(100% - 48px));
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 112px;
  text-align: center;
}

.vc-footer__cta .vc-title {
  max-width: 100%;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: 0;
}

.vc-footer__cta-title span {
  display: block;
}

.vc-footer__cta p {
  width: min(394px, 100%);
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.vc-footer__cta .vc-liquid-button {
  margin-top: 24px;
}

.vc-footer__nav {
  display: grid;
  width: var(--vc-footer-width);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(40px, 4.8vw, 78px);
  align-items: start;
}

.vc-footer__nav-groups {
  display: contents;
}

.vc-footer__nav-groups > * {
  min-width: 0;
  justify-self: start;
}

.vc-footer__logo {
  justify-self: start;
  width: 70px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}

.vc-footer nav,
.vc-footer address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.vc-footer h3,
.vc-footer__heading {
  margin-bottom: 4px;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--vc-text-primary);
}

.vc-footer a:not(.vc-liquid-button),
.vc-footer nav span,
.vc-footer address span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  font-weight: 400;
  line-height: 1.5;
}

.vc-footer a img {
  width: 16px;
  height: 16px;
}

.vc-legal-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 78% 0%, rgba(229, 81, 28, 0.14), transparent 36%),
    var(--vc-bg);
}

.vc-legal-main {
  width: min(calc(100% - (var(--vc-gutter) * 2)), 900px);
  margin-inline: auto;
  padding: 144px 0 96px;
}

.vc-legal-main > a {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--vc-accent);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.vc-legal-main h1 {
  font-family: var(--vc-font-display);
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-legal-main time,
.vc-legal-main p,
.vc-legal-main li {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  line-height: 1.55;
}

.vc-legal-main time {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.vc-legal-main section {
  padding-top: 44px;
}

.vc-legal-main h2 {
  margin-bottom: 14px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-legal-main ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.vc-legal-main a:not(.vc-liquid-button) {
  color: var(--vc-text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(229, 81, 28, 0.6);
  text-underline-offset: 4px;
}

.vc-footer__wordmark {
  width: var(--vc-footer-width);
  /* Founders Grotesk has cap-height == ascender, so the giant wordmark carries
     ~0.3em of empty descender space below the caps. Without compensation the
     copyright floats far below while the wordmark jams against the nav above.
     The em-based top/negative-bottom margins rebalance it and scale with the
     clamped font-size across every breakpoint. */
  margin: 0.34em auto -0.14em;
  color: var(--vc-text-primary);
  font-size: clamp(150px, 21.65vw, 540px);
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

.vc-footer__legal {
  margin: 0 auto 0;
  padding: 0 var(--vc-gutter) 36px;
  color: #ffffff;
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root {
    --vc-service-row-label-size: 34px;
  }

  .vc-title {
    font-size: 44px;
  }

  .vc-title--hero {
    font-size: var(--vc-text-display-lg);
  }

  .vc-contact-page {
    padding-top: 124px;
  }

  .vc-contact {
    gap: 72px;
  }

  .vc-contact__hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .vc-contact__intro {
    min-height: 0;
    gap: 40px;
  }

  .vc-contact-form {
    max-width: none;
    margin-left: 0;
  }

  .vc-contact__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 48px;
  }

  .vc-contact-offices__title {
    margin-bottom: 40px;
  }

  .vc-contact-offices__map {
    height: 62vw;
  }

  .vc-launch-nav {
    --vc-nav-content-width: min(690px, calc(100vw - 28px));
    --vc-nav-notch-open: min(760px, calc(100vw + 112px));
    --vc-nav-link-gap: 20px;
    --vc-nav-logo-gap: 50px;
  }

  .vc-launch-nav__links a {
    font-size: 12px;
  }

  .vc-support {
    --vc-support-rail-y-pad: 76px;

    height: auto;
    padding: 72px 0 96px;
  }

  .vc-support__grid {
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 36px;
  }

  .vc-support__intro {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .vc-support__intro::before {
    display: none;
  }

  .vc-support__copy,
  .vc-support__text,
  .vc-support .vc-title {
    width: min(506px, 100%);
  }

  .vc-card-rail {
    --vc-support-card-width: 402px;
    --vc-support-focus: center;
    --vc-support-rail-runway: max(0px, calc((100% - var(--vc-support-card-width)) / 2));
    --vc-rail-left-cut: 0px;
    --vc-rail-left-fade: 0px;
    --vc-rail-tail-room: max(var(--vc-rail-right-mask), var(--vc-support-rail-runway), calc(100% + var(--vc-gutter) - var(--vc-support-card-width)));

    position: relative;
    top: auto;
    left: auto;
    width: calc(100% + var(--vc-gutter));
    margin-top: calc(var(--vc-support-rail-y-pad) * -1);
    margin-right: calc(var(--vc-gutter) * -1);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .vc-card-rail.is-scrolled-left {
    --vc-rail-left-cut: 0px;
    --vc-rail-left-fade: 0px;
  }

  .vc-metrics {
    height: 170vh;
    min-height: 1020px;
  }

  .vc-metrics__sticky {
    min-height: 620px;
  }

  .vc-built__inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 24px;
    min-height: 880px;
  }

  .vc-built__fan {
    margin-left: clamp(-88px, -8vw, -62px);
    width: min(440px, 48vw);
    height: 760px;
    min-height: 760px;
  }

  .vc-built__card {
    width: clamp(176px, 21vw, 210px);
  }

  .vc-built {
    height: auto;
    min-height: 0;
    padding: clamp(96px, 12vw, 128px) 0;
  }

  .vc-built__inner {
    width: calc(100% - 56px);
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    min-height: 800px;
    gap: 26px;
  }

  .vc-built__fan {
    order: 1;
    width: min(500px, 84vw);
    height: 620px;
    min-height: 620px;
    margin: -10px auto 38px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .vc-built__card {
    width: clamp(172px, 31vw, 210px);
  }

  .vc-built__content {
    order: 2;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    justify-self: stretch;
  }

  .vc-built .vc-title {
    font-size: clamp(34px, 6.2vw, 48px);
    line-height: 1.08;
  }

  .vc-metrics__spotlight img {
    width: min(960px, calc(100vw + 96px), calc((100vh + 90px) * 1.49));
    min-width: 720px;
  }

  .vc-metrics__frame {
    width: min(780px, calc(100vw - (var(--vc-gutter) * 2)), calc((100vh - 76px) * 1.49));
  }

  .vc-metrics .vc-title {
    top: 18%;
    font-size: clamp(40px, 7vw, 56px);
  }

  .vc-metrics__stage {
    width: min(500px, 58%);
  }

  .vc-approach__content {
    grid-template-columns: 1fr;
  }

  .vc-approach {
    min-height: 0;
    overflow: visible;
    padding: 0 0 clamp(40px, 5vw, 64px);
  }

  .vc-approach::after {
    content: none;
  }

  .vc-approach__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    overflow: visible;
    padding: clamp(66px, 7vw, 72px) 0 0;
  }

  .vc-approach__sticky > .vc-title {
    width: calc(100% - (var(--vc-gutter) * 2));
    margin-inline: auto;
    font-size: 44px;
    line-height: 1.16;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
  }

  .vc-approach__panel {
    margin-top: clamp(28px, 3.6vw, 34px);
    overflow: visible;
  }

  .vc-approach__content {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .vc-approach__panes {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .vc-approach__panel.is-content-active .vc-approach__panes {
    transform: none;
  }

  .vc-tab-panel {
    justify-content: flex-start;
    height: auto;
    min-height: 0;
    padding: clamp(42px, 6vw, 56px) var(--vc-gutter) clamp(48px, 6.4vw, 64px);
  }

  .vc-approach__image {
    position: relative;
    left: auto;
    width: 100%;
    height: clamp(300px, 46vw, 400px);
    transform: none;
  }

  .vc-approach__panel.is-content-active .vc-approach__image {
    transform: none;
  }

  .vc-approach__media {
    height: 100%;
    min-height: 0;
  }

  .vc-catalog {
    min-height: 1040px;
    gap: 58px;
    padding: 106px 0 78px;
  }

  .vc-catalog__fan {
    width: 1100px;
    height: 480px;
  }

  .vc-founder {
    padding: 96px 0 108px;
  }

  .vc-founder__inner {
    display: flex;
    flex-direction: column;
    gap: 46px;
  }

  .vc-founder__content {
    display: contents;
  }

  #founder-title {
    order: 1;
    align-self: flex-start;
  }

  .vc-founder__media {
    order: 2;
    align-self: center;
    width: min(520px, 100%);
  }

  .vc-founder__copy {
    order: 3;
    max-width: 680px;
  }

  .vc-founder__proof {
    order: 4;
  }

  .vc-founder__button {
    order: 5;
  }

  .vc-services-work {
    box-shadow: 0 -52px 0 var(--vc-bg);
    padding: 48px 0 112px;
  }

  .vc-service-row__copy {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "label"
      "summary"
      "items";
    row-gap: 18px;
  }

  .vc-service-row__summary {
    max-width: 620px;
  }

  .vc-service-row__items {
    width: min(620px, 100%);
    align-self: start;
  }

  .vc-timeline {
    max-width: 100%;
  }

  .vc-timeline__item {
    grid-template-columns: minmax(0, 1fr) var(--vc-process-timeline-column) minmax(0, 1fr);
    gap: 0 32px;
  }

  .vc-footer__cta {
    gap: 20px;
  }

  .vc-footer__cta .vc-title {
    max-width: 760px;
    font-size: clamp(44px, 9vw, 72px);
  }

  .vc-footer__cta p {
    width: min(520px, 100%);
  }

  .vc-footer__cta .vc-liquid-button {
    margin-top: 4px;
  }

  .vc-footer__nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .vc-footer__nav-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .vc-footer__nav-groups address {
    grid-column: 1 / -1;
  }

  .vc-footer__wordmark {
    margin-top: 54px;
    font-size: clamp(104px, 21vw, 205px);
  }
}

@media (min-width: 560px) and (max-width: 980px) {
  .vc-card-rail.is-scrolled-left {
    --vc-rail-left-cut: 0px;
    --vc-rail-left-fade: 0px;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .vc-built {
    padding: 68px 0 92px;
  }

  .vc-built__inner {
    width: min(680px, calc(100% - 64px));
    min-height: 840px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    align-content: center;
  }

  .vc-built__fan {
    order: 1;
    width: min(540px, 88vw);
    height: 500px;
    min-height: 500px;
    margin: -2px auto 12px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .vc-built__card {
    width: clamp(176px, 24vw, 204px);
  }

  .vc-built__content {
    order: 2;
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    justify-self: stretch;
  }

  .vc-built .vc-title {
    font-size: clamp(36px, 5.4vw, 46px);
    line-height: 1.08;
  }
}

@media (max-width: 700px) {
  :root {
    --vc-gutter: 24px;
    --vc-service-row-height: 0px;
    --vc-service-row-label-size: clamp(23px, 7.2vw, 30px);
    --vc-service-row-row-gap: 16px;
  }

  .vc-title {
    font-size: var(--vc-text-h2);
  }

  .vc-title--hero {
    font-size: 38px;
  }

  html {
    scroll-padding-top: 0;
  }

  main > section,
  .vc-footer {
    scroll-margin-top: 72px;
  }

  .vc-contact-page {
    padding-top: 118px;
  }

  .vc-contact {
    gap: 64px;
    padding-bottom: 76px;
  }

  .vc-contact__hero {
    gap: 50px;
  }

  .vc-contact__title {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.04;
  }

  .vc-contact__promises {
    font-size: var(--vc-text-sm);
  }

  .vc-contact-form__split,
  .vc-contact__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .vc-contact__details {
    gap: 28px;
  }

  .vc-contact-form,
  .vc-contact-form__split,
  .vc-contact-choice,
  .vc-contact__details article {
    gap: 18px;
  }

  .vc-contact-choice span {
    min-height: 42px;
    padding: 2px 16px 0;
    white-space: normal;
  }

  .vc-contact-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-contact-form__actions .vc-liquid-button {
    width: 100%;
  }

  .vc-contact-offices__title {
    margin-bottom: 30px;
  }

  .vc-contact-offices__map {
    height: 560px;
    min-height: 560px;
  }

  .vc-contact-offices__card {
    right: 24px;
    bottom: 24px;
  }

  .vc-launch-nav {
    --vc-nav-notch-closed: 228px;
    --vc-nav-notch-open: min(448px, calc(100vw + 58px));
    --vc-nav-content-width: min(360px, calc(100vw - 18px));
    --vc-nav-link-gap: clamp(10px, 3vw, 14px);
    --vc-nav-logo-gap: clamp(26px, 8vw, 34px);
    height: 62px;
  }

  .vc-launch-nav__brand {
    width: 56px;
    height: 58px;
  }

  .vc-launch-nav__mark {
    width: 30px;
    height: 27px;
  }

  .vc-launch-nav__links a {
    min-height: 36px;
    font-size: 12.5px;
    letter-spacing: 0.01em;
  }

  .vc-nav-label-full {
    display: none;
  }

  .vc-nav-label-short {
    display: inline;
  }

  .vc-hero,
  .vc-hero__content {
    min-height: min(720px, 92vh);
    min-height: min(720px, 92svh);
  }

  .vc-eyebrow {
    max-width: 280px;
    font-size: var(--vc-text-xs);
    letter-spacing: 1px;
  }

  .vc-proof-video {
    --vc-proof-frame-x: 0%;
    height: min(560px, 70svh);
    min-height: 500px;
  }

  .vc-proof-video__frame {
    width: min(560px, 112vw);
    height: 100%;
    border-radius: 0;
  }

  .vc-proof-play {
    width: 64px;
    height: 64px;
  }

  .vc-metrics {
    height: 150vh;
    min-height: 1040px;
  }

  .vc-metrics__sticky {
    min-height: 610px;
  }

  .vc-metrics__spotlight img {
    top: 0;
    width: 250vw;
    min-width: 760px;
  }

  .vc-metrics__frame {
    width: calc(100vw - 32px);
    height: min(560px, calc(100vh - 36px));
    aspect-ratio: auto;
  }

  .vc-metrics .vc-title {
    top: 23%;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .vc-metrics__stage {
    top: 61%;
    width: min(340px, 90%);
  }

  .vc-stat-card {
    width: 68%;
    padding: 16px;
    gap: 6px;
  }

  .vc-stat-card--back {
    transform: translate(-50%, -50%) translate3d(-70px, -72px, 0) rotate(-8deg) scale(0.96);
  }

  .vc-stat-card--mid {
    transform: translate(-50%, -50%) translate3d(70px, 48px, 0) rotate(6deg) scale(0.96);
  }

  .vc-stat-card--front {
    transform: translate(-50%, -50%) translate3d(0, 112px, 0) rotate(0deg) scale(1);
  }

  .vc-stat-card strong {
    font-size: 56px;
  }

  .vc-stat-card p {
    font-size: 12px;
  }

  .vc-stat-card strong.vc-stat-card__value--wide {
    font-size: 46px;
  }

  .vc-built {
    margin-top: -54px;
    height: auto;
    min-height: 0;
    padding: 62px 0 78px;
  }

  .vc-built__inner {
    width: min(500px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    min-height: 0;
    gap: 18px;
  }

  .vc-built__fan {
    order: 1;
    justify-self: center;
    width: min(440px, 100vw);
    height: clamp(560px, 124vw, 660px);
    min-height: clamp(560px, 124vw, 660px);
    margin: -4px 0 72px;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .vc-built__card {
    width: clamp(104px, 29vw, 124px);
    border-radius: 8px;
  }

  .vc-built__content {
    order: 2;
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
    gap: 16px;
    justify-self: stretch;
  }

  .vc-built__copy {
    width: 100%;
  }

  .vc-section-copy > p {
    font-size: var(--vc-text-h4);
    max-width: 100%;
  }

  .vc-built .vc-title {
    font-size: clamp(29px, 7.7vw, 32px);
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal;
    text-wrap: balance;
  }

  .vc-card-rail {
    /* Left-align the active card: hide everything to the left and let only the
       next card peek on the right (was centered, which peeked the previous one). */
    --vc-support-focus: start;
    /* Inset the active card from the left by one gutter so its rounded corners
       clear the rail's overflow-clip edge (was 0px, which clipped them). */
    --vc-support-rail-runway: var(--vc-gutter);
    --vc-support-focus-left: var(--vc-gutter);
    --vc-support-card-width: min(300px, calc(100vw - 96px));
    --vc-support-card-height: calc(var(--vc-support-card-width) * 1.25);
    --vc-support-rail-y-pad: 50px;
    gap: 22px;
  }

  .vc-image-card {
    --vc-support-card-width: min(300px, calc(100vw - 96px));
    --vc-support-card-height: calc(var(--vc-support-card-width) * 1.25);

    width: var(--vc-support-card-width);
    height: var(--vc-support-card-height);
    flex-basis: var(--vc-support-card-width);
  }

  .vc-approach {
    padding: 0 0 18px;
  }

  .vc-approach::after {
    content: none;
  }

  .vc-approach__sticky {
    padding-top: 84px;
  }

  .vc-approach__sticky > .vc-title {
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .vc-approach__panel {
    margin-top: 28px;
  }

  .vc-tabs {
    height: 58px;
  }

  .vc-tabs button {
    padding: 18px 24px;
    font-size: var(--vc-text-xs);
  }

  .vc-approach__panes {
    min-height: 0;
  }

  .vc-tab-panel {
    min-height: 0;
    padding: 38px 24px 44px;
  }

  .vc-tab-panel h3 {
    font-size: 28px;
  }

  .vc-tab-panel p {
    max-width: none;
    font-size: clamp(16px, 4.1vw, 19px);
    line-height: 1.44;
  }

  .vc-tab-panel__texture {
    width: 100%;
    height: 100%;
  }

  .vc-approach__image {
    height: clamp(260px, 54vw, 340px);
    min-height: 0;
  }

  .vc-approach__media {
    height: 100%;
    min-height: 0;
  }

  .vc-service-list {
    gap: 34px;
    margin-top: 40px;
  }

  .vc-services-work {
    box-shadow: 0 -40px 0 var(--vc-bg);
    padding: 64px 0 76px;
  }

  .vc-services .vc-title,
  .vc-process .vc-title {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.06;
  }

  .vc-service-row {
    min-height: 0;
  }

  .vc-service-row__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    min-height: 72px;
    padding-block: 16px;
  }

  .vc-service-row__copy {
    row-gap: 18px;
  }

  .vc-service-row__label {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.05;
    margin-left: 0;
    letter-spacing: 0;
    padding-top: 0;
    text-transform: none;
  }

  .vc-service-row__summary {
    color: rgba(255, 255, 255, 0.64);
    font-size: var(--vc-text-xs);
    line-height: 1.45;
  }

  .vc-service-row__items {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: var(--vc-text-xs);
  }

  .vc-service-row__items li {
    align-items: baseline;
    opacity: 0.92;
  }

  .vc-service-row__items li::before {
    transform: translateY(-1px);
  }

  .vc-process-section {
    padding: 64px 0 58px;
  }

  .vc-timeline {
    margin-top: 46px;
  }

  .vc-timeline::before {
    left: 7px;
    top: 7px;
    bottom: 54px;
  }

  .vc-timeline__item {
    min-height: auto;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 56px;
  }

  .vc-timeline__item::before {
    top: -14px;
    right: -16px;
    left: -16px;
    height: calc(100% - 28px);
    border-radius: 14px;
  }

  .vc-timeline__item::after {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-top: 6px;
  }

  .vc-timeline__item.is-current::after {
    margin-top: 6px;
  }

  .vc-timeline__item h3,
  .vc-timeline__item ul,
  .vc-timeline__item p {
    grid-column: 2;
    padding-top: 0;
    text-align: left;
  }

  .vc-timeline__item.is-current h3,
  .vc-timeline__item.is-current ul,
  .vc-timeline__item.is-current p {
    padding-top: 0;
  }

  .vc-timeline__item h3 {
    grid-row: 1;
  }

  .vc-timeline__item ul,
  .vc-timeline__item p {
    grid-row: 2;
    margin-top: 12px;
    font-size: 13px;
  }

  .vc-timeline__item .vc-timeline__copy {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
  }

  .vc-timeline__progress {
    left: 7px;
    top: 7px;
    height: var(--vc-timeline-progress, 255px);
  }

  .vc-process {
    position: relative;
    top: auto;
    min-height: 0;
    padding-top: 0;
  }

  .vc-studio__video {
    height: auto;
    overflow: visible;
  }

  .vc-studio__media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .vc-studio__video::after {
    display: none;
  }

  .vc-studio__copy {
    position: static;
    right: auto;
    bottom: auto;
    width: calc(100% - 48px);
    margin: 18px auto 0;
    font-size: 16px;
  }

  .vc-catalog {
    min-height: 0;
    gap: 34px;
    padding: 84px 0 64px;
  }

  .vc-catalog::after {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.64) 3%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.64) 97%, #000 100%),
      linear-gradient(180deg, #000 0%, transparent 16%, transparent 84%, #000 100%);
  }

  .vc-catalog__intro {
    width: calc(100% - 48px);
  }

  .vc-catalog__fan {
    width: 720px;
    height: 458px;
  }

  .vc-founder {
    padding: 78px 0 52px;
  }

  .vc-founder__inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .vc-founder__content {
    display: contents;
  }

  #founder-title {
    order: 1;
  }

  .vc-founder__media {
    order: 2;
    align-self: center;
  }

  .vc-founder__copy {
    order: 3;
  }

  .vc-founder__proof {
    order: 4;
  }

  .vc-founder__button {
    order: 5;
  }

  .vc-founder__media {
    width: 100%;
    border-radius: 16px;
  }

  .vc-founder__tag {
    top: 18px;
    left: 18px;
    min-height: 40px;
    padding: 0 14px;
    font-size: var(--vc-text-sm);
  }

  .vc-founder__tag-svg {
    width: auto;
    height: 16px;
  }

  .vc-founder__content {
    gap: 22px;
  }

  .vc-founder .vc-title {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .vc-founder__copy {
    padding-top: 0;
  }

  .vc-founder__copy p {
    font-size: var(--vc-text-h6);
    line-height: 1.48;
  }

  .vc-founder__proof span {
    min-height: 34px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .vc-brochure-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .vc-brochure-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vc-brochure-form__actions .vc-liquid-button,
  .vc-brochure-form__download {
    width: 100%;
  }

  .vc-footer {
    padding-top: 44px;
  }

  .vc-footer__logo {
    display: none;
  }

  .vc-footer__cta {
    margin-bottom: 62px;
    padding-top: 28px;
  }

  .vc-footer__cta .vc-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 0.98;
  }

  .vc-footer__cta p {
    font-size: var(--vc-text-h6);
    line-height: 1.44;
  }

  .vc-footer__cta .vc-liquid-button {
    width: auto;
    min-width: 138px;
  }

  .vc-footer__nav-groups {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .vc-footer__nav-groups address {
    grid-column: auto;
  }

  .vc-footer__wordmark {
    margin-top: 44px;
    font-size: clamp(64px, 18vw, 112px);
  }
}

@media (max-width: 380px) {
  .vc-launch-nav {
    --vc-nav-content-width: min(338px, calc(100vw - 16px));
    --vc-nav-link-gap: 8px;
    --vc-nav-logo-gap: 24px;
  }

  .vc-launch-nav__links a {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .vc-reveal {
    opacity: 0;
    translate: 0 28px;
  }

  .vc-reveal.is-visible {
    animation: vc-reveal-in 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: var(--vc-reveal-delay, 0ms);
  }

  .vc-process.vc-reveal .vc-timeline__item {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  .vc-built__fan.vc-reveal .vc-built__card {
    transition:
      transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--vc-built-delay, 0ms),
      opacity 700ms ease var(--vc-built-delay, 0ms);
    will-change: transform, opacity;
  }

  .vc-built__fan.vc-reveal:not(.is-visible) .vc-built__card {
    --vc-built-x: 0px;
    --vc-built-y: 0px;
    --vc-built-r: 0deg;
    --vc-built-s: 0.62;
    opacity: 0;
  }

  .vc-built__fan.vc-reveal .vc-built__card--1 { --vc-built-delay: 0ms; }
  .vc-built__fan.vc-reveal .vc-built__card--2 { --vc-built-delay: 70ms; }
  .vc-built__fan.vc-reveal .vc-built__card--3 { --vc-built-delay: 140ms; }
  .vc-built__fan.vc-reveal .vc-built__card--4 { --vc-built-delay: 210ms; }
  .vc-built__fan.vc-reveal .vc-built__card--5 { --vc-built-delay: 280ms; }
  .vc-built__fan.vc-reveal .vc-built__card--6 { --vc-built-delay: 350ms; }
  .vc-built__fan.vc-reveal .vc-built__card--7 { --vc-built-delay: 420ms; }
  .vc-built__fan.vc-reveal .vc-built__card--8 { --vc-built-delay: 490ms; }
  .vc-built__fan.vc-reveal .vc-built__card--9 { --vc-built-delay: 560ms; }
  .vc-built__fan.vc-reveal .vc-built__card--10 { --vc-built-delay: 630ms; }

  .vc-process.vc-reveal.is-visible .vc-timeline__item {
    animation: vc-section-item-in 780ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .vc-process.vc-reveal.is-visible .vc-timeline__item:nth-child(3) {
    animation-delay: 90ms;
  }

  .vc-process.vc-reveal.is-visible .vc-timeline__item:nth-child(4) {
    animation-delay: 160ms;
  }

  .vc-process.vc-reveal.is-visible .vc-timeline__item:nth-child(5) {
    animation-delay: 230ms;
  }

  .vc-services.vc-reveal {
    opacity: 1;
    translate: 0 0;
  }

  .vc-services.vc-reveal.is-visible {
    animation: none;
  }

  .vc-services.vc-reveal .vc-title,
  .vc-services.vc-reveal .vc-service-row__label,
  .vc-services.vc-reveal .vc-service-row__summary,
  .vc-services.vc-reveal .vc-service-row__items {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    will-change: opacity, transform;
  }

  .vc-services.vc-reveal .vc-service-row__divider {
    opacity: 0;
    transform: scaleX(0);
    will-change: opacity, transform;
  }

  .vc-services.vc-reveal.is-visible .vc-title {
    animation: vc-service-copy-in 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .vc-services.vc-reveal.is-visible .vc-service-row__divider {
    animation: vc-service-divider-in 920ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: var(--vc-service-row-delay);
  }

  .vc-services.vc-reveal.is-visible .vc-service-row__label {
    animation: vc-service-copy-in 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: calc(var(--vc-service-row-delay) + 70ms);
  }

  .vc-services.vc-reveal.is-visible .vc-service-row__summary {
    animation: vc-service-copy-in 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: calc(var(--vc-service-row-delay) + 125ms);
  }

  .vc-services.vc-reveal.is-visible .vc-service-row__items {
    animation: vc-service-copy-in 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: calc(var(--vc-service-row-delay) + 170ms);
  }

  @keyframes vc-reveal-in {
    from {
      opacity: 0;
      translate: 0 28px;
    }

    to {
      opacity: 1;
      translate: 0 0;
    }
  }

  @keyframes vc-section-item-in {
    from {
      opacity: 0;
      transform: translate3d(0, 24px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes vc-service-divider-in {
    from {
      opacity: 0;
      transform: scaleX(0);
    }

    to {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  @keyframes vc-service-copy-in {
    from {
      opacity: 0;
      transform: translate3d(0, 18px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

}

@media (max-width: 380px) {
  .vc-nav-label-full {
    display: none;
  }

  .vc-nav-label-short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-hero::before,
  .vc-hero__scene,
  .vc-hero__scene > span,
  .vc-hero__glow,
  .vc-hero__static-bg img,
  .vc-hero__content,
  .vc-liquid-button,
  .vc-liquid-button::before,
  .vc-liquid-button::after,
  .vc-approach__panes,
  .vc-approach__image,
  .vc-approach__media,
  .vc-image-card,
  .vc-image-card__surface,
  .vc-launch-nav__notch,
  .vc-launch-nav__links,
  .vc-launch-nav__links a,
  .vc-launch-nav__links a::after,
  .vc-launch-nav__brand,
  .vc-launch-nav__brand::after,
  .vc-launch-nav__mark,
  .vc-services-work__glow,
  .vc-service-row,
  .vc-service-row::before,
  .vc-service-row__divider,
  .vc-service-row__divider::after,
  .vc-service-row__inner,
  .vc-service-row__label,
  .vc-service-row__summary,
  .vc-service-row__items,
  .vc-service-row__items li,
  .vc-tabs::before,
  .vc-tabs button::after,
  .vc-tabs button {
    animation: none;
    transition: none;
  }

  .vc-tab-panel {
    animation: none;
  }

  .vc-image-card__surface {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .vc-service-row__inner,
  .vc-service-row__label,
  .vc-service-row__summary,
  .vc-service-row__items li {
    transform: none;
  }

}

/* ============================================================
   Our Work page (/our-work)
   ============================================================ */

/* --- Hero variant: orange aurora glow on black (no photo) --- */
.vc-hero--work,
.vc-hero--work .vc-hero__content {
  min-height: clamp(560px, 76vh, 720px);
}

.vc-hero--work .vc-hero__content {
  padding-top: 80px;
  gap: 24px;
}

/* The work hero reuses the home hero's background image (.vc-hero__static-bg)
   and glow (.vc-hero__glow) markup, so no separate aurora styling is needed. */

.vc-work-hero__title {
  width: min(768px, 100%);
}

.vc-work-hero__note {
  max-width: 458px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/* --- Portfolio list --- */
.vc-work {
  position: relative;
  background: var(--vc-bg);
  padding: clamp(8px, 2vw, 24px) 0 clamp(80px, 9vw, 128px);
}

.vc-work__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.vc-work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vc-work-card__media {
  position: relative;
  height: 549px;
  overflow: hidden;
  border-radius: var(--vc-radius-sm);
  background: #222222;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.vc-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-work-card__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vc-work-card__lock {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: var(--vc-radius-pill);
  background: var(--vc-surface-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 22px;
  line-height: 1;
}

.vc-work-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vc-work-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-work-card__title {
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.vc-work-card__cols {
  display: flex;
  gap: 24px;
}

.vc-work-card__col {
  flex: 1 1 0;
  min-width: 0;
}

.vc-work-card__label {
  margin-bottom: 2px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-2xs);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vc-work-card__text {
  max-width: 475px;
  color: var(--vc-text-tertiary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-work-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid #424242;
  border-radius: 200px;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  line-height: 1.5;
}

.vc-work-card__actions {
  display: flex;
}

.vc-work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-accent);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  line-height: 24px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--vc-ease), color var(--vc-ease);
}

.vc-work-card__cta:hover {
  gap: 12px;
}

.vc-work-card__chevron {
  flex: none;
  width: 24px;
  height: 24px;
}

.vc-work__more {
  display: flex;
  margin-top: 64px;
}

/* --- Responsive (matches existing breakpoints) --- */
@media (max-width: 980px) {
  .vc-hero--work,
  .vc-hero--work .vc-hero__content {
    min-height: clamp(480px, 64vh, 600px);
  }

  .vc-work-card__media {
    height: clamp(360px, 52vw, 480px);
  }

  .vc-work__list {
    gap: 64px;
  }
}

@media (max-width: 700px) {
  .vc-hero--work,
  .vc-hero--work .vc-hero__content {
    min-height: min(560px, 84vh);
    min-height: min(560px, 84svh);
  }

  .vc-hero--work .vc-hero__content {
    padding-top: 96px;
  }

  .vc-work-card__media {
    height: clamp(280px, 64vw, 380px);
  }

  .vc-work-card__cols {
    flex-direction: column;
    gap: 16px;
  }

  .vc-work-card__title {
    font-size: var(--vc-text-h3);
  }

  .vc-work-card__text {
    font-size: var(--vc-text-h6);
  }

  .vc-work__list {
    gap: 48px;
  }

  .vc-work__more {
    margin-top: 48px;
  }

  .vc-work__more .vc-liquid-button {
    width: 100%;
  }

  .vc-work-hero__note {
    max-width: 320px;
    font-size: var(--vc-text-xs);
  }
}

@media (max-width: 380px) {
  .vc-work-card__media {
    height: 240px;
  }
}

/* ============================================================
   Services page (/services.html)
   ============================================================ */

/* --- Hero: orange flare on black, no form (similar to footer) --- */
.vc-hero--services {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
}

.vc-services-hero__flare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 78% at 72% -12%, rgba(255, 142, 84, 0.5), rgba(229, 81, 28, 0) 56%),
    linear-gradient(209deg, rgba(229, 81, 28, 0.9) -4%, rgba(229, 81, 28, 0) 46%);
  opacity: 0.92;
}

.vc-services-hero__content {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 80vh, 720px);
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(132px, 17vh, 188px);
  padding-bottom: clamp(40px, 6vh, 64px);
}

.vc-services-hero__head {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 64px);
  width: 100%;
}

.vc-services-hero__title {
  flex: 1 1 0;
  width: auto;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.vc-services-hero__lead {
  flex: 1 1 0;
  align-self: center;
  max-width: 504px;
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-services-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
  padding: 8px;
  border: 1px solid #222;
  border-radius: var(--vc-radius-pill);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(6px);
}

.vc-svc-tab {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 48px;
  padding: 12px 24px;
  background: transparent;
  color: var(--vc-text-tertiary);
  font-family: var(--vc-font-body);
  font-size: var(--vc-text-2xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--vc-ease), background-color var(--vc-ease), border-color var(--vc-ease);
}

.vc-svc-tab:hover {
  color: var(--vc-text-primary);
}

.vc-svc-tab.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(29, 29, 29, 0.55);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 0 28px rgba(242, 242, 242, 0.24);
  color: var(--vc-text-primary);
}

.vc-svc-tab:focus-visible {
  outline: 2px solid var(--vc-accent);
  outline-offset: 2px;
}

/* --- Service cards: stack on scroll, then release --- */
.vc-svc-stack {
  position: relative;
  background: var(--vc-bg);
}

.vc-svc-stack__inner {
  position: relative;
}

.vc-svc-card {
  position: sticky;
  top: calc(72px + var(--i, 0) * 16px);
  display: flex;
  min-height: clamp(520px, 82vh, 680px);
  overflow: hidden;
  background: var(--vc-bg);
}

.vc-svc-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vc-svc-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%),
    rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.vc-svc-card__inner {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(32px, 6vw, 80px);
  padding-block: clamp(48px, 8vw, 88px);
}

/* Title pinned to the top-left, supporting copy dropped to the bottom-right. */
.vc-svc-card__head {
  align-self: start;
}

.vc-svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.vc-svc-card__tag {
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-2xs);
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.vc-svc-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vc-divider-dot);
}

.vc-svc-card__title {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: var(--vc-tracking-tight);
  text-transform: uppercase;
}

.vc-svc-card__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 32px;
  padding-top: clamp(96px, 18vh, 200px);
}

.vc-svc-card__copy p {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-svc-card__copy p + p {
  margin-top: 1em;
}

/* --- How we work: static copy with cursor-reactive floating images --- */
.vc-howwork {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
  padding-block: clamp(132px, 20vh, 240px);
}

.vc-howwork__field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.vc-howwork__img {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--vc-shadow-card);
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 480ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.vc-howwork__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-howwork__img--1 {
  width: clamp(132px, 15vw, 204px);
  aspect-ratio: 292 / 340;
  top: 2%;
  left: 4%;
}

.vc-howwork__img--2 {
  width: clamp(116px, 13vw, 188px);
  aspect-ratio: 270 / 314;
  bottom: 4%;
  left: 8%;
}

.vc-howwork__img--3 {
  width: clamp(116px, 13vw, 188px);
  aspect-ratio: 270 / 314;
  top: 16%;
  right: 7%;
  opacity: 0.82;
}

.vc-howwork__img--4 {
  width: clamp(104px, 12vw, 168px);
  aspect-ratio: 240 / 279;
  bottom: 6%;
  right: 13%;
}

.vc-howwork__img--5 {
  width: clamp(132px, 15vw, 204px);
  aspect-ratio: 292 / 340;
  top: 0%;
  right: 17%;
}

.vc-howwork__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
}

.vc-howwork__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 56px);
}

.vc-howwork__lead {
  max-width: 768px;
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.25;
}

/* --- FAQs: CMS-driven accordion --- */
.vc-faqs {
  background: var(--vc-bg);
  padding-block: clamp(72px, 10vw, 120px);
}

.vc-faqs__inner {
  display: grid;
  grid-template-columns: minmax(0, 313px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.vc-faqs__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 56px);
}

.vc-faqs__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1c1c1c;
}

.vc-faq {
  border-bottom: 1px solid #1c1c1c;
}

.vc-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px 12px;
  border: 0;
  background: transparent;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h4);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.vc-faq__q {
  flex: 1 1 auto;
}

.vc-faq__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #222;
  color: var(--vc-text-primary);
  transition: background-color var(--vc-ease);
}

.vc-faq__icon svg {
  width: 16px;
  height: 16px;
}

.vc-faq__icon-bar {
  transform-origin: center;
  transition: transform 240ms ease, opacity 240ms ease;
}

.vc-faq.is-open .vc-faq__icon {
  background: var(--vc-accent);
}

.vc-faq.is-open .vc-faq__icon-bar {
  transform: rotate(90deg);
  opacity: 0;
}

.vc-faq__panel {
  overflow: hidden;
}

.vc-faq__panel[hidden] {
  display: none;
}

.vc-faq__answer {
  max-width: 620px;
  padding: 0 12px 24px;
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 400;
  line-height: 1.5;
}

.vc-faq__answer p {
  margin: 0;
}

.vc-faq__answer p + p {
  margin-top: 1em;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .vc-svc-card__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 32px);
  }

  /* Single column: title and copy stack normally, no large drop. */
  .vc-svc-card__detail {
    justify-content: flex-start;
    padding-top: 0;
  }

  .vc-faqs__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 32px);
  }
}

@media (max-width: 700px) {
  .vc-services-hero__head {
    flex-direction: column;
    gap: 20px;
  }

  .vc-services-hero__lead {
    align-self: flex-start;
    max-width: 100%;
  }

  .vc-services-hero__tabs {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 6px;
  }

  .vc-svc-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 6px;
    font-size: 11px;
    letter-spacing: 0.02em;
    /* Let long labels wrap instead of forcing the row (and page) wider. */
    white-space: normal;
    text-align: center;
  }

  .vc-svc-card {
    top: calc(64px + var(--i, 0) * 12px);
    min-height: 0;
  }

  .vc-svc-card__inner {
    padding-block: clamp(40px, 12vw, 56px);
  }

  /* Keep the floating images, but shrink them to small thumbnails tucked into
     the corners around the centred copy (matches the mobile design). */
  .vc-howwork {
    padding-block: clamp(180px, 30vh, 260px);
  }

  .vc-howwork__img {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  }

  .vc-howwork__img--1 {
    width: 21vw;
    top: 3%;
    left: 4%;
  }

  .vc-howwork__img--2 {
    width: 19vw;
    top: auto;
    bottom: 5%;
    left: 5%;
  }

  .vc-howwork__img--3 {
    width: 19vw;
    top: 10%;
    right: 5%;
  }

  .vc-howwork__img--4 {
    width: 17vw;
    top: auto;
    bottom: 7%;
    right: 6%;
  }

  .vc-howwork__img--5 {
    width: 21vw;
    top: 1%;
    left: 40%;
    right: auto;
  }

  .vc-faq__trigger {
    gap: 16px;
    padding-inline: 4px;
    font-size: var(--vc-text-h5);
  }

  .vc-faq__answer {
    padding-inline: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-howwork__img {
    transition: none;
  }
}

/* ============================================================
   Single service page (/services/<slug>.html)
   ============================================================ */

/* --- Hero: full-bleed image banner, then title + intro --- */
.vc-sdetail-hero {
  position: relative;
  background: var(--vc-bg);
}

.vc-sdetail-hero__media {
  position: relative;
  width: 100%;
  height: clamp(380px, 56vw, 700px);
  overflow: hidden;
}

.vc-sdetail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-sdetail-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.3) 82%, var(--vc-bg) 100%);
}

.vc-sdetail-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  padding-block: clamp(48px, 7vw, 80px);
}

.vc-sdetail-hero__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 56px);
}

.vc-sdetail-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.vc-sdetail-hero__intro p {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-sdetail-hero__intro p + p {
  margin-top: -8px;
}

.vc-sdetail-hero__cta {
  margin-top: 8px;
}

/* --- Shared orange flare wrapper for Services + Outcomes --- */
.vc-sdetail-flow {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
}

.vc-sdetail-flow__flare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1024px;
  pointer-events: none;
  background: linear-gradient(143deg, rgba(229, 81, 28, 0.85) -4%, rgba(229, 81, 28, 0) 44%);
  opacity: 0.55;
}

/* --- Services: numbered offerings + showcase image --- */
.vc-sservices {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 7vw, 80px) 0;
}

.vc-sservices__title,
.vc-outcomes__title {
  margin: 0 0 clamp(32px, 5vw, 64px);
}

.vc-sservices__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 32px);
  margin-bottom: 40px;
}

.vc-soffer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-soffer__num {
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 24px;
}

.vc-soffer__text {
  margin: 0;
  color: #e5e5e5;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h4);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.vc-sservices__media {
  height: clamp(280px, 46vw, 550px);
  overflow: hidden;
  border-radius: var(--vc-radius-md);
  background: #121212;
}

.vc-sservices__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Outcomes: result rows with a counting number --- */
.vc-outcomes {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 8vw, 96px);
}

.vc-outcomes__list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.vc-outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vc-outcome__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.vc-outcome__title {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
}

.vc-outcome__desc {
  margin: 0;
  color: #e5e5e5;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-outcome__value {
  flex: none;
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  white-space: nowrap;
}

.vc-outcome__unit {
  color: var(--vc-accent);
}

/* --- Orange-bloom wrapper for Process + Proof --- */
.vc-sdetail-glow {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
}

.vc-sdetail-glow__bloom {
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(150vw, 1680px);
  height: 1000px;
  transform: translateX(-50%) rotate(20deg);
  pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(229, 81, 28, 0.32), rgba(229, 81, 28, 0) 60%);
  opacity: 0.7;
}

/* --- Our process: title + scroll-activated numbered timeline --- */
.vc-sprocess {
  position: relative;
  z-index: 1;
  padding-block: clamp(64px, 8vw, 96px);
}

.vc-sprocess__grid {
  display: grid;
  grid-template-columns: minmax(0, 464px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.vc-sprocess__title {
  margin: 0;
}

.vc-sprocess__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vc-sprocess__item {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.vc-sprocess__node {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vc-sprocess__num {
  display: grid;
  flex: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--vc-color-neutral-600);
  color: var(--vc-color-neutral-300);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h4);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  transition: background-color var(--vc-ease-reveal), color var(--vc-ease-reveal);
}

.vc-sprocess__line {
  width: 2px;
  flex: 1 0 auto;
  min-height: 48px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  transition: background-color var(--vc-ease-reveal);
}

.vc-sprocess__text {
  margin: 0;
  padding-top: 10px;
  color: var(--vc-color-neutral-600);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
  transition: color var(--vc-ease-reveal);
}

.vc-sprocess__item.is-active .vc-sprocess__num {
  background: var(--vc-accent);
  color: var(--vc-color-cream);
}

.vc-sprocess__item.is-active .vc-sprocess__line {
  background: var(--vc-accent);
}

.vc-sprocess__item.is-active .vc-sprocess__text {
  color: var(--vc-accent);
}

/* --- Proof: review carousel --- */
.vc-proof {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 7vw, 80px) clamp(72px, 10vw, 120px);
}

.vc-proof__title {
  margin: 0 0 clamp(40px, 5vw, 64px);
  text-align: center;
}

.vc-proof__viewport {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 48px);
  width: min(900px, 100%);
  margin-inline: auto;
}

.vc-proof__track {
  display: grid;
  width: 100%;
}

.vc-proof__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms ease;
}

.vc-proof__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.vc-proof__quote {
  max-width: 768px;
  margin: 0;
  color: #e5e5e5;
  font-family: var(--vc-font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.vc-proof__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.vc-proof__avatar {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100px;
  background: var(--vc-color-neutral-900);
}

.vc-proof__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-proof__name {
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.vc-proof__role {
  color: #7f7f7f;
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.vc-proof__nav {
  display: flex;
  gap: 8px;
}

.vc-proof__arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background: #242424;
  color: var(--vc-text-primary);
  cursor: pointer;
  transition: background-color var(--vc-ease), transform var(--vc-ease);
}

.vc-proof__arrow:hover {
  background: #333;
  transform: translateY(-1px);
}

.vc-proof__arrow svg {
  width: 16px;
  height: 16px;
}

.vc-proof__arrow--next svg,
.vc-proof__arrow[data-proof-next] svg {
  transform: scaleX(-1);
}

.vc-proof__arrow:focus-visible {
  outline: 2px solid var(--vc-accent);
  outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .vc-sdetail-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vc-sprocess__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 40px);
  }
}

@media (max-width: 700px) {
  .vc-sservices__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vc-outcome {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vc-outcome__value {
    align-self: flex-end;
  }

  .vc-sprocess__item {
    gap: 24px;
  }

  .vc-proof__nav {
    margin-top: 8px;
  }
}

/* ============================================================
   About Us page (/about.html)
   ============================================================ */

/* --- Hero: shares the home hero's static-bg bloom (background-hero-section-
   ellipse.svg fading in over ~3.5s). The glow sits near the top of the SVG, so
   anchor the image to the top instead of the home hero's bottom. --- */
.vc-hero--about {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
}

.vc-hero--about .vc-hero__content {
  min-height: clamp(540px, 80vh, 740px);
  justify-content: flex-start;
  gap: 24px;
  padding-top: clamp(128px, 16vh, 184px);
  padding-bottom: clamp(40px, 6vh, 72px);
  text-align: center;
}

.vc-hero--about .vc-hero__static-bg img,
.vc-hero--work .vc-hero__static-bg img {
  object-position: center top;
}

.vc-about-hero__title {
  width: min(768px, 100%);
  font-size: clamp(40px, 7vw, 72px);
}

.vc-about-hero__lead {
  max-width: 458px;
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

/* --- Who we are: two-column intro with stats --- */
.vc-about-intro {
  background: var(--vc-bg);
  padding-block: clamp(40px, 7vw, 80px);
}

.vc-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.vc-about-intro__eyebrow {
  margin-bottom: 16px;
  text-align: left;
}

.vc-about-intro__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
}

.vc-about-intro__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: clamp(120px, 18vw, 240px);
}

.vc-about-intro__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

.vc-about-intro__copy p + p {
  margin-top: 1em;
}

.vc-about-stats {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 8px 0;
}

.vc-about-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-about-stat__value {
  margin: 0;
  color: var(--vc-accent);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h3);
  font-weight: 400;
  line-height: 1.2;
}

.vc-about-stat__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 400;
  line-height: 1.5;
}

/* --- Our team grid --- */
.vc-team {
  background: var(--vc-bg);
  padding-block: clamp(48px, 7vw, 80px) 0;
}

.vc-team__title {
  margin: 0 0 clamp(32px, 5vw, 48px);
}

.vc-team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2vw, 20px);
}

.vc-team__member {
  flex: 0 1 calc(25% - 15px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.vc-team__photo {
  aspect-ratio: 253 / 285;
  overflow: hidden;
  border-radius: var(--vc-radius-md);
  background: #121212;
}

.vc-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-team__member figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vc-team__name {
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h5);
  font-weight: 600;
  line-height: 1.4;
}

.vc-team__role {
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-xs);
  font-weight: 400;
  line-height: 1.5;
}

/* --- Meet our customers: infinite logo slider --- */
.vc-logos {
  position: relative;
  overflow: hidden;
  background: var(--vc-bg);
  padding-block: clamp(48px, 7vw, 80px) clamp(56px, 8vw, 96px);
}

.vc-logos__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.vc-logos__title {
  margin: 0;
  color: var(--vc-text-primary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h4);
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.vc-logos__sub {
  max-width: 439px;
  margin: 0;
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-display);
  font-size: var(--vc-text-h6);
  font-weight: 400;
  line-height: 1.5;
}

.vc-logos__slider {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.vc-logos__track {
  display: flex;
  width: max-content;
  animation: vc-logos-scroll 36s linear infinite;
}

.vc-logos__logo {
  flex: none;
  display: grid;
  place-items: center;
  height: 48px;
  margin-right: clamp(48px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--vc-font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--vc-ease);
}

.vc-logos__logo:hover {
  color: var(--vc-text-primary);
}

@keyframes vc-logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.vc-logos__slider:hover .vc-logos__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .vc-logos__track {
    animation: none;
  }
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .vc-about-intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vc-about-intro__body {
    padding-top: 0;
  }

  .vc-team__member {
    flex-basis: calc(33.333% - 14px);
  }
}

@media (max-width: 620px) {
  .vc-team__member {
    flex-basis: calc(50% - 10px);
    min-width: 0;
  }

  .vc-about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .vc-logos__logo {
    font-size: 22px;
    margin-right: 40px;
  }
}
