@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/google-sans-flex-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy-950: #0b1822;
  --navy-900: #112431;
  --navy-850: #172c3c;
  --navy-800: #1c3548;
  --teal-600: #087d70;
  --teal-500: #0f947f;
  --teal-400: #16aa94;
  --teal-100: #d9f2ed;
  --teal-50: #edf9f6;
  --ink: #13222b;
  --muted: #5f6f77;
  --line: #dbe3e2;
  --surface: #f4f7f6;
  --warm: #fbfcfa;
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(11, 24, 34, 0.08);
  --shadow-lg: 0 30px 80px rgba(11, 24, 34, 0.16);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 48px));
  --ease: 220ms cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  content: "";
  opacity: .035;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), #7ff1dc);
  box-shadow: 0 0 16px rgba(22, 170, 148, .55);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.cursor-orb {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 170, 148, .07), rgba(22, 170, 148, 0) 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 400ms ease;
  will-change: transform;
}

body:hover .cursor-orb {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 580;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 580;
}

h3 {
  font-size: 1.35rem;
  font-weight: 620;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--surface {
  background: var(--surface);
}

.section--navy {
  background: var(--navy-900);
  color: #b9c8ce;
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #6ee0cd;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section--navy .section-heading p {
  color: #a8b9c0;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  overflow: hidden;
}

.btn::before {
  position: absolute;
  top: -100%;
  left: -45%;
  width: 34%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  content: "";
  transform: rotate(24deg);
  transition: left 600ms ease;
}

.btn:hover::before {
  left: 125%;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--ease);
}

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

.btn:hover svg {
  transform: translateX(3px);
}

.button-ripple {
  position: absolute;
  z-index: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: button-ripple 620ms ease-out forwards;
}

.btn > :not(.button-ripple) {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: var(--teal-400);
  color: var(--navy-950);
}

.btn--primary:hover {
  background: #28bda7;
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-800);
}

.btn--outline {
  border-color: rgba(255, 255, 255, .48);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  transition: transform var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: transform 320ms cubic-bezier(.22, .7, .25, 1), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
  animation: header-drop 700ms cubic-bezier(.16, 1, .3, 1) 120ms backwards;
  will-change: transform;
}

.site-header.is-hidden {
  pointer-events: none;
  transform: translate3d(0, -110%, 0);
}

.site-header.menu-open {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  border-color: rgba(19, 34, 43, .08);
  background: rgba(251, 252, 250, .94);
  box-shadow: 0 8px 30px rgba(11, 24, 34, .06);
  color: var(--navy-950);
  backdrop-filter: blur(16px);
}

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

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 680;
  letter-spacing: -.035em;
}

.brand--logo {
  align-items: center;
  gap: 0;
  line-height: 0;
}

.brand--logo img {
  display: block;
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > a:not(.btn) {
  position: relative;
  font-size: .91rem;
  font-weight: 650;
}

.nav-links > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .btn {
  min-height: 44px;
  padding-inline: 18px;
}

.site-header.is-scrolled .btn--nav,
.site-header.site-header--solid .btn--nav {
  background: var(--navy-900);
  color: var(--white);
}

.btn--nav {
  background: var(--white);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle::after {
  top: 28px;
}

.menu-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 830px;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950) url("../images/techtiq-lab-hero.jpg") center / cover no-repeat;
  color: var(--white);
  isolation: isolate;
}

.hero__video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: scale(1.055) translate3d(0, var(--hero-shift, 0px), 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 25, .96) 0%, rgba(7, 18, 25, .78) 41%, rgba(7, 18, 25, .12) 73%),
    linear-gradient(0deg, rgba(7, 18, 25, .82) 0%, transparent 34%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 68%);
  animation: grid-drift 18s linear infinite;
}

.hero__scan {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -12%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(93, 235, 211, .055), transparent);
  pointer-events: none;
  transform: skewX(-12deg);
  animation: hero-scan 8s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 3;
  top: 28px;
  width: min(760px, 68%);
  padding-top: 86px;
}

.hero .eyebrow {
  color: #79e1d1;
  animation: hero-rise 750ms cubic-bezier(.16, 1, .3, 1) 260ms both;
}

