@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=block");

:root {
  --red: #A61E2A;
  --red-rgb: 166, 30, 42;
  --dark-red: #7f111b;
  --black: #000000;
  --charcoal: #181818;
  --ink: #242424;
  --grey: #434343;
  --mid-grey: #6d6d6d;
  --line: #d7d7d7;
  --soft: #f4f4f4;
  --soft-red: #f4f4f4;
  --white: #ffffff;
  --max-width: 1120px;
  --card-gap: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato";
  font-size: 16px;
  line-height: 1.65;
}

.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;
}

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

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

.brand-inline {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow .brand-inline {
  letter-spacing: inherit;
}

.brand-inline-tower {
  color: var(--black);
}

.brand-inline-bio {
  color: var(--red);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 10;
  padding: 8px 12px;
  color: var(--white);
  background: var(--black);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.nav-shell,
.section,
.footer-shell {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(150px, 19vw, 220px);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-bottom: 3px solid transparent;
  color: var(--grey);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.site-nav a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown.is-active > .nav-parent {
  color: var(--red);
  border-bottom-color: currentColor;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 0;
  min-width: 280px;
  padding: 0;
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(2px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 12px 14px;
  border-bottom: 0;
  border-radius: 0;
  color: var(--red);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown-label {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  background: var(--soft);
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--soft);
}

main {
  min-height: 70vh;
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(var(--red-rgb), 0.2),
    0 18px 38px rgba(0, 0, 0, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.74) 100%),
    linear-gradient(100deg, #f8f8f8 0%, #f8f8f8 46%, #ffffff 100%);
}

.hero:not(.page-hero) {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--red-rgb), 0.16), rgba(var(--red-rgb), 0) 34%),
    linear-gradient(105deg, #242424 0%, #303030 50%, #454545 100%);
}

.page-hero {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 16%, rgba(var(--red-rgb), 0.16), rgba(var(--red-rgb), 0) 32%),
    radial-gradient(circle at 46% 52%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(105deg, #3a3a3a 0%, #494949 52%, #5f5f5f 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 62%, rgba(var(--red-rgb), 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 68%, rgba(var(--red-rgb), 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 58%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    linear-gradient(28deg, transparent 13%, rgba(255, 255, 255, 0.08) 13.2%, transparent 13.6%),
    linear-gradient(145deg, transparent 38%, rgba(255, 255, 255, 0.06) 38.2%, transparent 38.6%),
    linear-gradient(72deg, transparent 62%, rgba(var(--red-rgb), 0.12) 62.2%, transparent 62.6%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

.hero:not(.page-hero)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 0.18));
}

.page-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(58, 58, 58, 0.16));
}

.hero .section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 28px;
  min-height: 430px;
  padding: 60px 0 54px;
}

.hero:not(.page-hero) .section {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 24px;
  min-height: 390px;
  padding: 42px 0 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  min-width: 0;
  padding-left: 30px;
  border-left: 4px solid var(--red);
}

.hero:not(.page-hero) h1 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.85rem);
}

.hero:not(.page-hero) .lede {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.hero:not(.page-hero) .eyebrow {
  display: inline-block;
  width: fit-content;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
}

.hero:not(.page-hero) .brand-inline-tower {
  color: var(--white);
}

.hero:not(.page-hero) .lede .brand-inline {
  padding: 0 0.18em;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 900;
}

.hero:not(.page-hero) .lede .brand-inline-tower {
  color: var(--black);
}

.hero:not(.page-hero) .lede .brand-inline-bio {
  color: var(--red);
}

.hero:not(.page-hero) .hero-actions {
  margin-top: 26px;
}

.hero:not(.page-hero) .hero-visual {
  top: 0;
  right: calc((100vw - min(100vw - 40px, var(--max-width))) / -2);
  bottom: 0;
  left: calc((100vw - min(100vw - 40px, var(--max-width))) / -2);
  opacity: 0.86;
}

.hero-visual {
  position: absolute;
  top: 38px;
  right: min(-44px, calc((var(--max-width) - 100vw) / 2));
  bottom: 38px;
  left: 48%;
  z-index: 1;
  overflow: hidden;
  margin-left: 0;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #f8f8f8 0%, rgba(248, 248, 248, 0.78) 14%, rgba(248, 248, 248, 0) 34%),
    linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.68) 6%, rgba(255, 255, 255, 0) 20%),
    linear-gradient(180deg, rgba(248, 248, 248, 0.26) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.54) 100%);
}

