/* ============== AI DEMO WIDGET ============== */
.ve-demo {
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(244,241,234,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px;
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
.ve-demo__head {
  display: flex; justify-content: space-between; align-items: center;
}
.ve-demo__status { display: inline-flex; align-items: center; gap: 8px; }
.ve-demo__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7CFC9A; box-shadow: 0 0 8px #7CFC9A;
  display: inline-block;
}
.ve-demo__transcript {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px; max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}
.ve-demo__msg { display: flex; flex-direction: column; gap: 6px; }
.ve-demo__msg--user { align-items: flex-end; }
.ve-demo__role {
  font-size: 9px;
  letter-spacing: 0.24em;
  opacity: 0.55;
}
.ve-demo__text {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  padding: 12px 14px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 6px;
  max-width: 92%;
  background: rgba(244,241,234,0.03);
}
.ve-demo__msg--user .ve-demo__text { background: rgba(244,241,234,0.08); }
.ve-demo__sys {
  margin: 0;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  opacity: 0.55;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
.ve-demo__typing { display: inline-flex; gap: 4px; align-items: center; padding: 14px 16px; }
.ve-demo__typing i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--fg);
  animation: ve-typing 1.2s ease-in-out infinite;
}
.ve-demo__typing i:nth-child(2) { animation-delay: 0.15s; }
.ve-demo__typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes ve-typing { 0%, 60%, 100% { opacity: 0.2; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.ve-demo__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ve-demo__chip {
  background: rgba(244,241,234,0.04);
  border: 1px solid rgba(244,241,234,0.16);
  color: rgba(244,241,234,0.8);
  padding: 7px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.ve-demo__chip:hover { background: rgba(244,241,234,0.1); color: var(--fg); }
.ve-demo__chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.ve-demo__chip:disabled { opacity: 0.4; cursor: not-allowed; }

.ve-demo__form {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px;
}
.ve-demo__input {
  background: rgba(244,241,234,0.04);
  border: 1px solid rgba(244,241,234,0.18);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 150ms ease;
}
.ve-demo__input:focus { border-color: var(--fg); }
.ve-demo__send {
  background: var(--fg); color: var(--bg);
  border: 1px solid var(--fg);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.ve-demo__send:disabled { opacity: 0.35; cursor: not-allowed; }
.ve-demo__foot { font-size: 10px; opacity: 0.45; text-align: center; }

/* ============== SOLID NAV (interior pages) ============== */
.ve-nav--solid {
  position: relative !important;
  top: auto; left: auto; right: auto;
  padding: 32px 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.ve-nav__links a.is-active { color: var(--fg); }
.ve-nav__links a.is-active::after {
  content: ""; display: block; height: 1px; background: var(--fg);
  margin-top: 4px;
}
.ve-nav__cta.is-active { background: var(--fg); color: var(--bg); }

/* ============== KICKER ============== */
.ve-kicker {
  display: inline-flex; align-items: center; gap: 14px;
}
.ve-kicker__line {
  width: 60px; height: 1px; background: var(--fg-dim);
  display: inline-block;
}

/* ============== PAGE HERO ============== */
.ve-page-hero {
  padding: 140px 56px 100px;
  border-bottom: 1px solid var(--line);
}
.ve-page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 36px 0 36px;
  text-wrap: balance;
}
.ve-page-hero__title em { font-style: italic; font-weight: 300; opacity: 0.92; }
.ve-page-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  max-width: 640px;
  opacity: 0.78;
}

/* ============== SERVICES PAGE ============== */
.ve-svcs { padding: 0 56px 80px; }
.ve-svc {
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.ve-svc__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.ve-svc__tag {
  border: 1px solid var(--fg);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--fg);
}
.ve-svc__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  align-items: start;
}
.ve-svc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.ve-svc__blurb {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 32px;
  opacity: 0.85;
}
.ve-svc__bullets {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.ve-svc__bullets li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  position: relative;
  padding-left: 28px;
  color: rgba(244,241,234,0.85);
}
.ve-svc__bullets li::before {
  content: "→"; position: absolute; left: 0; opacity: 0.6;
}
.ve-svc__meta {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 4px;
  position: sticky; top: 32px;
}
.ve-svc__meta-row {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.ve-svc__meta-row strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
}
.ve-svc__cta {
  margin-top: 24px;
  width: 100%;
  background: var(--fg); color: var(--bg);
  border: none;
  padding: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.ve-svc__cta:hover { opacity: 0.9; }

/* ============== PROCESS ============== */
.ve-process {
  padding: 140px 56px;
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}
.ve-process__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 32px 0 80px;
}
.ve-process__title em { font-style: italic; font-weight: 300; opacity: 0.85; }
.ve-process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.ve-process__steps li {
  background: #0a0a0a;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.ve-process__steps li > span { color: var(--fg-dim); }
.ve-process__steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0;
}
.ve-process__steps p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244,241,234,0.7);
  margin: 0;
}

