@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/oswald-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Varela Round";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/varela-round-latin.woff2") format("woff2");
}

:root {
  --background: #ffffff;
  --surface: #f5f8fc;
  --surface-strong: #eaf2fb;
  --blue: #6195cd;
  --blue-deep: #2f5f8e;
  --red: #d5475e;
  --red-deep: #a62a3c;
  --ink: #2f2f2f;
  --muted: #5d6675;
  --line: #d8e0eb;
  --line-strong: #bdcad9;
  --white: #ffffff;
  --shadow: 0 26px 68px rgba(33, 47, 65, 0.14);
  --shadow-tight: 0 14px 34px rgba(33, 47, 65, 0.1);
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-space: clamp(88px, 10vw, 144px);
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Varela Round", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(213, 71, 94, 0.5);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--blue-deep);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid rgba(216, 224, 235, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(33, 47, 65, 0.1);
}

.nav {
  display: grid;
  grid-template-columns: minmax(150px, 205px) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: min(100% - (var(--gutter) * 2), var(--container));
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: min(100%, 195px);
  align-items: center;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-links a {
  position: relative;
  padding: 14px 0;
  color: #495464;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: right 220ms ease;
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-links .nav-cta {
  min-height: 48px;
  margin-left: 2px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(47, 95, 142, 0.2);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--red-deep);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - 84px));
  overflow: hidden;
  align-items: center;
  background: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImageEnter 1000ms 120ms cubic-bezier(0.2, 0.78, 0.18, 1) both;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 35%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.26) 72%, rgba(255, 255, 255, 0.04) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 80px;
}

