.qv-site {
  margin: 0;
  overflow-x: hidden;
}

.qv-skip-link {
  position: fixed;
  top: var(--qv-space-4);
  left: var(--qv-space-4);
  z-index: 1000;
  padding: var(--qv-space-3) var(--qv-space-4);
  background: var(--qv-color-ink);
  color: var(--qv-color-surface);
  transform: translateY(-160%);
}

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

.qv-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgb(16 24 32 / 10%);
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(1rem);
}

.qv-header > :not(.qv-navigation) {
  position: relative;
  z-index: 2;
}

.home .qv-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom-color: rgb(255 255 255 / 22%);
  background: linear-gradient(180deg, rgb(0 0 0 / 48%), transparent);
  color: #fff;
  backdrop-filter: none;
}

.home .qv-header .qv-brand img {
  filter: brightness(0) invert(1);
}

.home .qv-header .qv-navigation a,
.home .qv-header .qv-nav-toggle {
  color: #fff;
}

.home .qv-header .qv-button--header {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-brand,
.qv-brand:hover,
.qv-brand:active,
.qv-brand:focus-visible {
  color: inherit;
}

.qv-brand img {
  width: clamp(8.5rem, 12vw, 11rem);
}

.qv-navigation {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 8vw, 9rem) clamp(2rem, 8vh, 5rem);
  overflow-y: auto;
  visibility: hidden;
  background: #090d10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.qv-navigation[data-open],
.qv-navigation-open .qv-navigation {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.qv-navigation__list {
  display: grid;
  gap: clamp(0.4rem, 1.5vh, 1rem);
  align-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qv-navigation a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-decoration: none;
}

.qv-navigation a:hover,
.qv-navigation a:active,
.qv-navigation a:focus-visible {
  color: #fff;
}

.qv-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  width: 0.7em;
  height: 0.06em;
  background: var(--qv-color-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.qv-navigation a:hover::after,
.qv-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.qv-nav-toggle {
  display: grid;
  grid-template-columns: 1fr 1.25rem;
  gap: 0.15rem 0.75rem;
  align-items: center;
  justify-self: start;
  min-width: 5rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--qv-color-ink);
  cursor: pointer;
}

.qv-nav-toggle__label {
  grid-row: 1 / 3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qv-nav-toggle > span:not(.qv-nav-toggle__label) {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.qv-nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(0.16rem) rotate(45deg);
}

.qv-nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-0.16rem) rotate(-45deg);
}

.qv-navigation-open {
  overflow: hidden;
}

.qv-navigation-open .qv-header .qv-brand img {
  filter: brightness(0) invert(1);
}

.qv-navigation-open .qv-header .qv-nav-toggle {
  color: #fff;
}

.qv-navigation-open .qv-header .qv-button--header {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--qv-color-brand);
  border-radius: var(--qv-radius-sm);
  background: var(--qv-color-brand);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.qv-button:hover,
.qv-button:focus-visible {
  border-color: var(--qv-color-brand-dark);
  background: var(--qv-color-brand-dark);
  color: #fff;
  transform: translateY(-2px);
}

.home .qv-header .qv-button--header:hover,
.home .qv-header .qv-button--header:focus-visible,
.qv-navigation-open .qv-header .qv-button--header:hover,
.qv-navigation-open .qv-header .qv-button--header:focus-visible {
  border-color: var(--qv-color-brand-dark);
  background: var(--qv-color-brand-dark);
  color: #fff;
}

.qv-button--header {
  justify-self: end;
  min-height: 2.75rem;
}

.qv-text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.qv-text-link span {
  color: var(--qv-color-brand);
  font-size: 1.25em;
}

.qv-eyebrow {
  margin: 0 0 var(--qv-space-4);
  color: var(--qv-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qv-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #080b0d;
  color: #fff;
  isolation: isolate;
}

.qv-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 52%) 0%, transparent 30%),
    linear-gradient(180deg, transparent 38%, rgb(0 0 0 / 20%) 58%, rgb(0 0 0 / 78%) 100%);
  content: "";
}

.qv-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #080b0d url("../images/hero-machinery.webp") center / cover no-repeat;
}

.qv-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.qv-hero__content {
  align-self: end;
  justify-self: center;
  width: min(76rem, calc(100% - 3rem));
  padding: 10rem 0 clamp(6.75rem, 10vh, 9rem);
  text-align: center;
}

