:root {
  --vc-bg: #050706;
  --vc-bg-2: #090d0b;
  --vc-surface: #0d1310;
  --vc-surface-2: #131a16;
  --vc-text: #f5f2eb;
  --vc-muted: #a8b1aa;
  --vc-line: #29332d;
  --vc-green: #bfff57;
  --vc-cyan: #24c8ff;
  --vc-red: #ff3658;
  --vc-amber: #ffc857;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--vc-bg);
  color: var(--vc-text);
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
}

body.vc-menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

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

section[id] {
  scroll-margin-top: 76px;
}

.vc-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.vc-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 10px 26px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.1);
  background: rgba(5, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.vc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vc-brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--vc-green);
  border-radius: 50%;
  color: var(--vc-green);
  font-size: 11px;
  font-weight: 700;
}

.vc-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.vc-brand b {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vc-brand small {
  color: var(--vc-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.vc-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.vc-nav a {
  color: var(--vc-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.vc-nav a:hover,
.vc-nav a:focus-visible {
  color: var(--vc-text);
}

.vc-nav .vc-nav-cta {
  min-height: 34px;
  padding: 9px 13px;
  border: 1px solid var(--vc-green);
  border-radius: 4px;
  color: var(--vc-green);
}

.vc-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vc-line);
  border-radius: 4px;
  background: var(--vc-surface);
}

.vc-menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: var(--vc-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.vc-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--vc-line);
}

.vc-hero-media,
.vc-hero-scrim {
  position: absolute;
  inset: 0;
}

.vc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.03);
  transition: transform 600ms ease;
}

.vc-hero:hover .vc-hero-media img {
  transform: scale(1.055);
}

.vc-hero-scrim {
  background: rgba(3, 5, 4, 0.76);
  box-shadow: inset 0 -260px 180px rgba(3, 5, 4, 0.94), inset 320px 0 260px rgba(3, 5, 4, 0.62);
}

.vc-hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.vc-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--vc-green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.vc-eyebrow > span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vc-green);
}

.vc-hero h1,
.vc-heading h2,
.vc-workflow-copy h2,
.vc-assist-copy h2,
.vc-maker-grid h2,
.vc-offer h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vc-hero h1 {
  margin-top: 10px;
  font-size: 112px;
  line-height: 0.84;
}

.vc-hero-lead {
  width: min(650px, 100%);
  margin-top: 20px;
  color: #d3d9d4;
  font-size: 17px;
  line-height: 1.72;
}

.vc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.vc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.vc-button:hover,
.vc-button:focus-visible {
  transform: translateY(-2px);
}

.vc-button-primary {
  background: var(--vc-green);
  color: #071004;
}

.vc-button-primary:hover,
.vc-button-primary:focus-visible {
  background: #d1ff87;
}

.vc-button-quiet {
  border-color: rgba(245, 242, 235, 0.28);
  background: rgba(5, 7, 6, 0.58);
}

.vc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(245, 242, 235, 0.18);
}

.vc-hero-stats span {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 14px 24px 0 0;
  margin-right: 24px;
  color: var(--vc-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.vc-hero-stats strong {
  color: var(--vc-text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.vc-next {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 242, 235, 0.3);
  border-radius: 50%;
  font-size: 18px;
}

.vc-signal {
  width: 100%;
  height: 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--vc-line);
  background: var(--vc-green);
  color: #071004;
}

.vc-signal > div {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: vcTicker 24s linear infinite;
}

.vc-signal span {
  padding: 0 22px;
  font-size: 11px;
  font-weight: 700;
}

.vc-signal i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #071004;
}

@keyframes vcTicker {
  to { transform: translateX(-50%); }
}

.vc-product,
.vc-workflow,
.vc-maker,
.vc-roi,
.vc-faq {
  padding-top: 104px;
  padding-bottom: 104px;
}

.vc-heading {
  width: min(820px, 100%);
}

.vc-heading h2,
.vc-workflow-copy h2,
.vc-assist-copy h2,
.vc-maker-grid h2,
.vc-offer h2 {
  margin-top: 13px;
  font-size: 64px;
  line-height: 0.94;
}

.vc-heading > p:last-child,
.vc-workflow-copy > p:last-of-type,
.vc-maker-grid > div:last-child > p,
.vc-offer-layout > div:first-child > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: var(--vc-muted);
  font-size: 15px;
  line-height: 1.8;
}