.hero h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-family: "Google Sans Flex", "Google Sans", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 600;
  animation: hero-rise 900ms cubic-bezier(.16, 1, .3, 1) 340ms both;
}

.hero h1 span {
  color: var(--teal-400);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: hero-rise 900ms cubic-bezier(.16, 1, .3, 1) 580ms both;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 30px;
  color: #8fa3ab;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: hero-rise 900ms cubic-bezier(.16, 1, .3, 1) 680ms both;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__assurance span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
  content: "";
}

.hero__system-ui {
  position: absolute;
  z-index: 2;
  right: max(34px, calc((100vw - 1180px) / 2));
  bottom: 98px;
  width: 310px;
  padding: 17px;
  border: 1px solid rgba(121, 225, 209, .32);
  background: rgba(7, 18, 25, .62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28), inset 0 0 40px rgba(22, 170, 148, .035);
  color: #c8d6da;
  backdrop-filter: blur(14px);
  animation: ui-arrive 1000ms cubic-bezier(.16, 1, .3, 1) 780ms both, ui-float 5s ease-in-out 2s infinite;
}

.hero__system-ui::before,
.hero__system-ui::after {
  position: absolute;
  width: 15px;
  height: 15px;
  content: "";
}

.hero__system-ui::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--teal-400);
  border-left: 2px solid var(--teal-400);
}

.hero__system-ui::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--teal-400);
  border-bottom: 2px solid var(--teal-400);
}

.system-ui__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 12px;
  color: #8fa5ad;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.system-ui__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58e6cf;
  box-shadow: 0 0 0 0 rgba(88, 230, 207, .45);
  animation: status-pulse 1.8s ease-out infinite;
}

.system-ui__visual {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .1);
  padding: 8px 0;
}

.system-ui__visual svg {
  display: block;
  width: 100%;
}

.system-ui__grid {
  stroke: rgba(255, 255, 255, .07);
  stroke-width: .7;
}

.system-ui__wave {
  stroke: #43dcc4;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  filter: drop-shadow(0 0 5px rgba(67, 220, 196, .5));
  animation: draw-wave 2.6s ease-out 1s forwards, wave-pulse 3s ease-in-out 3.6s infinite;
}

.system-ui__metrics {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
  padding: 13px 0 12px;
}

.system-ui__metrics span {
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
}

.system-ui__metrics small {
  display: block;
  margin-bottom: 2px;
  color: #728992;
  font-size: .53rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.system-ui__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7f969e;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.system-ui__footer i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-400), transparent);
}

.hero__caption {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b9c8ce;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__caption::before {
  width: 30px;
  height: 1px;
  background: var(--teal-400);
  content: "";
}

.stat-bar {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.stat {
  padding: 31px 34px;
  border-right: 1px solid var(--line);
  transition: background var(--ease), transform var(--ease);
}

.stat:hover {
  background: var(--teal-50);
  transform: translateY(-4px);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standards-rail {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(0, 5fr);
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.standards-rail__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 36px;
  border-right: 1px solid var(--line);
  color: var(--teal-600);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.standards-rail__viewport {
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.standards-rail__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  color: #738188;
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  animation: standards-scroll 34s linear infinite;
}

.standards-rail:hover .standards-rail__track {
  animation-play-state: paused;
}

.standards-rail__track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-400);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 84px;
  align-items: start;
}

.intro-copy h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.intro-copy p {
  max-width: 750px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.capability-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list .index {
  color: var(--teal-600);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 750;
}

.capability-list h3 {
  margin: 0 0 5px;
  font-size: 1.04rem;
  letter-spacing: -.015em;
}

.capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 395px;
  flex-direction: column;
  overflow: hidden;
  padding: 29px;
  border: 1px solid #cfd9d8;
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), #70ead7);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 145px;
  height: 145px;
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  content: "";
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.product-card__number {
  color: var(--teal-600);
  font-family: "Space Grotesk", sans-serif;
  font-size: .85rem;
  font-weight: 750;
  letter-spacing: .09em;
}

.product-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  transition: background var(--ease), color var(--ease), transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-card__icon {
  background: var(--teal-400);
  color: var(--navy-950);
  transform: rotate(12deg) scale(1.08);
}

.home-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.home-solution {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.home-solution::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(15, 148, 127, .13);
  border-radius: 50%;
  content: "";
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.home-solution:hover {
  border-color: rgba(15, 148, 127, .48);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.home-solution:hover::after {
  transform: scale(1.09) translate(-8px, -8px);
}

.home-solution--featured {
  min-height: 578px;
  grid-row: 1 / 3;
  padding: 44px;
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #aebdc3;
}

.home-solution--featured::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(22, 170, 148, .09));
  content: "";
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
}

.home-solution--featured::after {
  right: -90px;
  bottom: -100px;
  width: 430px;
  height: 430px;
  border-color: rgba(80, 222, 198, .14);
  box-shadow: 0 0 0 80px rgba(80, 222, 198, .018);
}

.home-solution__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal-600);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-solution__meta span:last-child {
  color: #829096;
}

.home-solution--featured .home-solution__meta {
  color: #64dbc8;
}

.home-solution--featured .home-solution__meta span:last-child {
  color: #81959d;
}

.home-solution__body {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 44px 0;
}

.home-solution__body h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.home-solution__body p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #9babb2;
}