.qv-hero__eyebrow {
  margin: 0 0 1.15rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.qv-hero h1 {
  max-width: 16ch;
  margin: 0;
  margin-inline: auto;
  color: #fff;
  font-family: var(--qv-font-display);
  font-size: clamp(3rem, 6.8vw, 7.25rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.91;
  text-wrap: balance;
  text-shadow: 0 0.12em 0.5em rgb(0 0 0 / 30%);
}

.qv-hero__link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.qv-hero__link-icon {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.qv-hero__link:hover .qv-hero__link-icon,
.qv-hero__link:focus-visible .qv-hero__link-icon {
  background: #fff;
  color: #111;
  transform: translateX(0.2rem);
}

.qv-hero__control,
.qv-hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  z-index: 2;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.qv-hero__control {
  right: clamp(1rem, 4vw, 4.5rem);
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem;
  border: 0;
  background: rgb(0 0 0 / 26%);
  cursor: pointer;
}

.qv-hero__control-icon {
  font-size: 0.8rem;
  letter-spacing: -0.18em;
}

.qv-hero__scroll {
  left: 50%;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-decoration: none;
  transform: translateX(-50%);
}

.qv-hero__scroll span:last-child {
  font-size: 1rem;
  animation: qv-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes qv-scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.35rem); }
}

.qv-section {
  width: min(var(--qv-content-wide), calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.qv-section__heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: var(--qv-space-16);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.qv-section h2 {
  max-width: 20ch;
  margin: 0;
  color: var(--qv-color-ink);
  font-size: clamp(2.25rem, 4.5vw, 4.75rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.qv-route__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--qv-color-steel-300);
}

.qv-route-card {
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--qv-color-surface);
  color: var(--qv-color-ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.qv-route-card--dark {
  background: var(--qv-color-ink);
  color: #fff;
}

.qv-route-card--steel {
  background: var(--qv-color-steel-100);
}

.qv-route-card:hover,
.qv-route-card:focus-visible {
  position: relative;
  z-index: 2;
  color: inherit;
  box-shadow: var(--qv-shadow-card);
  transform: translateY(-0.75rem);
}

.qv-route-card__number {
  color: var(--qv-color-brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.qv-route-card h3 {
  max-width: 14ch;
  margin: auto 0 var(--qv-space-6);
  color: inherit;
  font-size: clamp(1.75rem, 2.6vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.qv-route-card p {
  max-width: 30rem;
  color: currentColor;
  opacity: 0.7;
}

.qv-route-card strong {
  margin-top: var(--qv-space-8);
  font-size: 0.8rem;
}

.qv-proof {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.qv-proof__copy > p:not(.qv-eyebrow) {
  max-width: var(--qv-content-copy);
  margin: var(--qv-space-8) 0;
  color: var(--qv-color-steel-700);
  font-size: 1.125rem;
}

.qv-process {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--qv-color-steel-300);
  list-style: none;
}

.qv-process li {
  display: grid;
  grid-template-columns: 3rem 0.8fr 1.2fr;
  gap: var(--qv-space-6);
  align-items: center;
  min-height: 6.5rem;
  border-bottom: 1px solid var(--qv-color-steel-300);
}

.qv-process span {
  color: var(--qv-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
}

.qv-process strong {
  font-size: 1.25rem;
}

.qv-process small {
  color: var(--qv-color-steel-700);
  font-size: 0.9rem;
}

.qv-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: 100%;
  padding: 0;
  background: var(--qv-color-ink);
  color: #fff;
}

.qv-feature__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42rem;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f5, #dbe4e8);
}

.qv-feature__media::after {
  position: absolute;
  inset: 0;
  border: 1.5rem solid rgb(255 255 255 / 10%);
  content: "";
}

.qv-feature__media img {
  width: 92%;
  filter: drop-shadow(0 2rem 3rem rgb(16 24 32 / 22%));
}

.qv-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem);
}

.qv-feature h2 {
  color: #fff;
}

.qv-feature__copy > p:not(.qv-eyebrow) {
  max-width: 36rem;
  margin: var(--qv-space-8) 0;
  color: rgb(255 255 255 / 68%);
  font-size: 1.1rem;
}

.qv-feature ul {
  display: grid;
  gap: var(--qv-space-4);
  padding: 0;
  margin: 0 0 var(--qv-space-8);
  list-style: none;
}

.qv-feature li {
  padding-bottom: var(--qv-space-4);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.qv-feature .qv-button {
  align-self: flex-start;
}

.qv-footer {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) var(--qv-space-6);
  background: #090e12;
  color: rgb(255 255 255 / 70%);
}

.qv-footer__lead {
  display: flex;
  gap: var(--qv-space-12);
  align-items: end;
  justify-content: space-between;
  max-width: var(--qv-content-wide);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  margin: 0 auto;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.qv-footer__lead h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.qv-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: var(--qv-space-16);
  max-width: var(--qv-content-wide);
  padding: clamp(3rem, 6vw, 5rem) 0;
  margin: 0 auto;
}

.qv-footer__brand img {
  width: 11rem;
  margin-bottom: var(--qv-space-6);
  filter: brightness(0) invert(1);
}

.qv-footer h3 {
  margin: 0 0 var(--qv-space-6);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qv-footer ul {
  display: grid;
  gap: var(--qv-space-3);
  padding: 0;
  margin: 0;
  list-style: none;
}

.qv-footer a {
  color: inherit;
  text-decoration: none;
}

.qv-footer a:hover,
.qv-footer a:focus-visible {
  color: #fff;
}

.qv-footer address {
  margin-bottom: var(--qv-space-4);
  font-style: normal;
}

.qv-footer__bottom {
  display: flex;
  gap: var(--qv-space-6);
  justify-content: space-between;
  max-width: var(--qv-content-wide);
  padding-top: var(--qv-space-6);
  margin: 0 auto;
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.75rem;
}

.qv-footer__bottom div {
  display: flex;
  gap: var(--qv-space-6);
}

.qv-page-hero {
  display: grid;
  min-height: min(72vh, 52rem);
  place-items: end start;
  padding: clamp(8rem, 15vw, 13rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background: linear-gradient(135deg, #eef2f3, #dce4e7);
}

.qv-page-hero--dark,
.qv-page-hero--catalogue {
  background:
    linear-gradient(180deg, rgb(6 10 13 / 18%), rgb(6 10 13 / 86%)),
    url("../images/hero-machinery.webp") center / cover no-repeat;
  color: #fff;
}

.qv-page-hero > div {
  width: min(72rem, 100%);
}

.qv-page-hero__eyebrow {
  margin: 0 0 1.25rem;
  color: var(--qv-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qv-page-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: inherit;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.qv-page-hero__intro {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: currentColor;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.72;
}

.qv-content-grid,
.qv-machines-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--qv-color-steel-300);
}

.qv-content-grid {
  padding: 1px;
}

.qv-content-card {
  min-width: 0;
  background: var(--qv-color-surface);
}

.qv-content-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8edef;
}

.qv-content-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgb(0 0 0 / 20%));
  content: "";
}

.qv-content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.qv-content-card:hover .qv-content-card__media img,
.qv-content-card:focus-within .qv-content-card__media img {
  transform: scale(1.045);
}

.qv-content-card__body {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.qv-content-card__meta {
  margin: 0 0 1rem;
  color: var(--qv-color-brand-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.qv-content-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.qv-content-card h2 a {
  color: inherit;
  text-decoration: none;
}

.qv-content-card__body > p:not(.qv-content-card__meta) {
  color: var(--qv-color-steel-700);
}

.qv-arrow-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.qv-arrow-link span:last-child {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.qv-arrow-link:hover span:last-child,
.qv-arrow-link:focus-visible span:last-child {
  transform: translateX(0.25rem);
}

.qv-machines-showcase {
  padding: clamp(5rem, 10vw, 10rem) 0 0;
  background: #0a0e11;
  color: #fff;
}

.qv-machines-showcase__heading {
  display: flex;
  gap: 3rem;
  align-items: end;
  justify-content: space-between;
  width: min(var(--qv-content-wide), calc(100% - 3rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  margin: 0 auto;
}

.qv-machines-showcase h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.qv-machines-showcase__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgb(255 255 255 / 14%);
}

.qv-machines-showcase .qv-content-card {
  background: #11181d;
  color: #fff;
}

.qv-machines-showcase .qv-content-card__media {
  aspect-ratio: 16 / 10;
}

.qv-machines-showcase .qv-content-card__body > p:not(.qv-content-card__meta) {
  color: rgb(255 255 255 / 62%);
}

.qv-catalogue-filter {
  display: grid;
  grid-template-columns: auto minmax(16rem, 26rem) auto;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--qv-color-steel-300);
  background: #fff;
}

.qv-catalogue-filter label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qv-catalogue-filter select {
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid var(--qv-color-steel-300);
  border-radius: 0;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-pagination {
  padding: 3rem clamp(1.5rem, 5vw, 5rem) 6rem;
  text-align: center;
}

.qv-pagination .page-numbers {
  display: inline-grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  color: var(--qv-color-ink);
  text-decoration: none;
}

.qv-pagination .current {
  background: var(--qv-color-ink);
  color: #fff;
}

.qv-empty-state {
  grid-column: 1 / -1;
  padding: 5rem;
  background: #fff;
  text-align: center;
}

.qv-single-hero {
  position: relative;
  display: grid;
  min-height: min(86vh, 64rem);
  overflow: hidden;
  background: #091015;
  color: #fff;
}

.qv-single-hero__media,
.qv-single-hero__media::after {
  position: absolute;
  inset: 0;
}

.qv-single-hero__media::after {
  background: linear-gradient(180deg, rgb(0 0 0 / 15%), rgb(0 0 0 / 82%));
  content: "";
}

.qv-single-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-single-hero__content {
  position: relative;
  align-self: end;
  width: min(80rem, calc(100% - 3rem));
  padding: 9rem 0 clamp(4rem, 8vw, 7rem);
  margin: 0 auto;
}

.qv-single-hero__content > p {
  color: var(--qv-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qv-single-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.qv-single-hero__intro {
  max-width: 42rem;
  margin-top: 2rem;
  color: rgb(255 255 255 / 72%);
  font-size: 1.15rem;
}

.qv-single-content {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(2rem, 8vw, 9rem);
  width: min(76rem, calc(100% - 3rem));
  padding: clamp(5rem, 10vw, 10rem) 0;
  margin: 0 auto;
}

.qv-single-content__label {
  color: var(--qv-color-brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.qv-prose {
  max-width: 52rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.qv-prose > :first-child {
  margin-top: 0;
}

.qv-prose h2,
.qv-prose h3 {
  margin-top: 2em;
  letter-spacing: -0.04em;
  line-height: 1;
}

.qv-prose img {
  width: 100%;
  margin: 2rem 0;
}

.qv-prose--page {
  width: min(52rem, calc(100% - 3rem));
  padding: clamp(4rem, 8vw, 8rem) 0;
  margin: 0 auto;
}

.qv-taxonomy-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--qv-color-steel-100);
}

.qv-taxonomy-panel h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.qv-taxonomy-panel dl {
  margin: 0;
  border-top: 1px solid var(--qv-color-steel-300);
}

.qv-taxonomy-panel dl div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--qv-color-steel-300);
}

.qv-taxonomy-panel dt {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qv-taxonomy-panel dd {
  margin: 0;
}

.qv-single-cta {
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 6vw, 7rem);
  background: #0a0e11;
  color: #fff;
  text-align: center;
}

.qv-single-cta h2 {
  max-width: 17ch;
  margin: 0 auto 2.5rem;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.qv-error-page {
  display: grid;
  min-height: 72vh;
  align-content: center;
  justify-items: start;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 7vw, 8rem);
}

.qv-error-page h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

@media (max-width: 68rem) {
  .qv-button--header {
    display: none;
  }

  .qv-proof,
  .qv-feature {
    grid-template-columns: 1fr;
  }

  .qv-route__grid {
    grid-template-columns: 1fr;
  }

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

  .qv-single-content,
  .qv-taxonomy-panel {
    grid-template-columns: 1fr;
  }

  .qv-route-card {
    min-height: 22rem;
  }

  .qv-feature__media {
    min-height: 30rem;
  }
}

@media (max-width: 45rem) {
  .qv-header {
    min-height: 4.5rem;
    padding-inline: 1rem;
  }

  .qv-brand img {
    width: 8.5rem;
  }

  .qv-section {
    width: min(100% - 2rem, var(--qv-content-wide));
  }

  .qv-hero {
    min-height: 100svh;
  }

  .qv-hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.75rem);
  }

  .qv-hero__content {
    width: min(100% - 2rem, 42rem);
    padding-bottom: 7.5rem;
  }

  .qv-hero__control {
    right: 0.65rem;
    bottom: 0.75rem;
  }

  .qv-hero__control span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .qv-hero__scroll {
    bottom: 0.8rem;
  }

  .qv-section__heading {
    grid-template-columns: 1fr;
    gap: var(--qv-space-4);
  }

  .qv-page-hero {
    min-height: 70svh;
    padding-inline: 1rem;
  }

  .qv-page-hero h1,
  .qv-single-hero h1,
  .qv-error-page h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .qv-content-grid,
  .qv-machines-showcase__grid {
    grid-template-columns: 1fr;
  }

  .qv-machines-showcase__heading {
    display: grid;
    width: calc(100% - 2rem);
  }

  .qv-catalogue-filter {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .qv-single-hero {
    min-height: 78svh;
  }

  .qv-single-hero__content,
  .qv-single-content {
    width: calc(100% - 2rem);
  }

  .qv-taxonomy-panel {
    padding-inline: 1rem;
  }

  .qv-taxonomy-panel dl div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .qv-route-card {
    min-height: 20rem;
    padding: var(--qv-space-8);
  }

  .qv-process li {
    grid-template-columns: 2.5rem 1fr;
    gap: var(--qv-space-3);
    padding: var(--qv-space-4) 0;
  }

  .qv-process small {
    grid-column: 2;
  }

  .qv-feature__media {
    min-height: 20rem;
  }

  .qv-feature__copy {
    padding: 3rem 1.5rem;
  }

  .qv-footer__lead,
  .qv-footer__grid,
  .qv-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .qv-footer__bottom div {
    flex-wrap: wrap;
  }
}