/* ============== CASES PAGE ============== */
.ve-cases { padding: 0 56px 80px; }
.ve-cases__tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.ve-cases__tab {
  background: var(--bg);
  border: none;
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  cursor: pointer;
  color: var(--fg-dim);
  font-family: var(--serif);
  transition: background 150ms ease, color 150ms ease;
}
.ve-cases__tab > span:last-child {
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
}
.ve-cases__tab:hover { color: var(--fg); }
.ve-cases__tab.is-active { background: var(--fg); color: var(--bg); }

.ve-case { max-width: 1100px; }
.ve-case__top {
  display: flex; justify-content: space-between;
  margin-bottom: 32px;
}
.ve-case__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.ve-case__summary {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  max-width: 760px;
  margin: 0 0 56px;
}
.ve-case__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 64px;
}
.ve-case__metric {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  justify-content: space-between;
}
.ve-case__metric-n {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ve-case__quote {
  border-left: 1px solid var(--fg);
  padding: 24px 0 24px 36px;
  margin: 0 0 64px;
  position: relative;
}
.ve-case__quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  position: absolute;
  top: 0; left: 24px;
  line-height: 1;
  color: var(--fg-dim);
}
.ve-case__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.35;
  margin: 0 0 16px;
  text-wrap: balance;
}

/* flow */
.ve-flow {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.ve-flow__node {
  flex: 1; min-width: 140px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.ve-flow__node strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
}
.ve-flow__arrow {
  font-family: var(--mono);
  font-size: 16px;
  opacity: 0.5;
}

/* ============== ABOUT PAGE ============== */
.ve-about { padding: 100px 56px; border-bottom: 1px solid var(--line); }
.ve-about__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.ve-about__col { display: flex; flex-direction: column; gap: 24px; }
.ve-about__person {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.ve-about__person h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  margin: 12px 0 0;
}
.ve-about__person p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}
.ve-about__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
}
.ve-about__avatar--alt {
  background: linear-gradient(135deg, #f4f1ea 0%, #888 100%);
}
.ve-about__thesis {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}
.ve-about__thesis em { font-style: normal; opacity: 0.7; }
.ve-about__principles {
  list-style: none; counter-reset: p;
  padding: 0; margin: 0;
}
.ve-about__principles li {
  counter-increment: p;
  padding: 18px 0 18px 56px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
}
.ve-about__principles li strong { font-style: italic; font-weight: 400; }
.ve-about__principles li::before {
  content: "0" counter(p);
  position: absolute; left: 0; top: 18px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  opacity: 0.5;
}

.ve-timeline { padding: 100px 56px; border-bottom: 1px solid var(--line); background: #0a0a0a; }
.ve-timeline__list {
  list-style: none; padding: 0;
  margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.ve-timeline__list li {
  background: #0a0a0a;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.ve-timeline__list span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
}
.ve-timeline__list p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: rgba(244,241,234,0.75);
}

/* ============== PRICING ============== */
.ve-tiers {
  padding: 0 56px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  margin: 0 56px;
  border: 1px solid var(--line);
}
.ve-tier {
  background: var(--bg);
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.ve-tier--feat { background: var(--fg); color: var(--bg); }
.ve-tier__badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--bg); color: var(--fg);
  padding: 6px 12px;
  font-size: 10px;
  border: 1px solid var(--bg);
}
.ve-tier__price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}
.ve-tier__unit { font-size: 11px !important; opacity: 0.6; }
.ve-tier--feat .ve-mono { color: rgba(0,0,0,0.6); }
.ve-tier__summary {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}
.ve-tier__features {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  flex: 1;
}
.ve-tier__features li {
  padding: 12px 0 12px 24px;
  border-bottom: 1px dashed currentColor;
  border-color: rgba(128,128,128,0.25);
  position: relative;
}
.ve-tier__features li::before { content: "✓"; position: absolute; left: 0; opacity: 0.6; }
.ve-tier__cta {
  background: transparent; color: inherit;
  border: 1px solid currentColor;
  padding: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 150ms ease, color 150ms ease;
}
.ve-tier:not(.ve-tier--feat) .ve-tier__cta:hover { background: var(--fg); color: var(--bg); }
.ve-tier--feat .ve-tier__cta:hover { background: var(--bg); color: var(--fg); }