.home-solution--featured h3 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.home-solution__number {
  position: absolute;
  right: 4%;
  bottom: 4%;
  color: rgba(255, 255, 255, .035);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13rem;
  font-weight: 700;
  line-height: .72;
  pointer-events: none;
}

.home-solution__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.home-solution__footer .standards {
  margin: 0;
}

.home-solution--featured .standard-tag {
  background: rgba(99, 223, 201, .1);
  color: #70dfcc;
}

.home-solution--featured .text-link {
  color: #79e1d1;
}

.product-card__icon svg {
  width: 23px;
  height: 23px;
}

.product-card h3 {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: 1.36rem;
}

.product-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .94rem;
}

.standards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.standard-tag {
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .025em;
}

.section-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.product-range {
  overflow: clip;
  padding: 84px 0 90px;
}

.product-range__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
  margin-bottom: 22px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.product-range__intro::before {
  content: none;
}

.product-range__title {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 4.1vw, 3.55rem);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: 1;
}

.product-range__title span {
  position: relative;
  display: inline-block;
  color: var(--teal-600);
}

.product-range__title span::after {
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: -.07em;
  left: .02em;
  height: .12em;
  border-radius: 999px;
  background: var(--teal-100);
  content: "";
}

.product-range__lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 520;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.product-range__summary {
  padding: 6px 0 6px clamp(26px, 3.5vw, 44px);
  border-left: 1px solid var(--line);
}

.product-range__summary p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .91rem;
}

.product-carousel {
  min-width: 0;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(8, 125, 112, .15);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 170, 148, .09), transparent 30%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.product-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.product-carousel__label {
  margin: 0;
  color: var(--navy-900);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -.015em;
}

.product-carousel__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-carousel__status {
  display: inline-flex;
  min-width: 76px;
  align-items: baseline;
  gap: 6px;
  margin-right: 5px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 600;
}

.product-carousel__status strong {
  color: var(--teal-600);
  font-size: 1.15rem;
}

.product-carousel__button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  place-items: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease), transform var(--ease);
}

.product-carousel__button svg {
  width: 18px;
  height: 18px;
}

.product-carousel__button:hover:not(:disabled),
.product-carousel__button:focus-visible {
  border-color: var(--teal-500);
  background: var(--teal-500);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.product-carousel__button:disabled {
  cursor: default;
  opacity: .38;
}

.product-range__catalog {
  display: flex;
  min-height: 0;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 20px;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-range__catalog::-webkit-scrollbar {
  display: none;
}

.product-range__catalog:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 6px;
}

.product-family {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 360px;
  flex: 0 0 clamp(350px, 46%, 510px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 24, 34, .11);
  color: var(--white);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.product-family--featured {
  padding: 24px;
}

.product-carousel__progress {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #d6e1df;
}

.product-carousel__progress span {
  display: block;
  width: 9.0909%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(.2, .75, .25, 1);
}

.product-family__image,
.product-family__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-family__image {
  z-index: -3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .75, .25, 1), filter 350ms ease;
}

.product-family__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 24, 34, .62) 0%, rgba(8, 24, 34, .06) 42%, rgba(8, 24, 34, .94) 100%),
    linear-gradient(90deg, rgba(8, 24, 34, .28), transparent 70%);
}