.hero:not(.page-hero) .hero-visual::after {
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.84) 0%, rgba(36, 36, 36, 0.66) 22%, rgba(36, 36, 36, 0.24) 48%, rgba(36, 36, 36, 0.04) 74%, rgba(36, 36, 36, 0.16) 100%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.3) 0%, rgba(36, 36, 36, 0.04) 35%, rgba(36, 36, 36, 0.04) 70%, rgba(36, 36, 36, 0.48) 100%);
}

.hero-visual picture {
  display: block;
  height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 18%, #000000 42%, #000000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 18%, #000000 42%, #000000 100%);
}

.hero:not(.page-hero) .hero-visual picture {
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.44) 24%, rgba(0, 0, 0, 0.86) 54%, #000000 82%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
  mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.44) 24%, rgba(0, 0, 0, 0.86) 54%, #000000 82%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  opacity: 1;
}

.hero:not(.page-hero) .hero-visual img {
  object-position: 72% center;
  opacity: 0.96;
  filter: brightness(0.9) contrast(1.08) saturate(0.88);
}

.page-hero .section {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 390px;
  padding: 42px 0 44px;
}

.qc-page-hero .section {
  min-height: 310px;
  padding: 34px 0 36px;
}

.page-hero .hero-copy {
  width: 100%;
  max-width: none;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.12;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  font-weight: 900;
}

.page-hero h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.qc-page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.page-hero .lede {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .eyebrow {
  display: inline-block;
  width: fit-content;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
}

.page-hero .eyebrow .brand-inline {
  padding: 0;
  background: transparent;
}

.page-hero .brand-inline {
  padding: 0 0.18em;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 900;
}

.page-hero .brand-inline-tower {
  color: var(--black);
}

.page-hero .brand-inline-bio {
  color: var(--red);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--grey);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--red);
}

.hero:not(.page-hero) .button.secondary {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.hero:not(.page-hero) .button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--soft-red);
  color: var(--red);
}

.content-section {
  background: var(--white);
  padding: 78px 0;
}

.page-hero + .content-section {
  padding-top: 32px;
}

.content-section.alt {
  background: var(--white);
}

.home-overview {
  background: var(--white);
  padding-top: 32px;
}

.home-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
}

.home-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fdfdfd;
  padding: 30px;
}

.home-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c8c8c8;
  content: "";
}

.home-panel h2 {
  margin-bottom: 16px;
}

.home-panel h3 {
  margin-bottom: 12px;
}

.home-panel .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
}

.home-panel p {
  margin: 0;
  color: var(--grey);
}

.home-panel p + p,
.home-panel p + .plain-list,
.home-panel p + .feature-list,
.home-panel p + .contact-form,
.product-copy p + .feature-list {
  margin-top: 18px;
}

.home-panel .section-actions {
  margin-top: auto;
  padding-top: 28px;
}

