:root {
  --gw-ink: #111111;
  --gw-navy: #001a32;
  --gw-blue: #006bdc;
  --gw-footer: #2d3845;
  --gw-pale: #f4f8fa;
  --gw-line: rgba(17, 17, 17, 0.16);
  --gw-white-line: rgba(255, 255, 255, 0.28);
  --gw-page: min(1246px, 86.5vw);
}

html {
  scroll-behavior: smooth;
}

body.gw-theme {
  color: var(--gw-ink);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  letter-spacing: 0;
}

body.gw-theme::before,
body.gw-theme::after {
  display: none;
}

body.gw-theme main {
  position: relative;
  z-index: 1;
  overflow: clip;
}

body.gw-theme main > section.float-section {
  opacity: 1 !important;
  transform: none !important;
}

.gw-wrapper {
  width: var(--gw-page);
  margin: 0 auto;
}

.gw-kicker {
  margin: 0 0 24px;
  color: var(--gw-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.gw-heading {
  max-width: 960px;
  margin: 0 auto 88px;
  text-align: center;
}

.gw-heading h2 {
  margin: 0;
  color: var(--gw-ink);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.12;
}

.gw-heading > p:last-child {
  max-width: 760px;
  margin: 34px auto 0;
  color: #59636b;
  font-size: 18px;
  line-height: 1.8;
}

.gw-motion .gw-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Header */
.gw-theme .site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 72px;
  margin: 0;
  padding: 0 5.6vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  transition: background-color 0.65s ease, box-shadow 0.65s ease, transform 0.45s ease;
}

.gw-theme .site-header::after {
  display: none;
}

.gw-theme .site-header.is-scrolled {
  height: 72px;
  padding: 0 5.6vw;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(12px);
}

.gw-theme .site-header.is-hidden {
  transform: translateY(-105%);
}

.gw-theme .brand {
  display: flex;
  width: 138px;
  min-width: 138px;
  height: 72px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.gw-theme .brand-logo,
.gw-theme .site-header.is-scrolled .brand-logo {
  width: 138px;
  max-height: 45px;
  object-fit: contain;
  content: url("xhero-logo.png?v=20260710-1");
  filter: drop-shadow(0 1px 8px rgba(255, 255, 255, 0.52));
  transition: opacity 0.35s ease;
}

.gw-theme .site-header.is-scrolled .brand-logo {
  content: url("xhero-logo.png?v=20260710-1");
  filter: none;
}

.gw-theme .main-nav {
  display: flex;
  height: 72px;
  align-items: center;
  gap: 0;
  padding: 0;
}

.gw-theme .main-nav a,
.gw-theme .home-header .main-nav a {
  position: relative;
  display: flex;
  height: 72px;
  align-items: center;
  margin: 0 0 0 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

.gw-theme .main-nav a::before {
  display: none;
}

.gw-theme .main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gw-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.gw-theme .main-nav a:hover,
.gw-theme .main-nav a.active,
.gw-theme .main-nav .nav-cta:hover,
.gw-theme .main-nav .nav-cta.active {
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.gw-theme .main-nav a:hover::after,
.gw-theme .main-nav a.active::after {
  transform: scaleX(1);
}

.gw-theme .main-nav .nav-cta,
.gw-theme .home-header .main-nav .nav-cta {
  margin-left: 38px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: transparent;
}

.gw-theme .site-header.is-scrolled .main-nav a {
  color: #333333;
}

.gw-theme .site-header.is-scrolled .main-nav a:hover,
.gw-theme .site-header.is-scrolled .main-nav a.active {
  color: #111111;
}

.gw-theme .site-header.is-scrolled .main-nav .nav-cta {
  border-left-color: rgba(17, 17, 17, 0.2);
  color: #111111;
}

/* Static hero */
.gw-hero {
  position: relative;
  height: 100vh;
  min-height: 0;
  background: var(--gw-navy);
}

.gw-hero__sticky {
  position: relative;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

.gw-hero__sticky > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.gw-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 21, 40, 0.5), rgba(0, 21, 40, 0.28) 48%, rgba(0, 14, 28, 0.44));
}

.gw-hero__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 7vw 0;
  text-align: center;
  opacity: var(--gw-hero-copy-opacity, 1);
  transform: translate3d(0, var(--gw-hero-copy-shift, 0), 0);
  will-change: opacity, transform;
}

.gw-hero__primary,
.gw-hero__secondary,
.gw-hero__meta {
  position: static;
  width: min(1120px, 86vw);
  margin: 0;
}

.gw-hero__primary {
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 10px 28px rgba(0, 13, 26, 0.28);
}

.gw-hero__headline {
  white-space: nowrap;
}

.gw-hero__secondary {
  margin-top: 8px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 10px 28px rgba(0, 13, 26, 0.28);
}

.gw-hero__meta {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  text-transform: uppercase;
}

.gw-hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  transform: translateX(-50%);
}