.hero-copy {
  width: min(100%, 760px);
  animation: heroEnter 900ms cubic-bezier(0.2, 0.78, 0.18, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow:has(.status-dot)::before {
  display: none;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  animation: statusPulse 1900ms ease-out infinite;
}

.display-title,
.section-title,
h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-title {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: 112px;
  line-height: 0.92;
}

.display-title span {
  display: block;
}

.solid {
  color: var(--blue);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  text-stroke: 2px var(--red);
}

.hero-lead,
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #3e4754;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  max-width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  padding: 15px 24px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -70% auto -70% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  transform: rotate(18deg) translateX(-120%);
  transition: transform 620ms ease;
}

.button::after {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "↗";
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: rotate(18deg) translateX(430%);
}

.button-primary {
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 18px 42px rgba(47, 95, 142, 0.24);
}

.button-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 20px 48px rgba(166, 42, 60, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.text-link::after {
  color: var(--red);
  content: "→";
  font-family: var(--body);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

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

.trust-grid > div {
  min-height: 132px;
  border-right: 1px solid rgba(47, 95, 142, 0.16);
  padding: 28px 24px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid small,
.equipment-copy small,
.contact-panel small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-intro strong,
.trust-point span {
  display: block;
  color: var(--ink);
  line-height: 1.4;
}

.trust-intro strong {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}

.section {
  padding-block: var(--section-space);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: 58px;
}

.section-title {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 70px;
  line-height: 0.98;
}

.section-title span {
  display: block;
}

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

.card {
  position: relative;
  background: var(--white);
}

.feature-card {
  min-height: 330px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 38px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.feature-card:hover {
  z-index: 2;
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-number {
  display: block;
  margin-bottom: 64px;
  color: var(--red);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-card h3,
.equipment-card h3,
.process-step h3,
.faq-item h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.04;
}

.feature-card p,
.equipment-card p,
.process-step p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.customer-use-section {
  border-top: 1px solid var(--line);
}

.customer-use-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.customer-use-copy .section-title {
  margin-bottom: 28px;
  font-size: 62px;
}

.customer-use-copy .section-lead {
  margin-bottom: 28px;
  font-size: 18px;
}

.compact-list {
  gap: 13px;
}

.customer-use-media {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.customer-use-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.customer-use-media:hover img {
  transform: scale(1.025);
}

.service-band {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.image-story-media {
  position: relative;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-story-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.image-story-media:hover img {
  transform: scale(1.025);
}

.image-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(47, 47, 47, 0.88);
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}

.image-story-copy .section-title {
  margin-bottom: 28px;
  font-size: 62px;
}

.image-story-copy .section-lead {
  margin-bottom: 26px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  color: #3f4855;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--red);
  content: "✓";
  font-size: 13px;
  font-weight: 700;
}

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

.equipment-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: end center;
  background: var(--surface-strong);
}

.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.equipment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.pricing-note {
  display: block;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.process-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

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

.process-grid::before {
  position: absolute;
  top: 39px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  content: "";
  transform-origin: left center;
  animation: processLine both;
  animation-timeline: view();
  animation-range: entry 12% cover 44%;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 300px;
  border-left: 1px solid var(--line-strong);
  padding: 0 28px 30px;
}

.process-step:last-child {
  border-right: 1px solid var(--line-strong);
}

.process-step > span {
  display: inline-grid;
  width: 78px;
  height: 78px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  font-family: var(--display);
  font-size: 28px;
  box-shadow: var(--shadow-tight);
  transform: translateY(14px);
  transition: transform 760ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.process-step.is-visible > span {
  transform: translateY(0);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.cta-band::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 8px;
  background: var(--red);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: 40px 72px;
  align-items: end;
  padding-block: 90px;
}

.cta-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: 76px;
  line-height: 0.95;
}

.cta-inner h2 span {
  display: block;
}

.outline-light {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.88);
  text-stroke: 1.5px rgba(255, 255, 255, 0.88);
}

.cta-inner p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.contact-copy .section-title {
  margin-bottom: 28px;
}

.contact-panel {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.contact-panel > div {
  border-bottom: 1px solid var(--line-strong);
  padding: 22px 0;
}

.contact-panel a:not(.button),
.contact-panel address {
  color: var(--ink);
  font-size: 18px;
  font-style: normal;
}

.contact-panel > .button {
  margin-top: 28px;
  justify-self: start;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.faq-item {
  min-height: 240px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 34px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.55fr));
  gap: 44px 72px;
  padding-block: 64px;
}

.footer-brand-block img {
  width: 205px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 8px 12px;
}

.footer-brand-block p {
  max-width: 520px;
}

.site-footer p,
.site-footer a,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 24px;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(28px);
  transition: opacity 840ms ease, filter 840ms ease, transform 840ms cubic-bezier(0.2, 0.78, 0.18, 1);
  transition-delay: var(--stagger-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(34px);
    clip-path: inset(0 0 18% 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    clip-path: inset(0);
  }
}

@keyframes heroImageEnter {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(213, 71, 94, 0.34); }
  70% { box-shadow: 0 0 0 12px rgba(213, 71, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(213, 71, 94, 0); }
}

@keyframes processLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1200px) {
  .display-title {
    font-size: 86px;
  }

  .section-title {
    font-size: 60px;
  }

  .nav-links {
    gap: 18px;
  }

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

  .product-stage {
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(145px, 190px) auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-tight);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin: 0;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .display-title {
    font-size: 68px;
  }

  .hero-shade {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.7) 68%, rgba(255, 255, 255, 0.14) 100%);
  }

  .hero-copy {
    max-width: 620px;
  }

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

  .trust-grid > div:first-child {
    padding-left: 24px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(47, 95, 142, 0.16);
  }

  .feature-grid {
    border-left: 0;
  }

  .feature-card:first-child {
    grid-column: 1 / -1;
  }

  .split-heading,
  .image-story,
  .customer-use-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .image-story-media {
    min-height: 520px;
  }

  .image-story-media img,
  .customer-use-media,
  .customer-use-media img {
    min-height: 520px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    border-bottom: 1px solid var(--line-strong);
  }

  .cta-inner .eyebrow {
    margin-bottom: -6px;
  }

  .cta-inner h2 {
    font-size: 64px;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 76px;
  }

  .brand {
    width: 152px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero-media {
    top: 350px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 45%, rgba(255, 255, 255, 0.92) 53%, rgba(255, 255, 255, 0.22) 76%, rgba(255, 255, 255, 0.08) 100%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 54px;
    padding-bottom: 330px;
  }

  .display-title {
    margin-bottom: 22px;
    font-size: 50px;
    line-height: 0.94;
  }

  .hero-lead,
  .section-lead {
    font-size: 17px;
    line-height: 1.65;
  }

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

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

  .trust-grid,
  .feature-grid,
  .equipment-grid,
  .process-grid,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 95, 142, 0.16);
    padding: 22px 0;
  }

  .trust-grid > div:first-child {
    padding-left: 0;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-title,
  .image-story-copy .section-title,
  .customer-use-copy .section-title {
    font-size: 44px;
  }

  .split-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .feature-card:first-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 270px;
    padding: 28px;
  }

  .feature-number {
    margin-bottom: 38px;
  }

  .image-story-media,
  .image-story-media img,
  .customer-use-media,
  .customer-use-media img {
    min-height: 380px;
  }

  .image-story-media img {
    object-position: 60% center;
  }

  .equipment-card {
    min-height: auto;
  }

  .product-stage {
    min-height: 430px;
  }

  .equipment-copy {
    padding: 28px;
  }

  .process-step,
  .process-step:last-child {
    min-height: 250px;
    border-right: 1px solid var(--line-strong);
    padding: 0 28px 28px;
  }

  .cta-inner {
    padding-block: 68px;
  }

  .cta-inner h2 {
    font-size: 48px;
  }

  .contact-panel > .button {
    width: 100%;
  }

  .faq-item {
    min-height: auto;
    padding: 28px;
  }

  .footer-main {
    padding-block: 52px;
  }

  .footer-bottom {
    padding-block: 22px;
  }
}

@media (max-width: 390px) {
  .display-title {
    font-size: 44px;
  }

  .section-title,
  .image-story-copy .section-title,
  .customer-use-copy .section-title {
    font-size: 40px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }
}

@media (hover: none), (pointer: coarse) {
  .feature-card:hover,
  .equipment-card:hover,
  .button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
