:root {
  --velora-navy: #0d163d;
  --velora-navy-soft: #18234f;
  --velora-coral: #ff6469;
  --velora-coral-dark: #e94d55;
  --velora-mint: #70d2b1;
  --velora-ink: #172034;
  --velora-muted: #5e667a;
  --velora-cloud: #f4f6fb;
  --velora-rose: #fff1f2;
  --velora-line: #dfe4ef;
  --velora-white: #ffffff;
  --velora-shell: 1180px;
  --velora-shadow: 0 18px 45px rgba(13, 22, 61, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--velora-ink);
  background: var(--velora-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--velora-navy);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 23px;
}

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

.velora-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--velora-white);
  background: var(--velora-navy);
  transform: translateY(-150%);
}

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

.velora-shell {
  width: min(calc(100% - 40px), var(--velora-shell));
  margin-inline: auto;
}

.velora-narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.velora-section {
  padding: 96px 0;
}

.velora-section--compact {
  padding: 68px 0;
}

.velora-section--cloud {
  background: var(--velora-cloud);
}

.velora-section--rose {
  background: var(--velora-rose);
}

.velora-section--navy {
  color: rgba(255, 255, 255, 0.82);
  background: var(--velora-navy);
}

.velora-section--navy h2,
.velora-section--navy h3 {
  color: var(--velora-white);
}

.velora-eyebrow {
  margin-bottom: 14px;
  color: var(--velora-coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.velora-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.velora-heading h2 {
  margin-bottom: 18px;
}

.velora-heading p:last-child,
.velora-rich-text p:last-child {
  margin-bottom: 0;
}

.velora-lead {
  max-width: 740px;
  color: var(--velora-muted);
  font-size: 20px;
  line-height: 1.65;
}

.velora-button,
.wpforms-submit,
button.wpforms-submit {
  display: inline-flex !important;
  min-height: 48px !important;
  align-items: center;
  justify-content: center;
  padding: 12px 20px !important;
  border: 1px solid var(--velora-coral) !important;
  border-radius: 6px !important;
  color: var(--velora-white) !important;
  background: var(--velora-coral) !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.velora-button:hover,
.velora-button:focus-visible,
.wpforms-submit:hover,
button.wpforms-submit:hover {
  border-color: var(--velora-coral-dark) !important;
  background: var(--velora-coral-dark) !important;
  transform: translateY(-1px);
}

.velora-button--ghost {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: var(--velora-white) !important;
  background: transparent !important;
}

.velora-button--ghost:hover,
.velora-button--ghost:focus-visible {
  border-color: var(--velora-white) !important;
  color: var(--velora-navy) !important;
  background: var(--velora-white) !important;
}

.velora-text-link {
  color: var(--velora-coral-dark);
  font-weight: 750;
}

.velora-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--velora-white);
  background: rgba(13, 22, 61, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.velora-header.is-scrolled,
body:not(.home) .velora-header {
  background: rgba(13, 22, 61, 0.97);
  box-shadow: 0 8px 28px rgba(13, 22, 61, 0.12);
}

.velora-header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.velora-brand {
  display: inline-flex;
  width: 150px;
  align-items: center;
  text-decoration: none;
}

.velora-brand img,
.velora-brand .custom-logo {
  width: auto;
  max-height: 58px;
}

.velora-brand .custom-logo-link {
  display: flex;
}

.velora-nav {
  justify-self: end;
}

.velora-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.velora-menu li {
  position: relative;
  margin: 0;
}

.velora-menu a {
  display: block;
  padding: 28px 0 26px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.velora-menu a:hover,
.velora-menu a:focus-visible,
.velora-menu .current-menu-item > a,
.velora-menu .current_page_item > a {
  color: var(--velora-coral);
}

.velora-menu .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: -16px;
  display: none;
  width: 230px;
  padding: 10px 16px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: var(--velora-navy);
  box-shadow: var(--velora-shadow);
  list-style: none;
}

.velora-menu .sub-menu a {
  padding: 10px 0;
}

.velora-menu li:hover > .sub-menu,
.velora-menu li:focus-within > .sub-menu {
  display: block;
}

.velora-header__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--velora-coral);
  border-radius: 6px;
  color: var(--velora-white);
  background: var(--velora-coral);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.velora-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: var(--velora-white);
  background: transparent;
}

.velora-menu-toggle__icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.velora-menu-toggle__icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.velora-hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--velora-white);
  background-color: var(--velora-navy);
  background-image: url("../images/hero-team.jpg");
  background-position: center;
  background-size: cover;
}