.gw-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.55);
}

/* Home sections */
.gw-intro-dark {
  display: flex;
  min-height: 56vh;
  align-items: center;
  padding: 110px 0;
  color: #ffffff;
  background: #151b20;
}

.gw-intro-dark .gw-wrapper {
  max-width: 1060px;
}

.gw-intro-dark .gw-kicker {
  color: rgba(255, 255, 255, 0.54);
}

.gw-intro-dark h2 {
  margin: 0 0 34px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.16;
}

.gw-intro-dark p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.85;
}

.gw-feature {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--gw-pale);
}

.gw-feature__media {
  position: absolute;
  inset: 0 28% 0 0;
  overflow: hidden;
}

.gw-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gw-feature:hover .gw-feature__media img {
  transform: scale(1.025);
}

.gw-feature--automation .gw-feature__media img {
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.05);
}

.gw-feature__panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 8.5vw;
  width: min(390px, 32vw);
  min-height: 330px;
  padding: 58px 48px;
  color: #ffffff;
  background: var(--gw-navy);
  transform: translateY(-50%);
}

.gw-feature--reverse .gw-feature__media {
  inset: 0 0 0 28%;
}

.gw-feature--reverse .gw-feature__panel {
  right: auto;
  left: 8.5vw;
}

.gw-feature__index {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
}

.gw-feature__panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
}

.gw-feature__panel p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.gw-link {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding-left: 44px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.gw-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.gw-link:hover {
  color: #ffffff;
}

.gw-link:hover::before {
  width: 36px;
}

.gw-link--dark {
  margin-top: 42px;
  color: var(--gw-ink);
}

.gw-link--dark:hover {
  color: var(--gw-blue);
}

.gw-image-statement {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #eaf1f4;
}

.gw-image-statement > img {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.84) contrast(1.06);
}

.gw-image-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 19, 36, 0.46), rgba(0, 19, 36, 0.12) 66%);
}

.gw-image-statement__copy {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 50%;
  width: min(860px, 84vw);
  color: #ffffff;
  text-align: center;
  transform: translateX(-50%);
}

.gw-motion .gw-image-statement__copy {
  transform: translate(-50%, 40px);
}

.gw-motion .gw-image-statement__copy.is-visible {
  transform: translate(-50%, 0);
}

.gw-image-statement__copy h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 12px 34px rgba(0, 13, 26, 0.34);
}

.gw-image-statement__copy p {
  max-width: 820px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
  text-shadow: 0 6px 20px rgba(0, 13, 26, 0.28);
}

.gw-system {
  padding: 150px 0 170px;
  background: #ffffff;
}

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

.gw-product-line {
  min-height: 250px;
  padding: 38px 34px;
  border-right: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
  color: var(--gw-ink);
  background: #ffffff;
  transition: color 0.4s ease, background-color 0.4s ease;
}

.gw-product-line:hover {
  color: #ffffff;
  background: var(--gw-navy);
}

.gw-product-line > span {
  display: block;
  margin-bottom: 54px;
  color: var(--gw-blue);
  font-family: "DIN Alternate", Arial, sans-serif;
  font-size: 13px;
}

.gw-product-line h3 {
  margin: 0;
  color: inherit;
  font-size: 27px;
  font-weight: 600;
}

.gw-product-line p {
  margin: 14px 0 0;
  color: #647079;
  font-size: 14px;
  line-height: 1.6;
}

.gw-product-line:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.gw-evidence {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 50% 50%;
  background: #ffffff;
}

.gw-evidence__image {
  overflow: hidden;
}

.gw-evidence__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-evidence__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw 8vw;
}

.gw-evidence__content h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
}

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