.product-family::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 231, 211, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 231, 211, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: .34;
  pointer-events: none;
}

.product-family::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color var(--ease);
}

.product-family__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8cebdc;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-family__meta span:last-child {
  color: rgba(255, 255, 255, .72);
  text-align: right;
}

.product-family__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
}

.product-family__copy {
  display: block;
  max-width: 520px;
}

.product-family__copy strong,
.product-family__copy > span {
  display: block;
}

.product-family__copy strong {
  margin-bottom: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.product-family--featured .product-family__copy strong {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.product-family__copy > span {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1.5;
}

.product-family__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-family__action svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.product-family:not(.product-family--featured) .product-family__action > span {
  display: inline;
}

.product-family:hover,
.product-family:focus-visible {
  border-color: rgba(92, 225, 202, .72);
  box-shadow: 0 26px 60px rgba(11, 24, 34, .2);
  outline: none;
  transform: translateY(-3px);
}

.product-family:hover::after,
.product-family:focus-visible::after {
  border-color: rgba(92, 225, 202, .46);
}

.product-family:hover .product-family__image,
.product-family:focus-visible .product-family__image {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.045);
}

.product-family:hover .product-family__action svg,
.product-family:focus-visible .product-family__action svg {
  border-color: var(--teal-400);
  background: var(--teal-400);
  color: var(--navy-950);
  transform: translateX(3px);
}

.customer-experience {
  border-top: 1px solid var(--line);
  background: var(--teal-50);
}

.customer-experience__layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 96px;
  align-items: start;
}

.customer-experience__intro h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.1vw, 3.85rem);
}