.velora-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(13, 22, 61, 0.72);
}

.velora-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 180px 0 92px;
}

.velora-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--velora-white);
}

.velora-hero h1 span {
  color: var(--velora-coral);
}

.velora-hero__copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.velora-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.velora-proof-strip {
  border-bottom: 1px solid var(--velora-line);
  background: var(--velora-white);
}

.velora-proof-strip__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: stretch;
}

.velora-proof-strip__item {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-left: 1px solid var(--velora-line);
}

.velora-proof-strip__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.velora-proof-strip__item strong {
  color: var(--velora-navy);
  font-size: 18px;
}

.velora-proof-strip__item span {
  color: var(--velora-muted);
  font-size: 13px;
}

.velora-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.velora-service-card {
  overflow: hidden;
  border: 1px solid var(--velora-line);
  border-radius: 6px;
  background: var(--velora-white);
}

.velora-service-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.velora-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.velora-service-card:hover .velora-service-card__media img {
  transform: scale(1.025);
}

.velora-service-card__body {
  padding: 26px;
}

.velora-service-card h3 {
  margin-bottom: 12px;
}

.velora-service-card p {
  color: var(--velora-muted);
}

.velora-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 70px;
  align-items: center;
}

.velora-split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.velora-split__media {
  position: relative;
}

.velora-split__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--velora-shadow);
}

.velora-kicker-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.velora-kicker-list li {
  position: relative;
  padding-left: 26px;
}

.velora-kicker-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid var(--velora-coral);
  content: "";
}

.velora-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.velora-process__item {
  min-height: 260px;
  padding: 34px;
  background: var(--velora-navy);
}

.velora-process__number {
  display: block;
  margin-bottom: 42px;
  color: var(--velora-coral);
  font-size: 14px;
  font-weight: 800;
}

.velora-process__item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.velora-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--velora-line);
  border-bottom: 1px solid var(--velora-line);
}

.velora-metric {
  min-height: 180px;
  padding: 38px 24px;
  border-left: 1px solid var(--velora-line);
}

.velora-metric:first-child {
  border-left: 0;
}

.velora-metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--velora-coral-dark);
  font-size: 42px;
  line-height: 1;
}

.velora-metric span {
  color: var(--velora-muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.velora-post-card {
  display: grid;
  min-height: 280px;
  overflow: hidden;
  grid-template-columns: 42% 1fr;
  border: 1px solid var(--velora-line);
  border-radius: 6px;
  background: var(--velora-white);
}

.velora-post-card__media {
  background: var(--velora-navy-soft);
}

.velora-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.velora-post-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.velora-post-card__meta {
  margin-bottom: 14px;
  color: var(--velora-coral-dark);
  font-size: 13px;
  font-weight: 750;
}

.velora-post-card h2,
.velora-post-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.velora-post-card p {
  color: var(--velora-muted);
}

.velora-post-card .velora-text-link {
  margin-top: auto;
}

.velora-form-band {
  background: var(--velora-rose);
}

.velora-form-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: start;
}

.velora-form-panel {
  padding: 34px;
  border: 1px solid var(--velora-line);
  border-radius: 6px;
  background: var(--velora-white);
  box-shadow: var(--velora-shadow);
}

.velora-form-panel .wpforms-container {
  margin: 0 !important;
}

.velora-form-panel .wpforms-field {
  padding: 8px 0 !important;
}

.velora-form-panel input,
.velora-form-panel textarea,
.velora-form-panel select {
  border: 1px solid #cfd5e3 !important;
  border-radius: 4px !important;
  background: var(--velora-white) !important;
  box-shadow: none !important;
}

.velora-form-panel input:focus,
.velora-form-panel textarea:focus,
.velora-form-panel select:focus {
  border-color: var(--velora-navy) !important;
  box-shadow: 0 0 0 2px rgba(13, 22, 61, 0.08) !important;
}

.velora-form-fallback {
  padding: 24px;
  border: 1px dashed var(--velora-line);
}

.velora-page-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--velora-white);
  background-color: var(--velora-navy);
  background-position: center;
  background-size: cover;
}