.gw-stats > div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
}

.gw-stats strong {
  display: block;
  color: #003a70;
  font-family: "DIN Alternate", Arial, sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.gw-stats span {
  display: block;
  margin-top: 18px;
  color: #59636b;
  font-size: 14px;
}

.gw-industries {
  padding: 150px 0;
  background: var(--gw-pale);
}

.gw-industries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.gw-industry {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #ffffff;
  background: var(--gw-navy);
}

.gw-industry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.gw-industry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 18, 34, 0.82));
}

.gw-industry:hover img {
  opacity: 0.9;
  transform: scale(1.035);
}

.gw-industry span,
.gw-industry h3 {
  position: absolute;
  z-index: 2;
  left: 38px;
}

.gw-industry span {
  bottom: 82px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.gw-industry h3 {
  bottom: 34px;
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
}

.gw-process {
  padding: 150px 0 170px;
  background: #ffffff;
}

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

.gw-process__steps > div {
  min-height: 210px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--gw-line);
}

.gw-process__steps > div + div {
  padding-left: 28px;
}

.gw-process__steps span {
  color: var(--gw-blue);
  font-size: 12px;
}

.gw-process__steps h3 {
  margin: 48px 0 12px;
  font-size: 25px;
  font-weight: 600;
}

.gw-process__steps p {
  margin: 0;
  color: #657078;
  font-size: 14px;
  line-height: 1.7;
}

.gw-theme .btn,
.gw-theme .btn.primary,
.gw-theme .btn.ghost {
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--gw-navy);
  border-radius: 0;
  color: #ffffff;
  background: var(--gw-navy);
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
}

.gw-theme .btn:hover,
.gw-theme .btn.primary:hover {
  color: #ffffff;
  background: #003a70;
  box-shadow: none;
  transform: translateY(-2px);
}

/* Shared subpages */
.gw-theme .sub-hero,
body.gw-theme[data-page="products"] .sub-hero,
body.gw-theme[data-page="industries"] .sub-hero,
body.gw-theme[data-page="about"] .sub-hero,
body.gw-theme[data-page="contact"] .sub-hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: center;
  padding: 100px 6.5vw 60px;
  overflow: hidden;
  background-color: var(--gw-navy);
  background-position: center;
  background-size: cover;
}

body.gw-theme[data-page="products"] .sub-hero {
  background-image: url("machining-floor.webp?v=20260710-1");
}

body.gw-theme[data-page="industries"] .sub-hero {
  background-image: url("factory-hero.webp?v=20260710-1");
}

body.gw-theme[data-page="about"] .sub-hero {
  background-image: url("quality-lab.webp?v=20260710-1");
}

body.gw-theme[data-page="contact"] .sub-hero {
  background-image: url("industry-general.webp?v=20260710-1");
}

.gw-theme .sub-hero::after,
body.gw-theme[data-page="products"] .sub-hero::after,
body.gw-theme[data-page="industries"] .sub-hero::after,
body.gw-theme[data-page="about"] .sub-hero::after,
body.gw-theme[data-page="contact"] .sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 20, 38, 0.55);
}

.gw-theme .sub-hero::before,
body.gw-theme[data-page="products"] .sub-hero::before,
body.gw-theme[data-page="industries"] .sub-hero::before,
body.gw-theme[data-page="about"] .sub-hero::before,
body.gw-theme[data-page="contact"] .sub-hero::before {
  display: none;
}

.gw-theme .sub-hero-inner,
body.gw-theme[data-page="products"] .sub-hero-inner,
body.gw-theme[data-page="industries"] .sub-hero-inner,
body.gw-theme[data-page="about"] .sub-hero-inner,
body.gw-theme[data-page="contact"] .sub-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--gw-page);
  max-width: var(--gw-page);
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  text-align: center;
}

.gw-theme .sub-hero .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.gw-theme .sub-hero h1,
body.gw-theme[data-page="products"] .sub-hero h1,
body.gw-theme[data-page="industries"] .sub-hero h1,
body.gw-theme[data-page="about"] .sub-hero h1,
body.gw-theme[data-page="contact"] .sub-hero h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.12;
  white-space: normal;
}