.customer-experience__intro p {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.customer-experience__list {
  border-top: 1px solid rgba(8, 125, 112, .24);
}

.customer-experience__item {
  display: grid;
  grid-template-columns: 42px minmax(150px, .82fr) minmax(220px, 1.18fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(8, 125, 112, .24);
}

.customer-experience__item > span {
  padding-top: 3px;
  color: var(--teal-600);
  font-family: "Space Grotesk", sans-serif;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.customer-experience__item h3 {
  margin-bottom: 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.customer-experience__item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 38px 30px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.process-step:not(:first-child) {
  padding-left: 30px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step__num {
  display: block;
  margin-bottom: 46px;
  color: var(--teal-400);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.process-step p {
  color: #99adb5;
  font-size: .91rem;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  transform-style: preserve-3d;
}

.sector-card:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.sector-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--teal-400);
}

.sector-card__icon svg {
  width: 19px;
}

.sector-card h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.sector-card p {
  color: var(--muted);
  font-size: .9rem;
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  background: radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 25%), rgba(143, 255, 234, .34), transparent 30%), var(--teal-500);
  color: var(--white);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  right: -150px;
  bottom: -230px;
  width: 560px;
  height: 560px;
}

.cta-panel::after {
  right: -30px;
  bottom: -140px;
  width: 350px;
  height: 350px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.cta-panel p {
  max-width: 670px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.06rem;
}

.page-hero {
  position: relative;
  min-height: 570px;
  padding: 188px 0 95px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  top: -250px;
  right: -100px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(22, 170, 148, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 140px rgba(22, 170, 148, .025), 0 0 0 280px rgba(22, 170, 148, .018);
  content: "";
  animation: orbital-breathe 7s ease-in-out infinite;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 78%);
  animation: grid-drift 22s linear infinite;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.page-hero__content .eyebrow {
  animation: hero-rise 700ms cubic-bezier(.16, 1, .3, 1) 180ms both;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  animation: hero-rise 850ms cubic-bezier(.16, 1, .3, 1) 260ms both;
}

.page-hero__content > p {
  max-width: 700px;
  color: #b8c7cc;
  font-size: 1.2rem;
  animation: hero-rise 850ms cubic-bezier(.16, 1, .3, 1) 390ms both;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 46px;
  color: #9fb1b8;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: hero-rise 850ms cubic-bezier(.16, 1, .3, 1) 500ms both;
}

.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-hero__meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
  content: "";
}

.products-catalog__layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.catalog-sidebar {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.catalog-sidebar__section + .catalog-sidebar__section {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.catalog-sidebar__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-600);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-sidebar h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -.035em;
}

.catalog-nav__list {
  display: grid;
  gap: 3px;
  list-style: none;
}

.catalog-nav__link,
.catalog-sidebar .filter-button {
  display: grid;
  width: 100%;
  min-height: 38px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 7px 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.catalog-nav__link::before,
.catalog-sidebar .filter-button::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #b9c7c8;
  border-radius: 50%;
  color: var(--teal-600);
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
}

.catalog-nav__link:hover,
.catalog-nav__link:focus-visible,
.catalog-nav__link.is-active {
  background: var(--teal-50);
  color: var(--navy-950);
  transform: translateX(3px);
}

.catalog-nav__link:hover::before,
.catalog-nav__link:focus-visible::before,
.catalog-nav__link.is-active::before {
  border-color: var(--teal-400);
  background: var(--teal-400);
  color: var(--navy-950);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.products-catalog {
  padding-top: 132px;
}

.filter-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 750;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.catalog-sidebar .filter-bar {
  display: grid;
  gap: 3px;
  margin: 0;
}

.catalog-sidebar .filter-button {
  cursor: pointer;
}

.catalog-sidebar .filter-button:hover,
.catalog-sidebar .filter-button.is-active {
  border: 0;
  background: var(--navy-900);
  color: var(--white);
  transform: translateX(3px);
}

.catalog-sidebar .filter-button:hover::before,
.catalog-sidebar .filter-button.is-active::before {
  border-color: var(--teal-400);
  background: var(--teal-400);
  color: var(--navy-950);
}

.product-detail-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-detail {
  display: flex;
  scroll-margin-top: 110px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: opacity var(--ease), transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.product-detail:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.product-detail.is-hidden {
  display: none;
}

.product-detail__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-detail__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 28, 43, .14));
  content: "";
  pointer-events: none;
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.product-detail:hover .product-detail__media img {
  transform: scale(1.025);
}

.product-detail__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 38px 38px;
}

.product-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.product-detail__header span:first-child {
  color: var(--teal-600);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
}

.product-detail__type {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-detail h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.product-detail p {
  max-width: 570px;
  margin-bottom: 26px;
  color: var(--muted);
}

.product-detail .standards {
  margin-bottom: 28px;
}

.product-detail .text-link {
  margin-top: auto;
}

.feature-band {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: center;
}

.feature-band h2 {
  margin-bottom: 22px;
}

.feature-band__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.feature-item {
  min-height: 170px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.feature-item:nth-child(2n) {
  border-right: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
}

.feature-item p {
  margin: 0;
  color: #9fb1b8;
  font-size: .9rem;
}

.about-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 6vw, 88px);
  align-items: start;
}

.section.about-intro {
  padding-top: 148px;
}

.about-story__image {
  position: sticky;
  top: 112px;
  align-self: start;
}

.about-story__image::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 62%;
  height: 52%;
  border-right: 2px solid var(--teal-400);
  border-bottom: 2px solid var(--teal-400);
  content: "";
}

.about-story__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  min-height: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center;
}

.about-story__copy h1 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.about-story__copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.pull-quote {
  margin: 36px 0 0;
  padding: 28px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--teal-400);
  color: var(--navy-900);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 570;
  line-height: 1.45;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.value-card {
  min-height: 290px;
  padding: 44px;
  background: var(--navy-900);
  transition: background var(--ease), transform var(--ease);
  transform-style: preserve-3d;
}

.value-card:hover {
  background: var(--navy-850);
  transform: translateY(-4px);
}

.value-card__num {
  display: block;
  margin-bottom: 70px;
  color: var(--teal-400);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.value-card h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.42rem;
}

.value-card p {
  color: #9fb1b8;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.timeline::before {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline article {
  position: relative;
  padding-top: 48px;
}

.timeline article::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--warm);
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 1px var(--teal-400);
  content: "";
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-600);
  font-family: "Space Grotesk", sans-serif;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 10px;
}

.timeline p {
  color: var(--muted);
  font-size: .92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 100px;
  align-items: start;
}