.velora-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(13, 22, 61, 0.74);
}

.velora-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 170px 0 76px;
}

.velora-page-hero h1 {
  margin-bottom: 20px;
  color: var(--velora-white);
  font-size: 54px;
}

.velora-page-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.velora-service-hero__label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--velora-coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.velora-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.velora-feature {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--velora-line);
  border-radius: 6px;
  background: var(--velora-white);
}

.velora-feature__index {
  display: block;
  margin-bottom: 42px;
  color: var(--velora-coral-dark);
  font-size: 13px;
  font-weight: 800;
}

.velora-feature p {
  margin-bottom: 0;
  color: var(--velora-muted);
}

.velora-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 36px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.velora-check-grid li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border-bottom: 1px solid var(--velora-line);
  font-weight: 700;
}

.velora-check-grid li::before {
  position: absolute;
  top: 21px;
  left: 16px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--velora-mint);
  border-left: 3px solid var(--velora-mint);
  content: "";
  transform: rotate(-45deg);
}

.velora-cta-band {
  color: rgba(255, 255, 255, 0.78);
  background: var(--velora-navy);
}

.velora-cta-band__inner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.velora-cta-band h2 {
  max-width: 720px;
  margin: 0;
  color: var(--velora-white);
}

.velora-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 60px;
}

.velora-contact-list {
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.velora-contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--velora-line);
}

.velora-contact-list strong,
.velora-contact-list span {
  display: block;
}

.velora-contact-list span {
  margin-bottom: 4px;
  color: var(--velora-muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.velora-content {
  padding: 150px 0 90px;
}

.velora-content__header {
  max-width: 840px;
  margin-bottom: 48px;
}

.velora-content__body > * {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.velora-content__body > .alignwide {
  max-width: var(--velora-shell);
}

.velora-content__body > .alignfull {
  max-width: none;
}

.velora-content__body h2,
.velora-content__body h3 {
  margin-top: 46px;
}

.velora-content__body img {
  border-radius: 6px;
}

.velora-privacy {
  padding: 150px 0 90px;
}

.velora-privacy h1 {
  margin-bottom: 10px;
  font-size: 50px;
}

.velora-privacy h2 {
  margin-top: 46px;
  font-size: 27px;
}

.velora-privacy__effective {
  color: var(--velora-muted);
}

.velora-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.velora-pagination .nav-links {
  display: flex;
  gap: 8px;
}

.velora-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--velora-line);
  border-radius: 4px;
  text-decoration: none;
}

.velora-pagination .current {
  color: var(--velora-white);
  background: var(--velora-navy);
}

.velora-empty-state {
  max-width: 680px;
  padding: 34px;
  border: 1px solid var(--velora-line);
  border-radius: 6px;
  background: var(--velora-cloud);
}

.velora-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #09102e;
}

.velora-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr 1fr;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 70px;
}

.velora-footer h2 {
  margin-bottom: 18px;
  color: var(--velora-white);
  font-size: 16px;
}

.velora-footer__brand img {
  width: 130px;
  margin-bottom: 18px;
}