.gw-theme .sub-hero p,
body.gw-theme[data-page="products"] .sub-hero p,
body.gw-theme[data-page="industries"] .sub-hero p,
body.gw-theme[data-page="about"] .sub-hero p,
body.gw-theme[data-page="contact"] .sub-hero p {
  max-width: 820px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.gw-theme .section,
.gw-theme .product-catalog-section,
.gw-theme .industry-matrix-section,
.gw-theme .contact-section {
  width: var(--gw-page);
  max-width: none;
  margin: 0 auto;
  padding: 130px 0;
}

.gw-theme .section-title {
  max-width: 900px;
  margin-bottom: 72px;
}

.gw-theme .section-title h2,
.gw-theme .industry-matrix-section .section-title h2 {
  color: var(--gw-ink);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
}

/* Product center */
.gw-theme .product-catalog-section .filter-bar {
  position: sticky;
  z-index: 20;
  top: 72px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 30px;
  margin: 0 0 34px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--gw-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.gw-theme .product-catalog-section .filter-bar button {
  position: relative;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #5b6670;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
}

.gw-theme .product-catalog-section .filter-bar button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  height: 3px;
  background: var(--gw-blue);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.gw-theme .product-catalog-section .filter-bar button.active {
  color: var(--gw-ink);
  background: transparent;
}

.gw-theme .product-catalog-section .filter-bar button.active::after,
.gw-theme .product-catalog-section .filter-bar button:hover::after {
  transform: scaleX(1);
}

.gw-theme .product-catalog-section .product-search {
  margin-left: auto;
  color: #68737c;
  font-size: 12px;
}

.gw-theme .product-catalog-section .product-search input {
  width: 250px;
  height: 42px;
  margin-left: 12px;
  border: 0;
  border-bottom: 1px solid var(--gw-line);
  border-radius: 0;
  background: transparent;
}

.gw-theme .product-catalog-section .product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  counter-reset: product-card;
  background: var(--gw-line);
}

.gw-theme .product-catalog-section .catalog-card {
  position: relative;
  display: grid;
  min-height: 640px;
  grid-template-rows: 310px 1fr;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transform: none;
}

.gw-theme .product-catalog-section .catalog-card::before {
  z-index: 3;
  top: 22px;
  right: 24px;
  width: auto;
  height: auto;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  counter-increment: product-card;
  content: "0" counter(product-card);
}

.gw-theme .product-catalog-section .catalog-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.gw-theme .product-catalog-section .catalog-card:hover {
  transform: none;
  box-shadow: none;
}

.gw-theme .product-catalog-section .catalog-card:hover img {
  transform: scale(1.025);
  filter: brightness(0.86);
}

.gw-theme .product-catalog-section .catalog-card > div {
  display: flex;
  flex-direction: column;
  padding: 42px;
}

.gw-theme .product-catalog-section .catalog-card span {
  color: var(--gw-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.gw-theme .product-catalog-section .catalog-card h2 {
  margin: 14px 0 0;
  font-size: 30px;
  font-weight: 600;
}

.gw-theme .product-catalog-section .catalog-card p {
  margin: 20px 0 28px;
  color: #5f6a72;
  font-size: 15px;
  line-height: 1.8;
}

.gw-theme .product-catalog-section .catalog-card button {
  margin-top: auto;
  align-self: flex-start;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--gw-ink);
  border-radius: 0;
  color: var(--gw-ink);
  background: transparent;
  box-shadow: none;
}

@media (min-width: 921px) {
  .gw-theme .product-catalog-section .product-grid[data-visible-count="1"] .catalog-card:not([hidden]) {
    grid-column: 1 / -1;
    min-height: 480px;
    grid-template-columns: minmax(360px, 42%) 1fr;
    grid-template-rows: minmax(480px, 1fr);
  }

  .gw-theme .product-catalog-section .product-grid[data-visible-count="1"] .catalog-card:not([hidden]) img {
    height: 100%;
    min-height: 480px;
  }
}

.gw-theme .product-dialog {
  border-radius: 0;
}

/* Industries */
.gw-theme .industry-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--gw-line);
}

