:root {
  --wcs-red: #ee1b2d;
  --wcs-red-dark: #b91523;
  --wcs-black: #0b0c0e;
  --wcs-ink: #17191d;
  --wcs-muted: #5d626b;
  --wcs-line: #d8dadd;
  --wcs-soft: #f4f5f6;
  --wcs-paper: #ffffff;
  --wcs-success: #17633e;
  --wcs-max: 1240px;
  --wcs-radius: 5px;
  --wcs-header-height: 132px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wcs-paper);
  color: var(--wcs-ink);
  font-size: 17px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(238, 27, 45, 0.42);
  outline-offset: 3px;
}

::selection {
  background: rgba(238, 27, 45, 0.2);
  color: var(--wcs-black);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--wcs-radius);
  background: var(--wcs-paper);
  color: var(--wcs-black);
  padding: 10px 14px;
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 48px), var(--wcs-max));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--wcs-paper);
  border-bottom: 1px solid #25272b;
}

.identity-row {
  background: var(--wcs-paper);
}

.identity-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand-van {
  width: 108px;
  height: 48px;
  object-fit: contain;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #41454c;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.utility-links a:hover {
  color: var(--wcs-red-dark);
}

.utility-context {
  color: #72767d;
  font-weight: 500;
}

.nav-row {
  min-height: 54px;
  background: var(--wcs-black);
  color: var(--wcs-paper);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 17px;
  color: #e9e9ea;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav .mobile-nav-link {
  display: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 17px;
  bottom: 0;
  left: 17px;
  height: 3px;
  background: transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  background: #17191d;
  color: #ffffff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  background: var(--wcs-red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: 38px;
  border: 1px solid var(--wcs-red-dark);
  border-radius: 3px;
  background: var(--wcs-red-dark);
  color: #ffffff;
  padding: 7px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: #8f101b;
  background: #8f101b;
}

.nav-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  align-self: center;
  border: 1px solid #3a3d42;
  border-radius: 3px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 20px;
  height: 14px;
  margin: 0 auto;
  display: grid;
  align-content: space-between;
}

.nav-toggle-lines span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--wcs-black);
  color: #ffffff;
}

.home-hero {
  min-height: 620px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.home-hero .hero-image {
  object-position: center 58%;
}

.hero-shade {
  z-index: -1;
  background: rgba(0, 0, 0, 0.48);
}

.hero-inner {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 70px 0 78px;
}

.hero-copy {
  width: min(620px, 100%);
}

.kicker {
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin: 0 11px 3px 0;
  background: var(--wcs-red);
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.55rem;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.25rem;
}

.hero-copy > p:not(.kicker):not(.breadcrumb) {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  line-height: 1.6;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border-color: var(--wcs-red-dark);
  background: var(--wcs-red-dark);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #8f101b;
  background: #8f101b;
}

.button-secondary {
  border-color: #bbc0c6;
  background: #ffffff;
  color: var(--wcs-ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #7c8188;
  background: var(--wcs-soft);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #ffffff;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.24);
}

.text-link {
  color: var(--wcs-red-dark);
  font-weight: 700;
}

.proof-band {
  border-bottom: 1px solid var(--wcs-line);
  background: var(--wcs-paper);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-left: 1px solid var(--wcs-line);
  padding: 20px 26px;
}

.proof-item:last-child {
  border-right: 1px solid var(--wcs-line);
}

.proof-item strong {
  font-size: 1rem;
  line-height: 1.3;
}

.proof-item span {
  color: var(--wcs-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--wcs-soft);
}

.section-black {
  background: var(--wcs-black);
  color: #ffffff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 38px;
}

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

.section-black .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-label {
  margin-bottom: 13px;
  color: var(--wcs-red-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-black .section-label {
  color: #ff6673;
}

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

.capability-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--wcs-line);
  padding: 28px 0 30px;
}

.capability-number {
  color: var(--wcs-red-dark);
  font-size: 0.83rem;
  font-weight: 700;
}

.capability-item p {
  margin: 0;
  color: var(--wcs-muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: 72px;
}

.feature-row.reverse {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.08fr);
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--wcs-radius);
  background: #dfe1e4;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-copy p {
  color: var(--wcs-muted);
}

.feature-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  border-top: 1px solid var(--wcs-line);
  padding: 13px 0 13px 22px;
  font-weight: 600;
}

