@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  font-family: "Manrope", sans-serif;
  color: #101519;
  background: #f1f3f2;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #090d10;
  --ink-2: #151c20;
  --paper: #f1f3f2;
  --paper-2: #e4e8e7;
  --steel: #7e8b91;
  --line: rgba(10, 17, 21, 0.16);
  --brand-green: #087f55;
  --brand-green-bright: #15a06c;
  --brand-red: #b33e48;
  --brand-red-bright: #d15b63;
  --orange: var(--brand-green);
  --cyan: var(--brand-red);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 18px;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  width: min(1390px, calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(5, 10, 13, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(130%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 174px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.79rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-menu sup {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0d1114;
  border-radius: 6px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #dff3e9;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cinematic-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  color: #fff;
  background: #05080a;
}

.cinematic-sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  perspective: 1400px;
  background:
    radial-gradient(circle at 50% 45%, rgba(42, 74, 87, 0.18), transparent 36%),
    #05080a;
}

.cinematic-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle, black, transparent 76%);
}

.opening-message {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 126px 5vw 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-origin: center;
}

.opening-kicker {
  width: 100%;
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  font-family: "Fira Code", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.opening-message h1 {
  max-width: 1250px;
  margin: auto 0;
  font-size: clamp(4rem, 9.4vw, 10.5rem);
  font-weight: 650;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.opening-message h1 span,
.opening-message h1 em {
  display: block;
}

.opening-message h1 span {
  margin-left: 8vw;
  color: rgba(255, 255, 255, 0.34);
}

.opening-message h1 em {
  color: var(--orange);
  font-style: normal;
}

.opening-message > p {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: "Fira Code", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening-arrow {
  position: absolute;
  right: 5vw;
  bottom: 55px;
  color: var(--orange);
}

.cinematic-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 85vw;
  height: 85vh;
  overflow: hidden;
  border-radius: 40px;
  transform-origin: center bottom;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 50% 52%, rgba(40, 199, 239, 0.16), transparent 24%),
    linear-gradient(145deg, #0c151a, #030608 62%);
  box-shadow: 0 -50px 130px rgba(0, 0, 0, 0.65);
}

.cinematic-card::after {
  content: "";
  position: absolute;
  z-index: 7;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.065),
    transparent 40%
  );
  mix-blend-mode: screen;
}

.exact-mockup {
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

@media (min-width: 721px) {
  .opening-message h1,
  .exact-main-card,
  .exact-mockup,
  .exact-detail,
  .exact-labels,
  .exact-cta {
    visibility: hidden;
    will-change: transform, opacity, filter;
  }
}

.card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(96, 214, 245, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 214, 245, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.card-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.card-chrome {
  position: absolute;
  z-index: 6;
  font-family: "Fira Code", monospace;
}

.card-chrome span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.top-left {
  top: 116px;
  left: 4vw;
  display: grid;
  gap: 8px;
}

.top-left strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.top-right {
  top: 116px;
  right: 4vw;
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 18px;
  text-align: right;
}

.top-right b {
  font-size: 0.66rem;
}

.bottom-copy {
  left: 4vw;
  bottom: 44px;
  max-width: 410px;
}

.bottom-copy p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

.assembly-scene {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(760px, 74vw);
  height: min(600px, 68vh);
  margin: calc(min(600px, 68vh) / -2) 0 0 calc(min(760px, 74vw) / -2);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.assembly-halo {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 202, 239, 0.27), transparent 65%);
  filter: blur(45px);
}

.assembly-tiles,
.assembly-frame,
.assembly-services {
  position: absolute;
  left: 11%;
  width: 78%;
  height: 55%;
  transform: rotateX(58deg) rotateZ(-21deg);
  transform-style: preserve-3d;
}

.assembly-tiles {
  top: 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.assembly-tile {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(244, 249, 250, 0.96), rgba(120, 139, 148, 0.9));
  box-shadow:
    inset -12px -12px 22px rgba(24, 38, 45, 0.24),
    0 20px 26px rgba(0, 0, 0, 0.42);
}

.assembly-tile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 9px;
  background: #536771;
  transform: skewX(-44deg);
  transform-origin: top;
}