.home-panel-large {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.home-panel-red {
  border-color: #d6d6d6;
  background: #f6f6f6;
}

.home-panel:not(.home-panel-large):not(.home-panel-red):not(.home-panel-dark) {
  border-color: #d6d6d6;
  background: #f6f6f6;
}

.home-panel-dark {
  border-color: #4f4f4f;
  background: #434343;
  color: var(--white);
}

.home-panel-grid .home-panel-large,
.home-panel-grid .home-panel-wide,
.home-panel-grid .home-panel-dark {
  grid-column: 1 / -1;
}

.about-card-grid .home-panel-large,
.about-card-grid .home-panel-wide,
.about-card-grid .home-panel-dark {
  grid-column: auto;
}

.services-panel-grid .home-panel-large,
.services-panel-grid .home-panel-dark {
  grid-column: auto;
}

.services-panel-grid .services-panel-feature {
  grid-column: 1 / -1;
}

.services-cards-section {
  padding-bottom: var(--card-gap);
}

.services-software-section {
  padding-top: 0;
}

.services-software-card .section-heading {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 56px;
  margin-bottom: 0;
}

.services-software-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.services-software-copy .section-actions {
  margin-top: 24px;
  padding-top: 0;
}

.home-panel-large::before {
  background: var(--dark-red);
}

.home-panel-red::before {
  background: #c8c8c8;
}

.home-panel-dark::before {
  background: #2b2b2b;
}

.home-panel-large h2,
.home-panel-large h3,
.home-panel-large p,
.home-panel-large li,
.home-panel-large .brand-inline-tower,
.home-panel-dark h3,
.home-panel-dark h2,
.home-panel-dark .brand-inline-tower {
  color: var(--white);
}

.home-panel-large .eyebrow {
  color: var(--white);
}

.home-panel-large .brand-inline {
  padding: 0 0.18em;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 900;
}

.home-panel-large .brand-inline-tower {
  color: var(--black);
}

.home-panel-large .brand-inline-bio {
  color: var(--red);
}

.home-panel-large .inline-feature-grid {
  border-top-color: rgba(255, 255, 255, 0.34);
}

.home-panel-large .plain-list li::before,
.home-panel-large .feature-list li::before,
.home-panel-dark .plain-list li::before,
.home-panel-dark .feature-list li::before {
  background: var(--white);
}

.home-panel-large .button.secondary {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.home-panel-large .button.secondary:hover {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.feature-actions {
  margin-top: 18px;
}

.home-panel-dark .eyebrow {
  color: var(--white);
}

.home-panel-dark .brand-inline {
  padding: 0 0.18em;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 900;
}

.home-panel-dark .brand-inline-tower {
  color: var(--black);
}

.home-panel-dark .brand-inline-bio {
  color: var(--red);
}

.home-panel-dark p,
.home-panel-dark a,
.home-panel-dark .plain-list li,
.home-panel-dark .feature-list li {
  color: #eeeeee;
}

.home-panel-dark a:hover {
  color: var(--white);
}

.home-panel-dark .button {
  color: var(--white);
}

.home-panel-dark .button.secondary {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.home-panel-dark .button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.inline-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.inline-feature-grid h3 {
  margin-bottom: 10px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.66fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 0;
  color: var(--grey);
}

.home-panel .section-heading {
  margin-bottom: 0;
}

.home-panel-dark .section-heading p {
  color: #eeeeee;
}

.home-panel-dark .section-heading .eyebrow {
  color: var(--white);
}

.qc-implementation-panel {
  padding: 42px 46px;
}

.qc-implementation-content {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.qc-implementation-panel h2 {
  max-width: 560px;
}

.qc-implementation-detail {
  min-width: 0;
}

.qc-implementation-detail .section-actions {
  margin-top: 24px;
  padding-top: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: none;
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c8c8c8;
  content: "";
}

.card:nth-child(3n + 1)::before {
  background: var(--red);
}

.card:nth-child(3n + 2)::before {
  background: var(--black);
}

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

.card p {
  margin: 0;
  color: var(--grey);
}

.card p + .plain-list,
.card p + .feature-list {
  margin-top: 18px;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--red);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.story p:first-of-type {
  margin-top: 0;
}

.about-profile-card {
  grid-column: 1 / -1;
  gap: 24px;
}

.about-card-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.home-panel .about-card-intro {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 560px;
}

.about-card-heading + .about-profile {
  margin-top: 8px;
}

.about-profile {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-profile .profile-photo,
.about-profile .portrait-placeholder {
  width: 150px;
}

.about-profile .portrait-placeholder {
  min-height: 150px;
}

.profile-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.profile-panel::before {
  background: var(--red);
}

.profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.portrait-placeholder,
.screenshot-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed #b9b9b9;
  background:
    linear-gradient(135deg, rgba(var(--red-rgb), 0.08), transparent 45%),
    var(--soft);
  color: var(--mid-grey);
  font-weight: 700;
  text-align: center;
}

.portrait-placeholder {
  aspect-ratio: 1;
}

.profile-photo {
  display: block;
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.link-label {
  color: var(--red);
  font-weight: 700;
}

a.link-label:hover {
  color: var(--red);
}

.product-hero {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: none;
}

.product-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  content: "";
}

.product-hero .product-copy {
  min-width: 0;
  padding: 34px;
}

.product-hero h2 {
  margin-bottom: 16px;
}

.qc-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-color: rgba(var(--red-rgb), 0.68);
  background: var(--red);
  color: var(--white);
  padding: 30px;
}

.qc-overview-card::before {
  background: var(--dark-red);
}

.qc-overview-card .eyebrow,
.qc-overview-card h2,
.qc-overview-card p,
.qc-overview-card li {
  color: var(--white);
}

.qc-overview-intro {
  max-width: 920px;
}

.qc-overview-card h2 {
  max-width: 900px;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
}

.qc-overview-intro > p:not(.eyebrow) {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.qc-overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.76fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.qc-overview-details {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 4px;
}

.qc-overview-card .feature-list {
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.qc-overview-card .feature-list li::before {
  background: var(--white);
}

.qc-overview-card .button {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.qc-overview-card .button:hover {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.qc-overview-card .button.secondary {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.qc-overview-card .button.secondary:hover {
  border-color: #434343;
  background: #434343;
  color: var(--white);
}

.qc-overview-details .section-actions {
  margin-top: 18px;
}

.qc-overview-card .product-screenshot.report-preview {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1.58;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.qc-overview-card .product-screenshot.report-preview img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 20%;
  padding: 0;
  transform: translateY(-5%) scale(1.22);
  transform-origin: 50% 50%;
}

.qc-overview-section {
  padding-bottom: var(--card-gap);
}

.solutions-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "available future"
    "contact future";
  gap: var(--card-gap);
  row-gap: var(--card-gap);
  column-gap: var(--card-gap);
  align-items: start;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #f6f6f6;
  padding: 30px;
}

.catalog-available {
  grid-area: available;
  border-color: rgba(var(--red-rgb), 0.55);
}

.catalog-future {
  grid-area: future;
  align-self: stretch;
}

.catalog-contact {
  grid-area: contact;
  align-self: stretch;
  border-color: #4f4f4f;
  background: #434343;
  color: var(--white);
  padding-top: 24px;
  padding-bottom: 24px;
}

.catalog-contact p {
  margin: 0;
  color: var(--white);
}

.catalog-contact .brand-inline {
  padding: 0 0.18em;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 900;
}

.catalog-contact .brand-inline-tower {
  color: var(--black);
}

.catalog-contact .brand-inline-bio {
  color: var(--red);
}

.catalog-contact .section-actions {
  margin-top: 16px;
}

.catalog-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c8c8c8;
  content: "";
}

.catalog-available::before {
  background: var(--red);
}

.catalog-card .section-heading {
  margin-bottom: 28px;
}

.catalog-card > .section-heading {
  display: block;
}

.catalog-card > .section-heading > p {
  max-width: 780px;
}

.catalog-card > .section-heading h2 + p,
.catalog-card > .section-heading div + p {
  margin-top: 18px;
}

.catalog-available .section-heading {
  display: block;
  margin-bottom: 0;
}

.catalog-available .eyebrow {
  color: var(--red);
}

.catalog-future .eyebrow {
  color: var(--red);
}

.catalog-available .section-heading > p {
  max-width: 780px;
  color: var(--grey);
  font-size: 1.08rem;
  font-weight: 400;
}

.catalog-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--card-gap);
  align-items: stretch;
}

.catalog-available .catalog-product {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.catalog-product .product-copy {
  min-width: 0;
  padding: 0;
}

.catalog-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.catalog-available h3 {
  color: var(--red);
}

.catalog-available p {
  color: var(--grey);
}

.catalog-product .product-screenshot {
  min-height: 520px;
}

.catalog-product .product-screenshot.coverage-preview {
  min-height: 0;
  aspect-ratio: 1300 / 795;
}

.catalog-available .product-screenshot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.catalog-product .product-screenshot img {
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.catalog-product .coverage-preview img {
  object-fit: contain;
  object-position: 50% 36%;
  padding: 0;
  transform: scale(1.25);
  transform-origin: 50% 50%;
}

.catalog-card .section-actions {
  margin-top: 24px;
}

.catalog-available .button.secondary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.catalog-available .button.secondary:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.catalog-contact::before {
  background: #2b2b2b;
}

.catalog-contact .button {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.catalog-contact .button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.roadmap-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.roadmap-item {
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.roadmap-item:first-child {
  border-top: 0;
}

.roadmap-item h3 {
  color: var(--black);
  font-size: clamp(1.22rem, 1.9vw, 1.65rem);
}

.roadmap-item p {
  margin: 0;
  color: var(--grey);
}

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

.qc-workflow-section {
  padding: 0 0 var(--card-gap);
}

.qc-workflow-section + .qc-capabilities-section {
  padding-top: 0;
}

.qc-capabilities-section {
  padding-bottom: var(--card-gap);
}

.qc-deployment-section {
  padding-top: 0;
}

.qc-workflow-card {
  padding: 30px;
}

.workflow-heading {
  margin-bottom: 24px;
  text-align: center;
}

.workflow-heading .eyebrow {
  margin-bottom: 8px;
}

.workflow-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.workflow-step {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 32px;
  right: -19px;
  width: 38px;
  height: 2px;
  background: #b8b8b8;
  content: "";
}

.workflow-step:not(:last-child)::before {
  position: absolute;
  top: 27px;
  right: -20px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #b8b8b8;
  border-right: 2px solid #b8b8b8;
  transform: rotate(45deg);
  content: "";
}

.workflow-number {
  position: absolute;
  top: -8px;
  left: calc(50% - 34px);
  z-index: 1;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.workflow-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}

.workflow-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.workflow-step h3 {
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.workflow-step p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--grey);
  font-size: 0.94rem;
  line-height: 1.48;
}

.qc-capabilities-card {
  border-color: rgba(var(--red-rgb), 0.55);
  padding: 30px;
}

.qc-capabilities-card::before {
  background: var(--red);
}

.capability-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.capability-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.capability-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 12px 0 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.capability-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.capability-browser,
.capability-coverage {
  grid-column: 1 / -1;
}

.capability-run {
  grid-column: span 2;
}

.capability-run .capability-image {
  aspect-ratio: 1.35;
}

.capability-supporting {
  grid-column: span 3;
}

.capability-card h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 1.12rem;
}

.capability-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.48;
}

.capability-image {
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  aspect-ratio: 3314 / 1840;
}

.capability-coverage .capability-image {
  aspect-ratio: 1.78;
}

.capability-supporting .capability-image {
  aspect-ratio: 1.55;
}

.capability-browser .capability-image {
  aspect-ratio: 1.68;
}

.capability-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 49%;
  transform: scale(1.14);
  transform-origin: 50% 49%;
}

.capability-run .capability-image img {
  object-position: 50% 47%;
  transform: scale(1.5);
  transform-origin: 50% 47%;
}

.capability-browser .capability-image img {
  object-position: 50% 56%;
  transform: translateY(-5%) scale(1.30);
  transform-origin: 50% 56%;
}

.capability-supporting .capability-image img {
  object-position: 50% 52%;
  transform: scale(1.2);
  transform-origin: 50% 52%;
}

.capability-coverage .capability-image img {
  object-position: 50% 56%;
  transform: translateY(-2%) scale(1.39);
  transform-origin: 50% 56%;
}

.qc-deployment-stack {
  display: grid;
  gap: var(--card-gap);
}

.deployment-panel {
  gap: 20px;
  padding: 26px 30px 28px;
}

.deployment-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.deployment-heading .eyebrow {
  margin-bottom: 8px;
}

.deployment-heading h2 {
  max-width: 780px;
  margin: 0 auto 8px;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

.deployment-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 auto;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.5;
}

.deployment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.deployment-option {
  min-width: 0;
  text-align: center;
}

.deployment-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(var(--red-rgb), 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
}

.deployment-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.deployment-option h3 {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.deployment-option p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.48;
}

.deployment-actions {
  margin-top: 0;
  padding-top: 0;
}

.qc-contact-panel .section-actions {
  margin-top: 0;
  padding-top: 0;
}

.qc-contact-panel {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
}

.qc-contact-panel p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.25;
}

figure {
  margin: 0;
}

.product-screenshot {
  position: relative;
  min-height: 360px;
  background: #dedede;
}

.product-screenshot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.product-screenshot.report-preview {
  background: #f6f6f6;
  min-height: 560px;
}

.product-screenshot.report-preview img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.screenshot-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #f6f6f6;
  padding: 18px;
}

.screenshot-grid figure::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c8c8c8;
  content: "";
}

.screenshot-grid figure:nth-child(2n + 1)::before {
  background: var(--red);
}

.screenshot-placeholder {
  min-height: 230px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--red-rgb), 0.08), transparent 42%),
    linear-gradient(105deg, #eeeeee 0%, #f8f8f8 100%);
}