.vc-heading-compact {
  width: min(700px, 100%);
}

.vc-console {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--vc-line);
  border-radius: 6px;
  background: var(--vc-surface);
}

.vc-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--vc-line);
}

.vc-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 54px;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--vc-line);
  background: var(--vc-bg-2);
  color: var(--vc-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.vc-tabs button:last-child {
  border-right: 0;
}

.vc-tabs button b {
  color: #637068;
  font-size: 10px;
}

.vc-tabs button.is-active {
  box-shadow: inset 0 -3px var(--vc-green);
  background: var(--vc-surface-2);
  color: var(--vc-text);
}

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

.vc-stage {
  display: grid;
  grid-template-columns: 0.78fr 1.7fr;
  min-height: 520px;
}

.vc-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-right: 1px solid var(--vc-line);
}

.vc-stage-copy > span {
  color: var(--vc-cyan);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.vc-stage-copy h3 {
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.2;
}

.vc-stage-copy p {
  margin-top: 14px;
  color: var(--vc-muted);
  font-size: 13px;
  line-height: 1.75;
}

.vc-screen {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  padding: 34px 34px 58px;
  background: #080b0a;
}

.vc-screen img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border: 1px solid #343c37;
  border-radius: 3px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.vc-screen figcaption {
  position: absolute;
  right: 34px;
  bottom: 21px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.vc-screen figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vc-green);
  box-shadow: 0 0 14px rgba(191, 255, 87, 0.55);
}

.vc-screen figcaption b {
  color: var(--vc-text);
}

.vc-features {
  padding: 104px 0;
  border-top: 1px solid var(--vc-line);
  border-bottom: 1px solid var(--vc-line);
  background: var(--vc-bg-2);
}

.vc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--vc-line);
  border-left: 1px solid var(--vc-line);
}

.vc-feature-grid article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--vc-line);
  border-bottom: 1px solid var(--vc-line);
  background: var(--vc-surface);
  transition: background-color 180ms ease, transform 180ms ease;
}

.vc-feature-grid article:hover {
  z-index: 1;
  background: var(--vc-surface-2);
  transform: translateY(-3px);
}

.vc-feature-grid article > span {
  color: var(--vc-green);
  font-family: "Bebas Neue", sans-serif;
  font-size: 23px;
}

.vc-feature-grid h3 {
  margin-top: 44px;
  font-size: 15px;
}

.vc-feature-grid p {
  margin-top: 10px;
  color: var(--vc-muted);
  font-size: 12px;
  line-height: 1.7;
}