.gw-theme .industry-page-grid .industry-tile {
  grid-column: auto;
  grid-row: auto;
  min-height: 480px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gw-theme .industry-page-grid .industry-tile:nth-child(1),
.gw-theme .industry-page-grid .industry-tile:nth-child(2) {
  min-height: 560px;
}

/* About */
body.gw-theme[data-page="about"] .section.two-col {
  gap: 90px;
  padding: 140px 0;
}

body.gw-theme[data-page="about"] .story-card {
  padding: 38px 0;
  border: 0;
  border-top: 2px solid var(--gw-blue);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.gw-theme[data-page="about"] .timeline {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 120px max(7vw, calc((100vw - 1246px) / 2));
  background: var(--gw-navy);
}

body.gw-theme[data-page="about"] .timeline-item,
body.gw-theme[data-page="about"] .timeline-item:last-child {
  min-height: 250px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

/* Contact */
body.gw-theme[data-page="contact"] .contact-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  border: 1px solid var(--gw-line);
  box-shadow: none;
}

body.gw-theme[data-page="contact"] .contact-card,
body.gw-theme[data-page="contact"] .contact-form {
  min-height: 680px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.gw-theme[data-page="contact"] .contact-card {
  padding: 62px 48px;
  background-color: var(--gw-navy);
}

body.gw-theme[data-page="contact"] .contact-form {
  padding: 62px 58px;
  background: #ffffff;
}

body.gw-theme[data-page="contact"] input,
body.gw-theme[data-page="contact"] textarea,
body.gw-theme[data-page="contact"] select {
  border: 0;
  border-bottom: 1px solid var(--gw-line);
  border-radius: 0;
  background: transparent;
}

/* Footer */
.gw-theme .site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 6vw;
  margin: 0;
  padding: 84px 7vw 34px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--gw-footer);
  box-shadow: none;
}

.gw-theme .site-footer > div {
  min-width: 0;
}

.gw-theme .site-footer .footer-logo {
  width: 170px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px;
  background: #ffffff;
}

.gw-theme .site-footer h4 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.gw-theme .site-footer a,
.gw-theme .site-footer p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 2;
}

.gw-theme .site-footer a:hover {
  color: #ffffff;
}

.gw-theme .site-footer .copyright {
  grid-column: 1 / -1;
  margin: 52px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.gw-theme .back-to-top {
  right: 22px;
  bottom: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--gw-navy);
}

@media (max-width: 1100px) {
  .gw-heading h2,
  .gw-image-statement__copy h2 {
    font-size: 44px;
  }

  .gw-theme .main-nav a,
  .gw-theme .home-header .main-nav a {
    margin-left: 24px;
    font-size: 13px;
  }

  .gw-feature__panel {
    width: 380px;
  }

  .gw-evidence__content {
    padding: 8vw 5vw;
  }
}