.section.contact-intro {
  padding-top: 148px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h1 {
  margin-bottom: 23px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.contact-copy > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-bottom: 38px;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 24, 34, .045);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: rgba(15, 148, 127, .55);
  box-shadow: var(--shadow-sm);
  outline: none;
  transform: translateY(-2px);
}

.contact-method__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  place-items: center;
}

.contact-method__icon svg,
.contact-method__arrow {
  width: 19px;
  height: 19px;
}

.contact-method__copy,
.contact-method__copy small,
.contact-method__copy strong,
.contact-method__copy > span {
  display: block;
}

.contact-method__copy {
  min-width: 0;
}

.contact-method__copy small {
  margin-bottom: 2px;
  color: var(--teal-600);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-method__copy strong {
  color: var(--navy-900);
  font-family: "Space Grotesk", sans-serif;
  font-size: .98rem;
  line-height: 1.35;
}

.contact-method__copy > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
}

.contact-method__arrow {
  color: var(--teal-600);
  transition: transform var(--ease);
}

.contact-method:hover .contact-method__arrow,
.contact-method:focus-visible .contact-method__arrow {
  transform: translateX(3px);
}

.contact-points {
  border-top: 1px solid var(--line);
}

.contact-point {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-point__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
}

.contact-point__icon svg {
  width: 16px;
}

.contact-point strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-family: "Space Grotesk", sans-serif;
}

.contact-point span {
  color: var(--muted);
  font-size: .9rem;
}

.enquiry-form {
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-heading {
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-heading h3 {
  margin-bottom: 7px;
  font-size: 1.55rem;
}

.form-heading p {
  color: var(--muted);
  font-size: .92rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bcc8c7;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-field input,
.form-field select {
  min-height: 51px;
}

.form-field textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 1px 0 var(--teal-500);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8d9a9f;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
}

.form-actions small {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #8dd6ca;
  background: var(--teal-50);
  color: #086b61;
  font-size: .9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: #e8aaa4;
  background: #fff3f1;
  color: #9b3027;
}

.enquiry-form button[type="submit"][aria-busy="true"] {
  cursor: wait;
  opacity: .72;
}

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

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

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
}

.faq-item button::after {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--teal-600);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.site-footer {
  padding: 76px 0 28px;
  background: var(--navy-950);
  color: #91a5ad;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-brand .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand .brand--logo {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(17, 68, 79, .1);
  border-radius: 999px;
  background: linear-gradient(105deg, #f7faf8 0%, #edf6f3 100%);
}

.footer-brand .brand--logo::before {
  position: absolute;
  z-index: 0;
  top: 14%;
  right: 5%;
  width: 56%;
  height: 72%;
  border-top: 1px solid rgba(13, 150, 137, .26);
  border-bottom: 1px solid rgba(14, 79, 105, .17);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-7deg);
  animation: footer-wire-float 8s ease-in-out infinite alternate;
}

.footer-brand .brand--logo::after {
  position: absolute;
  z-index: 1;
  top: 23%;
  left: 54%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(13, 150, 137, .72);
  box-shadow: 0 0 0 4px rgba(13, 150, 137, .09);
  content: "";
  pointer-events: none;
  animation: footer-signal-travel 6.5s ease-in-out infinite;
}

.footer-brand .brand--logo img {
  position: relative;
  z-index: 2;
  width: 132px;
}

.footer-brand p {
  max-width: 340px;
  color: #91a5ad;
  font-size: .92rem;
}

.footer-contact {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: .86rem;
  transition: color var(--ease);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--teal-400);
}

.footer-column h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  font-size: .9rem;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-note {
  font-size: .9rem;
}

.footer-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .78rem;
}

.footer-bottom span:last-child {
  color: #6f858e;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-item {
  opacity: 0;
  transform: translateY(34px);
}