.vc-workflow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.vc-mode-toggle {
  min-height: 42px;
  margin-top: 25px;
  padding: 10px 14px;
  border: 1px solid var(--vc-green);
  border-radius: 4px;
  background: transparent;
  color: var(--vc-green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.vc-mode-toggle[aria-pressed="true"] {
  background: var(--vc-green);
  color: #071004;
}

.vc-timeline {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 46px 24px 78px;
  border: 1px solid var(--vc-line);
  border-radius: 6px;
  background: #090c0a;
}

.vc-ruler {
  display: flex;
  justify-content: space-between;
  margin-left: 42px;
  color: #68726c;
  font-size: 9px;
}

.vc-track {
  position: relative;
  display: grid;
  grid-template-columns: 34px repeat(4, minmax(0, 1fr));
  gap: 5px;
  align-items: stretch;
  min-height: 50px;
  margin-top: 14px;
}

.vc-track b {
  display: flex;
  align-items: center;
  color: #6f7972;
  font-size: 8px;
}

.vc-track i {
  display: block;
  border: 1px solid #285667;
  background: #163844;
}

.vc-track-voice i:nth-of-type(2) {
  margin-left: 13px;
}

.vc-track-voice i:nth-of-type(3) {
  margin-right: 17px;
}

.vc-track-cc i {
  border-color: #665122;
  background: #3d3219;
}

.vc-track-sfx {
  grid-template-columns: 34px repeat(3, 13px);
  gap: 70px;
}

.vc-track-sfx i {
  width: 13px;
  height: 13px;
  align-self: center;
  border-color: var(--vc-red);
  border-radius: 50%;
  background: var(--vc-red);
}

.vc-playhead {
  position: absolute;
  top: 40px;
  bottom: 66px;
  left: 58%;
  width: 1px;
  background: var(--vc-red);
  transition: left 600ms ease;
}

.vc-playhead span {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 9px;
  height: 9px;
  background: var(--vc-red);
}

.vc-timeline-result {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--vc-line);
}

.vc-timeline-result span {
  color: var(--vc-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.vc-timeline-result strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  font-weight: 400;
}

.vc-timeline.is-fast .vc-track i {
  margin: 0;
}

.vc-timeline.is-fast .vc-track-voice i,
.vc-timeline.is-fast .vc-track-cc i {
  border-color: #477226;
  background: #294519;
}

.vc-timeline.is-fast .vc-playhead {
  left: 78%;
}

.vc-timeline.is-fast .vc-timeline-result strong {
  color: var(--vc-green);
}

.vc-assist {
  padding: 104px 0;
  border-top: 1px solid var(--vc-line);
  border-bottom: 1px solid var(--vc-line);
  background: var(--vc-surface);
}

.vc-assist-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.vc-assist-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: center;
}

.vc-assist-media img {
  width: 100%;
  border: 1px solid #39433d;
  border-radius: 4px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.vc-assist-media img:last-child {
  transform: translateY(34px);
}

.vc-assist-copy ul {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.vc-assist-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d3dad5;
  font-size: 13px;
}

.vc-assist-copy li span {
  color: var(--vc-green);
}

.vc-maker-line {
  width: 100%;
  height: 1px;
  margin-bottom: 58px;
  background: var(--vc-line);
}

.vc-maker-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
}

.vc-text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--vc-green);
  color: var(--vc-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vc-roi {
  border-top: 1px solid var(--vc-line);
}

.vc-roi-tool {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  margin-top: 42px;
  border: 1px solid var(--vc-line);
  border-radius: 6px;
  background: var(--vc-surface);
}

.vc-roi-controls {
  display: grid;
  gap: 32px;
  padding: 34px;
}

.vc-roi-controls label {
  display: grid;
  gap: 17px;
}

.vc-roi-controls label > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--vc-muted);
  font-size: 12px;
}

.vc-roi-controls strong {
  color: var(--vc-text);
}

.vc-roi-controls input {
  width: 100%;
  accent-color: var(--vc-green);
}

.vc-roi-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-left: 1px solid var(--vc-line);
  background: #0a100c;
}

.vc-roi-result > span {
  color: var(--vc-green);
  font-size: 10px;
  font-weight: 700;
}

.vc-roi-result > strong {
  margin-top: 7px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 0.9;
}

.vc-roi-result p {
  margin-top: 12px;
  color: var(--vc-muted);
  font-size: 12px;
  line-height: 1.65;
}

.vc-roi-result b {
  color: var(--vc-text);
}

.vc-roi-note {
  margin-top: 12px;
  color: #66716a;
  font-size: 10px;
}

.vc-offer {
  padding: 104px 0;
  border-top: 1px solid var(--vc-red);
  border-bottom: 1px solid var(--vc-red);
  background: #13080b;
}

.vc-offer-layout {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 90px;
  align-items: center;
}

.vc-offer .vc-eyebrow,
.vc-offer .vc-eyebrow span {
  color: var(--vc-red);
  background-color: var(--vc-red);
}

.vc-offer .vc-eyebrow {
  background: transparent;
}

.vc-offer-details {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 54, 88, 0.42);
}

.vc-offer-details > span {
  color: var(--vc-red);
  font-size: 10px;
  font-weight: 700;
}

.vc-offer-details > strong {
  display: block;
  margin-top: 9px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  font-weight: 400;
}

.vc-offer-details ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 25px;
  color: #d4c8ca;
  font-size: 12px;
  list-style: none;
}

.vc-offer-details small {
  display: block;
  margin-top: 12px;
  color: #8d7479;
  font-size: 10px;
}

.vc-faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--vc-line);
}

.vc-faq details {
  border-bottom: 1px solid var(--vc-line);
}

.vc-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.vc-faq summary::-webkit-details-marker {
  display: none;
}