.caption {
  margin: 10px 0 0;
  color: var(--grey);
  font-size: 0.95rem;
}

.future-solution h3 {
  color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: 48px;
  align-items: start;
}

.contact-panel {
  border-color: rgba(var(--red-rgb), 0.72);
}

.contact-panel::before {
  background: var(--red);
}

.contact-panel p {
  margin: 0;
}

.contact-panel strong {
  color: var(--black);
}

.contact-panel p:not(.eyebrow) {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-panel .eyebrow + p {
  margin-top: 8px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(var(--red-rgb), 0.18);
  border-color: var(--red);
}

.form-status {
  min-height: 1.65em;
  margin: -4px 0 0;
  color: var(--grey);
  font-weight: 700;
}

.form-status[data-status="success"] {
  color: #1f6f43;
}

.form-status[data-status="error"] {
  color: var(--red);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.notice {
  position: relative;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #f6f6f6;
  padding: 30px;
}

.notice::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  content: "";
}

.placeholder-note {
  max-width: 680px;
  margin: 0;
  color: var(--grey);
}

.site-footer {
  border-top: 3px solid var(--red);
  background: var(--white);
  color: var(--grey);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.site-footer a {
  color: var(--black);
}

.site-footer .brand-inline-tower {
  color: var(--black);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: transparent;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown.is-active > .nav-parent {
    border-bottom-color: transparent;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 8px 0;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-dropdown-label {
    padding: 8px 0 2px;
    border-right: 0;
    background: transparent;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a[aria-current="page"] {
    background: transparent;
  }

  .hero .section,
  .section-heading,
  .solutions-catalog,
  .home-panel-grid,
  .catalog-product,
  .roadmap-list,
  .split,
  .contact-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .solutions-catalog {
    grid-template-areas:
      "available"
      "contact"
      "future";
  }

  .catalog-product .product-copy {
    padding-right: 0;
  }

  .catalog-available .catalog-product {
    gap: var(--card-gap);
    align-items: stretch;
  }

  .services-software-card .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .qc-implementation-content {
    gap: 26px;
    align-items: start;
  }

  .qc-overview-card {
    padding: 30px;
  }

  .qc-overview-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-panel-large,
  .home-panel-wide,
  .home-panel-dark {
    grid-column: auto;
  }

  .hero .section {
    min-height: auto;
    padding: 58px 0 46px;
  }

  .hero:not(.page-hero) .section {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 48px 0 40px;
  }

  .page-hero .section {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 48px 0 40px;
  }

  .qc-page-hero .section {
    padding: 38px 0 34px;
  }

  .page-hero .hero-copy,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
  }

  .hero:not(.page-hero) h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(2.05rem, 8.2vw, 3rem);
  }

  .hero:not(.page-hero) .lede {
    font-size: 1.05rem;
  }

  .hero:not(.page-hero) .hero-visual {
    position: relative;
    inset: auto;
    height: clamp(210px, 42vw, 290px);
    margin: -12px -14px 0 18px;
  }

  .hero:not(.page-hero) .hero-visual picture {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 16%, #000000 38%, #000000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 16%, #000000 38%, #000000 100%);
  }

  .hero:not(.page-hero) .hero-visual img {
    max-height: none;
    object-position: 72% center;
  }

  .grid.three,
  .grid.two,
  .inline-feature-grid,
  .workflow-steps,
  .capability-grid,
  .deployment-options,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 50%;
    width: 2px;
    height: 18px;
    transform: none;
  }

  .workflow-step:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -22px;
    left: calc(50% - 5px);
    transform: rotate(135deg);
  }

  .workflow-step:not(:last-child) {
    padding-bottom: 26px;
  }

  .workflow-step p {
    max-width: none;
  }

  .capability-card,
  .capability-run,
  .capability-supporting {
    grid-column: auto;
  }

  .deployment-options {
    gap: 18px;
  }

  .qc-contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .profile-panel {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .about-profile {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .about-profile .profile-photo,
  .about-profile .portrait-placeholder {
    width: 140px;
  }

  .about-profile .portrait-placeholder {
    min-height: 140px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section,
  .footer-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .brand-logo {
    width: 148px;
  }

  .content-section {
    padding: 58px 0;
  }

  .page-hero + .content-section {
    padding-top: 32px;
  }

  .qc-overview-section {
    padding-bottom: var(--card-gap);
  }

  .qc-workflow-section {
    padding: 0 0 var(--card-gap);
  }

  .qc-workflow-section + .qc-capabilities-section {
    padding-top: 0;
  }

  .qc-capabilities-section {
    padding-bottom: var(--card-gap);
  }

  .qc-deployment-section {
    padding-top: 0;
  }

  .home-panel {
    padding: 24px;
  }

  .form-row,
  .profile,
  .profile-panel,
  .about-profile {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    width: 160px;
  }

  .profile-photo {
    width: 160px;
  }

  .about-profile .profile-photo,
  .about-profile .portrait-placeholder {
    width: 160px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero:not(.page-hero) .section {
    padding-top: 40px;
  }

  .page-hero .section {
    padding-top: 40px;
  }

  .qc-page-hero .section {
    padding-top: 34px;
  }

  .hero:not(.page-hero) h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.25rem);
  }

  .hero:not(.page-hero) .hero-visual {
    height: 220px;
    margin-right: -18px;
  }

  .product-screenshot {
    min-height: 240px;
  }

  .product-screenshot.report-preview {
    min-height: 460px;
  }

  .qc-overview-card {
    padding: 24px;
  }

  .deployment-panel,
  .qc-contact-panel {
    padding: 22px;
  }

  .qc-overview-card .product-screenshot.report-preview {
    min-height: 0;
    aspect-ratio: 1.34;
  }

  .qc-overview-card h2 {
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
  }

  .capability-card {
    padding: 14px;
  }

  .deployment-icon {
    width: 52px;
    height: 52px;
  }
}