.feature-points li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--wcs-red);
}

.project-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--wcs-radius);
  background: #dfe1e4;
}

.project-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--wcs-line);
  border-bottom: 1px solid var(--wcs-line);
}

.project-facts div {
  padding: 20px 22px;
  border-right: 1px solid var(--wcs-line);
}

.project-facts div:last-child {
  border-right: 0;
}

.project-facts strong,
.project-facts span {
  display: block;
}

.project-facts span {
  margin-top: 3px;
  color: var(--wcs-muted);
  font-size: 0.84rem;
}

.software-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.software-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.software-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #393b40;
}

.software-product {
  min-height: 190px;
  border-right: 1px solid #393b40;
  border-bottom: 1px solid #393b40;
  padding: 30px 28px 28px 0;
}

.software-product:nth-child(3n) {
  border-right: 0;
  padding-left: 28px;
}

.software-product:nth-child(3n + 2) {
  padding-left: 28px;
}

.software-product p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.software-product a {
  color: #ffffff;
  font-weight: 700;
}

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
}

.confidence-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.confidence-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--wcs-line);
  padding: 22px 0;
}

.confidence-list li:last-child {
  border-bottom: 1px solid var(--wcs-line);
}

.confidence-list span {
  color: var(--wcs-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: start;
  gap: 90px;
}

.contact-details {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  border-top: 1px solid var(--wcs-line);
  padding: 14px 0;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #afb3b9;
  border-radius: 3px;
  background: #ffffff;
  color: var(--wcs-ink);
  padding: 10px 12px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--wcs-success);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  background: var(--wcs-black);
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 54px;
  padding: 68px 0 54px;
}

.footer-wordmark {
  display: grid;
  width: fit-content;
  gap: 1px;
  color: #ffffff;
  line-height: 1;
}

.footer-wordmark strong {
  font-size: 1.8rem;
}

.footer-wordmark strong span {
  color: #ff6673;
}

.footer-wordmark small {
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 400px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column h2 {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #33353a;
  padding: 22px 0 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.footer-legal p {
  margin: 0;
}

.interior-hero {
  min-height: 510px;
}

.interior-hero .hero-inner {
  min-height: 510px;
}

.interior-hero .hero-image {
  object-position: center;
}

.interior-hero h1 {
  max-width: 760px;
  font-size: 3.35rem;
}

.breadcrumb {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: inherit;
}

.ownership-line {
  border-bottom: 1px solid var(--wcs-line);
  background: var(--wcs-paper);
}

.ownership-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ownership-inner strong {
  color: var(--wcs-black);
}

.ownership-inner span {
  color: var(--wcs-muted);
  font-size: 0.9rem;
}

.service-scope {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.service-scope > p {
  color: var(--wcs-muted);
}

.service-list {
  border-top: 1px solid var(--wcs-line);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  border-bottom: 1px solid var(--wcs-line);
  padding: 24px 0;
}

.service-list h3,
.service-list p {
  margin: 0;
}

.service-list p {
  color: var(--wcs-muted);
}

.process-list {
  counter-reset: process;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 26px;
  border-top: 1px solid var(--wcs-line);
  padding: 24px 0;
}

.process-list li::before {
  content: "0" counter(process);
  color: var(--wcs-red-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.process-list p {
  margin: 5px 0 0;
  color: var(--wcs-muted);
}

.product-hero {
  min-height: 590px;
}

.product-hero .hero-inner {
  min-height: 590px;
}

.product-hero .hero-image {
  object-position: center;
}

.product-hero .hero-shade {
  background: rgba(0, 0, 0, 0.52);
}

.release-strip {
  border-bottom: 1px solid var(--wcs-line);
  background: #ffffff;
}

.interface-section {
  padding: 72px 0 34px;
  background: #ffffff;
}

.interface-preview {
  margin: 0;
}

.interface-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--wcs-line);
  border-radius: var(--wcs-radius);
  object-fit: cover;
  object-position: top left;
}

.interface-preview figcaption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--wcs-line);
  padding: 14px 0;
  color: var(--wcs-muted);
  font-size: 0.86rem;
}

.interface-preview figcaption strong {
  color: var(--wcs-ink);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.release-grid div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-left: 1px solid var(--wcs-line);
  padding: 18px 24px;
}

.release-grid div:last-child {
  border-right: 1px solid var(--wcs-line);
}

.release-grid span {
  color: var(--wcs-muted);
  font-size: 0.82rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--wcs-line);
}