.ve-faq { padding: 120px 56px; border-top: 1px solid var(--line); }
.ve-faq__grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.ve-faq__item {
  background: var(--bg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.ve-faq__item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  margin: 0;
}
.ve-faq__item p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: rgba(244,241,234,0.75);
}

/* ============== CONTACT PAGE ============== */
.ve-contact {
  padding: 80px 56px 120px;
  border-bottom: 1px solid var(--line);
  min-height: 800px;
}
.ve-contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.ve-contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 32px 0 28px;
}
.ve-contact__title em { font-style: italic; font-weight: 300; opacity: 0.9; }
.ve-contact__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  margin: 0 0 48px;
  opacity: 0.78;
}
.ve-contact__rail {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.ve-contact__rail li {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  opacity: 0.4;
  transition: opacity 200ms ease;
}
.ve-contact__rail li.is-active,
.ve-contact__rail li.is-done { opacity: 1; }
.ve-contact__rail li.is-done { opacity: 0.6; }
.ve-contact__rail li:last-child { border-bottom: 1px solid var(--line); }

.ve-contact__form {
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 4px;
  background: #0a0a0a;
  display: flex; flex-direction: column; gap: 28px;
}
.ve-contact__form-head {
  display: flex; flex-direction: column; gap: 12px;
}
.ve-contact__bar {
  height: 1px; background: var(--line);
  position: relative;
}
.ve-contact__bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--fg);
  transition: width 300ms ease;
}
.ve-contact__step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.ve-contact__fields {
  display: flex; flex-direction: column; gap: 24px;
}
.ve-field {
  display: flex; flex-direction: column; gap: 10px;
}
.ve-field input,
.ve-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  outline: none;
  transition: border-color 150ms ease;
  resize: vertical;
}
.ve-field input:focus,
.ve-field textarea:focus { border-color: var(--fg); }
.ve-pick {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ve-pick__opt {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 150ms ease;
}
.ve-pick__opt:hover { border-color: var(--fg); }
.ve-pick__opt.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.ve-contact__nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
}
.ve-contact__back, .ve-contact__next {
  background: transparent; color: var(--fg);
  border: 1px solid var(--fg);
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.ve-contact__back { border-color: var(--line); color: var(--fg-dim); }
.ve-contact__back:disabled { opacity: 0.3; cursor: not-allowed; }
.ve-contact__next:disabled { opacity: 0.4; cursor: not-allowed; }
.ve-contact__next:hover:not(:disabled) { background: var(--fg); color: var(--bg); }
.ve-contact__done {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  padding: 24px 0;
}
.ve-contact__done h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  margin: 0;
}
.ve-contact__done p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  margin: 0;
  opacity: 0.85;
}

/* ============== EXPANDED FOOTER ============== */
.ve-footer {
  background: var(--bg);
  padding: 100px 56px 56px;
  border-top: 1px solid var(--line);
}
.ve-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.ve-footer__brand {
  display: flex; flex-direction: column; gap: 18px;
}
.ve-footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  max-width: 280px;
  opacity: 0.85;
}
.ve-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ve-footer__cols ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
}
.ve-footer__cols a:hover { opacity: 0.6; }
.ve-footer__status { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; }
.ve-footer__dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #7CFC9A;
}
.ve-footer__bottom {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding-top: 40px;
}
.ve-footer__big {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  text-align: center;
}
.ve-footer__bottom > span:last-child { text-align: right; }