.velora-footer__brand p {
  max-width: 330px;
}

.velora-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.velora-footer li + li {
  margin-top: 10px;
}

.velora-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.velora-footer a:hover,
.velora-footer a:focus-visible {
  color: var(--velora-coral);
}

.velora-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.velora-footer__contact p {
  margin-top: 12px;
}

.velora-footer__base {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.velora-footer__base p {
  margin: 0;
  font-size: 13px;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1040px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .velora-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .velora-menu {
    gap: 18px;
  }

  .velora-header__cta {
    display: none;
  }

  .velora-split {
    gap: 42px;
  }

  .velora-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .velora-footer__contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .velora-section {
    padding: 76px 0;
  }

  .velora-header__inner {
    grid-template-columns: 1fr auto;
  }

  .velora-menu-toggle {
    display: inline-flex;
  }

  .velora-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
    padding: 20px;
    background: var(--velora-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .velora-nav.is-open {
    display: block;
  }

  .velora-menu {
    display: block;
  }

  .velora-menu a {
    padding: 13px 0;
    font-size: 16px;
  }

  .velora-menu .sub-menu {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 0 18px;
    border: 0;
    box-shadow: none;
  }

  .velora-hero {
    min-height: 82svh;
    background-position: 62% center;
  }

  .velora-hero__content {
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .velora-proof-strip__inner,
  .velora-service-grid,
  .velora-feature-grid,
  .velora-process,
  .velora-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .velora-proof-strip__item:nth-child(3),
  .velora-metric:nth-child(3) {
    border-left: 0;
  }

  .velora-split,
  .velora-split--reverse,
  .velora-form-band__grid,
  .velora-contact-grid {
    grid-template-columns: 1fr;
  }

  .velora-split--reverse .velora-split__media {
    order: 2;
  }

  .velora-post-grid {
    grid-template-columns: 1fr;
  }

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

  .velora-footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  h1,
  .velora-page-hero h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .velora-shell,
  .velora-narrow {
    width: min(calc(100% - 30px), var(--velora-shell));
  }

  .velora-section {
    padding: 62px 0;
  }

  .velora-header__inner {
    min-height: 70px;
  }

  .velora-brand img,
  .velora-brand .custom-logo {
    max-height: 48px;
  }

  .velora-nav {
    inset: 70px 0 auto;
  }

  .velora-hero {
    min-height: 84svh;
  }

  .velora-hero::before {
    background: rgba(13, 22, 61, 0.8);
  }

  .velora-hero__content {
    padding-top: 128px;
    padding-bottom: 58px;
  }

  .velora-hero__copy,
  .velora-lead,
  .velora-page-hero p:last-child {
    font-size: 18px;
  }

  .velora-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .velora-actions .velora-button {
    width: 100%;
  }

  .velora-proof-strip__inner,
  .velora-service-grid,
  .velora-feature-grid,
  .velora-process,
  .velora-metrics,
  .velora-check-grid,
  .velora-footer__grid {
    grid-template-columns: 1fr;
  }

  .velora-proof-strip__item,
  .velora-proof-strip__item:first-child,
  .velora-metric,
  .velora-metric:nth-child(3) {
    padding: 22px 0;
    border-top: 1px solid var(--velora-line);
    border-left: 0;
  }

  .velora-proof-strip__item:first-child,
  .velora-metric:first-child {
    border-top: 0;
  }

  .velora-post-card {
    grid-template-columns: 1fr;
  }

  .velora-post-card__media {
    aspect-ratio: 16 / 9;
  }

  .velora-form-panel {
    padding: 22px;
  }

  .velora-page-hero {
    min-height: 470px;
  }

  .velora-page-hero__content {
    padding-top: 135px;
    padding-bottom: 56px;
  }

  .velora-cta-band__inner {
    min-height: 300px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .velora-footer__grid {
    gap: 34px;
  }
}

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

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

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