.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms cubic-bezier(.16, 1, .3, 1), transform 760ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes header-drop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ui-arrive {
  from { opacity: 0; transform: translate3d(24px, 18px, 0) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes ui-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes hero-scan {
  0%, 18% { left: -35%; opacity: 0; }
  35% { opacity: 1; }
  68%, 100% { left: 120%; opacity: 0; }
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(88, 230, 207, .5); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(88, 230, 207, 0); }
}

@keyframes draw-wave {
  to { stroke-dashoffset: 0; }
}

@keyframes wave-pulse {
  0%, 100% { opacity: .68; }
  50% { opacity: 1; }
}

@keyframes standards-scroll {
  to { transform: translateX(-50%); }
}

@keyframes orbital-breathe {
  0%, 100% { transform: scale(.96) rotate(0deg); opacity: .72; }
  50% { transform: scale(1.035) rotate(5deg); opacity: 1; }
}

@keyframes button-ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(16); }
}

@keyframes footer-wire-float {
  0% { opacity: .58; transform: translateX(0) rotate(-7deg); }
  50% { opacity: .9; }
  100% { opacity: .64; transform: translateX(-10px) rotate(-3deg); }
}

@keyframes footer-signal-travel {
  0%, 100% { opacity: .15; transform: translate(0, 23px); }
  18% { opacity: .72; }
  50% { opacity: .86; transform: translate(43px, 0); }
  82% { opacity: .58; }
  99% { transform: translate(86px, 23px); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-item,
  .motion-item.is-visible {
    opacity: 1;
    transform: none;
  }

  .cursor-orb,
  .hero__scan {
    display: none;
  }

  .hero__video {
    display: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --container: min(100% - 40px, 920px);
  }

  .section {
    padding: 88px 0;
  }

  .section.about-intro {
    padding-top: 132px;
  }

  .section.contact-intro {
    padding-top: 132px;
  }

  .section-heading,
  .intro-grid,
  .feature-band,
  .about-story,
  .customer-experience__layout,
  .contact-layout {
    gap: 52px;
  }

  .customer-experience__layout {
    grid-template-columns: minmax(0, .75fr) minmax(460px, 1.25fr);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    width: 75%;
  }

  .hero__system-ui {
    right: 24px;
    width: 270px;
  }

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

  .products-catalog__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .catalog-sidebar {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    padding: 0 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-sidebar__section + .catalog-sidebar__section {
    margin: 0;
    padding: 0 0 0 34px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

  .home-solution-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  }

  .home-solution__footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, .7fr);
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 650px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .section--compact {
    padding: 56px 0;
  }

  .products-catalog {
    padding-top: 104px;
  }

  .catalog-sidebar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 26px;
  }

  .catalog-sidebar__section + .catalog-sidebar__section {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-sidebar .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand--logo img {
    width: 94px;
  }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border-color: rgba(11, 24, 34, .16);
    border-radius: 13px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 24px rgba(11, 24, 34, .08);
    transition: border-color var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
  }

  .menu-toggle:hover {
    border-color: rgba(22, 170, 148, .55);
    transform: translateY(-1px);
  }

  .menu-open .menu-toggle {
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(11, 24, 34, .22);
  }

  .site-header::after {
    position: absolute;
    z-index: 0;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 72px);
    background: rgba(7, 18, 25, .44);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
    backdrop-filter: blur(3px);
  }

  .site-header.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header:not(.is-scrolled):not(.site-header--solid).menu-open {
    color: var(--navy-950);
  }

  .nav-links {
    position: fixed;
    z-index: 3;
    top: 84px;
    left: 50%;
    display: flex;
    width: min(420px, calc(100% - 32px));
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(19, 34, 43, .1);
    border-radius: 22px;
    background: rgba(251, 252, 250, .98);
    box-shadow: 0 28px 70px rgba(7, 18, 25, .3), 0 4px 14px rgba(7, 18, 25, .12);
    color: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px) scale(.98);
    transform-origin: top center;
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    visibility: hidden;
  }

  .nav-links::before {
    padding: 7px 14px 9px;
    color: var(--muted);
    content: "Navigation";
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    visibility: visible;
  }

  .nav-links > a:not(.btn) {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: background var(--ease), color var(--ease), transform var(--ease);
  }

  .nav-links > a:not(.btn)::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--teal-600);
    content: "\2192";
    font-size: 1.15rem;
    opacity: .72;
    transform: none;
  }

  .nav-links > a:not(.btn):hover {
    background: var(--teal-50);
    color: var(--teal-600);
    transform: translateX(2px);
  }

  .nav-links > a[aria-current="page"] {
    background: var(--teal-50);
    color: var(--teal-600);
  }

  .nav-links .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    padding-inline: 18px;
    background: var(--teal-400);
    color: var(--navy-950);
  }

  .hero {
    min-height: 790px;
    align-items: flex-end;
    padding-bottom: 112px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(7, 18, 25, .99) 0%, rgba(7, 18, 25, .85) 55%, rgba(7, 18, 25, .18) 100%);
  }

  .hero__content {
    top: 16px;
    width: 100%;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero__caption {
    display: none;
  }

  .hero__system-ui,
  .cursor-orb {
    display: none;
  }

  .stat-bar {
    margin-top: 0;
  }

  .stat-bar .container {
    width: 100%;
  }

  .stat-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    box-shadow: none;
  }

  .stat {
    padding: 27px 22px;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .standards-rail {
    grid-template-columns: 1fr;
    min-height: 54px;
  }

  .standards-rail__label {
    display: none;
  }

  .standards-rail__track {
    gap: 22px;
    font-size: .64rem;
    animation-duration: 27s;
  }

  .section-heading,
  .intro-grid,
  .feature-band,
  .about-story,
  .customer-experience__layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .product-range__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    padding: 0 0 24px;
  }

  .product-range__title {
    max-width: 620px;
  }

  .product-range__summary {
    max-width: 590px;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-range__catalog {
    gap: 14px;
  }

  .product-family,
  .product-family--featured {
    min-height: 320px;
    flex-basis: calc(88% - 18px);
    padding: 22px;
  }

  .product-family__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 72px;
  }

  .product-family--featured .product-family__copy strong {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .product-family:not(.product-family--featured) .product-family__action > span {
    display: inline;
  }

  .customer-experience__item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 16px;
    padding: 24px 0;
  }

  .customer-experience__item p {
    grid-column: 2;
  }

  .product-grid,
  .product-detail-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .home-solution-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-solution,
  .home-solution--featured {
    min-height: 330px;
    grid-row: auto;
    padding: 30px 26px;
  }

  .home-solution--featured {
    min-height: 490px;
  }

  .home-solution__body {
    padding: 40px 0;
  }

  .home-solution__footer {
    gap: 20px;
  }

  .product-card {
    min-height: 355px;
  }

  .product-card__top {
    margin-bottom: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .process-step__num {
    margin-bottom: 25px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

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

  .sector-card__icon {
    margin-bottom: 36px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    min-height: 430px;
    align-content: center;
    padding: 42px 30px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 570px;
    padding: 152px 0 75px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .product-detail {
    min-height: 0;
  }

  .product-detail__body {
    padding: 27px 25px 30px;
  }

  .product-detail__header {
    margin-bottom: 28px;
  }

  .feature-band__list {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .about-story__image img {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .about-story__image {
    position: relative;
    top: auto;
  }

  .about-story__image::after {
    right: -8px;
    bottom: -8px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .timeline article {
    padding: 2px 0 40px 42px;
  }

  .timeline article::before {
    top: 3px;
  }

  .contact-copy {
    position: static;
  }

  .enquiry-form {
    padding: 30px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand,
  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 430px) {
  .catalog-nav__list,
  .catalog-sidebar .filter-bar {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 6px;
    font-size: 1.03rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .product-range__title {
    margin-bottom: 14px;
    font-size: clamp(2.35rem, 12vw, 2.85rem);
  }

  .product-range__lead {
    font-size: 1.05rem;
  }

  .product-carousel__toolbar {
    align-items: flex-end;
  }

  .product-carousel__label {
    max-width: 120px;
    font-size: .94rem;
    line-height: 1.25;
  }

  .product-carousel__status {
    display: none;
  }

  .product-carousel__button {
    width: 40px;
    height: 40px;
  }

  .product-carousel {
    padding: 18px;
  }

  .product-family,
  .product-family--featured {
    min-height: 300px;
    flex-basis: calc(100% - 22px);
    padding: 20px;
  }

  .stat strong {
    font-size: 1.9rem;
  }

  .stat span {
    font-size: .65rem;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .value-card {
    padding: 34px 27px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-note {
    grid-column: auto;
  }
}