.assembly-tile.perforated {
  background-color: #a8b5bb;
  background-image: radial-gradient(#354850 1.25px, transparent 1.55px);
  background-size: 10px 10px;
}

.assembly-frame {
  top: 30%;
  border: 5px solid #566a74;
}

.rail {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #41545e, #c1ccd0, #4d626d);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.38);
}

.rail.horizontal {
  left: 0;
  width: 100%;
  height: 7px;
}

.rail.horizontal.rail-a { top: 33%; }

.rail.horizontal.rail-b { top: 66%; }

.rail.vertical {
  top: 0;
  width: 7px;
  height: 100%;
}

.rail.vertical.rail-a { left: 33%; }

.rail.vertical.rail-b { left: 66%; }

.assembly-pedestal {
  position: absolute;
  width: 14px;
  height: 120px;
  border-radius: 2px;
  background: linear-gradient(90deg, #5b707a, #e0e8eb, #627984);
  transform: rotateX(-58deg) translateY(82%);
  transform-origin: top;
}

.assembly-pedestal::after {
  content: "";
  position: absolute;
  left: -13px;
  bottom: -5px;
  width: 40px;
  height: 12px;
  background: #647984;
}

.assembly-pedestal b {
  position: absolute;
  left: -9px;
  top: -4px;
  width: 32px;
  height: 11px;
  background: #9daeb5;
}

.p-0 { left: 0; top: 0; }

.p-1 { left: 50%; top: 0; }

.p-2 { right: 0; top: 0; }

.p-3 { left: 0; top: 50%; }

.p-4 { left: 50%; top: 50%; }

.p-5 { right: 0; top: 50%; }

.p-6 { left: 0; bottom: 0; }

.p-7 { left: 50%; bottom: 0; }

.p-8 { right: 0; bottom: 0; }

.assembly-services {
  top: 52%;
}

.service-cable {
  position: absolute;
  height: 7px;
  border-radius: 20px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.service-cable.blue { background: #25aeda; }

.service-cable.orange { background: #e67627; }

.service-cable.a { left: 5%; top: 48%; width: 90%; }

.service-cable.b { left: 15%; top: 62%; width: 72%; }

.service-cable.orange.a { left: 20%; top: 72%; width: 74%; }

.service-cable.orange.b { left: 29%; top: 83%; width: 58%; }

.air-mark {
  position: absolute;
  color: var(--cyan);
  filter: drop-shadow(0 0 9px var(--cyan));
}

.air-a { left: 14%; top: 25%; }

.air-b { right: 19%; top: 34%; }

.assembly-labels {
  position: absolute;
  inset: 0;
}

.label {
  position: absolute;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 11, 14, 0.7);
  backdrop-filter: blur(12px);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label b {
  margin-right: 8px;
  color: var(--orange);
}

.label-panel { top: 9%; left: -3%; }

.label-load { top: 48%; right: -4%; }

.label-service { bottom: 11%; left: 2%; }

.label-air { bottom: 4%; right: 3%; }

.hero-handoff {
  position: absolute;
  z-index: 8;
  inset: 0;
  padding: 13vh 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(4, 8, 10, 0.72);
  backdrop-filter: blur(12px);
}

.hero-handoff > span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-handoff h2 {
  max-width: 900px;
  margin: 22px 0 36px;
  font-size: clamp(3rem, 6.7vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-handoff > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
}

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

.button.orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 20px 60px rgba(255, 91, 27, 0.22);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.83rem;
  font-weight: 700;
}

.text-action svg {
  width: 17px;
}

.hero-progress {
  position: absolute;
  z-index: 12;
  right: 24px;
  bottom: 24px;
  width: 180px;
  font-family: "Fira Code", monospace;
}

.hero-progress span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
}

.hero-progress div {
  height: 2px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.parallax-story {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  color: #fff;
  background: #070c0f;
}

.parallax-sticky {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.parallax-back {
  position: absolute;
  inset: -14%;
}

.parallax-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.48);
}

.parallax-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 10, 0.9), rgba(4, 8, 10, 0.18) 64%),
    linear-gradient(180deg, #070c0f, transparent 22%, transparent 74%, #070c0f);
}

.parallax-title {
  position: absolute;
  z-index: 2;
  left: 5vw;
  top: 16%;
}

.parallax-title > span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.parallax-title h2 {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.68;
  letter-spacing: -0.08em;
}

.parallax-mid,
.parallax-front {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.floating-slab {
  position: absolute;
  width: 34vw;
  min-width: 330px;
  aspect-ratio: 1.45;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(238, 244, 246, 0.95), rgba(90, 107, 115, 0.86));
  box-shadow: 0 55px 65px rgba(0, 0, 0, 0.48);
  transform: rotateX(64deg) rotateZ(-24deg);
}

.floating-slab.perforated {
  background-color: #8c9ca3;
  background-image: radial-gradient(#2e424b 1.3px, transparent 1.7px);
  background-size: 12px 12px;
}

.slab-one { right: 7vw; top: 18%; }

.slab-two { right: 29vw; top: 51%; }

.slab-three { right: -6vw; top: 72%; }

.cable-ribbon {
  position: absolute;
  right: -12vw;
  width: 84vw;
  height: 17px;
  border-radius: 50px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.42);
  transform: rotate(-16deg);
}

.cable-ribbon.blue {
  top: 66%;
  background: #1ea7d5;
}

.cable-ribbon.orange {
  top: 76%;
  right: -3vw;
  width: 68vw;
  background: #d87125;
}

.tech-note {
  position: absolute;
  padding: 9px 11px;
  border-left: 2px solid var(--orange);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(4, 9, 11, 0.62);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.n1 { left: 54%; top: 25%; }

.n2 { left: 42%; top: 58%; }

.n3 { left: 69%; top: 84%; }

.parallax-caption {
  position: absolute;
  z-index: 5;
  left: 5vw;
  bottom: 9vh;
  max-width: 480px;
}

.parallax-caption p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.7;
}

.catalogue {
  position: relative;
  background: var(--paper);
}

.catalogue-intro {
  min-height: 96vh;
  padding: 155px 5vw 100px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 9vw;
  border-bottom: 1px solid var(--line);
}

.overline,
.engineering-title > span,
.process-heading > span,
.faq-heading > span {
  color: #59666c;
  font-family: "Fira Code", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalogue-intro h2 {
  margin: 30px 0 0;
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: -0.078em;
}

.catalogue-intro h2 em {
  color: #7c888d;
  font-style: normal;
}

.catalogue-intro > div:last-child > p {
  margin: 0 0 38px;
  color: #566268;
  font-size: 1rem;
  line-height: 1.75;
}

.catalogue-intro nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.catalogue-intro nav a {
  padding: 16px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  transition: padding 180ms ease, color 180ms ease;
}

.catalogue-intro nav a:hover {
  padding-left: 15px;
  color: var(--orange);
}

.catalogue-intro nav span {
  color: #8a959a;
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
}

.family-chapter {
  position: relative;
  min-height: 100vh;
  padding: 120px 5vw 150px;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: 8vw;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.family-heading {
  position: sticky;
  top: 125px;
  align-self: start;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
}

.family-index {
  padding-top: 7px;
  color: var(--family-accent);
  font-family: "Fira Code", monospace;
  font-size: 0.72rem;
}

.family-heading span {
  color: #7a858a;
  font-family: "Fira Code", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.family-heading h3 {
  margin: 13px 0 22px;
  font-size: clamp(2.5rem, 4.8vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.family-heading p {
  max-width: 470px;
  color: #606d72;
  line-height: 1.75;
}

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

.product-row {
  position: relative;
  width: 100%;
  min-height: 170px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 62px 170px 1fr auto;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.product-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--family-accent);
  transform: translateX(-102%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-row:hover::before,
.product-row:focus-visible::before {
  transform: translateX(0);
}

.product-row > span {
  position: relative;
  z-index: 2;
}

.product-number {
  color: #748086;
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
}

.product-thumb {
  height: 150px;
  align-self: center;
  overflow: hidden;
  background: #fff;
}

.product-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.product-name {
  display: grid;
  gap: 7px;
}

.product-name small {
  color: #778389;
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-name strong {
  max-width: 550px;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.28;
}

.product-open {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-open svg {
  width: 16px;
}

.product-row:hover .product-number,
.product-row:hover .product-name small {
  color: rgba(10, 16, 19, 0.6);
}

.chapter-mark {
  position: absolute;
  right: -0.02em;
  bottom: -0.2em;
  color: rgba(11, 18, 22, 0.035);
  font-size: clamp(14rem, 30vw, 32rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.product-modal-backdrop {
  position: fixed;
  z-index: 400;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 7, 9, 0.82);
  backdrop-filter: blur(14px);
}

.product-modal {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: #0a1013;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 8, 10, 0.7);
  cursor: pointer;
}

.modal-media {
  position: relative;
  min-height: 680px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ebea;
  overflow: hidden;
}

.modal-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 22, 27, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 22, 27, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.modal-media img {
  position: relative;
  z-index: 1;
  width: 86%;
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.modal-media > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  color: #57656b;
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-content {
  padding: 78px 58px 56px;
}

.modal-count {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.modal-content h3 {
  margin: 24px 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.modal-content > p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.modal-content dl {
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-content dl > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-content dt {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
}

.modal-content dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.engineering-strip {
  padding: 150px 5vw;
  color: #fff;
  background: #0a1013;
}

.engineering-title {
  max-width: 950px;
}

.engineering-title > span {
  color: var(--orange);
}

.engineering-title h2 {
  margin: 28px 0 70px;
  font-size: clamp(3.2rem, 7.5vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.engineering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.engineering-grid article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.engineering-grid article > span {
  color: rgba(255, 255, 255, 0.28);
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
}

.engineering-grid article > svg {
  width: 30px;
  height: 30px;
  margin: auto 0 24px;
  color: var(--orange);
}

.engineering-grid h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.engineering-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  line-height: 1.65;
}

.process {
  padding: 150px 5vw;
  background: #dfe4e3;
}

.process-heading {
  max-width: 850px;
}

.process-heading h2,
.faq-heading h2 {
  margin: 28px 0 80px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

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

.process-track article {
  min-height: 300px;
  padding-right: 24px;
}

.process-track article > span {
  color: #69757a;
  font-family: "Fira Code", monospace;
  font-size: 0.63rem;
}

.process-line {
  position: relative;
  height: 1px;
  margin: 26px 0 60px;
  background: rgba(12, 20, 24, 0.18);
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.process-line i {
  display: block;
  width: 0;
  height: 1px;
  background: var(--orange);
  animation: line-grow 1s var(--delay) both paused;
}

.process-track article:hover .process-line i {
  animation-play-state: running;
}

@keyframes line-grow {
  to { width: 100%; }
}

.process-track h3 {
  font-size: 1.3rem;
}

.process-track p {
  color: #647176;
  font-size: 0.84rem;
  line-height: 1.7;
}

.faq {
  padding: 150px 5vw;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  background: #f5f6f5;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

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

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

.faq-list button {
  width: 100%;
  min-height: 104px;
  padding: 0;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-list button > span {
  color: #7d898e;
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
}

.faq-list button strong {
  font-size: 1rem;
}

.faq-list button svg {
  color: var(--orange);
  transition: transform 250ms ease;
}

.faq-list article.open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 46px 34px 66px;
  color: #647176;
  line-height: 1.75;
}

.contact {
  position: relative;
  min-height: 90vh;
  padding: 150px 5vw;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 45%, rgba(8, 127, 85, 0.2), transparent 23%),
    radial-gradient(circle at 88% 72%, rgba(179, 62, 72, 0.1), transparent 20%),
    #070b0d;
  overflow: hidden;
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 62% 50%, black, transparent 72%);
}

.contact > div:last-child {
  position: relative;
  z-index: 2;
}

.contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.contact span svg {
  width: 16px;
}

.contact h2 {
  max-width: 1160px;
  margin: 30px 0;
  font-size: clamp(3.2rem, 7.4vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: -0.078em;
}

.contact p {
  color: rgba(255, 255, 255, 0.56);
}

.contact > div:last-child > div {
  margin-top: 35px;
  display: flex;
  gap: 12px;
}

.button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

footer {
  padding: 80px 5vw 28px;
  color: rgba(255, 255, 255, 0.58);
  background: #030607;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 8vw;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-main .brand img {
  width: 190px;
}

.footer-main p {
  max-width: 390px;
  line-height: 1.7;
}

.footer-main > div > span {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Fira Code", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-main a:hover {
  color: var(--orange);
}

.footer-main a svg {
  width: 15px;
}

.footer-end {
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.3);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
}

@media (max-width: 1050px) {
  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 26px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: rgba(4, 8, 10, 0.97);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .family-chapter {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .family-heading,
  .faq-heading {
    position: static;
  }

  .product-row {
    grid-template-columns: 55px 160px 1fr;
  }

  .product-open {
    display: none;
  }

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

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 61px;
    padding: 6px 7px 6px 12px;
  }

  .brand img {
    width: 132px;
    height: 42px;
  }

  .nav-cta {
    display: none;
  }

  .cinematic-hero {
    height: auto;
    min-height: 100dvh;
  }

  .cinematic-sticky {
    position: relative;
    min-height: 1000px;
    height: auto;
    padding: 100px 16px 30px;
    overflow: hidden;
  }

  .opening-message {
    position: relative;
    inset: auto;
    min-height: 690px;
    padding: 60px 0 30px;
    justify-content: flex-end;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .opening-kicker {
    margin-bottom: auto;
    display: grid;
    gap: 5px;
  }

  .opening-message h1 {
    margin: auto 0 38px;
    font-size: clamp(3.4rem, 16vw, 5rem);
    line-height: 0.88;
  }

  .opening-message h1 span {
    margin-left: 0;
  }

  .opening-message > p,
  .opening-arrow {
    display: none;
  }

  .cinematic-card {
    position: relative;
    left: auto;
    top: auto;
    inset: auto;
    width: auto;
    height: auto;
    visibility: visible;
    min-height: 800px;
    margin-top: 0;
    border-radius: 20px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .top-left {
    top: 24px;
    left: 20px;
  }

  .top-right {
    display: none;
  }

  .assembly-scene {
    top: 40%;
    width: 480px;
    height: 430px;
    margin: -215px 0 0 -240px;
    opacity: 1 !important;
    transform: scale(0.76) !important;
  }

  .assembly-tiles {
    transform: translateY(-44px) rotateX(58deg) rotateZ(-21deg);
  }

  .assembly-services {
    transform: translateY(50px) rotateX(58deg) rotateZ(-21deg);
  }

  .assembly-labels {
    opacity: 1 !important;
  }

  .label {
    font-size: 0.5rem;
  }

  .bottom-copy {
    display: none;
  }

  .hero-handoff {
    position: absolute;
    top: auto;
    padding: 34px 22px 42px;
    justify-content: flex-end;
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(180deg, transparent, rgba(4, 8, 10, 0.95) 38%);
    backdrop-filter: none;
  }

  .hero-handoff h2 {
    margin: 16px 0 25px;
    font-size: 2.45rem;
  }

  .hero-handoff > div {
    width: 100%;
    flex-direction: column;
    gap: 17px;
  }

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

  .hero-progress {
    display: none;
  }

  .parallax-story {
    height: 100vh;
    min-height: 100vh;
  }

  .parallax-title {
    top: 18%;
    left: 16px;
  }

  .parallax-title h2 {
    font-size: 23vw;
  }

  .floating-slab {
    min-width: 250px;
    width: 66vw;
  }

  .slab-one { right: -12vw; top: 26%; }
  .slab-two { right: 25vw; top: 56%; }
  .slab-three { right: -30vw; top: 78%; }

  .cable-ribbon {
    width: 120vw;
  }

  .tech-note {
    display: none;
  }

  .parallax-caption {
    left: 16px;
    right: 16px;
    bottom: 7vh;
  }

  .catalogue-intro {
    min-height: auto;
    padding: 100px 16px 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catalogue-intro h2 {
    font-size: 16vw;
  }

  .family-chapter {
    min-height: auto;
    padding: 90px 16px 100px;
  }

  .family-heading {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .family-heading h3 {
    font-size: 11vw;
  }

  .product-row {
    min-height: 134px;
    grid-template-columns: 34px 94px 1fr;
    gap: 12px;
  }

  .product-thumb {
    height: 104px;
  }

  .product-thumb img {
    height: 164px;
  }

  .product-name strong {
    font-size: 0.92rem;
  }

  .product-name small {
    font-size: 0.48rem;
  }

  .product-modal-backdrop {
    padding: 0;
  }

  .product-modal {
    width: 100%;
    height: 100dvh;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .modal-media {
    min-height: 40vh;
  }

  .modal-content {
    padding: 44px 22px 50px;
  }

  .modal-content h3 {
    font-size: 2.2rem;
  }

  .engineering-strip,
  .process,
  .faq,
  .contact {
    padding: 100px 16px;
  }

  .engineering-title h2,
  .process-heading h2,
  .contact h2 {
    font-size: 13vw;
  }

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

  .engineering-grid article {
    min-height: 260px;
  }

  .process-track article {
    min-height: 220px;
  }

  .faq-heading h2 {
    font-size: 13vw;
  }

  .faq-list button {
    grid-template-columns: 35px 1fr 22px;
    gap: 10px;
  }

  .faq-answer p {
    padding-left: 45px;
    padding-right: 10px;
  }

  .contact {
    min-height: 800px;
  }

  .contact h2 br {
    display: none;
  }

  .contact > div:last-child > div {
    flex-direction: column;
  }

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

  .footer-end {
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  .cinematic-hero,
  .parallax-story {
    height: auto;
  }

  .cinematic-sticky,
  .parallax-sticky {
    position: relative;
    min-height: 100vh;
  }
}

/* Enquiry catalogue */

.enquiry-nav {
  border: 0;
  cursor: pointer;
}

.enquiry-nav span,
.toolbar-enquiry span {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
}

.ecommerce-intro {
  min-height: 82vh;
}

.catalogue-proof {
  display: grid;
  gap: 13px;
}

.catalogue-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f4b50;
  font-size: 0.8rem;
  font-weight: 700;
}

.catalogue-proof svg {
  width: 17px;
  color: var(--orange);
}

.shop-shell {
  padding: 0 5vw 150px;
  background:
    radial-gradient(circle at 87% 14%, rgba(87, 217, 255, 0.09), transparent 24%),
    #e8ebea;
}

.shop-toolbar {
  position: sticky;
  z-index: 30;
  top: 98px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  background: rgba(232, 235, 234, 0.86);
  backdrop-filter: blur(20px) saturate(130%);
}

.catalogue-search {
  min-height: 64px;
  padding: 9px 18px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  column-gap: 13px;
  border: 1px solid rgba(10, 17, 21, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(27, 37, 42, 0.06);
}

.catalogue-search svg {
  grid-row: 1 / span 2;
  width: 20px;
  color: #66747a;
}

.catalogue-search label {
  align-self: end;
  color: #6a777d;
  font-family: "Fira Code", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalogue-search input {
  width: 100%;
  align-self: start;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.92rem;
}

.catalogue-search input::placeholder {
  color: #8b969a;
}

.toolbar-enquiry {
  min-height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 0;
  border-radius: 9px;
  background: #0a1013;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.toolbar-enquiry svg {
  width: 19px;
}

.category-filter {
  padding: 18px 0 34px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
  display: none;
}

.category-filter button {
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #4e5b61;
  border: 1px solid rgba(10, 17, 21, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.category-filter button span {
  color: #839096;
  font-family: "Fira Code", monospace;
  font-size: 0.55rem;
}

.category-filter button:hover,
.category-filter button.active {
  color: #fff;
  border-color: #0a1013;
  background: #0a1013;
}

.category-filter button.active span {
  color: var(--orange);
}

.results-heading {
  padding: 44px 0 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.results-heading span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-heading h3 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.results-heading p {
  max-width: 360px;
  margin: 0;
  color: #66747a;
  font-size: 0.84rem;
  line-height: 1.6;
}

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

.shop-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 17, 21, 0.12);
  border-radius: 12px;
  background: rgba(250, 251, 250, 0.86);
  box-shadow: 0 18px 50px rgba(24, 34, 39, 0.07);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.shop-product-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--family-accent) 56%, #bec6c9);
  box-shadow: 0 30px 75px rgba(24, 34, 39, 0.13);
}

.shop-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.76;
  padding: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background:
    linear-gradient(rgba(10, 17, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 17, 21, 0.035) 1px, transparent 1px),
    #f2f4f3;
  background-size: 38px 38px;
  cursor: pointer;
  overflow: hidden;
}

.shop-product-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 7% 12%;
  height: 20%;
  border-radius: 50%;
  background: rgba(35, 48, 54, 0.17);
  filter: blur(25px);
  transform: scaleX(0.78);
}

.shop-product-media img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-product-card:hover .shop-product-media img {
  transform: scale(1.055) rotate(-1deg);
}

.product-code {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 16px;
  color: #6e7b80;
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
}

.view-chip {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  border-radius: 999px;
  background: rgba(8, 14, 17, 0.84);
  font-size: 0.62rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.view-chip svg {
  width: 14px;
}

.shop-product-copy {
  padding: 24px 24px 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-family {
  color: var(--family-accent);
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-copy h3 {
  margin: 12px 0 13px;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.shop-product-copy > p {
  margin: 0;
  color: #627076;
  font-size: 0.78rem;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.spec-chips {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spec-chips span {
  padding: 6px 8px;
  color: #5d696e;
  border: 1px solid rgba(10, 17, 21, 0.1);
  border-radius: 4px;
  background: #eef1f0;
  font-size: 0.57rem;
  font-weight: 700;
}

.shop-product-actions {
  padding: 12px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8px;
  border-top: 1px solid rgba(10, 17, 21, 0.1);
}

.details-button,
.enquiry-add {
  min-height: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.details-button {
  color: #344147;
  border: 1px solid rgba(10, 17, 21, 0.13);
  background: transparent;
}

.enquiry-add {
  color: #fff;
  border: 1px solid #10171b;
  background: #10171b;
}

.enquiry-add svg,
.modal-actions .button svg {
  width: 17px;
}

.enquiry-add.added,
.modal-actions .button.added {
  color: #17351f;
  border-color: #aed6b8;
  background: #dff3e4;
}

.catalogue-empty {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.catalogue-empty svg {
  color: #829095;
}

.catalogue-empty h3 {
  margin: 18px 0 6px;
  font-size: 1.8rem;
}

.catalogue-empty p {
  margin: 0 0 20px;
  color: #67757a;
}

.catalogue-empty button {
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  border: 0;
  border-radius: 5px;
  background: #10171b;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-actions .button {
  border: 0;
  cursor: pointer;
}

.enquiry-drawer-backdrop {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(3, 7, 9, 0.68);
  backdrop-filter: blur(10px);
}

.enquiry-drawer {
  width: min(640px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 90% 4%, rgba(87, 217, 255, 0.11), transparent 22%),
    #0a1013;
  box-shadow: -40px 0 100px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
}

.drawer-head {
  position: sticky;
  z-index: 3;
  top: 0;
  padding: 28px 28px 22px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(10, 16, 19, 0.88);
  backdrop-filter: blur(18px);
}

.drawer-head span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.drawer-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.drawer-head > button,
.drawer-products article > button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.drawer-products {
  padding: 18px 28px 0;
}

.drawer-products article {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 86px 1fr 44px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-products article img {
  width: 86px;
  height: 72px;
  object-fit: contain;
  background: #edf0ef;
}

.drawer-products article span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.drawer-products article h3 {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.drawer-products article > button {
  color: var(--brand-red-bright);
}

.drawer-empty {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.drawer-empty > svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.drawer-empty h3 {
  margin: 20px 0 8px;
  font-size: 1.6rem;
}

.drawer-empty p {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.drawer-empty button {
  min-height: 46px;
  padding: 0 18px;
  color: #0b1114;
  border: 0;
  border-radius: 5px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.enquiry-form {
  margin-top: 22px;
  padding: 26px 28px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.form-intro {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.form-intro svg {
  color: var(--orange);
}

.form-intro h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
}

.form-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.55;
}

.form-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
}

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

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 0.82rem;
}

.form-grid textarea {
  min-height: 112px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(8, 127, 85, 0.15);
}

.send-enquiry {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(8, 127, 85, 0.22);
}

.send-enquiry svg {
  width: 18px;
}

.form-note {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .enquiry-nav {
    display: inline-flex;
    margin-left: auto;
    min-width: 48px;
    padding: 0 11px;
    font-size: 0;
  }

  .enquiry-nav span {
    font-size: 0.6rem;
  }

  .ecommerce-intro {
    min-height: auto;
  }

  .shop-shell {
    padding: 0 16px 90px;
  }

  .shop-toolbar {
    top: 78px;
    padding: 12px 0;
    grid-template-columns: 1fr 52px;
  }

  .catalogue-search {
    min-height: 58px;
    padding: 8px 12px;
  }

  .catalogue-search label {
    display: none;
  }

  .catalogue-search svg {
    grid-row: auto;
  }

  .catalogue-search input {
    align-self: center;
    font-size: 0.8rem;
  }

  .toolbar-enquiry {
    min-height: 58px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .toolbar-enquiry span {
    position: absolute;
    margin: -34px -34px 0 0;
    font-size: 0.55rem;
  }

  .category-filter {
    margin-right: -16px;
    padding: 12px 16px 28px 0;
  }

  .results-heading {
    padding-top: 32px;
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }

  .results-heading h3 {
    font-size: 2.3rem;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-product-media {
    aspect-ratio: 1 / 0.72;
  }

  .shop-product-copy {
    padding: 20px 18px 16px;
  }

  .shop-product-actions {
    grid-template-columns: 0.72fr 1.28fr;
  }

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

  .modal-actions .text-action {
    justify-content: center;
  }

  .drawer-head,
  .drawer-products,
  .enquiry-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .drawer-products article {
    grid-template-columns: 72px 1fr 44px;
    gap: 11px;
  }

  .drawer-products article img {
    width: 72px;
    height: 66px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }
}
/* Catalogue-first redesign: stable document flow, restrained motion, OLED surfaces. */
:root {
  --future-bg: #050708;
  --future-surface: #0a0e10;
  --future-surface-2: #101619;
  --future-line: rgba(255, 255, 255, 0.1);
  --future-muted: #8b979c;
  --future-cyan: #58d49f;
  --future-red: #c44b55;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  position: relative;
  z-index: 100;
  top: auto;
  left: auto;
  width: 100%;
  padding: 16px 0;
  background: var(--future-bg);
  pointer-events: auto;
}

.nav-shell {
  width: min(1460px, calc(100% - 40px));
  min-height: 72px;
  border-color: var(--future-line);
  border-radius: 14px;
  background: rgba(13, 18, 21, 0.92);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.nav-shell::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 127, 85, 0.82), rgba(179, 62, 72, 0.62), transparent);
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.68);
}

.nav-menu a:hover {
  color: #fff;
}

.catalogue {
  color: #f3f6f7;
  background: var(--future-bg);
}

.future-catalogue-hero {
  position: relative;
  width: min(1460px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 5vw, 78px) 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  grid-template-rows: 1fr auto;
  gap: 44px 7vw;
  border: 1px solid var(--future-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 35%, rgba(21, 160, 108, 0.14), transparent 24%),
    radial-gradient(circle at 18% 15%, rgba(179, 62, 72, 0.12), transparent 24%),
    linear-gradient(145deg, #0d1215, #050708 62%);
  overflow: hidden;
  isolation: isolate;
}

.future-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.future-hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  align-self: center;
}

.future-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #afbabf;
  font-family: "Fira Code", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
}

.future-hero-copy h1 {
  max-width: 780px;
  margin: 32px 0 28px;
  color: #fff;
  font-size: clamp(4rem, 7.3vw, 8.4rem);
  font-weight: 650;
  line-height: 0.86;
  letter-spacing: -0.078em;
}

.future-hero-copy h1 em {
  color: #768287;
  font-style: normal;
  font-weight: 500;
}

.future-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #9ca7ab;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.future-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.future-actions a,
.future-actions button {
  min-height: 55px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--future-line);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.future-actions a:hover,
.future-actions button:hover {
  transform: translateY(-2px);
}

.future-actions .future-primary {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.future-actions button {
  color: #d9e0e2;
  background: rgba(255, 255, 255, 0.035);
}

.future-actions svg {
  width: 17px;
}

.future-actions button span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #080b0d;
  border-radius: 50%;
  background: #fff;
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
}

.future-system-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.future-system-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 160, 108, 0.16), transparent 65%);
  filter: blur(8px);
}

.future-visual-orbit {
  position: absolute;
  border: 1px solid rgba(88, 212, 159, 0.24);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-12deg);
}

.orbit-one {
  width: 88%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 64%;
  aspect-ratio: 1;
  border-color: rgba(179, 62, 72, 0.34);
}

.future-panel {
  position: relative;
  z-index: 2;
  width: min(620px, 96%);
  aspect-ratio: 1.35 / 1;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(13, 19, 22, 0.88);
  background-size: 28px 28px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.46);
  transform: rotateZ(-3deg);
  overflow: hidden;
}

.future-panel::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(88, 212, 159, 0.2);
  border-radius: 12px;
}

.future-panel img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
  filter: saturate(0.9) contrast(1.05);
}

.future-panel-code {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  color: var(--future-cyan);
  font-family: "Fira Code", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.future-scanline {
  position: absolute;
  z-index: 4;
  right: 12px;
  left: 12px;
  top: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--future-cyan), transparent);
  box-shadow: 0 0 14px var(--future-cyan);
  opacity: 0.72;
}

.product-modal-backdrop {
  padding: 18px;
}

.product-modal {
  width: min(1480px, 100%);
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #080c0e;
}

.modal-media {
  position: sticky;
  top: 0;
  min-height: calc(100vh - 36px);
  height: calc(100vh - 36px);
  align-self: start;
}

.modal-media img {
  width: 88%;
  max-height: 68vh;
}

.modal-content {
  min-width: 0;
  padding: 68px 54px 52px;
}

.modal-content h3 {
  max-width: 780px;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
}

.modal-content > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
}

.modal-specification {
  margin-top: 42px;
}

.modal-section-head > span,
.modal-information-grid section > span {
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.modal-section-head h4,
.modal-information-grid h4 {
  margin: 9px 0 0;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.modal-content dl {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-content dl > div {
  min-height: 98px;
  padding: 18px;
  display: block;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-content dt {
  color: #768388;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-content dd {
  margin-top: 12px;
  color: #e0e6e8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.modal-information-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.modal-information-grid section {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.modal-information-grid ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.modal-information-grid li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: #9eaaae;
  font-size: 0.72rem;
  line-height: 1.5;
}

.modal-information-grid li svg {
  width: 15px;
  color: var(--orange);
}

.modal-application-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.modal-application-chips span {
  padding: 8px 10px;
  color: #c7d0d3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: #111719;
  font-size: 0.62rem;
}

.modal-project-note {
  margin-top: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  border: 1px solid rgba(88, 212, 159, 0.22);
  border-radius: 8px;
  background: rgba(8, 127, 85, 0.07);
}

.modal-project-note > svg {
  width: 22px;
  color: var(--future-cyan);
}

.modal-project-note strong {
  font-size: 0.76rem;
}

.modal-project-note p {
  margin: 7px 0 0;
  color: #849196;
  font-size: 0.68rem;
  line-height: 1.55;
}

.modal-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.system-guide {
  padding: 150px 5vw;
  color: #eef2f3;
  background:
    radial-gradient(circle at 10% 15%, rgba(179, 62, 72, 0.08), transparent 22%),
    #0a0e10;
}

.system-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 8vw;
}

.system-guide-heading > span,
.selection-guide-title > span {
  grid-column: 1 / -1;
  color: var(--orange);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.system-guide-heading h2,
.selection-guide-title h2 {
  margin: 18px 0 0;
  font-size: clamp(3.5rem, 7vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.system-guide-heading h2 em {
  color: #667277;
  font-style: normal;
}

.system-guide-heading > p {
  margin: 0;
  color: #929da1;
  line-height: 1.75;
}

.system-guide-visual {
  position: relative;
  min-height: 620px;
  margin-top: 80px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.system-guide-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.system-guide-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(5, 8, 10, 0.76);
  backdrop-filter: blur(16px);
}

.system-guide-overlay span {
  color: var(--future-cyan);
  font-family: "Fira Code", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.system-guide-overlay strong {
  font-size: 0.76rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-grid article {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-grid article > span {
  color: #576268;
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
}

.capability-grid svg {
  width: 30px;
  height: 30px;
  margin: auto 0 25px;
  color: var(--orange);
}

.capability-grid h3 {
  margin: 0;
  font-size: 1.25rem;
}

.capability-grid p {
  margin: 12px 0 0;
  color: #849095;
  font-size: 0.75rem;
  line-height: 1.65;
}

.selection-guide {
  margin-top: 150px;
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: 8vw;
}

.selection-guide-title {
  align-self: start;
}

.selection-guide-title h2 {
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.selection-family-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.selection-family-list article {
  position: relative;
  min-height: 150px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.selection-family-list article::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -18px;
  width: 3px;
  background: var(--guide-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.selection-family-list article:hover::before {
  opacity: 1;
}

.selection-family-list article > span {
  color: var(--guide-accent);
  font-family: "Fira Code", monospace;
  font-size: 0.62rem;
}

.selection-family-list h3 {
  margin: 0;
  font-size: 1.2rem;
}

.selection-family-list p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #7f8b90;
  font-size: 0.72rem;
  line-height: 1.6;
}

.selection-family-list strong {
  color: #7c898e;
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
  white-space: nowrap;
}

.future-tag {
  position: absolute;
  z-index: 5;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ced6d9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(7, 10, 12, 0.86);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  font-family: "Fira Code", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.future-tag i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--future-cyan);
  box-shadow: 0 0 10px var(--future-cyan);
}

.tag-a {
  top: 14%;
  left: 2%;
}

.tag-b {
  right: 0;
  bottom: 24%;
}

.tag-c {
  bottom: 10%;
  left: 9%;
}

.future-metrics {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 0.55fr)) minmax(300px, 1.35fr);
  border-top: 1px solid var(--future-line);
}

.future-metrics article,
.future-protocol {
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--future-line);
}

.future-metrics article > span,
.future-protocol > span {
  color: #657176;
  font-family: "Fira Code", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.future-metrics strong {
  margin-top: 14px;
  display: block;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.future-metrics article p {
  margin: 4px 0 0;
  color: #78858a;
  font-size: 0.67rem;
}

.future-protocol {
  border-right: 0;
}

.future-protocol p {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #98a4a9;
  font-size: 0.65rem;
}

.future-protocol svg {
  width: 13px;
  color: var(--orange);
}

.shop-shell {
  padding: 90px 5vw 150px;
  color: #eef2f3;
  background:
    radial-gradient(circle at 88% 8%, rgba(21, 160, 108, 0.09), transparent 22%),
    #06090a;
}

.shop-toolbar {
  position: relative;
  z-index: auto;
  top: auto;
  padding: 0 0 18px;
  background: transparent;
  backdrop-filter: none;
}

.catalogue-search {
  border-color: var(--future-line);
  background: var(--future-surface);
  box-shadow: none;
}

.catalogue-search label,
.catalogue-search svg {
  color: #7d898e;
}

.catalogue-search input {
  color: #fff;
}

.catalogue-search input::placeholder {
  color: #626e73;
}

.toolbar-enquiry {
  color: #fff;
  border: 1px solid rgba(8, 127, 85, 0.65);
  background: #111719;
}

.category-filter button {
  color: #9aa5a9;
  border-color: var(--future-line);
  background: #0b0f11;
}

.category-filter button span {
  color: #667277;
}

.category-filter button:hover,
.category-filter button.active {
  color: #fff;
  border-color: var(--orange);
  background: rgba(8, 127, 85, 0.16);
}

.results-heading {
  border-color: var(--future-line);
}

.results-heading h3 {
  color: #fff;
}

.results-heading p {
  color: var(--future-muted);
}

.shop-product-card {
  border-color: var(--future-line);
  background: var(--future-surface);
  box-shadow: none;
}

.shop-product-card:hover {
  border-color: color-mix(in srgb, var(--family-accent) 68%, #263338);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.shop-product-media {
  background:
    linear-gradient(rgba(10, 17, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 17, 21, 0.04) 1px, transparent 1px),
    #e7ebea;
  background-size: 38px 38px;
}

.shop-product-copy h3 {
  color: #f3f6f7;
}

.shop-product-copy > p {
  color: #879398;
}

.spec-chips span {
  color: #9ba6aa;
  border-color: var(--future-line);
  background: #111719;
}

.shop-product-actions {
  border-color: var(--future-line);
}

.details-button {
  color: #bbc5c8;
  border-color: var(--future-line);
}

.enquiry-add {
  border-color: var(--brand-green);
  background: var(--brand-green);
}

.catalogue-empty h3 {
  color: #fff;
}

@media (max-width: 1100px) {
  .future-catalogue-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .future-hero-copy {
    padding-top: 35px;
  }

  .future-system-visual {
    min-height: 520px;
  }

  .future-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .future-protocol {
    grid-column: 1 / -1;
    border-top: 1px solid var(--future-line);
  }
}

@media (max-width: 720px) {
  .site-header {
    top: auto;
    padding: 10px 0;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 6px 7px 6px 12px;
  }

  .nav-menu {
    top: 70px;
  }

  .future-catalogue-hero {
    width: calc(100% - 20px);
    padding: 62px 20px 20px;
    gap: 32px;
    border-radius: 17px;
  }

  .future-hero-copy h1 {
    margin: 24px 0 22px;
    max-width: 100%;
    font-size: clamp(2.2rem, 10.8vw, 3.2rem);
    letter-spacing: -0.065em;
    overflow-wrap: normal;
  }

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

  .future-actions a,
  .future-actions button {
    width: 100%;
  }

  .future-system-visual {
    min-height: 365px;
  }

  .future-panel {
    width: 96%;
    padding: 0;
  }

  .future-tag {
    font-size: 0.48rem;
  }

  .tag-a {
    top: 10%;
  }

  .tag-b {
    bottom: 20%;
  }

  .tag-c {
    bottom: 6%;
    left: 2%;
  }

  .future-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .future-metrics article {
    min-height: 105px;
    padding: 15px 10px;
  }

  .future-metrics article:last-of-type {
    border-right: 0;
  }

  .future-metrics strong {
    font-size: 1.55rem;
  }

  .future-metrics article p {
    font-size: 0.56rem;
  }

  .future-protocol {
    min-height: auto;
    padding: 20px 10px 4px;
  }

  .shop-shell {
    padding: 68px 16px 90px;
  }

  .shop-toolbar {
    top: auto;
    padding: 0 0 12px;
  }

  .product-modal-backdrop {
    padding: 0;
  }

  .product-modal {
    height: 100dvh;
    max-height: none;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
  }

  .modal-media {
    position: relative;
    min-height: 38vh;
    height: 38vh;
  }

  .modal-content {
    padding: 42px 18px 54px;
  }

  .modal-content h3 {
    font-size: 2.25rem;
  }

  .modal-content dl,
  .modal-information-grid {
    grid-template-columns: 1fr;
  }

  .modal-content dl > div {
    min-height: auto;
  }

  .system-guide {
    padding: 100px 16px;
  }

  .system-guide-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .system-guide-heading > span {
    grid-column: auto;
  }

  .system-guide-heading h2 {
    font-size: 13vw;
  }

  .system-guide-visual {
    min-height: 460px;
    margin-top: 55px;
  }

  .system-guide-visual img {
    min-height: 460px;
    object-position: 68% center;
  }

  .system-guide-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .capability-grid article {
    min-height: 240px;
  }

  .selection-guide {
    margin-top: 100px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .selection-family-list article {
    grid-template-columns: 34px 1fr;
  }

  .selection-family-list article > strong {
    grid-column: 2;
  }
}

/* Real product photography */
.shop-product-media {
  padding: 0;
  background: #11181b;
}

.shop-product-media::after {
  z-index: 2;
  inset: 0;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 11, 0.3), transparent 45%, rgba(4, 9, 11, 0.52)),
    linear-gradient(90deg, rgba(4, 9, 11, 0.22), transparent 55%);
  filter: none;
  transform: none;
}

.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: saturate(0.92) contrast(1.04);
}

.shop-product-card:hover .shop-product-media img {
  transform: scale(1.055);
  filter: saturate(1.03) contrast(1.05);
}

.product-code {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.view-chip {
  z-index: 3;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(4, 10, 12, 0.74);
  backdrop-filter: blur(10px);
}

.modal-media {
  padding: 0;
  background: #091013;
}

.modal-media::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 9, 11, 0.08), transparent 55%, rgba(4, 9, 11, 0.42)),
    linear-gradient(90deg, rgba(4, 9, 11, 0.15), transparent 60%);
}

.modal-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  mix-blend-mode: normal;
}

.modal-media > span {
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.drawer-products article img {
  object-fit: cover;
  mix-blend-mode: normal;
}

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

  .future-actions a,
  .future-actions button,
  .shop-product-card,
  .shop-product-media img {
    transition: none;
  }
}

/* Profile IT Solutions brand layer */
.future-actions .future-primary,
.enquiry-add,
.send-enquiry,
.button.orange {
  border-color: var(--brand-green);
  background: linear-gradient(135deg, var(--brand-green-bright), var(--brand-green));
  box-shadow: 0 16px 42px rgba(8, 127, 85, 0.2);
}

.future-kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brand-red);
}

.tag-b i {
  background: var(--future-red);
  box-shadow: 0 0 10px var(--future-red);
}

.toolbar-enquiry span,
.enquiry-nav span {
  background: var(--brand-red);
}

.category-filter button.active {
  box-shadow: inset 0 0 0 1px rgba(21, 160, 108, 0.22), 0 10px 30px rgba(8, 127, 85, 0.12);
}

.engineering-grid article > div {
  margin: auto 0 24px;
}

.engineering-grid article > div > svg {
  width: 30px;
  height: 30px;
  color: var(--brand-green-bright);
}

.faq-list button > span:last-child {
  display: inline-flex;
}

.faq-list button > span:last-child svg {
  width: 20px;
}

/* Product-aware WhatsApp enquiry actions */
.whatsapp-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.shop-product-actions {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr) minmax(0, 1.2fr);
}

.details-button,
.product-whatsapp,
.enquiry-add {
  min-width: 0;
  min-height: 48px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-whatsapp {
  color: #d7ffe7;
  border: 1px solid rgba(37, 211, 102, 0.52);
  background: rgba(37, 211, 102, 0.1);
}

.product-whatsapp:hover {
  color: #06150c;
  border-color: #25d366;
  background: #25d366;
}

.product-whatsapp .whatsapp-icon {
  color: #25d366;
}

.product-whatsapp:hover .whatsapp-icon {
  color: #06150c;
}

.modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
}

.modal-whatsapp,
.modal-actions .button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.modal-whatsapp {
  color: #06150c;
  border: 1px solid #25d366;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.15);
}

.modal-actions .text-action {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .shop-product-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .details-button {
    grid-column: 1;
  }

  .product-whatsapp {
    grid-column: 2;
  }

  .enquiry-add {
    grid-column: 1 / -1;
  }

  .modal-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-actions .text-action {
    grid-column: auto;
    justify-self: center;
  }
}