.outcome-grid article {
  min-height: 255px;
  border-right: 1px solid var(--wcs-line);
  border-bottom: 1px solid var(--wcs-line);
  padding: 34px 32px 34px 0;
}

.outcome-grid article:nth-child(2),
.outcome-grid article:nth-child(3) {
  padding-left: 32px;
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid p {
  color: var(--wcs-muted);
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 70px;
}

.walkthrough-copy p {
  color: var(--wcs-muted);
}

.video-frame {
  overflow: hidden;
  border: 1px solid #aeb2b8;
  border-radius: var(--wcs-radius);
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.release-details {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 80px;
}

.release-table {
  margin: 0;
}

.release-table div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--wcs-line);
  padding: 14px 0;
}

.release-table div:last-child {
  border-bottom: 1px solid var(--wcs-line);
}

.release-table dt {
  color: var(--wcs-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.release-table dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.release-table code {
  font-size: 0.78rem;
}

.notice-band {
  border-top: 1px solid var(--wcs-line);
  border-bottom: 1px solid var(--wcs-line);
  background: var(--wcs-soft);
}

.notice-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: 60px;
  padding: 36px 0;
}

.notice-inner h2 {
  margin: 0;
  font-size: 1.35rem;
}

.notice-inner p {
  margin: 0;
  color: var(--wcs-muted);
}

.anchor-marker {
  position: relative;
  top: calc(-1 * var(--wcs-header-height));
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}

.company-locations {
  margin-top: 28px;
  color: var(--wcs-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.reference-list {
  border-top: 1px solid var(--wcs-line);
}

.reference-item {
  border-bottom: 1px solid var(--wcs-line);
}

.reference-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 96px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
}

.reference-item summary::-webkit-details-marker {
  display: none;
}

.reference-item summary strong,
.reference-item summary small {
  display: block;
}

.reference-item summary strong {
  font-size: 1.05rem;
}

.reference-item summary small {
  margin-top: 4px;
  color: var(--wcs-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.reference-toggle {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #b7bbc1;
  border-radius: 50%;
  color: var(--wcs-red-dark);
  font-size: 1.35rem;
  line-height: 31px;
  text-align: center;
}

.reference-item[open] .reference-toggle {
  transform: rotate(45deg);
}

.reference-item blockquote {
  max-width: 900px;
  margin: 0;
  padding: 0 56px 30px 0;
  color: #454a52;
}

.reference-item blockquote p {
  margin: 0 0 12px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(480px, 1fr);
  align-items: start;
  gap: 90px;
}

.security-note {
  margin-top: 26px;
  border-left: 3px solid var(--wcs-red-dark);
  color: var(--wcs-muted);
  padding: 2px 0 2px 18px;
  font-size: 0.9rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #34383e;
  font-size: 0.88rem;
  font-weight: 600;
}

.check-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--wcs-red-dark);
}

.release-note {
  margin-top: 18px;
  color: var(--wcs-muted);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .identity-inner {
    min-height: 72px;
  }

  .brand-van {
    width: 88px;
  }

  .brand-logo {
    width: 214px;
  }

  .utility-context {
    display: none;
  }

  .primary-nav a {
    padding-right: 11px;
    padding-left: 11px;
  }

  .nav-cta {
    padding-right: 12px;
    padding-left: 12px;
  }

  .feature-row,
  .feature-row.reverse,
  .software-intro,
  .contact-grid,
  .request-layout,
  .walkthrough-grid,
  .release-details {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --wcs-header-height: 120px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--wcs-max));
  }

  .utility-links {
    gap: 16px;
  }

  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 54px;
    right: -18px;
    left: -18px;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border-bottom: 1px solid #36383d;
    background: var(--wcs-black);
    padding: 10px 18px 22px;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 50px;
    border-bottom: 1px solid #2e3034;
    padding: 0 4px;
  }

  .primary-nav .mobile-nav-link {
    display: flex;
  }

  .primary-nav a::after {
    right: auto;
    bottom: 12px;
    left: 4px;
    width: 28px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .interior-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .home-hero,
  .hero-inner {
    min-height: 570px;
  }

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

  .proof-item:nth-child(3),
  .proof-item:nth-child(4),
  .release-grid div:nth-child(3),
  .release-grid div:nth-child(4) {
    border-top: 1px solid var(--wcs-line);
  }

  .section-heading,
  .feature-row,
  .feature-row.reverse,
  .software-intro,
  .confidence-grid,
  .contact-grid,
  .request-layout,
  .service-scope,
  .walkthrough-grid,
  .release-details,
  .notice-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 10px;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

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

  .software-product:nth-child(3n),
  .software-product:nth-child(3n + 2),
  .software-product {
    border-right: 1px solid #393b40;
    padding: 26px 24px;
  }

  .software-product:nth-child(2n) {
    border-right: 0;
  }

  .outcome-grid article,
  .outcome-grid article:nth-child(2),
  .outcome-grid article:nth-child(3) {
    padding: 30px 26px;
  }

  .outcome-grid article:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  :root {
    --wcs-header-height: 108px;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--wcs-max));
  }

  .identity-inner {
    min-height: 62px;
  }

  .brand {
    gap: 8px;
  }

  .brand-van {
    width: 62px;
    height: 36px;
  }

  .brand-logo {
    width: min(190px, 52vw);
  }

  .utility-links {
    display: none;
  }

  .nav-row,
  .nav-inner {
    min-height: 46px;
  }

  .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .primary-nav {
    top: 46px;
    right: -14px;
    left: -14px;
    max-height: calc(100vh - 108px);
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-cta {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.16rem;
  }

  .home-hero,
  .hero-inner {
    min-height: 540px;
  }

  .home-hero .hero-image {
    object-position: 62% center;
  }

  .hero-inner {
    align-items: end;
    padding: 54px 0 48px;
  }

  .hero-copy > p:not(.kicker):not(.breadcrumb) {
    font-size: 1rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
  }

  .hero-actions .button,
  .button-row .button {
    flex: 1 1 100%;
  }

  .proof-list,
  .release-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item,
  .release-grid div {
    min-height: 98px;
    padding: 16px 14px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .capability-grid,
  .software-products,
  .outcome-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .capability-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 0 24px;
  }

  .feature-media,
  .feature-media img {
    min-height: 290px;
  }

  .project-photo {
    min-height: 250px;
  }

  .project-facts {
    grid-template-columns: 1fr;
  }

  .project-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--wcs-line);
  }

  .project-facts div:last-child {
    border-bottom: 0;
  }

  .software-product:nth-child(3n),
  .software-product:nth-child(3n + 2),
  .software-product,
  .software-product:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    padding: 24px 0;
  }

  .confidence-list li,
  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-grid {
    gap: 42px;
  }

  .request-layout {
    gap: 42px;
  }

  .reference-item summary {
    min-height: 82px;
    gap: 16px;
  }

  .reference-item blockquote {
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0 38px;
  }

  .footer-legal {
    display: grid;
    gap: 8px;
  }

  .interior-hero,
  .interior-hero .hero-inner,
  .product-hero,
  .product-hero .hero-inner {
    min-height: 520px;
  }

  .interior-hero h1 {
    font-size: 2.35rem;
  }

  .interface-section {
    padding: 48px 0 18px;
  }

  .interface-preview figcaption {
    display: grid;
    gap: 3px;
  }

  .ownership-inner {
    display: grid;
    align-content: center;
    padding: 18px 0;
  }

  .outcome-grid article,
  .outcome-grid article:nth-child(2),
  .outcome-grid article:nth-child(3) {
    grid-column: auto;
    border-right: 0;
    padding: 26px 0;
  }

  .release-table div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .notice-inner {
    gap: 12px;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .nav-cta {
    display: none !important;
  }

  .hero,
  .section-black {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .hero-image,
  .hero-shade {
    display: none;
  }
}