.vc-faq summary span {
  color: var(--vc-green);
  font-size: 22px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.vc-faq details[open] summary span {
  transform: rotate(45deg);
}

.vc-faq details p {
  width: min(720px, 100%);
  padding: 0 0 24px;
  color: var(--vc-muted);
  font-size: 13px;
  line-height: 1.8;
}

.vc-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 22px 28px;
  border-top: 1px solid var(--vc-line);
  background: var(--vc-bg-2);
}

.vc-footer > p {
  color: var(--vc-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.vc-footer > a:last-child {
  justify-self: end;
  color: var(--vc-green);
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .vc-hero h1 {
    font-size: 92px;
  }

  .vc-heading h2,
  .vc-workflow-copy h2,
  .vc-assist-copy h2,
  .vc-maker-grid h2,
  .vc-offer h2 {
    font-size: 54px;
  }

  .vc-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vc-stage,
  .vc-workflow,
  .vc-assist-layout,
  .vc-maker-grid,
  .vc-offer-layout {
    grid-template-columns: 1fr;
  }

  .vc-stage-copy {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--vc-line);
  }

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

  .vc-workflow,
  .vc-assist-layout,
  .vc-maker-grid,
  .vc-offer-layout {
    gap: 42px;
  }

  .vc-offer-details {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 54, 88, 0.42);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .vc-menu-toggle {
    display: block;
  }

  .vc-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .vc-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .vc-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .vc-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    border-top: 1px solid var(--vc-line);
    border-bottom: 1px solid var(--vc-line);
    background: #070a08;
  }

  .vc-nav.is-open {
    display: flex;
  }

  .vc-nav a,
  .vc-nav .vc-nav-cta {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 24px;
    border: 0;
    border-bottom: 1px solid var(--vc-line);
    border-radius: 0;
  }

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

  .vc-tabs button,
  .vc-tabs button:last-child {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid var(--vc-line);
  }

  .vc-tabs button.is-active {
    box-shadow: inset 3px 0 var(--vc-green);
  }

  .vc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vc-roi-result {
    border-top: 1px solid var(--vc-line);
    border-left: 0;
  }

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

  .vc-footer > p {
    display: none;
  }
}

@media (max-width: 560px) {
  .vc-shell {
    width: min(100% - 28px, 1180px);
  }

  .vc-header {
    padding-inline: 14px;
  }

  .vc-brand small {
    display: none;
  }

  .vc-hero {
    min-height: 92svh;
    padding: 104px 18px 44px;
  }

  .vc-hero-media img {
    object-position: 62% center;
  }

  .vc-hero-scrim {
    background: rgba(3, 5, 4, 0.82);
    box-shadow: inset 0 -210px 150px rgba(3, 5, 4, 0.98);
  }

  .vc-hero h1 {
    font-size: 72px;
  }

  .vc-hero-lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .vc-actions,
  .vc-actions .vc-button {
    width: 100%;
  }

  .vc-next {
    display: none;
  }

  .vc-hero-stats span {
    margin-right: 14px;
    padding-right: 0;
  }

  .vc-product,
  .vc-workflow,
  .vc-maker,
  .vc-roi,
  .vc-faq,
  .vc-features,
  .vc-assist,
  .vc-offer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .vc-heading h2,
  .vc-workflow-copy h2,
  .vc-assist-copy h2,
  .vc-maker-grid h2,
  .vc-offer h2 {
    font-size: 43px;
  }

  .vc-screen {
    min-height: 300px;
    padding: 18px 12px 48px;
  }

  .vc-screen figcaption {
    right: 12px;
    left: 12px;
  }

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

  .vc-feature-grid article {
    min-height: 170px;
  }

  .vc-feature-grid h3 {
    margin-top: 25px;
  }

  .vc-timeline {
    min-height: 350px;
    padding-inline: 14px;
  }

  .vc-track-sfx {
    gap: 45px;
  }

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

  .vc-assist-media img:last-child {
    width: 78%;
    margin-top: -38px;
    margin-left: auto;
    transform: none;
  }

  .vc-roi-controls,
  .vc-roi-result {
    padding: 24px;
  }

  .vc-roi-result > strong {
    font-size: 64px;
  }

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

  .vc-footer > a:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