@media (max-width: 920px) {
  :root {
    --gw-page: calc(100vw - 36px);
  }

  .gw-theme .site-header,
  .gw-theme .site-header.is-scrolled {
    height: 62px;
    padding: 0 14px;
  }

  .gw-theme .brand {
    position: relative;
    z-index: 104;
    width: 122px;
    min-width: 122px;
    height: 62px;
  }

  .gw-theme .brand-logo,
  .gw-theme .site-header.is-scrolled .brand-logo {
    width: 122px;
  }

  .gw-theme .menu-toggle {
    position: fixed;
    z-index: 104;
    top: 10px;
    right: 14px;
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .gw-theme .menu-toggle span,
  .gw-theme .site-header.is-scrolled .menu-toggle span {
    width: 21px;
    background: #ffffff;
  }

  .gw-theme .site-header.is-scrolled .menu-toggle span {
    background: #111111;
  }

  .gw-theme.nav-open .menu-toggle span,
  .gw-theme.nav-open .site-header.is-scrolled .menu-toggle span,
  body.gw-theme.nav-open .menu-toggle span {
    background: #7d8993;
  }

  body.gw-theme.nav-open::after {
    content: "";
    position: fixed;
    z-index: 98;
    inset: 0;
    display: block;
    background: rgba(0, 19, 36, 0.62);
  }

  .gw-theme .main-nav {
    position: fixed;
    z-index: 102;
    top: 0;
    right: 0;
    left: auto;
    display: flex;
    width: min(76vw, 360px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 66px 20px 28px 24px;
    overflow: auto;
    visibility: hidden;
    background: #ffffff;
    box-shadow: none;
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.5s ease, visibility 0.5s;
  }

  .gw-theme .main-nav.open {
    visibility: visible;
    transform: translateX(0);
  }

  .gw-theme .main-nav a,
  .gw-theme .home-header .main-nav a,
  .gw-theme .site-header.is-scrolled .main-nav a {
    display: flex;
    width: 100%;
    height: 66px;
    flex: 0 0 66px;
    align-items: center;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
    color: #333333;
    background: transparent;
    font-size: 14px;
  }

  .gw-theme .main-nav a::after {
    display: none;
  }

  .gw-theme .main-nav .nav-cta,
  .gw-theme .home-header .main-nav .nav-cta,
  .gw-theme .site-header.is-scrolled .main-nav .nav-cta {
    margin: 0;
    padding: 0;
    border-left: 0;
    color: var(--gw-blue);
  }

  .gw-hero {
    height: 100svh;
    min-height: 760px;
  }

  .gw-hero__sticky {
    position: relative;
    height: 100svh;
    min-height: 760px;
  }

  .gw-hero__sticky > img {
    object-position: 64% center;
    transform: none;
  }

  .gw-hero__shade {
    background: rgba(0, 20, 38, 0.5);
  }

  .gw-hero__copy {
    padding: 54px 22px 0;
  }

  .gw-hero__primary,
  .gw-hero__secondary,
  .gw-hero__meta {
    width: calc(100vw - 44px);
    opacity: 1;
    transform: none;
  }

  .gw-hero__primary {
    font-size: 40px;
  }

  .gw-hero__headline {
    white-space: normal;
  }

  .gw-hero__secondary {
    margin-top: 7px;
    font-size: 40px;
    line-height: 1.12;
  }

  .gw-hero__meta {
    margin: 0 0 24px;
    font-size: 16px;
  }

  .gw-hero__scroll {
    display: none;
  }

  .gw-intro-dark {
    min-height: auto;
    padding: 88px 0;
  }

  .gw-intro-dark h2 {
    font-size: 36px;
  }

  .gw-intro-dark p:last-child {
    font-size: 18px;
    line-height: 1.85;
  }

  .gw-feature {
    min-height: 0;
    overflow: visible;
  }

  .gw-feature__media,
  .gw-feature--reverse .gw-feature__media {
    position: relative;
    inset: auto;
    height: 62vh;
    min-height: 460px;
  }

  .gw-feature__panel,
  .gw-feature--reverse .gw-feature__panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    padding: 52px 32px 58px;
    transform: none;
  }

  .gw-feature__panel h2 {
    font-size: 32px;
  }

  .gw-feature--automation .gw-feature__media img {
    object-position: 58% center;
  }

  .gw-image-statement {
    min-height: 760px;
    padding: 86px 0 0;
    background: #ffffff;
  }

  .gw-image-statement > img {
    position: absolute;
    right: 18px;
    bottom: 70px;
    left: 18px;
    width: calc(100% - 36px);
    height: 380px;
    min-height: 0;
  }

  .gw-image-statement::after {
    display: none;
  }

  .gw-image-statement__copy,
  .gw-motion .gw-image-statement__copy,
  .gw-motion .gw-image-statement__copy.is-visible {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 36px);
    margin: 0 auto;
    color: var(--gw-ink);
    transform: none;
  }

  .gw-image-statement__copy h2,
  .gw-image-statement__copy p {
    text-shadow: none;
  }

  .gw-image-statement__copy p {
    color: #3e4a52;
  }

  .gw-image-statement__copy h2,
  .gw-heading h2 {
    font-size: 36px;
  }

  .gw-image-statement__copy p {
    display: none;
  }

  .gw-system,
  .gw-industries,
  .gw-process {
    padding: 100px 0;
  }

  .gw-heading {
    margin-bottom: 58px;
  }

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

  .gw-product-line {
    min-height: 220px;
    padding: 28px 24px;
  }

  .gw-product-line > span {
    margin-bottom: 42px;
  }

  .gw-product-line h3 {
    font-size: 22px;
  }

  .gw-evidence {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .gw-evidence__image {
    height: 58vh;
    min-height: 440px;
  }

  .gw-evidence__content {
    padding: 90px 18px;
  }

  .gw-evidence__content h2 {
    font-size: 36px;
  }

  .gw-stats {
    margin-top: 52px;
  }

  .gw-stats strong {
    font-size: 44px;
  }

  .gw-industries__grid {
    grid-template-columns: 1fr;
  }

  .gw-industry {
    min-height: 380px;
  }

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

  .gw-process__steps > div,
  .gw-process__steps > div + div {
    padding: 26px 20px;
    border-bottom: 1px solid var(--gw-line);
  }

  .gw-theme .sub-hero,
  body.gw-theme[data-page="products"] .sub-hero,
  body.gw-theme[data-page="industries"] .sub-hero,
  body.gw-theme[data-page="about"] .sub-hero,
  body.gw-theme[data-page="contact"] .sub-hero {
    min-height: 76svh;
    padding: 90px 18px 42px;
  }

  .gw-theme .sub-hero h1,
  body.gw-theme[data-page="products"] .sub-hero h1,
  body.gw-theme[data-page="industries"] .sub-hero h1,
  body.gw-theme[data-page="about"] .sub-hero h1,
  body.gw-theme[data-page="contact"] .sub-hero h1 {
    font-size: 40px;
  }

  .gw-theme .sub-hero p,
  body.gw-theme[data-page="products"] .sub-hero p,
  body.gw-theme[data-page="industries"] .sub-hero p,
  body.gw-theme[data-page="about"] .sub-hero p,
  body.gw-theme[data-page="contact"] .sub-hero p {
    font-size: 16px;
  }

  .gw-theme .section,
  .gw-theme .product-catalog-section,
  .gw-theme .industry-matrix-section,
  .gw-theme .contact-section {
    padding: 92px 0;
  }

  .gw-theme .product-catalog-section .filter-bar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 18px;
    padding-bottom: 20px;
  }

  .gw-theme .product-catalog-section .filter-bar button::after {
    bottom: -1px;
  }

  .gw-theme .product-catalog-section .product-search {
    grid-column: 1 / -1;
    margin: 18px 0 0;
  }

  .gw-theme .product-catalog-section .product-search input {
    width: 100%;
    margin: 8px 0 0;
  }

  .gw-theme .product-catalog-section .product-grid,
  .gw-theme .industry-page-grid {
    grid-template-columns: 1fr;
  }

  .gw-theme .product-catalog-section .catalog-card {
    min-height: 0;
    grid-template-rows: 280px auto;
  }

  .gw-theme .product-catalog-section .catalog-card img {
    height: 280px;
  }

  .gw-theme .industry-page-grid .industry-tile,
  .gw-theme .industry-page-grid .industry-tile:nth-child(1),
  .gw-theme .industry-page-grid .industry-tile:nth-child(2) {
    min-height: 440px;
  }

  body.gw-theme[data-page="about"] .section.two-col {
    gap: 30px;
    padding: 90px 0;
  }

  body.gw-theme[data-page="about"] .timeline {
    padding: 80px 18px;
  }

  body.gw-theme[data-page="contact"] .contact-layout {
    grid-template-columns: 1fr;
  }

  body.gw-theme[data-page="contact"] .contact-card,
  body.gw-theme[data-page="contact"] .contact-form {
    min-height: 0;
    padding: 48px 30px;
  }

  .gw-theme .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 30px;
    padding: 68px 24px 28px;
  }

  .gw-theme .site-footer > div:first-child,
  .gw-theme .site-footer .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .gw-hero__primary,
  .gw-hero__secondary {
    font-size: 40px;
  }

  .gw-heading h2,
  .gw-image-statement__copy h2,
  .gw-intro-dark h2,
  .gw-evidence__content h2 {
    font-size: 32px;
  }

  .gw-product-lines,
  .gw-stats,
  .gw-process__steps {
    grid-template-columns: 1fr;
  }

  .gw-product-line {
    min-height: 190px;
  }

  .gw-stats > div {
    min-height: 130px;
  }

  .gw-theme .section-title h2,
  .gw-theme .industry-matrix-section .section-title h2 {
    font-size: 34px;
  }

  .gw-theme .site-footer {
    grid-template-columns: 1fr;
  }

  .gw-theme .site-footer > div:first-child,
  .gw-theme .site-footer .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gw-motion .gw-reveal,
  .gw-motion .gw-reveal.is-visible,
  .gw-hero__sticky > img,
  .gw-industry img,
  .gw-feature__media img {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
