﻿:root {
  --ink: #10222c;
  --muted: #61717b;
  --line: #d9e4e7;
  --wash: #f4f8f8;
  --leaf: #2f7d32;
  --leaf-dark: #1f5524;
  --leaf-soft: #e7f5ea;
  --water: #0f7c86;
  --water-dark: #0b4650;
  --sun: #f4b83f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 34, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 34, 44, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 0 clamp(18px, 2vw, 20px);
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: min(230px, calc(100vw - 40px));
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-title {
  color: var(--leaf);
  font-size: clamp(23px, 6vw, 28px);
  line-height: 1;
  font-weight: 800;
}

.brand-tagline {
  color: var(--muted);
  font-size: clamp(11px, 3vw, 14px);
  line-height: 1.2;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #324751;
  font-size: 14px;
  font-weight: 700;
}

.menu-link,
.menu-button {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 11px;
  color: inherit;
  background: linear-gradient(180deg, transparent, transparent);
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.menu-link:hover,
.menu-link:focus,
.menu-link[aria-current="page"],
.menu-item:hover .menu-button,
.menu-button:focus {
  color: var(--leaf-dark);
  background: linear-gradient(135deg, #f1fbf3, #e1f5e5);
  box-shadow: inset 0 -2px 0 var(--leaf), 0 8px 20px rgba(16, 34, 44, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.menu-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 270px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown {
  display: grid;
}

.dropdown a {
  display: block;
  border-radius: 6px;
  padding: 9px 10px;
  color: #324751;
  font-size: 13px;
  font-weight: 700;
}

.dropdown a:hover,
.dropdown a:focus {
  color: var(--leaf);
  background: #edf6ee;
  outline: none;
}

.dropdown-heading {
  padding: 10px 10px 5px;
  color: var(--leaf-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dropdown-divider {
  height: 1px;
  margin: 6px 4px;
  background: var(--line);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--white);
  background: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 125, 50, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 31, 20, 0.94) 0%, rgba(13, 54, 34, 0.78) 48%, rgba(13, 54, 34, 0.24) 100%);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1200ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-inner {
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  padding: 58px 0 74px;
}

.hero-copy {
  max-width: 1040px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  margin-bottom: 20px;
  color: #d8e7ea;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero-actions:empty {
  display: none;
}

.why-panel {
  width: min(100%, 980px);
  margin-top: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.why-title {
  margin: 52px 0 0;
  color: #eef7ef;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.highlight-card {
  min-height: 104px;
  padding: 16px 18px;
  background: transparent;
  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.highlight-card:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.highlight-card:nth-child(3n + 2),
.highlight-card:nth-child(3n + 3) {
  border-left: 1px solid var(--line);
}

.highlight-card:hover,
.highlight-card:focus-within {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(16, 34, 44, 0.18);
  transform: scale(1.08);
  z-index: 1;
}

.highlight-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  min-height: 32px;
  margin-bottom: 7px;
  color: var(--leaf);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.count-up {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.stat-prefix,
.stat-unit {
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: inherit;
}

.highlight-card span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.home-hero {
  min-height: min(720px, calc(100vh - 66px));
  background: #081c14;
}

.home-hero::before {
  background:
    radial-gradient(ellipse at 50% 28%, rgba(119, 218, 143, 0.28), transparent 34%),
    radial-gradient(circle at 18% 38%, rgba(111, 232, 216, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(6, 25, 18, 0.08) 0%, rgba(6, 25, 18, 0.44) 58%, rgba(6, 25, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 25, 18, 0.38), rgba(6, 25, 18, 0.06));
}

.home-hero .hero-slide {
  opacity: 0;
  filter: saturate(1.04) contrast(1.02);
  transform: translateX(100%) scale(1.03) rotate(0.001deg);
  transition:
    transform 980ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 980ms ease;
}

.home-hero .hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1.03) rotate(0.001deg);
  z-index: 1;
  animation: heroImagePlay 4500ms ease both;
}

.home-hero .hero-slide.exiting {
  opacity: 0;
  transform: translateX(-100%) scale(1.03) rotate(0.001deg);
  z-index: 2;
}

.home-hero .hero-inner {
  align-items: center;
  justify-items: center;
  min-height: min(720px, calc(100vh - 66px));
  padding: 84px 0 92px;
}

.home-hero .hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  animation: heroTextRise 780ms ease both;
}

.home-hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4.7vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
}

.hero-word {
  display: inline-block;
  margin: 0 0.06em;
  transform-origin: center;
  animation: heroWordLift 720ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.hero-word.water {
  color: #dcffe3;
}

.hero-word.load {
  color: #76d04f;
  font-size: clamp(13.5px, 4.25vw, 42px);
  white-space: nowrap;
  animation-delay: 120ms;
}

.hero-word.run {
  background: linear-gradient(90deg, #f4fff5 0%, #baf17b 42%, #64d35d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  animation-delay: 240ms;
}

.home-hero p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #edf7f0;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.45;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-home-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(184, 240, 113, 0.58);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  animation: heroLinkPop 520ms ease both;
}

.hero-home-links a::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(184, 240, 113, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.hero-home-links a:hover::before,
.hero-home-links a:focus::before {
  left: 112%;
}

.hero-home-links a:nth-child(1) {
  box-shadow: 0 12px 28px rgba(47, 125, 50, 0.32);
}

.hero-home-links a:nth-child(2) {
  animation-delay: 80ms;
  color: #2b7a36;
}

.hero-home-links a:nth-child(2):hover,
.hero-home-links a:nth-child(2):focus {
  background: #2b7a36;
}

.hero-home-links a:nth-child(3) {
  animation-delay: 160ms;
  color: #4a8a20;
}

.hero-home-links a:nth-child(3):hover,
.hero-home-links a:nth-child(3):focus {
  background: #4a8a20;
}

.hero-home-links a:hover,
.hero-home-links a:focus {
  color: var(--white);
  background: var(--leaf);
  outline: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.home-why {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  background:
    radial-gradient(circle at 12% 20%, rgba(164, 214, 94, 0.24), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(87, 201, 115, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fff6 100%);
}

.home-why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 125, 50, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 125, 50, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 74%, transparent);
}

.home-section-heading {
  position: relative;
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-section-heading::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), #42a9b5, #a4d65e);
}

.home-section-heading h2 {
  margin-bottom: 8px;
  color: #0f351f;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.home-section-heading h2 span {
  display: inline-grid;
  place-items: center;
  width: 0.9em;
  height: 0.9em;
  margin-left: 6px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), #42a9b5);
  font-size: 0.78em;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(47, 125, 50, 0.22);
  transform: translateY(-0.02em);
}

.home-section-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.home-why .why-panel {
  position: relative;
  width: 100%;
  margin-top: 0;
  border: 1px solid rgba(47, 125, 50, 0.3);
  border-radius: 28px;
  padding: 40px 30px 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 240, 113, 0.24), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(75, 180, 130, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 250, 233, 0.94));
  backdrop-filter: none;
  box-shadow: 0 30px 76px rgba(15, 34, 44, 0.14);
}

.home-why .why-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(47, 125, 50, 0.56), rgba(87, 201, 115, 0.38), rgba(184, 240, 113, 0.48));
  filter: blur(18px);
  opacity: 0.5;
}

.home-why .why-panel::after {
  content: none;
  position: absolute;
  left: 16%;
  right: 16%;
  top: 48%;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(31, 85, 36, 0.12), rgba(87, 201, 115, 0.72), rgba(184, 240, 113, 0.72), rgba(31, 85, 36, 0.12));
  box-shadow:
    0 0 0 6px rgba(87, 201, 115, 0.08),
    0 10px 28px rgba(47, 125, 50, 0.16);
  transform: translateY(-50%);
  animation: waterPulse 5.4s ease-in-out infinite;
}

.home-why .highlight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  justify-items: center;
}

.home-why .highlight-grid::before,
.home-why .highlight-grid::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  z-index: 0;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 85, 36, 0.12), rgba(87, 201, 115, 0.72), rgba(184, 240, 113, 0.72), rgba(31, 85, 36, 0.12));
  box-shadow:
    0 0 0 5px rgba(87, 201, 115, 0.07),
    0 8px 22px rgba(47, 125, 50, 0.13);
  animation: waterPulseRow 5.4s ease-in-out infinite;
  pointer-events: none;
}

.home-why .highlight-grid::before {
  top: 25%;
}

.home-why .highlight-grid::after {
  top: 75%;
  animation-delay: 900ms;
}

.home-why .highlight-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 0;
  aspect-ratio: 1;
  width: min(100%, 220px);
  overflow: hidden;
  border: 1px solid rgba(47, 125, 50, 0.2);
  border-radius: 50%;
  padding: clamp(12px, 1.25vw, 17px);
  text-align: center;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.62) 26%, transparent 27%),
    radial-gradient(circle at 70% 76%, rgba(184, 240, 113, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 250, 237, 0.94));
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.45),
    0 18px 38px rgba(15, 34, 44, 0.12);
  animation: podFloat 5s ease-in-out infinite;
}

.home-why .highlight-card:nth-child(2n) {
  animation-delay: 800ms;
  margin-top: 20px;
}

.home-why .highlight-card:nth-child(3n) {
  animation-delay: 1400ms;
}

.home-why .highlight-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(87, 201, 115, 0.08);
  pointer-events: none;
}

.home-why .highlight-card::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 14%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: rgba(87, 201, 115, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.home-why .highlight-card:nth-child(2)::after,
.home-why .highlight-card:nth-child(5)::after {
  background: rgba(74, 168, 185, 0.12);
}

.home-why .highlight-card:nth-child(3)::after,
.home-why .highlight-card:nth-child(6)::after {
  background: rgba(164, 214, 94, 0.13);
}

.home-why .highlight-card:hover,
.home-why .highlight-card:focus-within {
  background: var(--white);
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.5),
    0 26px 58px rgba(15, 34, 44, 0.18);
  transform: translateY(-12px) scale(1.08);
}

.home-why .highlight-card:nth-child(2n):hover,
.home-why .highlight-card:nth-child(2n):focus-within {
  transform: translateY(8px) scale(1.08);
}

.home-why .highlight-card:hover::after,
.home-why .highlight-card:focus-within::after {
  background: rgba(47, 125, 50, 0.15);
  transform: scale(1.24);
}

.metric-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 6px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #145d2c;
  background: rgba(184, 240, 113, 0.2);
  max-width: 94%;
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.12;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 28px;
  margin-bottom: 7px;
  border: 1px solid rgba(47, 125, 50, 0.2);
  border-radius: 999px;
  padding: 3px 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f5524, #3f9b45);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(47, 125, 50, 0.18);
}

.home-why .highlight-stat {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-size: clamp(29px, 3.35vw, 48px);
  color: #176d34;
  text-shadow: 0 12px 26px rgba(47, 125, 50, 0.14);
}

.home-why .stat-prefix,
.home-why .stat-unit {
  font-size: 0.62em;
}

.home-why .highlight-card > span:last-child {
  position: relative;
  z-index: 1;
  color: #29453a;
  max-width: 90%;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 800;
  line-height: 1.18;
}

.why-close {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(47, 125, 50, 0.16);
  padding-top: 18px;
  color: #163f25;
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}

.home-inventions {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  background:
    linear-gradient(135deg, rgba(47, 125, 50, 0.08), rgba(74, 168, 185, 0.08)),
    #ffffff;
}

.home-inventions::before {
  content: "";
  position: absolute;
  inset: auto -8% 22px -8%;
  height: 120px;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(47, 125, 50, 0.12), transparent 36%),
    radial-gradient(ellipse at 50% 50%, rgba(164, 214, 94, 0.16), transparent 34%),
    radial-gradient(ellipse at 88% 50%, rgba(74, 168, 185, 0.12), transparent 36%);
  pointer-events: none;
}

.home-inventions .wrap {
  position: relative;
  width: min(1320px, calc(100% - 32px));
}

.inventions-head {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.inventions-head h2 {
  margin: 8px 0 8px;
  color: #0f351f;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.inventions-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #385247;
  font-size: clamp(15px, 1.55vw, 19px);
  font-weight: 650;
  line-height: 1.45;
  text-wrap: balance;
}

.invention-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(47, 125, 50, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(74, 168, 185, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(164, 214, 94, 0.13), transparent 26%),
    radial-gradient(circle at 96% 100%, rgba(74, 168, 185, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.97);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
  box-shadow: 0 24px 58px rgba(17, 46, 31, 0.1);
}

.invention-link-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 96px;
  overflow: hidden;
  border-right: 1px solid rgba(47, 125, 50, 0.12);
  border-bottom: 1px solid rgba(47, 125, 50, 0.12);
  padding: 16px 15px;
  color: #14361f;
  background: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease, color 180ms ease;
}

.invention-link-card:nth-child(3n) {
  border-right: 1px solid rgba(47, 125, 50, 0.12);
}

.invention-link-card:nth-child(4n) {
  border-right: 0;
}

.invention-link-card:nth-last-child(-n + 3) {
  border-bottom: 1px solid rgba(47, 125, 50, 0.12);
}

.invention-link-card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.invention-link-card::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 54px;
  bottom: 14px;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 125, 50, 0.28), rgba(74, 168, 185, 0));
}

.invention-link-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 214, 94, 0.18), transparent 68%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.invention-link-card:hover,
.invention-link-card:focus {
  background: rgba(235, 250, 239, 0.92);
  box-shadow: inset 0 0 0 1px rgba(47, 125, 50, 0.18);
  color: #0c2f19;
  transform: translateY(-3px);
  outline: none;
}

.invention-link-card:hover::after,
.invention-link-card:focus::after {
  opacity: 1;
  transform: scale(1.12);
}

.invention-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #2f7d32, #67bd45);
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(47, 125, 50, 0.2);
}

.invention-link-card span:last-child {
  position: relative;
  z-index: 1;
}

.invention-link-card strong {
  display: block;
  margin-bottom: 5px;
  color: #102f1d;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 950;
  line-height: 1.08;
}

.invention-link-card small {
  display: block;
  max-width: 560px;
  color: #40584d;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.28;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.back-to-inventions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  border: 1px solid rgba(47, 125, 50, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: #1f6f2c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(17, 46, 31, 0.08);
}

.back-to-inventions:hover,
.back-to-inventions:focus {
  color: #ffffff;
  background: #2f7d32;
  outline: none;
}

.home-proof {
  position: relative;
  overflow: hidden;
  padding: 54px 0 62px;
  border-top: 1px solid rgba(47, 125, 50, 0.12);
  background:
    radial-gradient(circle at 8% 12%, rgba(74, 168, 185, 0.16), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(164, 214, 94, 0.22), transparent 24%),
    linear-gradient(180deg, #f4faf5 0%, #ffffff 100%);
}

.home-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 86vw);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #2f7d32, #9ad85e, #2f7d32, transparent);
  transform: translateX(-50%);
  animation: proofStream 4.8s ease-in-out infinite;
}

.home-proof .home-section-heading h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.home-proof .wrap {
  width: min(1420px, calc(100% - 32px));
}

.proof-layout,
.showcase-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.showcase-board {
  grid-template-columns: 1fr;
  gap: 20px;
}

.award-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f5fff7 100%);
  box-shadow: 0 16px 38px rgba(15, 34, 44, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-card {
  display: grid;
  align-content: start;
  min-height: 0;
}

.award-panel.showcase-card {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.award-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.dupont-logo {
  width: min(104px, 22vw);
  margin-bottom: 0;
  filter: drop-shadow(0 10px 18px rgba(15, 34, 44, 0.08));
}

.award-panel::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 24px;
  background: rgba(47, 125, 50, 0.04);
  transform: rotate(18deg);
}

.award-panel:hover {
  box-shadow: 0 20px 44px rgba(15, 34, 44, 0.14);
  transform: translateY(-3px);
}

.award-panel {
  border-left: 5px solid var(--leaf);
  background:
    linear-gradient(145deg, #ffffff 0%, #f4fff6 100%),
    radial-gradient(circle at 10% 10%, rgba(164, 214, 94, 0.24), transparent 26%);
}

.proof-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-panel h3 {
  grid-column: 1 / -1;
  max-width: none;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: clamp(10px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.18;
  text-wrap: auto;
}

@media (min-width: 981px) {
  .award-panel h3 {
    white-space: nowrap;
  }
}

.award-panel p {
  margin-bottom: 0;
  color: #354b55;
  font-size: 16px;
  line-height: 1.5;
}

.letter-gallery {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.letter-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 34, 44, 0.12);
  transform: rotate(-1.5deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.letter-open {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(20, 93, 44, 0.92);
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  transition: opacity 180ms ease, transform 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.letter-card:nth-child(2),
.letter-card:nth-child(4) {
  transform: rotate(1.2deg);
}

.letter-card:hover {
  box-shadow: 0 18px 34px rgba(15, 34, 44, 0.16);
  transform: translateY(-6px) rotate(0deg);
}

.letter-card:focus-within .letter-open,
.letter-card:hover .letter-open {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.letter-open:hover,
.letter-open:focus {
  background: #0f3d20;
  outline: 2px solid rgba(184, 240, 113, 0.68);
  outline-offset: 2px;
}

.letter-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 5px;
  background: #ffffff;
}

.featured-letter img {
  aspect-ratio: 3 / 4;
}

.letter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 20, 12, 0.82);
}

.letter-modal[hidden] {
  display: none;
}

.letter-modal-frame {
  width: min(760px, 92vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.letter-modal-frame img {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
}

.letter-modal-close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1001;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #145d2c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.letter-modal-close:hover,
.letter-modal-close:focus {
  background: #0f3d20;
  outline: 2px solid rgba(184, 240, 113, 0.8);
  outline-offset: 3px;
}

.client-strip,
.partner-showcase {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.partner-showcase {
  display: block;
  grid-template-columns: none;
  grid-column: 1 / -1;
  margin-top: 2px;
  padding: 22px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 46px rgba(15, 34, 44, 0.08);
}

.partner-showcase h3 {
  display: inline-block;
  margin: 0 auto 18px;
  color: #145d2c;
  background: linear-gradient(90deg, #0f3d20, #2f7d32 52%, #76b82a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

.partner-showcase {
  text-align: center;
}

.partner-showcase p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #526863;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.client-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 14px;
  padding: 10px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(15, 34, 44, 0.07);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 18px;
  padding: 12px 10px;
  color: #174d2c;
  background: #ffffff;
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(15, 34, 44, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.partner-logo.dark-logo {
  background: #101010;
}

.partner-logo:hover {
  border-color: rgba(47, 125, 50, 0.34);
  box-shadow: 0 18px 34px rgba(15, 34, 44, 0.13);
  transform: translateY(-6px) scale(1.03);
}

.partner-logo.royal {
  color: #b32618;
  font-family: Georgia, "Times New Roman", serif;
}

.partner-logo.mylan {
  color: #196b78;
  text-transform: none;
}

.partner-logo.eicher {
  color: #d1162b;
}

.partner-logo.volvo {
  color: #153f8f;
  font-size: clamp(17px, 1.8vw, 24px);
}

.partner-logo.ather {
  color: #111111;
  background: #f8faf8;
}

.partner-logo.crompton {
  color: #2a7a2d;
  text-transform: none;
}

.partner-logo.tvs {
  color: #2f536b;
}

.client-strip span:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), #42a9b5);
  box-shadow: 0 14px 28px rgba(47, 125, 50, 0.2);
  transform: translateY(-3px);
}

@keyframes heroWordLift {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroImagePlay {
  0% {
    filter: saturate(1.04) contrast(1.02);
    transform: translateX(0) scale(1.03) rotate(0.001deg);
  }
  50% {
    filter: saturate(1.16) contrast(1.06);
    transform: translateX(-1.4%) scale(1.075) rotate(0.001deg);
  }
  100% {
    filter: saturate(1.08) contrast(1.04);
    transform: translateX(0) scale(1.045) rotate(0.001deg);
  }
}

@keyframes proofStream {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes waterPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(-50%) scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.02);
  }
}

@keyframes waterPulseRow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
  }
}

@keyframes podFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes cardGlow {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(15, 34, 44, 0.1);
  }
  50% {
    box-shadow: 0 18px 38px rgba(47, 125, 50, 0.14);
  }
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLinkPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-slide,
  .home-hero .hero-copy,
  .hero-home-links a,
  .home-why .why-panel::after,
  .home-why .highlight-grid::before,
  .home-why .highlight-grid::after,
  .home-why .highlight-card,
  .award-panel,
  .client-strip span {
    animation: none;
    transition: none;
  }
}

.industries-home {
  background: var(--white);
}

.industry-wheel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.industry-orb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 18px 44px rgba(15, 34, 44, 0.16);
}

.industry-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 28, 18, 0.16), rgba(9, 28, 18, 0.78));
  transition: background 180ms ease;
}

.industry-orb img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.industry-orb-content {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 80%;
  text-align: center;
}

.industry-orb h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.industry-actions {
  display: grid;
  gap: 8px;
  width: min(170px, 100%);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.industry-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
}

.industry-actions a:hover,
.industry-actions a:focus {
  color: var(--white);
  background: var(--leaf);
  outline: none;
}

.industry-orb:hover::after,
.industry-orb:focus-within::after {
  background: linear-gradient(180deg, rgba(9, 28, 18, 0.56), rgba(9, 28, 18, 0.9));
}

.industry-orb:hover img,
.industry-orb:focus-within img {
  transform: scale(1.08);
}

.industry-orb:hover .industry-actions,
.industry-orb:focus-within .industry-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.industry-page-hero {
  padding: 54px 0 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 32, 20, 0.9), rgba(12, 32, 20, 0.58)),
    var(--hero-image, url("assets/curated/front1-plant.jpg")) center/cover;
}

.industry-page-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.industry-page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #e6f0ea;
  font-size: 19px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.lead-copy {
  color: #354b55;
  font-size: 18px;
}

.focus-panel {
  padding: 22px;
  border-left: 5px solid var(--leaf);
  background: var(--wash);
}

.focus-panel h3 {
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: 26px;
}

.focus-panel p {
  color: #354b55;
}

.core-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-tile {
  padding: 0 0 20px;
  border-bottom: 3px solid var(--line);
}

.service-tile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf-dark);
  font-size: 22px;
}

.service-tile p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 22px 18px;
  border-radius: 8px;
  background: var(--white);
  counter-increment: process;
}

.process-step::before {
  content: counter(process);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  font-weight: 800;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.process-step span {
  color: var(--muted);
  font-size: 14px;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.featured-tech {
  display: grid;
  gap: 22px;
}

.tech-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tech-item h3 {
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 24px;
}

.tech-item p {
  margin-bottom: 0;
  color: #354b55;
}

.accordion-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.accordion-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.accordion-list summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.accordion-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #354b55;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.result-callout {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: #132b35;
}

.result-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  color: #9ee0a6;
}

.result-callout p {
  margin-bottom: 0;
  color: #d4e3e6;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--leaf-dark);
  background: #edf6ee;
  font-size: 14px;
  font-weight: 800;
}

.related-links a:hover,
.related-links a:focus {
  color: var(--white);
  background: var(--leaf);
  outline: none;
}

.product-reference {
  background:
    radial-gradient(circle at 9% 4%, rgba(47, 125, 50, 0.11), transparent 30%),
    radial-gradient(circle at 96% 15%, rgba(15, 124, 134, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdfc 0%, #f4faf7 44%, #ffffff 100%);
}

.reference-intro {
  position: relative;
  overflow: hidden;
  padding: 42px 0 30px;
  border-bottom: 1px solid rgba(47, 125, 50, 0.18);
  color: var(--white);
  background:
    linear-gradient(132deg, rgba(16, 34, 44, 0.95) 0%, rgba(17, 82, 48, 0.94) 48%, rgba(12, 105, 111, 0.9) 100%),
    radial-gradient(circle at 82% 8%, rgba(244, 184, 63, 0.28), transparent 28%);
}

.reference-intro::before,
.reference-intro::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.reference-intro::before {
  inset: auto -9% -48px auto;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.reference-intro::after {
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  opacity: 0.42;
}

.reference-intro .wrap {
  position: relative;
  z-index: 1;
}

.reference-intro .eyebrow {
  margin-bottom: 7px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-intro h1 {
  max-width: none;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

.reference-lead {
  max-width: 980px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
}

.topic-index {
  max-width: 760px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 5px solid #aee7b7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.topic-index-title {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.topic-index ol {
  margin: 0;
  padding-left: 21px;
  color: #d7f5dd;
}

.topic-index li {
  break-inside: avoid;
  margin: 0 0 7px;
  padding-left: 2px;
  color: #d7f5dd;
  font-size: 13.8px;
  font-weight: 700;
  line-height: 1.25;
  transition: transform 160ms ease;
}

.topic-index a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 8px;
  margin-left: -8px;
  border-radius: 8px;
  color: #eefcf1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.topic-index a:hover,
.topic-index a:focus {
  color: #082a17;
  background: #d9f6df;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transform: translateX(6px) scale(1.04);
  outline: none;
}

.reference-section {
  scroll-margin-top: 84px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(217, 228, 231, 0.72);
}

.reference-section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.62);
}

.reference-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(47, 125, 50, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(16, 34, 44, 0.08);
  backdrop-filter: blur(12px);
}

.reference-row > .reference-figure {
  align-self: center;
}

.reference-row.tos-row {
  grid-template-columns: 1fr;
}

.reference-row.reverse {
  grid-template-columns: 1fr;
}

.reference-row.reverse .reference-copy {
  grid-column: auto;
}

.reference-row.reverse .reference-figure {
  grid-column: auto;
  grid-row: auto;
}

.zld-flow-page .reference-section {
  padding: clamp(16px, 2vw, 26px) 0;
}

.zld-flow-page .reference-row {
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(16px, 1.6vw, 22px);
  border-color: rgba(8, 47, 24, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 4% 0%, rgba(111, 207, 46, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 255, 239, 0.92));
  box-shadow: 0 24px 58px rgba(8, 47, 24, 0.1);
}

.zld-flow-page .reference-copy {
  align-self: center;
}

.zld-flow-page .reference-copy h2 {
  margin-bottom: 7px;
  color: #052414;
  font-size: clamp(20px, 1.62vw, 27px);
  letter-spacing: 0;
}

.zld-flow-page .product-promise {
  margin: 0 0 8px;
  color: #082f18;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 950;
  line-height: 1.18;
}

.zld-flow-page .reference-copy p {
  margin-bottom: 7px;
  font-size: clamp(12.2px, 0.9vw, 14px);
  line-height: 1.34;
}

.zld-flow-page .reference-copy .product-promise {
  margin: 0 0 9px;
  color: #082f18;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 950;
  line-height: 1.18;
}

.zld-flow-page .zld-role {
  margin-bottom: 9px;
  padding: 7px 10px 7px 12px;
  border-left: 4px solid #59b733;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(220, 248, 215, 0.96), rgba(246, 255, 242, 0.9));
  font-size: clamp(11.8px, 0.84vw, 13px);
}

.zld-flow-page .offering-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.zld-flow-page .offering-metrics span {
  min-height: auto;
  padding: 8px 9px;
  border-radius: 12px;
  border-color: rgba(8, 47, 24, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 255, 229, 0.94));
  font-size: clamp(10.7px, 0.76vw, 12.2px);
  line-height: 1.22;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.zld-flow-page .offering-metrics span:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 115, 52, 0.32);
  box-shadow: 0 16px 34px rgba(8, 47, 24, 0.13);
}

.zld-flow-page .offering-metrics strong {
  display: block;
  margin-bottom: 2px;
  color: #082f18;
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.05;
}

.zld-flow-page .reference-figure-grid,
.zld-flow-page .reference-figure {
  align-self: stretch;
}

.zld-flow-page .reference-figure-grid {
  display: grid;
  gap: 8px;
  align-content: center;
}

.zld-flow-page .reference-figure-grid:empty {
  display: none;
}

.zld-flow-page .reference-figure {
  display: grid;
  align-content: start;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(8, 47, 24, 0.12);
  background: #f7fff4;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.zld-flow-page .reference-figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 47, 24, 0.14);
}

.zld-flow-page .reference-figure img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  max-height: 285px;
  object-fit: contain;
  background: #f7fff4;
}

.zld-flow-page .reference-figure video {
  display: block;
  width: 100%;
  min-height: 150px;
  max-height: 285px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #092215;
}

.zld-flow-page .reference-figure-grid.one-up .reference-figure img,
.zld-flow-page .compact-reference-figure img {
  object-fit: contain;
}

.zld-flow-page .image-caption,
.zld-flow-page .reference-figure figcaption {
  padding: 6px 8px 7px;
  color: #315744;
  background: #ffffff;
  font-size: 10.2px;
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
}

.zld-flow-page .proof-link-note {
  margin-top: 9px;
  font-size: 12px;
}

@media (min-width: 981px) {
  .zld-flow-page .reference-row {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  }

  .zld-flow-page .reference-row.reverse {
    grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
  }

  .zld-flow-page .reference-row.reverse .reference-copy {
    grid-column: 2;
  }

  .zld-flow-page .reference-row.reverse > .reference-figure,
  .zld-flow-page .reference-row.reverse > .reference-figure-grid {
    grid-column: 1;
    grid-row: 1;
  }

  .zld-flow-page .reference-row > .reference-copy:only-child {
    grid-column: 1 / -1;
  }

  .zld-flow-page .reference-figure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zld-flow-page .reference-figure-grid.one-up,
  .zld-flow-page .reference-figure-grid.three-up {
    grid-template-columns: 1fr;
  }

  .zld-flow-page .reference-figure-grid.tos-images,
  .zld-flow-page .reference-figure-grid.stp-images,
  .zld-flow-page .reference-figure-grid.ro-images,
  .zld-flow-page .reference-figure-grid.mftl-images,
  .zld-flow-page .reference-figure-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zld-flow-page .reference-figure-grid .tos-wide-image,
  .zld-flow-page .reference-figure-grid figure:only-child {
    grid-column: 1 / -1;
  }
}

.reference-number {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.reference-copy h2 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 9px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.12;
  letter-spacing: 0;
}

.reference-copy h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--water), var(--sun));
  content: "";
}

.zld-role {
  position: relative;
  margin: 0 0 12px;
  padding: 10px 12px 10px 14px;
  border-left: 5px solid #0b5d2a;
  border-radius: 10px;
  color: #163f25;
  background:
    linear-gradient(90deg, rgba(111, 207, 46, 0.16), rgba(255, 255, 255, 0.9));
  box-shadow: inset 0 0 0 1px rgba(8, 47, 24, 0.08);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 750;
  line-height: 1.42;
}

.zld-role strong {
  display: inline-block;
  margin-right: 0.35em;
  color: #082f18;
  font-weight: 950;
}

.zld-stage {
  display: inline-flex;
  width: fit-content;
  margin: -2px 0 10px;
  padding: 5px 10px;
  border: 1px solid rgba(11, 93, 42, 0.18);
  border-radius: 999px;
  color: #0b5d2a;
  background: rgba(111, 207, 46, 0.12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zld-flow-page {
  display: flex;
  flex-direction: column;
}

.zld-journey-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 920px);
  margin: 18px 0 16px;
}

.zld-journey-strip span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(174, 231, 183, 0.28);
  border-radius: 14px;
  color: #f1fff2;
  background:
    linear-gradient(145deg, rgba(5, 46, 24, 0.92), rgba(19, 120, 50, 0.82));
  box-shadow: 0 12px 28px rgba(5, 46, 24, 0.18);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.zld-journey-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 2px;
  background: #aee7b7;
  transform: translateY(-50%);
}

.zld-flow-page .reference-intro { order: 0; }
.auto-zld-page #ro-fouling,
.pharma-zld-page #pharma-chemistry-study,
.other-zld-page #chemistry-led-zld { order: 1; }
.auto-zld-page #mftl-evaporator,
.pharma-zld-page #modified-sbr,
.other-zld-page #four-step-strategy { order: 2; }
.auto-zld-page #plant-revamp,
.pharma-zld-page #ammonia-volatile-cod,
.other-zld-page #water-pollution-audit { order: 3; }
.auto-zld-page #total-oil-separator,
.pharma-zld-page #mbr-technology,
.other-zld-page #one-water-reuse { order: 4; }
.auto-zld-page #phosphating-sludge-separator,
.pharma-zld-page #pharma-ro-fouling,
.other-zld-page #process-intensification { order: 5; }
.auto-zld-page #chrome-reduction,
.pharma-zld-page #high-recovery-ro,
.other-zld-page #detoxification { order: 6; }
.auto-zld-page #ced-paint-treatment,
.pharma-zld-page #boiler-feed-reuse,
.other-zld-page #isocyanate-wastewater { order: 7; }
.auto-zld-page #cutting-coolant,
.pharma-zld-page #pharma-mftl { order: 8; }
.auto-zld-page #rinse-water,
.pharma-zld-page #pharma-revamp { order: 9; }
.auto-zld-page #stp-reuse { order: 10; }
.auto-zld-page #pond-water { order: 11; }
.auto-zld-page #copper-recovery { order: 12; }

.zld-flow-index {
  display: block;
  width: min(100%, 760px);
  max-width: 760px;
  padding: 14px;
}

.zld-flow-index .topic-index-title {
  margin-bottom: 10px;
}

.zld-flow-index ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding-left: 0;
  counter-reset: zld-flow;
  list-style: none;
}

.zld-flow-index li {
  counter-increment: zld-flow;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.zld-flow-index li::before {
  content: counter(zld-flow, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #082f18, #1f7a31);
  font-size: 10px;
  font-weight: 950;
}

.zld-flow-index li > span {
  display: none;
}

.zld-flow-index a {
  width: 100%;
  grid-column: 2;
}

.reference-copy p {
  max-width: none;
  margin-bottom: 9px;
  color: #30424a;
  font-size: 15.5px;
  line-height: 1.55;
}

.reference-copy p:last-child {
  margin-bottom: 0;
}

.offering-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.offering-metrics span {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 88px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(237, 249, 240, 0.95)),
    radial-gradient(circle at 92% 8%, rgba(15, 124, 134, 0.12), transparent 38%);
  color: #34464f;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 10px 28px rgba(16, 34, 44, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-origin: center;
}

.offering-metrics span:hover,
.offering-metrics span:focus-visible {
  background: #ffffff;
  border-color: rgba(47, 125, 50, 0.34);
  box-shadow: 0 18px 38px rgba(15, 34, 44, 0.16);
  outline: none;
  transform: translateY(-3px) scale(1.045);
  z-index: 1;
}

.offering-metrics strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 19px;
  line-height: 1.05;
}

.reference-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 760px);
}

.compact-reference-figure {
  justify-self: center;
  width: min(100%, 380px);
}

.reference-figure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 12px;
  justify-self: center;
  width: min(100%, 980px);
}

.reference-figure-grid.tos-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-figure-grid.phosphate-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-figure-grid.phosphate-images .reference-figure img {
  aspect-ratio: auto;
  height: auto;
}

.reference-figure-grid.coolant-images {
  grid-template-columns: minmax(240px, 380px);
  align-items: center;
  justify-content: center;
}

.reference-figure-grid.coolant-images .reference-figure img {
  aspect-ratio: auto;
  height: auto;
  max-height: 380px;
  object-fit: contain;
}

.reference-figure-grid.coolant-steps {
  width: min(100%, 1100px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reference-figure-grid.coolant-steps .reference-figure img {
  aspect-ratio: auto;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.reference-figure-grid.stp-images {
  width: min(100%, 1100px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.reference-figure-grid.stp-images .reference-figure:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 520px);
}

.reference-figure-grid.stp-images .reference-figure img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.reference-figure-grid.pond-images {
  width: min(100%, 760px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
}

.reference-figure-grid.pond-images .reference-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-figure-grid.ro-images {
  width: min(100%, 980px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.reference-figure-grid.ro-images .reference-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-figure-grid.mftl-images {
  width: min(100%, 980px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.reference-figure-grid.mftl-images .reference-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-figure-grid.revamp-images {
  width: min(100%, 920px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.reference-figure-grid.revamp-images .reference-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-figure-grid.pharma-images {
  width: min(100%, 920px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.reference-figure-grid.pharma-images .reference-figure img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.reference-figure-grid.other-industries-images {
  width: min(100%, 980px);
  align-items: start;
  justify-content: center;
}

.reference-figure-grid.other-industries-images.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-figure-grid.other-industries-images.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-figure-grid.other-industries-images.one-up {
  grid-template-columns: minmax(260px, 520px);
}

.reference-figure-grid.other-industries-images .reference-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
}

.reference-figure-grid.other-industries-images.one-up .reference-figure img {
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
}

.tos-wide-image {
  grid-column: auto;
  justify-self: center;
  width: 100%;
}

.reference-figure img {
  width: 100%;
  max-height: 500px;
  border: 1px solid rgba(16, 34, 44, 0.12);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(15, 34, 44, 0.13);
}

.reference-figure-grid .reference-figure img {
  aspect-ratio: 4 / 3;
  background: var(--white);
  object-fit: contain;
}

.tos-wide-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.page-hero {
  padding: 48px 0 36px;
  background: var(--wash);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.product-reference .wrap {
  width: min(1320px, calc(100% - 40px));
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-hero h1 {
  max-width: 740px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.16;
}

.about-hero p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: 42px 0;
}

.section.alt {
  background: var(--wash);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.content-card h3 {
  margin-bottom: 10px;
  color: var(--leaf-dark);
  font-size: 22px;
  letter-spacing: 0;
}

.content-card p {
  color: var(--muted);
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
  color: #354b55;
}

.content-card li + li {
  margin-top: 8px;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: start;
  padding: 16px 0 30px;
  border-bottom: 1px solid var(--line);
}

.story-section:nth-child(even) {
  background: transparent;
}

.story-section:last-child {
  border-bottom: 0;
}

.story-copy h3 {
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: 0;
}

.story-copy p {
  margin-bottom: 12px;
  color: #354b55;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.inline-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.inline-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(15, 34, 44, 0.13);
}

.inline-image-card a {
  display: block;
  background: #eef4f1;
}

.inline-image-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.source-line {
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: #132b35;
}

.contact-band h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: 0;
}

.contact-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #d4e3e6;
}

.eyebrow,
.story-kicker {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

.about-sections {
  padding: 38px 0 54px;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 125, 50, 0.12), transparent 26%),
    radial-gradient(circle at 92% 3%, rgba(15, 124, 134, 0.13), transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, #f2faf5 100%);
}

.about-compact {
  max-width: 1160px;
}

.about-summary {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto 14px;
  padding: 18px 22px;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(16, 34, 44, 0.96), rgba(29, 93, 52, 0.94) 58%, rgba(14, 111, 119, 0.92)),
    radial-gradient(circle at 86% 15%, rgba(244, 184, 63, 0.24), transparent 24%);
  box-shadow: 0 20px 56px rgba(16, 34, 44, 0.16);
}

.about-summary::after {
  content: none;
}

.about-summary h1,
.about-summary h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.1;
  white-space: nowrap;
}

.mobile-title {
  display: none;
}

.about-summary > .story-kicker,
.about-closing .story-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #e7ffd8;
  background: rgba(132, 222, 48, 0.16);
}

.about-summary p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.42;
}

.about-summary p:last-child {
  margin-bottom: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.about-pillar {
  min-height: 100%;
  overflow: hidden;
  padding: 16px 0;
  border: 1px solid rgba(47, 125, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(16, 34, 44, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-pillar:hover {
  border-color: rgba(47, 125, 50, 0.32);
  box-shadow: 0 22px 54px rgba(16, 34, 44, 0.14);
  transform: translateY(-4px);
}

.about-pillar-media {
  position: relative;
  overflow: hidden;
  margin: 10px 0 14px;
  padding: 10px;
  background: #fff;
  border-top: 1px solid rgba(47, 125, 50, 0.1);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.about-pillar-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: var(--white);
  transition: filter 180ms ease;
}

.about-pillar-media:hover img {
  filter: saturate(1.04) contrast(1.02);
}

.about-pillar-media:hover::after,
.about-pillar-media:focus-visible::after {
  opacity: 0.05;
}

.about-pillar-media:hover .image-caption,
.about-pillar-media:focus-visible .image-caption {
  color: #0b3319;
}

.about-pillar-media .image-caption::after {
  content: "Click image to enlarge";
  display: block;
  width: fit-content;
  margin: 6px auto 0;
  padding: 3px 8px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 999px;
  color: #1e7a33;
  background: rgba(240, 255, 234, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pillar-media.subtle-watermark::after {
  content: "SARTIME";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  color: rgba(24, 92, 43, 0.075);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: 0.08em;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-18deg);
  white-space: nowrap;
}

.about-pillar-media.subtle-watermark::before {
  content: "Copyright SARTIME";
  position: absolute;
  right: 12px;
  bottom: 32px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 6px;
  color: rgba(11, 51, 25, 0.54);
  background: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  pointer-events: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 26px);
  background: rgba(4, 18, 10, 0.86);
  backdrop-filter: blur(8px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-frame {
  width: min(1120px, 94vw);
  max-height: 90vh;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(183, 239, 161, 0.32);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.image-lightbox-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #ffffff;
}

.image-lightbox-frame figcaption {
  padding: 10px 14px 12px;
  color: #244635;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: #f5fff0;
}

.image-lightbox-close {
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 1101;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #ffffff;
  background: #143d22;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: #2f8f32;
  outline: 2px solid rgba(184, 240, 113, 0.8);
  outline-offset: 3px;
}

.about-pillar .story-kicker,
.about-pillar h3,
.about-pillar p,
.about-pillar details {
  margin-right: 16px;
  margin-left: 16px;
}

.about-pillar h3 {
  margin: 6px 16px 10px;
  color: var(--leaf-dark);
  font-size: 20px;
  line-height: 1.16;
}

.about-pillar p {
  margin: 0 16px 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.about-pillar details {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.about-pillar summary {
  cursor: pointer;
  color: var(--leaf-dark);
  font-weight: 700;
}

.about-pillar details p {
  margin: 8px 0 0;
  font-size: inherit;
  line-height: inherit;
}

.about-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(16, 34, 44, 0.07);
}

.about-closing h2 {
  margin-bottom: 6px;
  color: var(--leaf-dark);
  font-size: 22px;
}

.about-closing p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-close-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-close-points span {
  padding: 11px 12px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--leaf-soft));
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 700;
}

.careers-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 125, 50, 0.12), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(15, 124, 134, 0.13), transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, #f2faf5 52%, #ffffff 100%);
}

.careers-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 38px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(132deg, rgba(16, 34, 44, 0.96), rgba(24, 92, 48, 0.94) 58%, rgba(13, 111, 119, 0.9));
  background-size: 54px 54px, 54px 54px, auto;
}

.careers-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46vw, 560px);
  height: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.16) 12% 13%, transparent 13% 30%, rgba(255, 255, 255, 0.14) 30% 31%, transparent 31% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(174, 231, 183, 0.2) 48% 52%, transparent 52% 100%);
  content: "";
}

.careers-hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.careers-hero h1 {
  max-width: 860px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.careers-hero p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.58;
}

.career-section {
  padding: 34px 0;
}

.career-section.alt {
  background: rgba(255, 255, 255, 0.68);
}

.career-story,
.career-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 28px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(47, 125, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(16, 34, 44, 0.08);
}

.career-copy h2,
.career-apply-copy h2 {
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 10px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
}

.career-copy h2::after,
.career-apply-copy h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--water), var(--sun));
  content: "";
}

.career-copy p,
.career-apply-copy p {
  margin-bottom: 10px;
  color: #30424a;
  font-size: 15.5px;
  line-height: 1.58;
}

.career-note {
  padding: 12px 14px;
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background: var(--leaf-soft);
  font-weight: 700;
}

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

.career-skill-grid span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 13px 14px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background: linear-gradient(150deg, #ffffff, #edf9f0);
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 34, 44, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.career-skill-grid span:hover {
  box-shadow: 0 18px 36px rgba(16, 34, 44, 0.13);
  transform: translateY(-4px);
}

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

.career-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 34, 44, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.career-form textarea {
  resize: vertical;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: rgba(47, 125, 50, 0.6);
  box-shadow: 0 0 0 4px rgba(47, 125, 50, 0.12);
}

.resume-upload input {
  background: #f7fbf8;
}

.career-submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.apply-response {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 40px 0;
  background: linear-gradient(180deg, #fbfdfc, #edf8f0);
}

.apply-response .wrap {
  max-width: 720px;
  padding: 30px;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(16, 34, 44, 0.12);
}

.apply-response h1 {
  margin-bottom: 10px;
  color: var(--leaf-dark);
  font-size: clamp(30px, 5vw, 48px);
}

.contact-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 125, 50, 0.12), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(15, 124, 134, 0.13), transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, #f2faf5 52%, #ffffff 100%);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 38px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(132deg, rgba(16, 34, 44, 0.96), rgba(24, 92, 48, 0.94) 58%, rgba(13, 111, 119, 0.9));
  background-size: 54px 54px, 54px 54px, auto;
}

.contact-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46vw, 560px);
  height: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.16) 12% 13%, transparent 13% 30%, rgba(255, 255, 255, 0.14) 30% 31%, transparent 31% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(174, 231, 183, 0.2) 48% 52%, transparent 52% 100%);
  content: "";
}

.contact-hero .wrap {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  max-width: 860px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.58;
}

.contact-section {
  padding: 34px 0 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(47, 125, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(16, 34, 44, 0.08);
}

.primary-contact {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 250, 237, 0.95)),
    radial-gradient(circle at 90% 10%, rgba(15, 124, 134, 0.12), transparent 34%);
}

.contact-wide {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 16px;
  color: #30424a;
  font-size: 15.5px;
  line-height: 1.56;
  overflow-wrap: anywhere;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-topic-grid span {
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background: linear-gradient(150deg, #ffffff, #edf9f0);
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 34, 44, 0.08);
}

.linkedin-contact-card {
  background:
    linear-gradient(145deg, #ffffff, #f2f8ff),
    radial-gradient(circle at 90% 10%, rgba(10, 102, 194, 0.1), transparent 34%);
}

.linkedin-contact-link {
  gap: 9px;
}

.linkedin-contact-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  color: #ffffff;
  background: #0a66c2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.contact-card .button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.about-story-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 0;
}

.about-story-panel.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.about-story-panel.reverse .about-story-media {
  order: 2;
}

.about-story-panel.text-only {
  display: block;
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.about-story-panel.text-only h2 {
  max-width: 720px;
}

.about-intro-panel {
  padding-top: 8px;
}

.about-story-copy h2 {
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-story-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-story-media {
  margin-bottom: 0;
}

.about-story-media img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 34, 44, 0.11);
}

.dbo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

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

.about-proof {
  padding: 13px 14px;
  border-left: 4px solid var(--leaf);
  background: var(--wash);
}

.about-proof h3 {
  margin-bottom: 5px;
  color: var(--leaf-dark);
  font-size: 15px;
}

.about-proof p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.4;
}

.dbo-step img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.dbo-step h3,
.principle h3 {
  margin-bottom: 6px;
  color: var(--leaf-dark);
  font-size: 16px;
}

.dbo-step p,
.principle p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.principle {
  padding: 14px;
  border-left: 4px solid var(--leaf);
  background: var(--wash);
}

.water-word {
  color: var(--ink);
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.image-caption {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.image-caption strong {
  color: var(--leaf-dark);
}

footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: var(--leaf-dark);
  font-weight: 800;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #ffffff;
  background: #0a66c2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.22);
}

.footer-link:hover,
.footer-link:focus {
  color: var(--leaf);
  text-decoration: underline;
  outline: none;
}

.linkedin-icon:hover,
.linkedin-icon:focus {
  color: #ffffff;
  background: #084f99;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    min-height: 0;
    padding: 16px clamp(22px, 4vw, 34px);
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .dropdown {
    position: fixed;
    top: auto;
    left: 20px;
    right: 20px;
    min-width: 0;
  }

  .nav-action {
    margin-left: auto;
  }

  .card-grid,
  .card-grid.two,
  .story-section,
  .inline-image-grid,
  .industry-wheel,
  .intro-grid,
  .core-services,
  .process-flow,
  .tech-layout,
  .results-grid,
  .section-head,
  .contact-band,
  .contact-grid,
  .about-pillars,
  .about-closing,
  .career-story,
  .career-apply-grid,
  .about-story-panel,
  .about-story-panel.reverse,
  .dbo-strip,
  .about-proof-grid,
  .about-proof-grid.two,
  .principles,
  .two-column-copy,
  .proof-layout,
  .showcase-board {
    grid-template-columns: 1fr;
  }

  .client-strip,
  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-why .why-panel {
    padding: 30px 22px;
  }

  .home-why .why-panel::after {
    left: 14%;
    right: 14%;
  }

  .home-why .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .home-why .highlight-card {
    width: min(100%, 210px);
    justify-self: center;
  }

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

  .invention-link-card {
    border-right: 1px solid rgba(47, 125, 50, 0.12);
    border-bottom: 1px solid rgba(47, 125, 50, 0.12);
    min-height: 0;
  }

  .invention-link-card:nth-child(3n),
  .invention-link-card:nth-child(4n) {
    border-right: 1px solid rgba(47, 125, 50, 0.12);
  }

  .invention-link-card:nth-child(2n) {
    border-right: 0;
  }

  .invention-link-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(47, 125, 50, 0.12);
  }

  .invention-link-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .invention-link-card:last-child {
    border-bottom: 0;
  }

  .home-why .highlight-card:nth-child(2n) {
    margin-top: 0;
  }

  .award-panel.showcase-card {
    grid-template-columns: 1fr;
  }

  .letter-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .showcase-card {
    min-height: 0;
  }

  .reference-row,
  .reference-row.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reference-row.tos-row {
    grid-template-columns: 1fr;
  }

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

  .reference-row.reverse .reference-copy,
  .reference-row.reverse .reference-figure {
    grid-column: auto;
    grid-row: auto;
  }

  .about-story-panel.reverse .about-story-media {
    order: 0;
  }

  .about-summary {
    text-align: left;
  }

  .about-pillars {
    max-width: 760px;
  }

  .about-pillar {
    display: block;
    padding-bottom: 16px;
  }

  .about-pillar-media {
    margin: 0;
  }

  .about-pillar-media img {
    max-height: 250px;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--line);
  }

  .about-pillar .story-kicker {
    margin-top: 16px;
  }

  .about-pillar details {
    margin-bottom: 16px;
  }

  .about-close-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: grid;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-inner,
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    min-width: 0;
    flex: 0 0 auto;
  }

  .brand-title {
    font-size: 23px;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .menu {
    gap: 5px;
    font-size: 12.5px;
  }

  .menu-link,
  .menu-button {
    min-height: 34px;
    padding: 0 8px;
  }

  .hero-inner {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero p {
    font-size: 17px;
  }

  .why-panel {
    margin-top: 10px;
    padding: 18px;
  }

  .why-title {
    margin-top: 42px;
    font-size: 19px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 0;
    padding: 14px 16px;
  }

  .highlight-card:nth-child(n + 4) {
    border-top: 0;
  }

  .highlight-card + .highlight-card {
    border-top: 1px solid var(--line);
  }

  .highlight-card:nth-child(3n + 2),
  .highlight-card:nth-child(3n + 3) {
    border-left: 0;
  }

  .highlight-stat {
    min-height: 30px;
    font-size: 31px;
  }

  .stat-prefix,
  .stat-unit {
    font-size: 23px;
  }

  .section {
    padding: 42px 0;
  }

  .reference-intro {
    padding: 30px 0 22px;
  }

  .reference-lead {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .topic-index {
    max-width: none;
    padding: 12px 14px;
  }

  .topic-index ol {
    padding-left: 20px;
  }

  .topic-index li {
    font-size: 13px;
  }

  .reference-section {
    padding: 22px 0;
  }

  .reference-row {
    padding: 16px;
  }

  .reference-figure {
    width: min(100%, 620px);
  }

  .reference-figure img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
  }

  .reference-copy p {
    font-size: 14.5px;
  }

  .offering-metrics {
    grid-template-columns: 1fr;
  }

  .reference-figure img {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .reference-figure-grid {
    grid-template-columns: 1fr;
  }

  .reference-figure-grid.pond-images {
    grid-template-columns: 1fr;
  }

  .reference-figure-grid.ro-images {
    grid-template-columns: 1fr;
  }

  .reference-figure-grid.mftl-images,
  .reference-figure-grid.revamp-images,
  .reference-figure-grid.pharma-images,
  .reference-figure-grid.other-industries-images.two-up,
  .reference-figure-grid.other-industries-images.three-up,
  .reference-figure-grid.other-industries-images.one-up {
    grid-template-columns: 1fr;
  }

  .tos-wide-image {
    grid-column: auto;
    width: 100%;
  }

  .about-sections {
    padding: 24px 0 42px;
  }

  .about-summary {
    padding: 22px;
  }

  .careers-hero {
    padding: 34px 0 28px;
  }

  .contact-hero {
    padding: 34px 0 28px;
  }

  .contact-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .contact-hero p {
    font-size: 15px;
  }

  .career-story,
  .career-apply-grid,
  .contact-card {
    padding: 16px;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-card h2 {
    font-size: clamp(21px, 7vw, 30px);
  }

  .contact-card .button {
    width: 100%;
  }

  .career-skill-grid,
  .career-form,
  .contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .contact-topic-grid span {
    min-height: 0;
  }

  .linkedin-contact-link {
    justify-content: center;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-submit {
    justify-self: stretch;
  }

  .about-pillars {
    max-width: 100%;
  }

  .about-pillar {
    display: block;
    padding-bottom: 16px;
  }

  .about-pillar-media {
    border-right: 0;
  }

  .about-pillar-media img {
    height: auto;
    max-height: 220px;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--line);
  }

  .about-story-panel {
    gap: 24px;
    padding: 24px 0;
  }

  .about-story-copy h2 {
    font-size: 22px;
  }

  .industry-wheel {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .industry-orb {
    width: min(100%, 320px);
    min-height: auto;
    aspect-ratio: 1;
  }

  .footer-row {
    flex-direction: column;
  }

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

  .home-hero .hero-inner {
    min-height: 620px;
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .home-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-word {
    display: block;
    margin: 0;
  }

  .home-why .why-panel {
    padding: 18px 12px;
  }

  .home-why .why-panel::after {
    display: none;
  }

  .home-why .highlight-grid::before,
  .home-why .highlight-grid::after {
    display: none;
  }

  .home-why .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .home-why .highlight-card {
    width: min(100%, 112px);
    min-height: 0;
    margin-top: 0;
    padding: 12px;
    justify-self: center;
  }

  .home-why .highlight-stat {
    font-size: clamp(22px, 7vw, 30px);
  }

  .metric-mark {
    min-width: 34px;
    min-height: 22px;
    margin-bottom: 5px;
    padding: 2px 7px;
    font-size: 8px;
  }

  .metric-label {
    font-size: 9px;
  }

  .home-why .highlight-card > span:last-child {
    font-size: 9px;
  }

  .why-close {
    margin-top: 22px;
    padding-top: 14px;
    font-size: clamp(16px, 5vw, 21px);
  }

  .home-why .highlight-card:hover,
  .home-why .highlight-card:focus-within {
    transform: translateY(-5px) scale(1.025);
  }

  .home-inventions {
    padding: 38px 0 42px;
  }

  .inventions-head {
    margin-bottom: 18px;
  }

  .invention-map {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 18px;
  }

  .invention-link-card {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 125, 50, 0.12);
    border-radius: 0;
    padding: 13px 14px;
  }

  .invention-link-card:nth-child(2n),
  .invention-link-card:nth-child(3n),
  .invention-link-card:nth-child(4n) {
    border-right: 0;
  }

  .invention-link-card:nth-last-child(-n + 2),
  .invention-link-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(47, 125, 50, 0.12);
  }

  .invention-link-card:last-child {
    border-bottom: 0;
  }

  .invention-number {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .invention-link-card strong {
    font-size: 15px;
  }

  .invention-link-card small {
    font-size: 11.5px;
  }

  .home-why {
    padding: 38px 0 36px;
  }

  .home-proof {
    padding: 36px 0 42px;
  }

  .hero-home-links a {
    width: 100%;
  }

  .letter-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .award-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .award-panel h3 {
    max-width: 34em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.18;
  }

  .dupont-logo {
    justify-self: center;
    width: min(112px, 44vw);
  }

  .letter-card:nth-child(2),
  .letter-card:nth-child(4) {
    transform: rotate(1.5deg);
  }

  .letter-open {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .letter-modal {
    padding: 18px;
  }

  .letter-modal-frame {
    width: min(100%, 94vw);
    max-height: 86vh;
  }

  .partner-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logo {
    min-height: 64px;
    border-radius: 14px;
  }

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

@media (max-width: 380px) {
  .home-why .highlight-grid {
    grid-template-columns: 1fr;
  }

  .home-why .highlight-card {
    width: min(100%, 150px);
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .nav {
    width: 100%;
    padding: 14px 18px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .brand-title {
    font-size: 25px;
  }

  .brand-tagline {
    font-size: 12.5px;
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    font-size: 12.5px;
  }

  .menu-link,
  .menu-button {
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    text-align: center;
    white-space: normal;
  }

  .wrap,
  .hero-inner,
  .product-reference .wrap,
  .home-inventions .wrap,
  .home-proof .wrap {
    width: min(100% - 32px, 1180px);
  }

  .section,
  .career-section,
  .contact-section,
  .reference-section {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero .hero-inner {
    min-height: 560px;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .home-hero h1,
  .careers-hero h1,
  .contact-hero h1,
  .reference-intro h1,
  .about-summary h1 {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .home-hero p,
  .careers-hero p,
  .contact-hero p,
  .reference-lead,
  .about-summary p {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-summary h1 {
    font-size: clamp(17px, 5vw, 22px);
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-home-links {
    width: 100%;
  }

  .hero-home-links a {
    width: 100%;
    min-height: 44px;
  }

  .home-why .why-panel {
    padding: 20px 14px;
    border-radius: 8px;
  }

  .home-why .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-why .highlight-card {
    width: 100%;
    max-width: none;
    min-height: 142px;
    padding: 14px 10px;
  }

  .home-why .highlight-stat {
    font-size: clamp(28px, 10vw, 38px);
  }

  .metric-mark {
    font-size: 9px;
  }

  .metric-label,
  .home-why .highlight-card > span:last-child {
    font-size: 10.5px;
  }

  .why-close {
    font-size: clamp(18px, 6vw, 24px);
  }

  .invention-map {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .invention-link-card {
    min-height: 0;
    padding: 14px;
  }

  .showcase-board,
  .award-panel.showcase-card,
  .award-copy,
  .partner-showcase,
  .about-pillars,
  .about-closing,
  .career-story,
  .career-apply-grid,
  .contact-grid,
  .reference-row,
  .reference-row.reverse {
    grid-template-columns: 1fr;
  }

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

  .partner-logo-grid,
  .contact-topic-grid,
  .career-skill-grid,
  .career-form,
  .offering-metrics {
    grid-template-columns: 1fr;
  }

  .about-summary,
  .reference-row,
  .career-story,
  .career-apply-grid,
  .contact-card {
    padding: 18px;
  }

  .about-pillar-media img {
    max-height: 220px;
    aspect-ratio: 16 / 10;
    object-fit: contain;
  }

  .reference-intro,
  .careers-hero,
  .contact-hero {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .topic-index {
    max-width: none;
    padding: 13px 14px;
  }

  .topic-index a {
    display: inline-flex;
    width: calc(100% + 8px);
  }

  .reference-copy h2,
  .career-copy h2,
  .career-apply-copy h2,
  .contact-card h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .reference-copy p,
  .career-copy p,
  .career-apply-copy p,
  .contact-card p {
    font-size: 14.5px;
  }

  .offering-metrics span {
    min-height: 0;
  }

  .reference-figure,
  .reference-figure-grid,
  .reference-figure-grid.other-industries-images,
  .reference-figure-grid.stp-images,
  .reference-figure-grid.ro-images,
  .reference-figure-grid.mftl-images,
  .reference-figure-grid.revamp-images,
  .reference-figure-grid.pharma-images {
    width: 100%;
  }

  .reference-figure img,
  .reference-figure-grid .reference-figure img {
    max-height: 360px;
    object-fit: contain;
  }

  .button,
  .career-submit,
  .contact-card .button {
    width: 100%;
    min-height: 44px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .nav {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .home-why .highlight-grid,
  .letter-gallery,
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .home-why .highlight-card {
    min-height: 0;
  }

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

  .letter-card {
    transform: none;
  }
}

/* Final viewport-fit tuning for the Why SARTIME proof section. */
.home-why {
  padding: clamp(22px, 3.2vw, 36px) 0 clamp(22px, 3vw, 34px);
}

.home-why .home-section-heading {
  margin-bottom: clamp(10px, 1.4vw, 14px);
}

.home-why .home-section-heading h2 {
  margin-bottom: 4px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.home-why .home-section-heading p {
  max-width: 760px;
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.34;
}

.home-why .home-section-heading::after {
  width: 68px;
  height: 3px;
  margin: 8px auto 0;
}

.home-why .why-panel {
  padding: clamp(14px, 1.7vw, 22px) clamp(12px, 1.7vw, 20px) clamp(14px, 1.6vw, 20px);
  border-radius: 16px;
}

.home-why .why-panel::before {
  border-radius: 20px;
  filter: blur(12px);
}

.home-why .highlight-grid {
  gap: clamp(8px, 1.15vw, 14px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-why .highlight-card {
  width: clamp(128px, 12vw, 158px);
  padding: clamp(7px, 0.8vw, 10px);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.45),
    0 12px 26px rgba(15, 34, 44, 0.1);
}

.home-why .highlight-card:nth-child(2n) {
  margin-top: 0;
}

.home-why .highlight-card::before {
  inset: 6px;
}

.home-why .highlight-card::after {
  width: 16%;
  height: 16%;
}

.metric-mark {
  min-width: 32px;
  min-height: 21px;
  margin-bottom: 3px;
  padding: 2px 6px;
  font-size: clamp(7.6px, 0.68vw, 9.4px);
}

.metric-label {
  margin-bottom: 2px;
  padding: 2px 6px;
  font-size: clamp(7.8px, 0.68vw, 9.4px);
  letter-spacing: 0.02em;
}

.home-why .highlight-stat {
  margin-bottom: 1px;
  font-size: clamp(23px, 2.35vw, 33px);
}

.home-why .highlight-card > span:last-child {
  font-size: clamp(8.6px, 0.72vw, 10.2px);
  line-height: 1.08;
}

.why-close {
  max-width: 720px;
  margin-top: clamp(8px, 1.1vw, 12px);
  padding-top: clamp(6px, 0.9vw, 9px);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.25;
}

@media (max-width: 760px) {
  .home-why {
    min-height: min(100svh, 720px);
    display: grid;
    align-items: center;
    padding: 14px 0;
  }

  .home-why .home-section-heading {
    margin-bottom: 8px;
  }

  .home-why .home-section-heading h2 {
    font-size: clamp(25px, 6.4vw, 32px);
  }

  .home-why .home-section-heading p {
    font-size: 12px;
    line-height: 1.26;
  }

  .home-why .home-section-heading::after {
    margin-top: 6px;
  }

  .home-why .why-panel {
    padding: 10px 8px;
  }

  .home-why .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 9px;
    justify-items: center;
  }

  .home-why .highlight-card {
    width: clamp(102px, 30vw, 122px);
    min-height: 0;
    padding: 7px 5px;
  }

  .home-why .highlight-stat {
    font-size: clamp(21px, 6.4vw, 29px);
  }

  .metric-mark {
    min-width: 30px;
    min-height: 20px;
    margin-bottom: 3px;
    padding: 2px 6px;
    font-size: 7.5px;
  }

  .metric-label {
    margin-bottom: 2px;
    padding: 2px 5px;
    font-size: 7.8px;
  }

  .home-why .highlight-card > span:last-child {
    max-width: 94%;
    font-size: 8.2px;
    line-height: 1.04;
  }

  .why-close {
    margin-top: 7px;
    padding-top: 6px;
    font-size: clamp(10.2px, 3vw, 12px);
    line-height: 1.16;
  }
}

@media (max-width: 380px) {
  .home-why .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why .highlight-card {
    width: clamp(94px, 30vw, 108px);
  }

  .home-why .home-section-heading p {
    font-size: 11.2px;
  }
}

/* Final homepage polish: keep proof, invention and customer sections visually aligned. */
.home-why,
.home-inventions,
.home-proof {
  background:
    radial-gradient(circle at 12% 18%, rgba(134, 222, 49, 0.2), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(0, 184, 92, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fff4 0%, #ffffff 54%, #f1fbef 100%);
}

.home-why .home-section-heading h2,
.inventions-head h2,
.home-proof .home-section-heading h2 {
  color: #0b3319;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.02;
}

.home-why .home-section-heading h2 span,
.inventions-head h2::after,
.home-proof .home-section-heading h2::after {
  color: #47b51f;
}

.home-why .home-section-heading p,
.inventions-head p,
.home-proof .home-section-heading p {
  max-width: 760px;
  color: #315744;
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.34;
}

.proof-kicker {
  color: #1f7a31;
  background: linear-gradient(135deg, rgba(169, 232, 78, 0.28), rgba(0, 160, 80, 0.12));
  border-color: rgba(43, 150, 52, 0.26);
}

.home-why .why-panel,
.invention-map,
.award-panel.showcase-card,
.partner-showcase {
  border: 1px solid rgba(47, 163, 53, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 252, 232, 0.9)),
    radial-gradient(circle at top left, rgba(143, 224, 40, 0.18), transparent 34%);
  box-shadow:
    0 20px 50px rgba(25, 88, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-why .highlight-card {
  background:
    radial-gradient(circle at 50% 12%, rgba(157, 232, 62, 0.3), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4ffef 100%);
  border-color: rgba(52, 173, 55, 0.28);
}

.home-why .highlight-card:hover,
.home-why .highlight-card:focus-within {
  border-color: rgba(70, 190, 42, 0.58);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.58),
    0 20px 38px rgba(34, 118, 46, 0.2);
}

.metric-mark,
.invention-number {
  color: #ffffff;
  background: linear-gradient(135deg, #30a834, #84d719);
  box-shadow: 0 8px 18px rgba(49, 160, 49, 0.24);
}

.metric-label {
  color: #145526;
  background: rgba(164, 230, 72, 0.18);
}

.home-why .highlight-stat {
  color: #11622a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-inventions {
  padding: clamp(30px, 4vw, 48px) 0 clamp(34px, 4.2vw, 52px);
}

.inventions-head {
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.inventions-head h2 {
  margin: 7px 0 7px;
}

.invention-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.invention-link-card {
  min-height: 104px;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
  padding: 14px 12px;
  border: 1px solid rgba(47, 125, 50, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(25, 88, 39, 0.05);
}

.invention-link-card:nth-child(2n),
.invention-link-card:nth-child(3n),
.invention-link-card:nth-child(4n),
.invention-link-card:nth-last-child(-n + 2),
.invention-link-card:nth-last-child(-n + 3),
.invention-link-card:nth-last-child(-n + 4) {
  border: 1px solid rgba(47, 125, 50, 0.12);
}

.invention-link-card::before {
  content: none;
}

.invention-link-card::after {
  background: radial-gradient(circle, rgba(131, 217, 33, 0.26), transparent 68%);
}

.invention-link-card:hover,
.invention-link-card:focus {
  background: #ffffff;
  border-color: rgba(64, 178, 40, 0.45);
  box-shadow: 0 16px 32px rgba(31, 110, 44, 0.14);
  transform: translateY(-4px) scale(1.012);
}

.invention-number {
  width: 31px;
  height: 31px;
  font-size: 11px;
}

.invention-link-card strong {
  margin-bottom: 4px;
  color: #0b3319;
  font-size: clamp(12.5px, 0.92vw, 15px);
  line-height: 1.14;
}

.invention-link-card small {
  color: #365848;
  font-size: clamp(9.5px, 0.72vw, 11px);
  line-height: 1.25;
}

.home-proof {
  padding: clamp(34px, 4.4vw, 54px) 0 clamp(38px, 4.8vw, 58px);
}

.home-proof .home-section-heading {
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

.home-proof .plant-proof-grid {
  margin-bottom: clamp(14px, 1.6vw, 20px);
}

.proof-action {
  display: flex;
  justify-content: center;
}

.proof-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(47, 125, 50, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #0d5f2b, #34a83a 58%, #7bd52f);
  box-shadow: 0 16px 34px rgba(25, 88, 39, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-action a:hover,
.proof-action a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(25, 88, 39, 0.24);
  outline: 2px solid rgba(126, 219, 54, 0.35);
  outline-offset: 3px;
}

.field-proof-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 2.6vw, 34px);
  border: 1px solid rgba(47, 163, 53, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(135, 226, 42, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(0, 132, 92, 0.1), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 234, 0.92));
  box-shadow: 0 22px 54px rgba(25, 88, 39, 0.12);
}

.field-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.field-proof-copy .proof-kicker {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #176d2e;
  background: rgba(132, 222, 48, 0.16);
}

.field-proof-copy h2,
.field-proof-copy h3 {
  margin: 0 0 12px;
  color: #0b3319;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
}

.field-proof-copy p {
  max-width: 42em;
  margin: 0 0 18px;
  color: #315744;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
}

.proof-reference-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(47, 125, 50, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d5f2b, #2f8f32);
  box-shadow: 0 14px 30px rgba(25, 88, 39, 0.16);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-reference-link:hover,
.proof-reference-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(25, 88, 39, 0.22);
  outline: 2px solid rgba(126, 219, 54, 0.35);
  outline-offset: 3px;
}

.field-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.field-proof-list article {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: clamp(14px, 1.5vw, 20px);
  border: 1px solid rgba(47, 163, 53, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 240, 0.92));
  box-shadow: 0 16px 34px rgba(25, 88, 39, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.field-proof-list article::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 108px;
  height: 108px;
  border: 18px solid rgba(47, 163, 53, 0.1);
  border-radius: 50%;
}

.field-proof-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(25, 88, 39, 0.14);
}

.field-proof-list span {
  display: block;
  margin-bottom: 8px;
  color: #227a35;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-proof-list strong {
  display: block;
  margin-bottom: 8px;
  color: #0b3319;
  font-size: clamp(24px, 2.45vw, 36px);
  line-height: 1;
}

.field-proof-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #315744;
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.38;
}

@media (max-width: 900px) {
  .field-proof-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .field-proof-list {
    grid-template-columns: 1fr;
  }

  .field-proof-list article {
    min-height: auto;
  }
}

.partner-showcase h3,
.award-panel h3 {
  color: #0b3319;
}

.partner-showcase h3 {
  font-size: clamp(22px, 2.7vw, 36px);
}

.partner-logo {
  border-color: rgba(48, 168, 52, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 255, 238, 0.9));
  box-shadow: 0 12px 26px rgba(25, 88, 39, 0.08);
}

.partner-logo:hover {
  border-color: rgba(68, 180, 36, 0.48);
  box-shadow: 0 18px 34px rgba(25, 88, 39, 0.14);
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .invention-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-inventions,
  .home-proof {
    padding: 28px 0 34px;
  }

  .home-why .home-section-heading h2,
  .inventions-head h2,
  .home-proof .home-section-heading h2 {
    font-size: clamp(25px, 6.4vw, 32px);
  }

  .home-why .home-section-heading p,
  .inventions-head p,
  .home-proof .home-section-heading p {
    font-size: 12px;
    line-height: 1.26;
  }

  .invention-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 9px;
    border-radius: 16px;
  }

  .invention-link-card {
    min-height: 96px;
    grid-template-columns: 28px 1fr;
    gap: 7px;
    padding: 11px 9px;
    border-radius: 12px;
  }

  .invention-number {
    width: 26px;
    height: 26px;
    font-size: 9.5px;
  }

  .invention-link-card strong {
    font-size: 11.2px;
    line-height: 1.1;
  }

  .invention-link-card small {
    font-size: 8.8px;
    line-height: 1.18;
  }

  .award-panel.showcase-card,
  .partner-showcase {
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .invention-map {
    grid-template-columns: 1fr;
  }

  .invention-link-card {
    min-height: 0;
  }
}

/* Final homepage screen-fit and interaction refinements. */
.brand-tagline {
  font-size: clamp(10.5px, 1.05vw, 13px);
  letter-spacing: 0.01em;
}

.hero-word.load {
  color: #d9ff8a;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.72),
    0 0 22px rgba(70, 188, 42, 0.55);
}

.home-why,
.home-inventions,
.home-proof {
  background:
    radial-gradient(circle at 12% 18%, rgba(129, 230, 33, 0.24), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(0, 190, 88, 0.2), transparent 24%),
    linear-gradient(180deg, #f5fff0 0%, #ffffff 54%, #edffe8 100%);
}

.why-close {
  color: #0c3c1d;
  font-weight: 800;
}

.home-proof {
  min-height: min(100svh, 780px);
  display: grid;
  align-items: center;
  padding: clamp(18px, 2.4vw, 30px) 0;
}

.home-proof .wrap {
  width: min(1320px, calc(100% - 28px));
}

.home-proof .home-section-heading {
  margin-bottom: clamp(8px, 1.1vw, 14px);
}

.home-proof .home-section-heading h2 {
  font-size: clamp(24px, 2.6vw, 36px);
}

.home-proof .home-section-heading p {
  max-width: 780px;
  font-size: clamp(11.5px, 1vw, 13.5px);
  line-height: 1.28;
}

.showcase-board {
  gap: clamp(9px, 1.1vw, 14px);
}

.award-panel.showcase-card {
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(10px, 1.35vw, 16px);
  border-radius: 18px;
}

.award-copy {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.dupont-logo {
  width: clamp(72px, 7vw, 104px);
  max-height: 42px;
  object-fit: contain;
}

.award-panel h3 {
  max-width: 76em;
  margin: 0 auto;
  font-size: clamp(11px, 1.15vw, 15px);
  line-height: 1.2;
  white-space: normal;
}

.letter-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(7px, 0.9vw, 11px);
}

.letter-card {
  cursor: zoom-in;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.letter-card img {
  aspect-ratio: 3 / 4;
  padding: 3px;
}

.letter-open {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .letter-card:hover {
    z-index: 10000;
    transform: none;
    border-color: rgba(72, 185, 35, 0.7);
  }

  .letter-card:hover::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(6, 21, 13, 0.72);
    backdrop-filter: blur(4px);
  }

  .letter-card:hover img {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: min(92vw, 760px);
    height: min(88vh, 980px);
    padding: 12px;
    object-fit: contain;
    background: #ffffff;
    border: 5px solid #ffffff;
    border-radius: 14px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
  }
}

.partner-showcase {
  padding: clamp(10px, 1.35vw, 16px);
  border-radius: 18px;
}

.partner-showcase h3 {
  margin-bottom: clamp(8px, 1vw, 12px);
  font-size: clamp(20px, 2.2vw, 30px);
}

.partner-logo-grid {
  gap: clamp(7px, 0.9vw, 11px);
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.partner-logo {
  min-height: clamp(48px, 5.2vw, 68px);
  padding: 8px;
  border-radius: 12px;
}

.partner-logo img {
  max-height: clamp(30px, 3.5vw, 46px);
}

@media (max-width: 760px) {
  .brand-tagline {
    font-size: 10.8px;
  }

  .home-proof {
    min-height: min(100svh, 760px);
    padding: 14px 0;
  }

  .home-proof .wrap {
    width: min(100% - 24px, 1180px);
  }

  .home-proof .home-section-heading {
    margin-bottom: 8px;
  }

  .home-proof .home-section-heading h2 {
    font-size: clamp(22px, 5.9vw, 30px);
  }

  .home-proof .home-section-heading p {
    font-size: 11.2px;
    line-height: 1.22;
  }

  .award-panel.showcase-card {
    padding: 10px;
  }

  .proof-kicker {
    font-size: 8.5px;
  }

  .dupont-logo {
    width: 70px;
    max-height: 34px;
  }

  .award-panel h3 {
    max-width: 34em;
    font-size: clamp(9.8px, 2.6vw, 12px);
    line-height: 1.15;
  }

  .letter-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .letter-card img {
    padding: 2px;
  }

  .partner-showcase {
    padding: 10px;
  }

  .partner-showcase h3 {
    margin-bottom: 8px;
    font-size: clamp(19px, 5.3vw, 27px);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .partner-logo {
    min-height: 44px;
    padding: 7px;
  }

  .partner-logo img {
    max-height: 30px;
  }
}

@media (max-width: 420px) {
  .home-proof .home-section-heading p {
    font-size: 10.6px;
  }

  .award-panel h3 {
    font-size: 9.4px;
  }

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

  .partner-logo {
    min-height: 40px;
  }
}

/* Final compact homepage section sizing. */
.inventions-head h2 {
  font-size: clamp(25px, 2.65vw, 38px);
}

.home-inventions {
  padding-top: clamp(24px, 3vw, 38px);
}

.home-proof {
  min-height: auto;
  padding: clamp(16px, 2vw, 26px) 0;
}

.home-proof .home-section-heading h2 {
  font-size: clamp(23px, 2.35vw, 34px);
}

.home-proof .home-section-heading p {
  font-size: clamp(11px, 0.9vw, 13px);
}

.showcase-board {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: clamp(10px, 1.2vw, 16px);
  align-items: stretch;
}

.award-panel.showcase-card,
.partner-showcase {
  min-height: 0;
}

.award-panel.showcase-card {
  display: grid;
  align-content: start;
}

.award-panel h3 {
  font-size: clamp(10.5px, 0.98vw, 13.5px);
  line-height: 1.16;
}

.letter-gallery {
  gap: clamp(5px, 0.7vw, 9px);
}

.letter-card img {
  aspect-ratio: 3.15 / 4;
  padding: 2px;
}

.partner-showcase {
  display: grid;
  align-content: center;
}

.partner-showcase h3 {
  font-size: clamp(18px, 1.75vw, 26px);
}

.partner-logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.partner-logo {
  min-height: clamp(42px, 4.4vw, 58px);
}

.partner-logo img {
  max-height: clamp(26px, 3vw, 40px);
}

@media (max-width: 760px) {
  .home-why {
    min-height: auto;
    padding: 12px 0 14px;
  }

  .home-inventions {
    padding: 14px 0 24px;
  }

  .inventions-head {
    margin-bottom: 9px;
  }

  .inventions-head h2 {
    font-size: clamp(22px, 5.8vw, 29px);
  }

  .inventions-head p {
    font-size: 11.2px;
    line-height: 1.22;
  }

  .home-proof {
    min-height: auto;
    padding: 12px 0 16px;
  }

  .showcase-board {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-proof .home-section-heading {
    margin-bottom: 6px;
  }

  .home-proof .home-section-heading h2 {
    font-size: clamp(21px, 5.4vw, 28px);
  }

  .home-proof .home-section-heading p {
    max-width: 34em;
    font-size: 10.2px;
    line-height: 1.16;
  }

  .award-panel.showcase-card {
    gap: 6px;
    padding: 8px;
  }

  .award-copy {
    gap: 3px;
  }

  .dupont-logo {
    width: 58px;
    max-height: 28px;
  }

  .award-panel h3 {
    font-size: clamp(8.8px, 2.25vw, 10.4px);
    line-height: 1.1;
  }

  .letter-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .letter-card {
    border-radius: 7px;
  }

  .letter-card img {
    padding: 1px;
  }

  .partner-showcase {
    padding: 8px;
  }

  .partner-showcase h3 {
    margin-bottom: 6px;
    font-size: clamp(17px, 4.8vw, 23px);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .partner-logo {
    min-height: 34px;
    padding: 5px;
    border-radius: 9px;
  }

  .partner-logo img {
    max-height: 23px;
  }
}

@media (max-width: 420px) {
  .home-proof .home-section-heading p {
    display: none;
  }

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

  .partner-logo {
    min-height: 30px;
    padding: 4px;
  }

  .partner-logo img {
    max-height: 20px;
  }
}

/* Desktop recognition section finish. */
@media (min-width: 901px) {
  .home-proof {
    min-height: min(100svh, 720px);
    padding: clamp(18px, 2.1vw, 30px) 0;
  }

  .home-proof .wrap {
    width: min(1380px, calc(100% - 42px));
  }

  .home-proof .home-section-heading {
    max-width: 860px;
    margin: 0 auto clamp(12px, 1.3vw, 18px);
  }

  .home-proof .home-section-heading h2 {
    font-size: clamp(28px, 2.6vw, 42px);
  }

  .home-proof .home-section-heading p {
    max-width: 760px;
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.32;
  }

  .showcase-board {
    grid-template-columns: 1fr;
    gap: clamp(14px, 1.5vw, 22px);
    align-items: stretch;
  }

  .award-panel.showcase-card,
  .partner-showcase {
    border-radius: 22px;
    box-shadow:
      0 24px 60px rgba(25, 88, 39, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .award-panel.showcase-card {
    padding: clamp(14px, 1.4vw, 20px);
    gap: clamp(10px, 1vw, 14px);
    width: 100%;
  }

  .award-copy {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    column-gap: 14px;
    text-align: left;
  }

  .award-copy .proof-kicker {
    grid-column: 2;
    justify-self: start;
  }

  .dupont-logo {
    grid-row: span 2;
    width: clamp(74px, 6.2vw, 98px);
    max-height: 44px;
  }

  .award-panel h3 {
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(231, 252, 222, 0.72);
    color: #0b3319;
    font-size: clamp(11.5px, 1vw, 14.5px);
    line-height: 1.18;
  }

  .letter-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 0.85vw, 12px);
  }

  .letter-card {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25, 88, 39, 0.1);
  }

  .letter-card img {
    aspect-ratio: 3.2 / 4;
    padding: 3px;
  }

  .partner-showcase {
    padding: clamp(14px, 1.4vw, 20px);
    align-content: center;
    background:
      radial-gradient(circle at 18% 16%, rgba(145, 232, 58, 0.22), transparent 34%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 252, 232, 0.92));
  }

  .partner-showcase h3 {
    display: block;
    width: fit-content;
    margin: 0 auto clamp(12px, 1.2vw, 16px);
    padding: 8px 14px;
    border-radius: 999px;
    color: #0b3319;
    background: linear-gradient(135deg, rgba(166, 232, 66, 0.34), rgba(255, 255, 255, 0.82));
    font-size: clamp(21px, 1.9vw, 30px);
    line-height: 1.08;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(9px, 0.9vw, 13px);
  }

  .partner-logo {
    min-height: clamp(56px, 5vw, 72px);
    padding: 10px;
    border-radius: 14px;
  }

  .partner-logo:last-child {
    grid-column: 1 / -1;
    width: min(62%, 240px);
    justify-self: center;
  }

  .partner-logo img {
    max-height: clamp(34px, 3.2vw, 48px);
  }
}

/* Chandrasekar proof integration sections. */
.home-plant-proof {
  padding: clamp(28px, 4vw, 46px) 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(119, 216, 40, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3fff0 100%);
}

.plant-proof-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(150px, 0.6fr)) 1fr;
  gap: clamp(10px, 1.2vw, 16px);
  align-items: stretch;
}

.plant-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 190px;
  padding: clamp(14px, 1.4vw, 20px);
  border: 1px solid rgba(47, 163, 53, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 252, 232, 0.9));
  box-shadow: 0 16px 34px rgba(25, 88, 39, 0.1);
}

.plant-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(25, 88, 39, 0.15);
}

.plant-proof-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.plant-proof-card strong {
  color: #13702e;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.plant-proof-card span {
  color: #1f7a31;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plant-proof-card h3 {
  margin: 0;
  color: #0b3319;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.12;
}

.plant-proof-card p {
  margin: 0;
  color: #315744;
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.35;
}

.featured-proof {
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
  align-items: center;
}

.letter-proof img {
  height: 155px;
  object-fit: contain;
  background: #fff;
}

.leadership-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0 16px;
  padding: clamp(14px, 1.6vw, 18px);
  border: 1px solid rgba(47, 163, 53, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 224, 48, 0.2), transparent 30%),
    linear-gradient(145deg, #ffffff, #f1ffed);
  box-shadow: 0 18px 40px rgba(25, 88, 39, 0.08);
}

.leadership-copy {
  max-width: none;
}

.leadership-proof h2 {
  margin: 5px 0 0;
  color: #0b3319;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.leadership-proof p {
  max-width: none;
  margin: 0;
  color: #355448;
  font-size: 15px;
  line-height: 1.45;
}

.leadership-profile {
  display: grid;
  gap: 8px;
  align-items: start;
}

.leadership-photo {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(420px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(25, 88, 39, 0.08);
}

.leadership-photo img {
  width: 82px;
  height: 98px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  border: 2px solid rgba(47, 163, 53, 0.22);
  box-shadow: 0 10px 20px rgba(25, 88, 39, 0.12);
}

.leadership-photo figcaption {
  color: #0b3319;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 800;
  line-height: 1.12;
}

.leadership-photo figcaption::after {
  content: "Technical leadership";
  display: block;
  margin-top: 4px;
  color: #2a7c38;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-facts,
.proof-list {
  display: grid;
  gap: 8px;
}

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

.leadership-facts span,
.proof-list span {
  display: block;
  padding: 9px 11px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 12px;
  color: #315744;
  font-size: 14px;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.82);
}

.leadership-facts strong,
.proof-list strong {
  color: #12702e;
}

.proof-images .reference-figure img {
  max-height: 260px;
  object-fit: contain;
}

.projects-page .reference-section:nth-of-type(even) {
  background: #f7fff4;
}

.client-recognition-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(126, 211, 33, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fff4, #ffffff);
}

.client-recognition-section .compact-heading {
  max-width: 920px;
  margin: 0 auto 22px;
  text-align: center;
}

.client-recognition-section .section-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #0b4a21;
  background: rgba(126, 211, 33, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-recognition-section h2 {
  max-width: 900px;
  margin: 0 auto 10px;
  color: #082f18;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.client-recognition-section .compact-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: #315744;
  font-size: 15px;
  line-height: 1.45;
}

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

.client-letter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 238, 0.92));
  box-shadow: 0 16px 34px rgba(25, 88, 39, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-letter-card:hover {
  border-color: rgba(47, 125, 50, 0.34);
  box-shadow: 0 22px 46px rgba(25, 88, 39, 0.14);
  transform: translateY(-4px);
}

.client-letter-company {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: #1f7a31;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-letter-card h3 {
  margin: 0 0 8px;
  color: #0b3319;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.14;
}

.client-letter-card p {
  margin: 0;
  color: #315744;
  font-size: 14px;
  line-height: 1.45;
}

.client-letter-preview {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(25, 88, 39, 0.1);
}

.client-letter-preview .letter-open {
  opacity: 0.96;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(8, 47, 24, 0.28);
}

.client-letter-preview img {
  display: block;
  width: 100%;
  height: clamp(150px, 18vw, 230px);
  object-fit: contain;
  padding: 4px;
  background: #ffffff;
  transition: filter 180ms ease, transform 180ms ease;
}

.client-letter-preview:hover img,
.client-letter-preview:focus-within img {
  filter: brightness(0.82) saturate(1.04);
  transform: scale(1.015);
}

.client-letter-preview:hover .letter-open,
.client-letter-preview:focus-within .letter-open {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.featured-client-letter {
  border-color: rgba(31, 122, 49, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 255, 228, 0.95)),
    radial-gradient(circle at 8% 10%, rgba(143, 224, 40, 0.18), transparent 32%);
}

.recognition-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 255, 238, 0.9));
}

.recognition-title {
  grid-column: 1 / -1;
  color: #0b4a21;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recognition-letter-icon.letter-open {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 10px;
  align-items: center;
  min-height: 64px;
  padding: 9px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 12px;
  color: #0b3319;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(25, 88, 39, 0.08);
  opacity: 1;
  transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  white-space: normal;
}

.recognition-letter-icon.letter-open:hover,
.recognition-letter-icon.letter-open:focus {
  border-color: rgba(47, 125, 50, 0.4);
  background: #f7fff4;
  box-shadow: 0 16px 30px rgba(25, 88, 39, 0.14);
  outline: 2px solid rgba(126, 211, 33, 0.42);
  outline-offset: 2px;
  transform: translateY(-3px);
}

.recognition-letter-icon img {
  grid-row: 1 / 3;
  width: 42px;
  height: 54px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 6px;
  background: #ffffff;
}

.recognition-letter-icon span {
  overflow: hidden;
  color: #0b3319;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.08;
  text-overflow: ellipsis;
}

.recognition-letter-icon small {
  color: #315744;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.proof-link-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 4px solid #2f9a3c;
  border-radius: 10px;
  color: #244635;
  background: linear-gradient(90deg, rgba(235, 255, 226, 0.95), rgba(255, 255, 255, 0.78));
  font-size: 13.5px;
  line-height: 1.4;
}

.proof-link-note strong {
  color: #0b4a21;
}

.proof-link-note a {
  color: #0b6f2e;
  font-weight: 900;
  text-decoration: none;
}

.proof-link-note a:hover,
.proof-link-note a:focus {
  color: #08391a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-proof-strip {
  padding: clamp(34px, 4vw, 56px) 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(143, 224, 40, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(31, 122, 49, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7fff4);
}

.home-proof-strip .home-section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-strip-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(48, 168, 52, 0.2);
  border-top: 4px solid #1f7a31;
  border-radius: 18px;
  color: #244635;
  text-decoration: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(143, 224, 40, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 238, 0.92));
  box-shadow: 0 14px 30px rgba(25, 88, 39, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-strip-grid a:hover,
.proof-strip-grid a:focus {
  border-color: rgba(48, 168, 52, 0.34);
  box-shadow: 0 20px 40px rgba(15, 34, 44, 0.13);
  transform: translateY(-5px);
  outline: none;
}

.proof-strip-grid strong {
  position: relative;
  z-index: 1;
  color: #0b3319;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.05;
}

.proof-strip-grid span {
  position: relative;
  z-index: 1;
  color: #315744;
  font-size: 13.5px;
  line-height: 1.35;
}

.proof-strip-grid b {
  display: block;
  margin-bottom: 3px;
  color: #1f7a31;
  font-size: 14px;
}

.zld-method {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 70px) 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(111, 207, 46, 0.18), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(22, 116, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3fff0 100%);
}

.zld-method::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 47, 24, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 47, 24, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.zld-method .wrap {
  position: relative;
}

.zld-method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
}

.zld-method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(14px, 1.6vw, 20px);
  border: 1px solid rgba(8, 47, 24, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 252, 235, 0.94));
  box-shadow: 0 22px 54px rgba(8, 47, 24, 0.11);
}

.zld-method-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  z-index: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f18, #1f7a31, #6fcf2e, #1f7a31);
  opacity: 0.34;
}

.zld-method-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 18px 16px;
  border: 1px solid rgba(8, 47, 24, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 207, 46, 0.16), transparent 44%),
    #ffffff;
  box-shadow: 0 14px 30px rgba(8, 47, 24, 0.08);
}

.zld-method-flow span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #082f18, #1f7a31);
  font-size: 12px;
  font-weight: 950;
}

.zld-method-flow strong {
  margin-bottom: 8px;
  color: #082f18;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.05;
}

.zld-method-flow p,
.zld-method-proof p,
.zld-video-grid figcaption {
  margin: 0;
  color: #315744;
  font-size: clamp(12px, 0.98vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.zld-method-proof {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.zld-method-proof > article {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 207, 46, 0.22), transparent 28%),
    linear-gradient(145deg, #082f18, #0f5d2a 68%, #145a36);
  box-shadow: 0 18px 40px rgba(8, 47, 24, 0.18);
}

.zld-method-proof > article strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
}

.zld-method-proof > article p {
  color: rgba(255, 255, 255, 0.86);
}

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

.zld-video-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 47, 24, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 47, 24, 0.08);
}

.zld-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #092215;
}

.zld-video-grid figcaption {
  padding: 10px 12px 12px;
  color: #173f27;
}

/* Homepage motion: subtle treatment-flow animation for the proof, invention and project sections. */
@keyframes sartime-flow {
  0% {
    background-position: 120% 50%, 0 0;
  }
  100% {
    background-position: -20% 50%, 0 0;
  }
}

@keyframes sartime-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes sartime-map-flow {
  0% {
    transform: translateX(-18%) skewX(-14deg);
  }
  100% {
    transform: translateX(118%) skewX(-14deg);
  }
}

.proof-dashboard,
.invention-map,
.proof-strip-grid a {
  will-change: transform;
}

.proof-dashboard {
  position: relative;
  overflow: hidden;
}

.proof-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(111, 207, 46, 0.16) 44%, rgba(31, 122, 49, 0.12) 50%, transparent 60%),
    linear-gradient(145deg, transparent, transparent);
  background-size: 180% 100%, auto;
  animation: sartime-flow 5.8s linear infinite;
}

.proof-main-card,
.proof-metric-grid {
  position: relative;
  z-index: 1;
}

.proof-metric-grid::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 25%, rgba(111, 207, 46, 0.28), transparent 3%),
    radial-gradient(circle at 50% 25%, rgba(31, 122, 49, 0.2), transparent 3%),
    radial-gradient(circle at 86% 75%, rgba(111, 207, 46, 0.22), transparent 3%);
  filter: blur(2px);
  animation: sartime-pulse 3.6s ease-in-out infinite;
}

.proof-metric-card::after,
.proof-strip-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.72) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.proof-metric-card:hover::after,
.proof-metric-card:focus-within::after,
.proof-strip-grid a:hover::after,
.proof-strip-grid a:focus::after {
  opacity: 0.72;
  transform: translateX(45%);
}

.invention-map::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  z-index: 0;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(111, 207, 46, 0.18), rgba(31, 122, 49, 0.12), transparent);
  animation: sartime-map-flow 7s linear infinite;
}

.invention-link-card {
  z-index: 1;
}

.invention-link-card:hover .invention-number,
.invention-link-card:focus-visible .invention-number {
  transform: scale(1.08);
  box-shadow: 0 14px 26px rgba(31, 122, 49, 0.28);
}

.invention-number {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .proof-dashboard::before,
  .proof-metric-grid::after,
  .invention-map::before {
    animation: none;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.product-reference .reference-intro h1,
.projects-page .reference-intro h1 {
  max-width: 920px;
  margin-bottom: 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

.product-reference .reference-lead,
.projects-page .reference-lead {
  max-width: 940px;
  margin-bottom: 12px;
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  line-height: 1.38;
}

.product-reference .topic-index,
.projects-page .topic-index {
  display: inline-block;
  width: fit-content;
  max-width: min(520px, 100%);
  padding: 10px 14px;
}

.product-reference .topic-index-title,
.projects-page .topic-index-title {
  margin-bottom: 6px;
  font-size: 12px;
}

.product-reference .topic-index ol,
.projects-page .topic-index ol {
  padding-left: 18px;
}

.product-reference .topic-index li,
.projects-page .topic-index li {
  margin-bottom: 3px;
  font-size: 12.6px;
  line-height: 1.15;
}

.product-reference .topic-index a,
.projects-page .topic-index a {
  min-height: 22px;
  padding: 2px 6px;
}

@media (max-width: 980px) {
  .client-letter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .client-recognition-section .compact-heading {
    margin-bottom: 16px;
    text-align: left;
  }

  .client-recognition-section h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .client-letter-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .client-letter-preview img {
    height: clamp(190px, 62vw, 280px);
  }

  .recognition-icons {
    grid-template-columns: 1fr;
  }

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

  .product-reference .reference-intro h1,
  .projects-page .reference-intro h1 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .product-reference .reference-lead,
  .projects-page .reference-lead {
    font-size: 13px;
    line-height: 1.3;
  }

  .product-reference .topic-index,
  .projects-page .topic-index {
    max-width: 100%;
    padding: 9px 12px;
  }
}

@media (max-width: 980px) {
  .plant-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-proof {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .plant-proof-grid,
  .featured-proof {
    grid-template-columns: 1fr;
  }

  .plant-proof-card {
    min-height: 0;
    padding: 14px;
  }

  .plant-proof-card img {
    height: 135px;
  }

  .letter-proof img {
    height: 160px;
  }

  .leadership-proof {
    margin: 14px 0;
    padding: 14px;
  }

  .leadership-photo {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .leadership-photo img {
    width: 72px;
    height: 88px;
    border-radius: 12px;
  }

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

  .proof-images .reference-figure img {
    max-height: 220px;
  }
}

/* Final letter alignment and click-to-open behavior. */
.letter-gallery {
  justify-items: center;
  align-items: center;
}

.letter-card {
  isolation: isolate;
  width: 100%;
  max-width: 168px;
}

.letter-card::after {
  content: "Click anywhere";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f7a31, #6fc71f);
  box-shadow: 0 14px 28px rgba(15, 61, 32, 0.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}

.letter-card:hover::after,
.letter-card:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.letter-card:hover,
.letter-card:focus-visible {
  z-index: 5;
  border-color: rgba(72, 185, 35, 0.7);
  box-shadow: 0 18px 36px rgba(25, 88, 39, 0.18);
  transform: translateY(-4px) scale(1.035);
  outline: none;
}

.letter-card:hover img,
.letter-card:focus-visible img {
  filter: brightness(0.82) saturate(1.06);
}

.letter-modal {
  padding: 20px;
  place-items: stretch center;
}

.letter-modal-frame {
  width: min(980px, 94vw);
  height: min(92vh, 1040px);
  max-height: none;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.letter-modal-frame img {
  width: 100%;
  min-height: 100%;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .letter-card:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(6, 21, 13, 0.2);
    backdrop-filter: none;
  }

  .letter-card:hover img {
    position: static;
    width: 100%;
    height: auto;
    padding: inherit;
    object-fit: contain;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
}

@media (min-width: 901px) {
  .award-panel.showcase-card .letter-gallery {
    width: 100%;
    margin-inline: auto;
  }

  .award-panel.showcase-card .letter-card {
    max-width: none;
  }

  .partner-showcase {
    width: min(100%, 980px);
    justify-self: center;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .partner-logo:last-child {
    grid-column: auto;
    width: auto;
  }
}

/* Desktop one-screen fit for recognition and trusted customers. */
@media (min-width: 901px) {
  .home-proof {
    min-height: auto;
    padding: 14px 0 18px;
  }

  .home-proof .home-section-heading {
    margin-bottom: 8px;
  }

  .home-proof .home-section-heading h2 {
    font-size: clamp(26px, 2.35vw, 36px);
  }

  .home-proof .home-section-heading p {
    max-width: 820px;
    font-size: clamp(11px, 0.84vw, 12.5px);
    line-height: 1.22;
  }

  .showcase-board {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-proof .plant-proof-grid {
    grid-template-columns: minmax(320px, 1.2fr) repeat(2, minmax(150px, 0.62fr)) minmax(230px, 0.9fr);
    gap: 9px;
    margin-bottom: 10px;
  }

  .home-proof .plant-proof-card {
    min-height: 118px;
    padding: 10px 12px;
    gap: 5px;
    border-radius: 15px;
  }

  .home-proof .plant-proof-card img {
    height: 98px;
    border-radius: 10px;
  }

  .home-proof .featured-proof {
    grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr);
  }

  .home-proof .letter-proof img {
    height: 92px;
  }

  .home-proof .plant-proof-card strong {
    font-size: clamp(24px, 2.2vw, 34px);
  }

  .home-proof .plant-proof-card h3 {
    font-size: clamp(13px, 1.05vw, 17px);
    line-height: 1.12;
  }

  .home-proof .plant-proof-card p {
    font-size: clamp(10px, 0.78vw, 12px);
    line-height: 1.22;
  }

  .home-proof .plant-proof-card span {
    font-size: clamp(8px, 0.62vw, 9.5px);
  }

  .award-panel.showcase-card {
    padding: 10px 14px 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .award-copy {
    grid-template-columns: auto auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 0;
    align-items: center;
  }

  .dupont-logo {
    grid-row: 1;
    width: clamp(58px, 5vw, 78px);
    max-height: 34px;
  }

  .award-copy .proof-kicker {
    grid-column: 2;
    font-size: clamp(8px, 0.62vw, 9.5px);
  }

  .award-panel h3 {
    grid-column: 3;
    padding: 6px 9px;
    font-size: clamp(10.5px, 0.86vw, 12.5px);
    line-height: 1.16;
  }

  .letter-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
  }

  .award-panel.showcase-card .letter-card {
    max-width: none;
    width: 100%;
  }

  .letter-card img {
    width: 100%;
    height: clamp(132px, 18vh, 188px);
    aspect-ratio: auto;
    object-fit: contain;
    padding: 2px;
  }

  .partner-showcase {
    width: 100%;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .partner-showcase h3 {
    margin-bottom: 7px;
    padding: 5px 12px;
    font-size: clamp(17px, 1.45vw, 23px);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
  }

  .partner-logo {
    min-height: clamp(36px, 4vh, 48px);
    padding: 6px;
    border-radius: 10px;
  }

  .partner-logo img {
    max-height: clamp(24px, 3vh, 34px);
  }
}

@media (max-width: 760px) {
  .home-proof .plant-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }

  .home-proof .plant-proof-card {
    min-height: auto;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .home-proof .featured-proof {
    grid-template-columns: 88px 1fr;
  }

  .home-proof .plant-proof-card img,
  .home-proof .letter-proof img {
    height: 72px;
    border-radius: 9px;
  }

  .home-proof .plant-proof-card strong {
    font-size: 24px;
  }

  .home-proof .plant-proof-card h3 {
    font-size: 13px;
  }

  .home-proof .plant-proof-card p {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .letter-card {
    max-width: 112px;
  }

  .letter-card::after {
    min-width: 88px;
    min-height: 28px;
    padding: 5px 8px;
    font-size: 8.5px;
  }

  .letter-modal {
    padding: 14px;
  }

  .letter-modal-frame {
    width: min(100%, 94vw);
    height: 88vh;
  }
}

/* Final homepage heading alignment. */
.home-inventions .home-section-heading,
.home-proof .home-section-heading {
  max-width: 820px;
  margin: 0 auto clamp(16px, 1.9vw, 24px);
  text-align: center;
}

.home-inventions .home-section-heading::after,
.home-proof .home-section-heading::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f7d32, #86d548);
}

.home-why .home-section-heading h2,
.home-inventions .home-section-heading h2,
.home-proof .home-section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.home-why .home-section-heading p,
.home-inventions .home-section-heading p,
.home-proof .home-section-heading p {
  max-width: 700px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.34;
}

.home-inventions .home-section-heading .proof-kicker,
.home-proof .home-section-heading .proof-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #176d2e;
  background: rgba(132, 222, 48, 0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Integrated Why SARTIME proof dashboard. */
.home-why .home-section-heading .proof-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #176d2e;
  background: rgba(132, 222, 48, 0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(8, 47, 24, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 207, 46, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 252, 232, 0.94));
  box-shadow: 0 24px 60px rgba(8, 47, 24, 0.14);
}

.proof-main-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(126, 219, 54, 0.22), transparent 26%),
    linear-gradient(145deg, #082f18, #0f5d2a 64%, #145a36);
  box-shadow: 0 20px 46px rgba(8, 47, 24, 0.2);
}

.proof-main-card > span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #eaffdf;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-main-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.05;
}

.proof-main-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.55;
}

.proof-main-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #073417;
  background: linear-gradient(135deg, #ffffff, #d9ffbd);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-main-card a:hover,
.proof-main-card a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  outline: 2px solid rgba(211, 255, 178, 0.55);
  outline-offset: 3px;
}

.proof-metric-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  align-items: stretch;
}

.proof-metric-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 10%, rgba(8, 47, 24, 0.18) 10%, rgba(8, 47, 24, 0.18) 90%, transparent 90%) 50% 25% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent 10%, rgba(8, 47, 24, 0.16) 10%, rgba(8, 47, 24, 0.16) 90%, transparent 90%) 50% 75% / 100% 2px no-repeat,
    linear-gradient(180deg, transparent 25%, rgba(8, 47, 24, 0.16) 25%, rgba(8, 47, 24, 0.16) 75%, transparent 75%) 90% 50% / 2px 100% no-repeat;
}

.proof-metric-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 47, 24, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 8%, rgba(111, 207, 46, 0.16), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f5fff1 100%);
  box-shadow: 0 14px 30px rgba(8, 47, 24, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 6px;
  background: var(--metric-color, #1f7a31);
  pointer-events: none;
}

.proof-metric-card:hover,
.proof-metric-card:focus-within {
  border-color: var(--metric-color, #1f7a31);
  box-shadow: 0 22px 44px rgba(8, 47, 24, 0.15);
  transform: translateY(-4px);
}

.proof-metric-card strong {
  display: block;
  margin-bottom: 7px;
  color: #082f18;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 0.94;
}

.proof-metric-card strong small {
  font-size: 0.36em;
  font-weight: 900;
  letter-spacing: 0;
  vertical-align: 0.35em;
}

.proof-metric-card p {
  max-width: 14em;
  margin: 0;
  color: #315744;
  font-size: clamp(12.5px, 0.95vw, 15px);
  font-weight: 750;
  line-height: 1.18;
}

.accent-deep { --metric-color: #0b5d2a; }
.accent-blue { --metric-color: #16748a; }
.accent-lime { --metric-color: #64a81f; }
.accent-gold { --metric-color: #2b7a4b; }
.accent-teal { --metric-color: #147a63; }
.accent-forest { --metric-color: #166534; }
.accent-olive { --metric-color: #63791f; }
.accent-dark { --metric-color: #082f18; }

@media (max-width: 980px) {
  .zld-flow-page .reference-row,
  .zld-flow-page .reference-row.reverse {
    grid-template-columns: 1fr;
  }

  .zld-flow-page .reference-row.reverse .reference-copy,
  .zld-flow-page .reference-row.reverse > .reference-figure,
  .zld-flow-page .reference-row.reverse > .reference-figure-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .zld-flow-page .reference-figure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zld-flow-page .reference-figure img {
    max-height: 320px;
  }

  .zld-method-layout {
    grid-template-columns: 1fr;
  }

  .zld-method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zld-method-flow::before {
    left: 50%;
    right: auto;
    top: 9%;
    bottom: 9%;
    width: 4px;
    height: auto;
  }

  .proof-dashboard {
    grid-template-columns: 1fr;
  }

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

  .proof-metric-grid::before {
    background:
      linear-gradient(90deg, transparent 14%, rgba(8, 47, 24, 0.16) 14%, rgba(8, 47, 24, 0.16) 86%, transparent 86%) 50% 12.5% / 100% 2px no-repeat,
      linear-gradient(90deg, transparent 14%, rgba(8, 47, 24, 0.16) 14%, rgba(8, 47, 24, 0.16) 86%, transparent 86%) 50% 37.5% / 100% 2px no-repeat,
      linear-gradient(90deg, transparent 14%, rgba(8, 47, 24, 0.16) 14%, rgba(8, 47, 24, 0.16) 86%, transparent 86%) 50% 62.5% / 100% 2px no-repeat,
      linear-gradient(90deg, transparent 14%, rgba(8, 47, 24, 0.16) 14%, rgba(8, 47, 24, 0.16) 86%, transparent 86%) 50% 87.5% / 100% 2px no-repeat,
      linear-gradient(180deg, transparent 12.5%, rgba(8, 47, 24, 0.14) 12.5%, rgba(8, 47, 24, 0.14) 87.5%, transparent 87.5%) 50% 50% / 2px 100% no-repeat;
  }

  .proof-metric-card,
  .proof-metric-card:nth-child(n) {
    grid-column: auto;
    min-height: 132px;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .zld-flow-index {
    padding: 10px;
  }

  .zld-flow-index li {
    grid-template-columns: 32px 1fr;
    gap: 6px 8px;
  }

  .zld-flow-index li > span {
    grid-column: 2;
  }

  .zld-flow-index a {
    grid-column: 2;
  }

  .zld-flow-page .reference-row {
    padding: 13px;
  }

  .zld-flow-page .offering-metrics,
  .zld-flow-page .reference-figure-grid {
    grid-template-columns: 1fr;
  }

  .zld-flow-page .reference-figure img {
    min-height: 160px;
    max-height: 280px;
  }

  .zld-method {
    padding: 34px 0 42px;
  }

  .zld-method-flow,
  .zld-video-grid {
    grid-template-columns: 1fr;
  }

  .zld-method-flow {
    border-radius: 20px;
    padding: 12px;
  }

  .zld-method-flow::before {
    left: 34px;
    top: 8%;
    bottom: 8%;
  }

  .zld-method-flow article {
    min-height: auto;
    padding: 15px;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
  }

  .zld-method-flow span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .zld-method-flow strong {
    margin-bottom: 5px;
  }

  .proof-dashboard {
    border-radius: 22px;
    padding: 12px;
  }

  .proof-main-card {
    border-radius: 18px;
  }

  .proof-metric-grid {
    grid-template-columns: 1fr;
  }

  .proof-metric-grid::before {
    background:
      linear-gradient(180deg, transparent 6%, rgba(8, 47, 24, 0.16) 6%, rgba(8, 47, 24, 0.16) 94%, transparent 94%) 22px 50% / 2px 100% no-repeat;
  }

  .proof-metric-card,
  .proof-metric-card:nth-child(n) {
    min-height: auto;
    border-radius: 14px;
    padding: 15px 16px;
  }

  .proof-metric-card strong {
    font-size: clamp(32px, 12vw, 48px);
  }
}

.home-why .why-panel,
.home-why .highlight-grid::before,
.home-why .highlight-grid::after {
  display: none;
}

@media (min-width: 981px) {
  .home-why {
    min-height: min(100svh, 760px);
    display: grid;
    align-items: center;
    padding: clamp(14px, 1.8vw, 24px) 0;
  }

  .home-why .home-section-heading {
    margin-bottom: clamp(10px, 1.2vw, 16px);
  }

  .home-why .home-section-heading h2 {
    font-size: clamp(30px, 2.8vw, 42px);
  }

  .home-why .home-section-heading p {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.28;
  }

  .proof-dashboard {
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(12px, 1.4vw, 20px);
    padding: clamp(12px, 1.5vw, 18px);
  }

  .proof-main-card {
    padding: clamp(14px, 1.35vw, 20px);
    border-radius: 18px;
  }

  .proof-main-card h3 {
    font-size: clamp(22px, 1.9vw, 30px);
  }

  .proof-main-card p {
    font-size: clamp(13px, 0.92vw, 15px);
    line-height: 1.36;
  }

  .proof-metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1vw, 14px);
  }

  .proof-metric-card,
  .proof-metric-card:nth-child(n) {
    grid-column: auto;
    min-height: clamp(118px, 16vh, 144px);
    padding: clamp(12px, 1vw, 15px);
    border-radius: 16px;
  }

  .proof-metric-card strong {
    font-size: clamp(46px, 4.9vw, 72px);
  }

  .proof-metric-card p {
    max-width: 15em;
    font-size: clamp(13px, 0.92vw, 15.5px);
    line-height: 1.2;
  }
}

/* Cohesive dark-green homepage finish. */
.home-why,
.home-inventions,
.home-proof {
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 84, 37, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(38, 129, 58, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fff3 0%, #ffffff 46%, #f1fbef 100%);
}

.home-section-heading h2,
.home-inventions .home-section-heading h2,
.home-proof .home-section-heading h2 {
  color: #082f18;
}

.home-section-heading p,
.home-inventions .home-section-heading p,
.home-proof .home-section-heading p {
  color: #244635;
}

.home-section-heading::after,
.home-inventions .home-section-heading::after,
.home-proof .home-section-heading::after {
  width: 86px;
  height: 4px;
  background: linear-gradient(90deg, #082f18, #1f7a31, #6fcf2e);
}

.home-why .why-panel,
.invention-map,
.field-proof-panel {
  border: 1px solid rgba(8, 47, 24, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 252, 235, 0.94));
  box-shadow: 0 22px 54px rgba(8, 47, 24, 0.12);
}

.home-why .why-panel {
  padding: clamp(16px, 1.8vw, 24px);
  border-radius: 26px;
}

.home-why .highlight-grid::before,
.home-why .highlight-grid::after,
.home-why .highlight-card::after,
.field-proof-list article::after {
  content: none;
  display: none;
}

.home-why .highlight-grid::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 15%, rgba(8, 47, 24, 0.28) 15%, rgba(8, 47, 24, 0.28) 85%, transparent 85%) 50% 25% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent 15%, rgba(8, 47, 24, 0.24) 15%, rgba(8, 47, 24, 0.24) 85%, transparent 85%) 50% 75% / 100% 3px no-repeat,
    linear-gradient(180deg, transparent 25%, rgba(8, 47, 24, 0.24) 25%, rgba(8, 47, 24, 0.24) 75%, transparent 75%) 85% 50% / 3px 100% no-repeat;
}

.home-why .highlight-grid::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, #0b5d2a 0 4px, rgba(126, 219, 54, 0.3) 5px 9px, transparent 10px) 33.3% 25% / 20px 20px no-repeat,
    radial-gradient(circle, #0b5d2a 0 4px, rgba(126, 219, 54, 0.3) 5px 9px, transparent 10px) 66.6% 25% / 20px 20px no-repeat,
    radial-gradient(circle, #0b5d2a 0 4px, rgba(126, 219, 54, 0.3) 5px 9px, transparent 10px) 85% 50% / 20px 20px no-repeat,
    radial-gradient(circle, #0b5d2a 0 4px, rgba(126, 219, 54, 0.3) 5px 9px, transparent 10px) 66.6% 75% / 20px 20px no-repeat,
    radial-gradient(circle, #0b5d2a 0 4px, rgba(126, 219, 54, 0.3) 5px 9px, transparent 10px) 33.3% 75% / 20px 20px no-repeat;
  filter: drop-shadow(0 4px 9px rgba(11, 93, 42, 0.16));
}

.home-why .highlight-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(8, 47, 24, 0.16);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4ffef 100%);
  box-shadow: 0 14px 30px rgba(8, 47, 24, 0.08);
}

.home-why .highlight-card::before {
  inset: 0;
  border: 0;
  border-top: 5px solid #0b5d2a;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 47, 24, 0.07), transparent 34%);
}

.home-why .metric-mark {
  color: #0b5d2a;
  background: rgba(8, 47, 24, 0.08);
}

.home-why .metric-label,
.home-why .highlight-card > span:last-child {
  color: #244635;
}

.home-why .highlight-stat,
.field-proof-list strong {
  color: #083b1d;
}

.home-why .highlight-card:hover,
.home-why .highlight-card:focus-within {
  border-color: rgba(11, 93, 42, 0.42);
  box-shadow:
    0 0 0 5px rgba(126, 219, 54, 0.12),
    0 22px 44px rgba(8, 47, 24, 0.16);
}

.invention-link-card {
  border-color: rgba(8, 47, 24, 0.12);
}

.invention-link-card:hover,
.invention-link-card:focus-visible {
  border-color: rgba(11, 93, 42, 0.42);
}

.invention-number {
  color: #ffffff;
  background: linear-gradient(135deg, #082f18, #1f7a31);
}

.field-proof-panel {
  grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.34fr);
}

.field-proof-copy {
  justify-content: center;
  padding: clamp(14px, 1.4vw, 20px);
  border-radius: 20px;
  color: #ffffff;
  background:
    linear-gradient(145deg, #082f18, #0f5d2a 64%, #145a36);
}

.field-proof-copy p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 1vw, 15px);
}

.field-proof-list article {
  border-color: rgba(8, 47, 24, 0.16);
  box-shadow: 0 14px 30px rgba(8, 47, 24, 0.08);
}

.field-proof-list span {
  color: #0b5d2a;
}

@media (max-width: 900px) {
  .field-proof-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-why .highlight-grid::before {
    background:
      linear-gradient(90deg, transparent 25%, rgba(8, 47, 24, 0.24) 25%, rgba(8, 47, 24, 0.24) 75%, transparent 75%) 50% 16.6% / 100% 3px no-repeat,
      linear-gradient(90deg, transparent 25%, rgba(8, 47, 24, 0.22) 25%, rgba(8, 47, 24, 0.22) 75%, transparent 75%) 50% 50% / 100% 3px no-repeat,
      linear-gradient(90deg, transparent 25%, rgba(8, 47, 24, 0.22) 25%, rgba(8, 47, 24, 0.22) 75%, transparent 75%) 50% 83.4% / 100% 3px no-repeat,
      linear-gradient(180deg, transparent 16%, rgba(8, 47, 24, 0.18) 16%, rgba(8, 47, 24, 0.18) 84%, transparent 84%) 75% 50% / 3px 100% no-repeat,
      linear-gradient(180deg, transparent 16%, rgba(8, 47, 24, 0.18) 16%, rgba(8, 47, 24, 0.18) 84%, transparent 84%) 25% 50% / 3px 100% no-repeat;
  }

  .home-why .highlight-grid::after {
    background:
      radial-gradient(circle, #0b5d2a 0 3px, rgba(126, 219, 54, 0.25) 4px 7px, transparent 8px) 50% 16.6% / 16px 16px no-repeat,
      radial-gradient(circle, #0b5d2a 0 3px, rgba(126, 219, 54, 0.25) 4px 7px, transparent 8px) 75% 33.3% / 16px 16px no-repeat,
      radial-gradient(circle, #0b5d2a 0 3px, rgba(126, 219, 54, 0.25) 4px 7px, transparent 8px) 50% 50% / 16px 16px no-repeat,
      radial-gradient(circle, #0b5d2a 0 3px, rgba(126, 219, 54, 0.25) 4px 7px, transparent 8px) 25% 66.6% / 16px 16px no-repeat,
      radial-gradient(circle, #0b5d2a 0 3px, rgba(126, 219, 54, 0.25) 4px 7px, transparent 8px) 50% 83.4% / 16px 16px no-repeat;
  }

  .home-why .highlight-card {
    border-radius: 14px;
  }
}

/* Final responsive table-of-contents treatment for product/reference pages. */
@media (min-width: 1180px) {
  .product-reference .reference-intro .wrap,
  .product-reference .reference-section > .wrap {
    padding-left: 240px;
  }

  .product-reference .topic-index {
    position: fixed;
    top: 96px;
    left: max(18px, calc((100vw - 1320px) / 2 + 18px));
    z-index: 20;
    display: block;
    width: 202px;
    max-height: none;
    overflow: visible;
    padding: 10px;
    border: 1px solid rgba(174, 231, 183, 0.22);
    border-left: 4px solid #aee7b7;
    border-radius: 16px;
    color: #d7f5dd;
    background:
      linear-gradient(160deg, rgba(4, 40, 22, 0.96), rgba(12, 86, 39, 0.94));
    box-shadow: 0 18px 44px rgba(4, 40, 22, 0.22);
    backdrop-filter: blur(12px);
  }

  .product-reference .topic-index-title {
    margin-bottom: 7px;
    color: #dff8e4;
    font-size: 10.4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .product-reference .topic-index ol {
    display: grid;
    gap: 1px;
    padding-left: 0;
    list-style: none;
  }

  .product-reference .topic-index li {
    margin: 0;
    color: #d7f5dd;
    font-size: 11.4px;
    line-height: 1.08;
  }

  .product-reference .topic-index a {
    display: flex;
    width: 100%;
    min-height: 22px;
    margin-left: 0;
    padding: 4px 7px;
    border-radius: 8px;
    color: #eefcf1;
    background: transparent;
  }

  .product-reference .topic-index a:hover,
  .product-reference .topic-index a:focus {
    color: #052414;
    background: #ddf8d7;
    box-shadow: none;
    transform: translateX(3px);
  }
}

@media (max-width: 1179px) {
  .product-reference .topic-index {
    display: block;
    width: fit-content;
    max-width: 100%;
    padding: 10px 12px;
  }

  .product-reference .topic-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 2px;
    padding-left: 18px;
  }

  .product-reference .topic-index li {
    margin-bottom: 2px;
    font-size: 12.5px;
    line-height: 1.16;
  }

  .zld-journey-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .product-reference .topic-index {
    width: 100%;
  }

  .proof-strip-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip-grid a:last-child {
    width: 100%;
  }

  .product-reference .topic-index ol {
    grid-template-columns: 1fr;
    row-gap: 1px;
  }

  .product-reference .topic-index a {
    width: 100%;
  }

  .zld-journey-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .zld-journey-strip span {
    min-height: 34px;
  }

  .zld-journey-strip span::after {
    display: none;
  }
}

/* Final override: ZLD pages use a vertical numbered flow index on every viewport. */
.product-reference .zld-flow-index {
  display: block;
  width: min(100%, 420px);
  max-width: 420px;
}

.product-reference .zld-flow-index ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding-left: 0;
  counter-reset: zld-flow;
  list-style: none;
}

.product-reference .zld-flow-index li {
  counter-increment: zld-flow;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.product-reference .zld-flow-index li::before {
  content: counter(zld-flow, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #082f18, #1f7a31);
  font-size: 10px;
  font-weight: 950;
}

.product-reference .zld-flow-index li > span {
  display: none;
}

.product-reference .zld-flow-index a {
  width: 100%;
  grid-column: 2;
}

@media (max-width: 520px) {
  .product-reference .zld-flow-index li {
    grid-template-columns: 32px 1fr;
    gap: 6px 8px;
  }

  .product-reference .zld-flow-index a {
    grid-column: 2;
  }
}

@media (min-width: 1180px) {
  .product-reference .zld-flow-index {
    width: 202px;
    max-width: 202px;
  }
}

@media (min-width: 981px) {
  .zld-flow-page .reference-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: 10px 0;
  }

  .zld-flow-page .reference-row,
  .zld-flow-page .reference-row.reverse {
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    grid-auto-flow: row dense;
    width: 100%;
    min-height: min(650px, calc(100vh - 118px));
    max-height: none;
  }

  .zld-flow-page .reference-row > .reference-copy,
  .zld-flow-page .reference-row.reverse > .reference-copy {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .zld-flow-page .reference-row > .reference-figure,
  .zld-flow-page .reference-row > .reference-figure-grid,
  .zld-flow-page .reference-row.reverse > .reference-figure,
  .zld-flow-page .reference-row.reverse > .reference-figure-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .zld-flow-page .reference-figure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: center;
  }

  .zld-flow-page .tos-images,
  .zld-flow-page .stp-images,
  .zld-flow-page .ro-images,
  .zld-flow-page .mftl-images,
  .zld-flow-page .ced-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zld-flow-page .tos-images .reference-figure:first-child,
  .zld-flow-page .stp-images .reference-figure:first-child,
  .zld-flow-page .ro-images .reference-figure:first-child,
  .zld-flow-page .mftl-images .reference-figure:first-child,
  .zld-flow-page .ced-images .reference-figure:first-child {
    grid-column: 1 / -1;
  }

  .zld-flow-page .tos-images .reference-figure,
  .zld-flow-page .stp-images .reference-figure,
  .zld-flow-page .ro-images .reference-figure,
  .zld-flow-page .mftl-images .reference-figure,
  .zld-flow-page .ced-images .reference-figure,
  .zld-flow-page .coolant-steps .reference-figure {
    min-height: 0;
  }

  .zld-flow-page .tos-images .reference-figure img,
  .zld-flow-page .stp-images .reference-figure img,
  .zld-flow-page .ro-images .reference-figure img,
  .zld-flow-page .mftl-images .reference-figure img,
  .zld-flow-page .ced-images .reference-figure img,
  .zld-flow-page .coolant-steps .reference-figure img {
    min-height: 92px;
    max-height: 150px;
  }

  .zld-flow-page .tos-images .reference-figure:first-child img,
  .zld-flow-page .stp-images .reference-figure:first-child video,
  .zld-flow-page .ro-images .reference-figure:first-child video,
  .zld-flow-page .mftl-images .reference-figure:first-child img,
  .zld-flow-page .ced-images .reference-figure:first-child img {
    min-height: 160px;
    max-height: 220px;
  }

  .zld-flow-page .coolant-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .zld-flow-page .coolant-steps .reference-figure:first-child {
    grid-column: auto;
  }

  .zld-flow-page .coolant-images {
    grid-template-columns: 1fr;
  }

  .zld-flow-page .reference-row > .reference-copy:only-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .zld-flow-page .reference-row > .reference-figure,
  .zld-flow-page .reference-row > .reference-figure-grid {
    order: -1;
  }
}

.js-product-tabs .reference-section:not(.is-active-product) {
  display: none !important;
}

.zld-flow-index a.is-active-product {
  color: #031e10 !important;
  background: linear-gradient(135deg, #f4fff0, #bdf5a8) !important;
  box-shadow: 0 12px 26px rgba(2, 28, 13, 0.24);
  transform: translateX(3px);
}

.js-product-tabs .reference-section.is-active-product {
  border-bottom: 0;
}

.js-product-tabs .proof-link-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(8, 47, 24, 0.14);
  border-radius: 999px;
  background: rgba(223, 248, 215, 0.8);
  font-size: 11px;
  line-height: 1.2;
}

@media (min-width: 981px) {
  .js-product-tabs .reference-intro {
    padding: 8px 0 0;
    border-bottom: 0;
  }

  .js-product-tabs .reference-intro h1 {
    max-width: 930px;
    margin-bottom: 3px;
    font-size: clamp(21px, 2vw, 34px);
    line-height: 1;
  }

  .js-product-tabs .reference-lead {
    max-width: 920px;
    margin-bottom: 4px;
    font-size: clamp(11.2px, 0.78vw, 13.2px);
    line-height: 1.18;
  }

  .js-product-tabs .zld-journey-strip {
    max-width: 960px;
    margin: 4px 0 3px;
  }

  .js-product-tabs .zld-journey-strip span {
    min-height: 22px;
    padding: 3px 6px;
    border-radius: 9px;
    font-size: clamp(8.2px, 0.56vw, 9.8px);
  }

  .js-product-tabs .reference-section.is-active-product {
    display: flex;
    align-items: start;
    min-height: auto;
    padding: 4px 0 12px;
  }

  .js-product-tabs .reference-section.is-active-product > .wrap {
    position: relative;
    min-height: 0;
    height: calc(100vh - 174px);
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
  }

  .js-product-tabs .reference-row,
  .js-product-tabs .reference-row.reverse {
    grid-template-columns: minmax(285px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(10px, 1vw, 16px);
  }

  .js-product-tabs .reference-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .js-product-tabs .reference-copy h2 {
    margin-bottom: 2px;
    font-size: clamp(18px, 1.45vw, 26px);
  }

  .js-product-tabs .zld-stage {
    width: fit-content;
    margin-bottom: 5px;
    padding: 3px 8px;
    font-size: 8.8px;
  }

  .js-product-tabs .reference-copy .product-promise {
    max-width: 920px;
    margin-bottom: 4px;
    font-size: clamp(13.5px, 0.95vw, 17px);
  }

  .js-product-tabs .zld-role {
    margin-bottom: 5px;
    padding: 5px 8px;
    font-size: clamp(10px, 0.68vw, 11.8px);
  }

  .js-product-tabs .reference-copy p {
    display: -webkit-box;
    max-width: none;
    margin-bottom: 4px;
    overflow: hidden;
    font-size: clamp(10px, 0.68vw, 12px);
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .js-product-tabs .reference-copy .product-promise,
  .js-product-tabs .reference-copy .zld-role,
  .js-product-tabs .reference-copy .proof-link-note {
    display: flex;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .js-product-tabs .offering-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-top: 5px;
  }

  .js-product-tabs .offering-metrics span {
    padding: 5px 6px;
    border-radius: 9px;
    font-size: clamp(8.3px, 0.54vw, 9.8px);
    line-height: 1.09;
  }

  .js-product-tabs .offering-metrics strong {
    margin-bottom: 1px;
    font-size: clamp(10px, 0.72vw, 13px);
  }

  .js-product-tabs .reference-figure-grid {
    align-content: center;
    gap: 5px;
    max-height: calc(100vh - 220px);
  }

  .js-product-tabs .reference-figure {
    border-radius: 16px;
  }

  .js-product-tabs .reference-figure img {
    min-height: 86px;
    max-height: 155px;
  }

  .js-product-tabs .reference-figure video {
    min-height: 112px;
    max-height: 165px;
  }

  .js-product-tabs .reference-figure figcaption,
  .js-product-tabs .image-caption {
    padding: 4px 6px 5px;
    font-size: 8.4px;
  }

  .js-product-tabs .tos-images .reference-figure:first-child img,
  .js-product-tabs .stp-images .reference-figure:first-child video,
  .js-product-tabs .ro-images .reference-figure:first-child video,
  .js-product-tabs .mftl-images .reference-figure:first-child img,
  .js-product-tabs .ced-images .reference-figure:first-child img {
    min-height: 116px;
    max-height: 165px;
  }
}

@media (max-width: 980px) {
  .js-product-tabs .reference-intro {
    padding: 12px 0 8px;
  }

  .js-product-tabs .reference-intro h1 {
    font-size: clamp(19px, 5vw, 26px);
    line-height: 1.02;
  }

  .js-product-tabs .reference-lead {
    font-size: 11.5px;
    line-height: 1.22;
  }

  .js-product-tabs .zld-journey-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin: 8px 0;
  }

  .js-product-tabs .zld-journey-strip span {
    min-height: 30px;
    padding: 4px;
    border-radius: 9px;
    font-size: 8.2px;
  }

  .js-product-tabs .zld-journey-strip span::after {
    display: none;
  }

  .js-product-tabs .reference-section.is-active-product {
    display: block;
    padding: 8px 0 14px;
  }

  .js-product-tabs .zld-flow-index {
    position: static;
    z-index: 15;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(160deg, rgba(4, 40, 22, 0.98), rgba(12, 86, 39, 0.96));
  }

  .js-product-tabs .zld-flow-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 8px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .js-product-tabs .zld-flow-index li {
    min-width: 0;
    scroll-snap-align: none;
    font-size: 11.4px;
  }

  .js-product-tabs .zld-flow-index li::before {
    width: 24px;
    height: 24px;
    font-size: 8.5px;
  }

  .js-product-tabs .zld-flow-index a {
    min-height: 30px;
    padding: 5px 7px;
    line-height: 1.12;
  }

  .js-product-tabs .reference-section.is-active-product > .wrap {
    padding: 11px;
    border-radius: 18px;
  }

  .js-product-tabs .reference-copy h2 {
    margin-bottom: 3px;
    font-size: clamp(18px, 4.4vw, 23px);
    line-height: 1.02;
  }

  .js-product-tabs .zld-stage {
    margin-bottom: 5px;
    padding: 3px 8px;
    font-size: 8.6px;
  }

  .js-product-tabs .reference-copy .product-promise {
    margin-bottom: 5px;
    font-size: 13.4px;
    line-height: 1.14;
  }

  .js-product-tabs .zld-role {
    margin-bottom: 5px;
    padding: 5px 8px;
    font-size: 10.5px;
    line-height: 1.16;
  }

  .js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    display: -webkit-box;
    margin-bottom: 4px;
    overflow: hidden;
    font-size: 10.6px;
    line-height: 1.17;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .js-product-tabs .offering-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 6px;
  }

  .js-product-tabs .offering-metrics span {
    padding: 5px 6px;
    border-radius: 9px;
    font-size: 9px;
    line-height: 1.08;
  }

  .js-product-tabs .offering-metrics strong {
    font-size: 11.5px;
  }

  .js-product-tabs .reference-figure-grid {
    gap: 5px;
  }

  .js-product-tabs .reference-figure img {
    min-height: 82px;
    max-height: 145px;
  }

  .js-product-tabs .reference-figure video {
    min-height: 100px;
    max-height: 145px;
  }

  .js-product-tabs .reference-figure figcaption,
  .js-product-tabs .image-caption {
    padding: 4px 5px;
    font-size: 8.4px;
    line-height: 1.1;
  }

  .js-product-tabs .proof-link-note {
    display: none;
  }
}

/* Final Auto ZLD console layout: desktop behaves like a single-screen product dashboard. */
@media (min-width: 981px) {
  body:has(.auto-zld-page.js-product-tabs) {
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs {
    display: grid;
    grid-template-columns: clamp(190px, 12vw, 226px) minmax(0, 1fr);
    grid-template-rows: minmax(24px, auto) minmax(16px, auto) minmax(34px, auto) minmax(0, 1fr);
    gap: clamp(4px, 0.55vh, 7px) clamp(12px, 1vw, 18px);
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: calc(100vh - 67px);
    margin: 0 auto;
    padding: clamp(5px, 0.7vh, 9px) clamp(16px, 1.3vw, 26px) clamp(6px, 0.8vh, 10px);
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs .reference-intro,
  .auto-zld-page.js-product-tabs .reference-intro .wrap {
    display: contents;
  }

  .auto-zld-page.js-product-tabs .reference-intro h1 {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    margin: 0;
    color: #052414;
    font-size: clamp(21px, 1.72vw, 32px);
    line-height: 0.98;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin: 0;
    color: #2d4b3b;
    font-size: clamp(10.8px, 0.74vw, 13px);
    line-height: 1.18;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(30px, 3.8vh, 38px);
    padding: clamp(4px, 0.55vh, 7px) 8px;
    border: 1px solid rgba(174, 231, 183, 0.32);
    border-radius: 13px;
    color: #f1fff2;
    background: linear-gradient(145deg, rgba(5, 46, 24, 0.94), rgba(19, 120, 50, 0.84));
    box-shadow: 0 10px 22px rgba(5, 46, 24, 0.14);
    font-size: clamp(10px, 0.74vw, 12.4px);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 10px;
    height: 2px;
    background: #aee7b7;
    transform: translateY(-50%);
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span.is-active-product {
    color: #052414;
    background: linear-gradient(135deg, #f4fff0, #bdf5a8);
    box-shadow: 0 12px 26px rgba(5, 46, 24, 0.18);
  }

  .auto-zld-page.js-product-tabs .topic-index {
    position: static;
    grid-column: 1;
    grid-row: 1 / 5;
    align-self: stretch;
    width: auto;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    overflow: visible;
    padding: clamp(8px, 0.75vw, 12px);
    border: 1px solid rgba(174, 231, 183, 0.22);
    border-left: 4px solid #aee7b7;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(4, 40, 22, 0.98), rgba(12, 86, 39, 0.95));
    box-shadow: 0 20px 46px rgba(4, 40, 22, 0.18);
  }

  .auto-zld-page.js-product-tabs .topic-index-title {
    margin-bottom: 7px;
    color: #dff8e4;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .auto-zld-page.js-product-tabs .topic-index ol {
    display: grid;
    gap: 2px;
    padding-left: 0;
    list-style: none;
  }

  .auto-zld-page.js-product-tabs .topic-index li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    margin: 0;
    font-size: 10.7px;
    line-height: 1.05;
  }

  .auto-zld-page.js-product-tabs .topic-index li::before {
    width: 24px;
    height: 24px;
    font-size: 8px;
  }

  .auto-zld-page.js-product-tabs .topic-index a {
    min-height: 24px;
    padding: 4px 6px;
    border-radius: 8px;
    color: #eefcf1;
    line-height: 1.08;
  }

  .auto-zld-page.js-product-tabs .topic-index a:hover,
  .auto-zld-page.js-product-tabs .topic-index a:focus-visible {
    color: #031e10;
    background: #dff8d7;
    outline: none;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product {
    grid-column: 2;
    grid-row: 4;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: clamp(12px, 1vw, 18px);
    overflow: visible;
    border-radius: clamp(18px, 1.35vw, 24px);
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product,
  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap,
  .auto-zld-page.js-product-tabs .reference-row {
    min-width: 0;
  }

  .auto-zld-page.js-product-tabs .reference-row,
  .auto-zld-page.js-product-tabs .reference-row.reverse {
    grid-template-columns: minmax(300px, clamp(360px, 34vw, 680px)) minmax(0, 1fr);
    gap: clamp(12px, 1.1vw, 20px);
    align-items: stretch;
    height: 100%;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .reference-row > .reference-copy,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-copy {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .auto-zld-page.js-product-tabs .reference-row > .reference-figure,
  .auto-zld-page.js-product-tabs .reference-row > .reference-figure-grid,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-figure,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-figure-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .auto-zld-page.js-product-tabs .reference-copy {
    display: flex;
    flex-direction: column;
    align-self: start;
    justify-content: flex-start;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .reference-copy h2 {
    margin-bottom: 4px;
    font-size: clamp(23px, 1.75vw, 34px);
    line-height: 1;
  }

  .auto-zld-page.js-product-tabs .zld-stage {
    margin-bottom: 5px;
    padding: 4px 9px;
    font-size: 9.5px;
  }

  .auto-zld-page.js-product-tabs .reference-copy .product-promise {
    margin-bottom: 6px;
    font-size: clamp(17px, 1.18vw, 22px);
    line-height: 1.15;
  }

  .auto-zld-page.js-product-tabs .zld-role {
    margin-bottom: 6px;
    padding: 6px 10px;
    font-size: clamp(11.5px, 0.82vw, 13.5px);
    line-height: 1.15;
  }

  .auto-zld-page.js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    display: -webkit-box;
    margin-bottom: 5px;
    overflow: hidden;
    color: #30424a;
    font-size: clamp(11.5px, 0.82vw, 14px);
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .auto-zld-page.js-product-tabs .offering-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 0.65vw, 10px);
    margin-top: clamp(7px, 0.8vh, 12px);
  }

  .auto-zld-page.js-product-tabs .offering-metrics span {
    min-height: 0;
    padding: clamp(7px, 0.75vh, 10px) clamp(8px, 0.75vw, 12px);
    border-radius: 11px;
    font-size: clamp(10.4px, 0.72vw, 12.6px);
    line-height: 1.14;
  }

  .auto-zld-page.js-product-tabs .offering-metrics strong {
    font-size: clamp(13px, 0.92vw, 16.5px);
  }

  .auto-zld-page.js-product-tabs .reference-figure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: clamp(8px, 0.7vw, 12px);
    align-content: stretch;
    height: 100%;
    max-height: none;
  }

  .auto-zld-page.js-product-tabs .reference-figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .tos-images,
  .auto-zld-page.js-product-tabs .stp-images,
  .auto-zld-page.js-product-tabs .ro-images,
  .auto-zld-page.js-product-tabs .mftl-images,
  .auto-zld-page.js-product-tabs .ced-images {
    grid-template-rows: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .auto-zld-page.js-product-tabs .tos-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .stp-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .ro-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .mftl-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .ced-images .reference-figure:nth-child(n+4) {
    display: none;
  }

  .auto-zld-page.js-product-tabs .phosphate-images,
  .auto-zld-page.js-product-tabs .pond-images,
  .auto-zld-page.js-product-tabs .revamp-images {
    grid-template-rows: minmax(0, 1fr);
  }

  .auto-zld-page.js-product-tabs .coolant-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .auto-zld-page.js-product-tabs .coolant-images {
    display: none;
  }

  .auto-zld-page.js-product-tabs #chrome-reduction .reference-figure,
  .auto-zld-page.js-product-tabs #chrome-reduction .reference-figure img {
    height: 100%;
  }

  .auto-zld-page.js-product-tabs #chrome-reduction .reference-figure img {
    object-fit: contain;
  }

  .auto-zld-page.js-product-tabs .reference-figure img {
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .auto-zld-page.js-product-tabs .reference-figure video {
    min-height: 0;
    max-height: none;
    height: 100%;
  }

  .auto-zld-page.js-product-tabs .tos-images .reference-figure:first-child img,
  .auto-zld-page.js-product-tabs .stp-images .reference-figure:first-child video,
  .auto-zld-page.js-product-tabs .ro-images .reference-figure:first-child video,
  .auto-zld-page.js-product-tabs .mftl-images .reference-figure:first-child img,
  .auto-zld-page.js-product-tabs .ced-images .reference-figure:first-child img {
    min-height: 0;
    max-height: none;
  }

  .auto-zld-page.js-product-tabs .reference-figure figcaption,
  .auto-zld-page.js-product-tabs .image-caption {
    padding: 5px 6px;
    font-size: 8.6px;
    line-height: 1.08;
  }

  .auto-zld-page.js-product-tabs .proof-link-note {
    display: none;
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-copy,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-copy {
    grid-column: 1 / -1;
    max-width: none;
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-row,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-row {
    display: flex;
  }

  .auto-zld-page.js-product-tabs #total-oil-separator .offering-metrics,
  .auto-zld-page.js-product-tabs #phosphating-sludge-separator .offering-metrics,
  .auto-zld-page.js-product-tabs #chrome-reduction .offering-metrics,
  .auto-zld-page.js-product-tabs #ro-fouling .offering-metrics,
  .auto-zld-page.js-product-tabs #mftl-evaporator .offering-metrics,
  .auto-zld-page.js-product-tabs #plant-revamp .offering-metrics,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auto-zld-page.js-product-tabs #phosphating-sludge-separator .offering-metrics span,
  .auto-zld-page.js-product-tabs #chrome-reduction .offering-metrics span,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics span {
    padding: 6px 7px;
    font-size: clamp(9px, 0.62vw, 10.8px);
    line-height: 1.08;
  }

  .auto-zld-page.js-product-tabs #phosphating-sludge-separator .offering-metrics strong,
  .auto-zld-page.js-product-tabs #chrome-reduction .offering-metrics strong,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics strong {
    font-size: clamp(10.8px, 0.78vw, 14px);
  }

  .auto-zld-page.js-product-tabs #rinse-water .offering-metrics,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-height: 780px) {
  .auto-zld-page.js-product-tabs {
    grid-template-columns: clamp(178px, 11vw, 206px) minmax(0, 1fr);
    gap: 4px 12px;
    padding: 4px 16px 6px;
  }

  .auto-zld-page.js-product-tabs .reference-intro h1 {
    font-size: clamp(19px, 1.48vw, 27px);
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    font-size: clamp(9.8px, 0.68vw, 11.4px);
    line-height: 1.12;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    min-height: 28px;
    padding-block: 3px;
    font-size: clamp(8.8px, 0.6vw, 10.6px);
  }

  .auto-zld-page.js-product-tabs .topic-index {
    padding: 8px;
    border-radius: 16px;
  }

  .auto-zld-page.js-product-tabs .topic-index-title {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .auto-zld-page.js-product-tabs .topic-index ol {
    gap: 1px;
  }

  .auto-zld-page.js-product-tabs .topic-index li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 5px;
    font-size: 9.6px;
  }

  .auto-zld-page.js-product-tabs .topic-index li::before {
    width: 21px;
    height: 21px;
    font-size: 7.2px;
  }

  .auto-zld-page.js-product-tabs .topic-index a {
    min-height: 21px;
    padding: 3px 5px;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap {
    padding: 10px;
    border-radius: 18px;
  }

  .auto-zld-page.js-product-tabs .reference-row,
  .auto-zld-page.js-product-tabs .reference-row.reverse {
    grid-template-columns: minmax(280px, clamp(330px, 31vw, 600px)) minmax(0, 1fr);
    gap: 12px;
  }

  .auto-zld-page.js-product-tabs .reference-copy h2 {
    margin-bottom: 3px;
    font-size: clamp(21px, 1.48vw, 29px);
  }

  .auto-zld-page.js-product-tabs .zld-stage {
    margin-bottom: 4px;
    padding: 3px 8px;
    font-size: 8.6px;
  }

  .auto-zld-page.js-product-tabs .reference-copy .product-promise {
    margin-bottom: 5px;
    font-size: clamp(15px, 1vw, 19px);
    line-height: 1.1;
  }

  .auto-zld-page.js-product-tabs .zld-role {
    margin-bottom: 5px;
    padding: 5px 9px;
    font-size: clamp(10.5px, 0.72vw, 12.3px);
  }

  .auto-zld-page.js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    margin-bottom: 4px;
    font-size: clamp(10.4px, 0.72vw, 12.4px);
    line-height: 1.14;
  }

  .auto-zld-page.js-product-tabs .offering-metrics {
    gap: 5px;
    margin-top: 5px;
  }

  .auto-zld-page.js-product-tabs .offering-metrics span {
    padding: 6px 7px;
    font-size: clamp(9.4px, 0.64vw, 11px);
    line-height: 1.08;
  }

  .auto-zld-page.js-product-tabs .offering-metrics strong {
    font-size: clamp(11.4px, 0.78vw, 14px);
  }

  .auto-zld-page.js-product-tabs .reference-figure-grid {
    gap: 7px;
  }

  .auto-zld-page.js-product-tabs .reference-figure figcaption,
  .auto-zld-page.js-product-tabs .image-caption {
    padding: 4px 5px;
    font-size: 8px;
  }
}

/* Stabilized Auto ZLD viewport layout: fill the window without document-style dead space. */
@media (min-width: 981px) {
  html:has(.auto-zld-page.js-product-tabs),
  body:has(.auto-zld-page.js-product-tabs) {
    height: 100%;
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs {
    display: grid;
    grid-template-columns: clamp(220px, 14vw, 270px) minmax(0, 1fr);
    grid-template-rows: auto auto auto minmax(0, 1fr);
    gap: 6px 16px;
    width: 100%;
    height: calc(100dvh - 82px);
    max-height: calc(100dvh - 82px);
    padding: 10px 20px 10px;
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs .reference-intro,
  .auto-zld-page.js-product-tabs .reference-intro .wrap {
    display: contents;
  }

  .auto-zld-page.js-product-tabs .reference-intro h1 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: clamp(24px, 1.9vw, 36px);
    line-height: 1;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: clamp(11px, 0.78vw, 13.5px);
    line-height: 1.18;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip {
    grid-column: 2;
    grid-row: 3;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    min-height: 36px;
    padding: 6px 8px;
    font-size: clamp(10px, 0.72vw, 12px);
  }

  .auto-zld-page.js-product-tabs .topic-index {
    grid-column: 1;
    grid-row: 1 / 5;
    height: 100%;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs .topic-index-title {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .auto-zld-page.js-product-tabs .topic-index ol {
    display: grid;
    gap: 3px;
  }

  .auto-zld-page.js-product-tabs .topic-index li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
    font-size: clamp(10px, 0.72vw, 12px);
    line-height: 1.05;
  }

  .auto-zld-page.js-product-tabs .topic-index li::before {
    width: 24px;
    height: 24px;
    font-size: 8px;
  }

  .auto-zld-page.js-product-tabs .topic-index a {
    min-height: 25px;
    padding: 4px 7px;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product {
    grid-column: 2;
    grid-row: 4;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .auto-zld-page.js-product-tabs .reference-row,
  .auto-zld-page.js-product-tabs .reference-row.reverse {
    display: grid;
    grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 16px 18px;
  }

  .auto-zld-page.js-product-tabs .reference-row > .reference-copy,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .auto-zld-page.js-product-tabs .reference-row > .reference-figure,
  .auto-zld-page.js-product-tabs .reference-row > .reference-figure-grid,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-figure,
  .auto-zld-page.js-product-tabs .reference-row.reverse > .reference-figure-grid {
    grid-column: 1;
    grid-row: 1;
  }

  .auto-zld-page.js-product-tabs .reference-copy {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .reference-copy h2 {
    margin-bottom: 5px;
    font-size: clamp(26px, 1.9vw, 38px);
    line-height: 1;
  }

  .auto-zld-page.js-product-tabs .zld-stage {
    margin-bottom: 8px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .auto-zld-page.js-product-tabs .reference-copy .product-promise {
    margin-bottom: 8px;
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: 1.14;
  }

  .auto-zld-page.js-product-tabs .zld-role {
    display: flex;
    align-items: center;
    gap: 0.45em;
    margin-bottom: 8px;
    padding: 7px 11px;
    font-size: clamp(12px, 0.82vw, 14px);
    line-height: 1.18;
  }

  .auto-zld-page.js-product-tabs .zld-role strong {
    flex: 0 0 auto;
    margin-right: 0;
    white-space: nowrap;
  }

  .auto-zld-page.js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    display: -webkit-box;
    margin-bottom: 7px;
    overflow: hidden;
    font-size: clamp(12px, 0.84vw, 14px);
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .auto-zld-page.js-product-tabs .offering-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 10px;
  }

  .auto-zld-page.js-product-tabs .offering-metrics span {
    min-height: 0;
    padding: 9px 10px;
    font-size: clamp(10.8px, 0.72vw, 12.5px);
    line-height: 1.12;
  }

  .auto-zld-page.js-product-tabs .offering-metrics strong {
    font-size: clamp(13.5px, 0.92vw, 16.5px);
    line-height: 1.05;
  }

  .auto-zld-page.js-product-tabs .reference-figure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: 10px;
    align-content: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .auto-zld-page.js-product-tabs .reference-figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .reference-figure img,
  .auto-zld-page.js-product-tabs .reference-figure video {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .auto-zld-page.js-product-tabs .reference-figure figcaption,
  .auto-zld-page.js-product-tabs .image-caption {
    padding: 5px 7px;
    font-size: 8.6px;
    line-height: 1.08;
  }

  .auto-zld-page.js-product-tabs .tos-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .stp-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .ro-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .mftl-images .reference-figure:nth-child(n+4),
  .auto-zld-page.js-product-tabs .ced-images .reference-figure:nth-child(n+4) {
    display: none;
  }

  .auto-zld-page.js-product-tabs .tos-images,
  .auto-zld-page.js-product-tabs .stp-images,
  .auto-zld-page.js-product-tabs .ro-images,
  .auto-zld-page.js-product-tabs .mftl-images,
  .auto-zld-page.js-product-tabs .ced-images,
  .auto-zld-page.js-product-tabs .coolant-steps {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .auto-zld-page.js-product-tabs .phosphate-images,
  .auto-zld-page.js-product-tabs .pond-images,
  .auto-zld-page.js-product-tabs .revamp-images {
    grid-template-rows: minmax(0, 1fr);
  }

  .auto-zld-page.js-product-tabs .phosphate-images,
  .auto-zld-page.js-product-tabs .pond-images,
  .auto-zld-page.js-product-tabs .revamp-images {
    align-self: center;
    align-content: center;
    height: auto;
    max-height: 100%;
    padding: clamp(8px, 0.8vw, 14px);
    border: 1px solid rgba(33, 115, 52, 0.12);
    border-radius: 22px;
    background:
      radial-gradient(circle at 20% 20%, rgba(189, 245, 168, 0.24), transparent 34%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 252, 235, 0.7));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 42px rgba(8, 47, 24, 0.08);
  }

  .auto-zld-page.js-product-tabs .phosphate-images .reference-figure,
  .auto-zld-page.js-product-tabs .pond-images .reference-figure,
  .auto-zld-page.js-product-tabs .revamp-images .reference-figure {
    grid-template-rows: auto auto;
    height: auto;
    align-self: center;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
  }

  .auto-zld-page.js-product-tabs .phosphate-images .reference-figure img,
  .auto-zld-page.js-product-tabs .pond-images .reference-figure img,
  .auto-zld-page.js-product-tabs .revamp-images .reference-figure img {
    height: auto;
    max-height: min(45vh, 390px);
    object-fit: contain;
  }

  .auto-zld-page.js-product-tabs #phosphating-sludge-separator .phosphate-images {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, auto);
    width: min(100%, 720px);
    justify-self: center;
  }

  .auto-zld-page.js-product-tabs #phosphating-sludge-separator .phosphate-images .reference-figure img {
    width: 100%;
    max-height: min(31vh, 300px);
  }

  .auto-zld-page.js-product-tabs .coolant-images {
    display: none;
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-row,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding-inline: clamp(28px, 6vw, 120px);
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-copy,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-copy {
    grid-column: 1;
    justify-self: center;
    width: min(100%, 1080px);
  }

  .auto-zld-page.js-product-tabs #rinse-water .offering-metrics,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 900px;
  }

  .auto-zld-page.js-product-tabs #total-oil-separator .tos-images,
  .auto-zld-page.js-product-tabs #plant-revamp .revamp-images,
  .auto-zld-page.js-product-tabs #pond-water .pond-images {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    align-content: stretch;
    height: 100%;
    width: min(100%, 760px);
    justify-self: center;
  }

  .auto-zld-page.js-product-tabs #total-oil-separator .tos-images .reference-figure,
  .auto-zld-page.js-product-tabs #plant-revamp .revamp-images .reference-figure,
  .auto-zld-page.js-product-tabs #pond-water .pond-images .reference-figure {
    height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .auto-zld-page.js-product-tabs #total-oil-separator .tos-images .reference-figure img,
  .auto-zld-page.js-product-tabs #plant-revamp .revamp-images .reference-figure img,
  .auto-zld-page.js-product-tabs #pond-water .pond-images .reference-figure img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  .auto-zld-page.js-product-tabs {
    display: block;
    padding: 0;
  }

  .auto-zld-page.js-product-tabs .reference-intro {
    padding: 10px 0 6px;
  }

  .auto-zld-page.js-product-tabs .reference-intro h1 {
    margin-bottom: 4px;
    font-size: clamp(18px, 4.8vw, 25px);
    line-height: 1.02;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.2;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin: 8px 0;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    display: grid;
    place-items: center;
    min-height: 32px;
    padding: 4px;
    border: 1px solid rgba(174, 231, 183, 0.32);
    border-radius: 9px;
    color: #f1fff2;
    background: linear-gradient(145deg, rgba(5, 46, 24, 0.94), rgba(19, 120, 50, 0.84));
    font-size: 8px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span.is-active-product {
    color: #052414;
    background: #dff8d7;
  }

  .auto-zld-page.js-product-tabs .zld-flow-index {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }

  .auto-zld-page.js-product-tabs .zld-flow-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product {
    padding: 8px 0 12px;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap {
    padding: 10px;
    border-radius: 18px;
  }

  .auto-zld-page.js-product-tabs .reference-copy h2 {
    font-size: clamp(17px, 4.2vw, 22px);
  }

  .auto-zld-page.js-product-tabs .reference-copy .product-promise {
    font-size: 13px;
  }

  .auto-zld-page.js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10.4px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .auto-zld-page.js-product-tabs .offering-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Auto ancillary final polish: make every topic read like a compact ZLD product console. */
@media (min-width: 981px) {
  .auto-zld-page.js-product-tabs .topic-index-title {
    color: #c8f7b9;
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .auto-zld-page.js-product-tabs .topic-index a {
    gap: 9px;
    font-size: clamp(10.8px, 0.72vw, 12.4px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .auto-zld-page.js-product-tabs .topic-index a::before {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(1, 44, 20, 0.16);
  }

  .auto-zld-page.js-product-tabs .reference-copy .product-promise {
    margin: 0 0 8px;
    max-width: 1140px;
    color: #062c17;
    font-size: clamp(21px, 1.45vw, 30px);
    font-weight: 950;
    line-height: 1.09;
    letter-spacing: 0;
  }

  .auto-zld-page.js-product-tabs .zld-stage {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    margin: 0 0 8px;
    padding: 8px 15px;
    width: 100%;
    max-width: 100%;
    color: #06351b;
    border: 1px solid rgba(48, 139, 66, 0.12);
    border-left: 5px solid #6bcf55;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(235, 255, 227, 0.96), rgba(255, 255, 255, 0.72));
    box-shadow: inset 0 0 0 1px rgba(48, 139, 66, 0.08);
  }

  .auto-zld-page.js-product-tabs .zld-role {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 9px 15px;
    border-left: 5px solid #39b54a;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(224, 250, 215, 0.96), rgba(255, 255, 255, 0.72));
    box-shadow: inset 0 0 0 1px rgba(48, 139, 66, 0.1);
  }

  .auto-zld-page.js-product-tabs .zld-role strong {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
  }

  .auto-zld-page.js-product-tabs .reference-copy p:not(.product-promise):not(.zld-role):not(.proof-link-note) {
    font-size: clamp(12.6px, 0.84vw, 14.2px);
    line-height: 1.28;
  }

  .auto-zld-page.js-product-tabs .offering-metrics {
    gap: clamp(9px, 0.78vw, 13px);
  }

  .auto-zld-page.js-product-tabs .offering-metrics span {
    border-color: rgba(51, 151, 69, 0.2);
    border-left: 4px solid rgba(57, 181, 74, 0.32);
    background:
      radial-gradient(circle at 12% 12%, rgba(197, 246, 177, 0.22), transparent 36%),
      linear-gradient(145deg, rgba(249, 255, 245, 0.97), rgba(235, 251, 228, 0.92));
  }

  .auto-zld-page.js-product-tabs .offering-metrics span strong {
    color: #07351b;
    font-size: clamp(15px, 0.98vw, 18px);
    line-height: 1.02;
  }

  .auto-zld-page.js-product-tabs .reference-figure-grid {
    background:
      radial-gradient(circle at 18% 12%, rgba(192, 246, 171, 0.22), transparent 38%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 252, 232, 0.64));
  }

  .auto-zld-page.js-product-tabs .reference-figure {
    border-color: rgba(49, 134, 62, 0.16);
    box-shadow: 0 14px 34px rgba(8, 47, 24, 0.07);
  }

  .auto-zld-page.js-product-tabs .image-caption {
    color: #06431f;
    background: rgba(249, 255, 245, 0.94);
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-row,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    padding: clamp(20px, 3vw, 54px);
  }

  .auto-zld-page.js-product-tabs #rinse-water .reference-copy,
  .auto-zld-page.js-product-tabs #copper-recovery .reference-copy {
    grid-column: 1;
    justify-self: center;
    width: min(100%, 1180px);
    padding: clamp(20px, 2.2vw, 34px);
    border: 1px solid rgba(47, 142, 62, 0.18);
    border-radius: 24px;
    background:
      radial-gradient(circle at 10% 12%, rgba(197, 246, 177, 0.23), transparent 38%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(236, 252, 229, 0.66));
    box-shadow: 0 22px 55px rgba(8, 47, 24, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .auto-zld-page.js-product-tabs #rinse-water .offering-metrics,
  .auto-zld-page.js-product-tabs #copper-recovery .offering-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .auto-zld-page.js-product-tabs #ro-fouling .ro-images {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .auto-zld-page.js-product-tabs #ro-fouling .ro-images .reference-figure:first-child {
    grid-column: 1 / -1;
  }

  .auto-zld-page.js-product-tabs #ro-fouling .ro-images .reference-figure:first-child img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
}

/* Auto ancillary ZLD emphasis: make the principle statement and flow strip carry the page. */
@media (min-width: 981px) {
  .auto-zld-page.js-product-tabs .reference-intro .wrap {
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 8px 16px;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    margin: 0;
    padding: 9px 15px;
    border: 1px solid rgba(47, 142, 62, 0.16);
    border-left: 5px solid #258a3e;
    border-radius: 15px;
    color: #07351b;
    background:
      radial-gradient(circle at 10% 20%, rgba(189, 245, 168, 0.36), transparent 36%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(235, 252, 228, 0.82));
    box-shadow: 0 12px 28px rgba(8, 47, 24, 0.07);
    font-size: clamp(12.4px, 0.84vw, 15px);
    font-weight: 760;
    line-height: 1.28;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip {
    grid-column: 2;
    grid-row: 2;
    gap: 9px;
    margin: 0;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    min-height: clamp(40px, 5vh, 52px);
    padding: 8px 10px;
    border-radius: 16px;
    font-size: clamp(11px, 0.78vw, 13.5px);
    box-shadow: 0 14px 30px rgba(5, 46, 24, 0.17);
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span:not(:last-child)::after {
    right: -11px;
    width: 13px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2a9444, #aee7b7);
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span.is-active-product {
    color: #062c17;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 38%),
      linear-gradient(135deg, #f4fff0, #bdf5a8);
    box-shadow: 0 16px 34px rgba(13, 89, 35, 0.22);
  }

  .auto-zld-page.js-product-tabs .topic-index {
    grid-row: 1 / 4;
  }

  .auto-zld-page.js-product-tabs .reference-copy .zld-stage::before {
    content: "ZLD focus";
    flex: 0 0 auto;
    padding: 3px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: #258a3e;
    font-size: 0.78em;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

@media (max-width: 980px) {
  .auto-zld-page.js-product-tabs .reference-intro h1 {
    display: none;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    padding: 10px 12px;
    border-left: 4px solid #258a3e;
    border-radius: 13px;
    color: #07351b;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 252, 228, 0.86));
    font-weight: 720;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip span {
    min-height: 38px;
    font-size: 8.4px;
  }

  .auto-zld-page.js-product-tabs .reference-copy .zld-stage::before {
    content: "ZLD focus";
    flex: 0 0 auto;
    padding: 2px 7px;
    border-radius: 999px;
    color: #ffffff;
    background: #258a3e;
    font-size: 0.74em;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

/* Auto ancillary final desktop correction: no blank band between flow and topic. */
@media (min-width: 981px) {
  .auto-zld-page.js-product-tabs {
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: stretch;
  }

  .auto-zld-page.js-product-tabs .reference-lead {
    grid-row: 1;
  }

  .auto-zld-page.js-product-tabs .zld-journey-strip {
    grid-row: 2;
  }

  .auto-zld-page.js-product-tabs .topic-index {
    grid-row: 1 / 4;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product {
    grid-row: 3;
    align-self: stretch;
    padding: 0;
  }

  .auto-zld-page.js-product-tabs .reference-section.is-active-product > .wrap {
    align-items: start;
    height: 100%;
  }

  .auto-zld-page.js-product-tabs .reference-row,
  .auto-zld-page.js-product-tabs .reference-row.reverse {
    align-content: start;
    align-items: start;
    height: 100%;
    padding-top: clamp(10px, 1vw, 16px);
  }

  .auto-zld-page.js-product-tabs .reference-copy,
  .auto-zld-page.js-product-tabs .reference-figure-grid {
    align-self: start;
  }

  .auto-zld-page.js-product-tabs .ro-images {
    grid-auto-rows: minmax(0, auto);
  }

  .auto-zld-page.js-product-tabs .topic-index {
    display: flex;
    flex-direction: column;
  }

  .auto-zld-page.js-product-tabs .topic-index ol {
    flex: 1;
    align-content: stretch;
    gap: clamp(8px, 1.05vh, 13px);
  }

  .auto-zld-page.js-product-tabs .topic-index li {
    display: flex;
    min-height: 0;
  }

  .auto-zld-page.js-product-tabs .topic-index a {
    width: 100%;
    min-height: clamp(28px, 3.85vh, 39px);
    align-items: center;
  }
}

.zld-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Homepage ZLD console skin: compact, modern and consistent with product pages. */
.zld-method,
.home-why,
.home-proof-strip,
.home-inventions {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(8, 47, 24, 0.1);
  background:
    radial-gradient(circle at 8% 8%, rgba(84, 202, 91, 0.14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(189, 245, 168, 0.2), transparent 26%),
    linear-gradient(180deg, #f8fff5 0%, #ffffff 46%, #f2fbef 100%);
}

.zld-method::before,
.home-why::before,
.home-proof-strip::before,
.home-inventions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(8, 47, 24, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 47, 24, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.42) 58%, transparent 100%);
}

.zld-method .wrap,
.home-why .wrap,
.home-proof-strip .wrap,
.home-inventions .wrap {
  position: relative;
  z-index: 1;
  width: min(1460px, calc(100% - 32px));
}

.zld-method,
.home-proof-strip,
.home-inventions {
  padding: clamp(34px, 4vw, 58px) 0;
}

.home-why {
  padding: clamp(26px, 3.4vw, 48px) 0;
}

.home-section-heading {
  max-width: 980px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.home-section-heading .proof-kicker,
.inventions-head .proof-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(189, 245, 168, 0.32);
  border-radius: 999px;
  color: #dff8d7;
  background: linear-gradient(135deg, #082f18, #145a2b);
  box-shadow: 0 12px 26px rgba(8, 47, 24, 0.14);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.home-section-heading h2,
.inventions-head h2,
.home-proof .home-section-heading h2 {
  margin-top: 10px;
  color: #062c17;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  line-height: 1.02;
}

.home-section-heading p,
.inventions-head p,
.home-proof .home-section-heading p {
  max-width: 820px;
  color: #244635;
  font-size: clamp(13.5px, 1vw, 16px);
  line-height: 1.4;
}

.home-section-heading::after,
.home-inventions .home-section-heading::after,
.home-proof .home-section-heading::after {
  width: 120px;
  height: 5px;
  margin-top: 14px;
  background: linear-gradient(90deg, #082f18, #258a3e, #bdf5a8);
  box-shadow: 0 10px 22px rgba(37, 138, 62, 0.18);
}

.zld-method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(8, 47, 24, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 12%, rgba(189, 245, 168, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 252, 235, 0.88));
  box-shadow: 0 24px 58px rgba(8, 47, 24, 0.12);
}

.zld-method-flow {
  gap: 10px;
  padding: clamp(10px, 1vw, 14px);
  border: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, #083018, #125c2b 72%, #1f7a31);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(8, 47, 24, 0.16);
}

.zld-method-flow::before {
  background: linear-gradient(90deg, transparent, rgba(189, 245, 168, 0.8), transparent);
}

.zld-method-flow article {
  min-height: 0;
  border: 1px solid rgba(189, 245, 168, 0.18);
  border-left: 5px solid rgba(189, 245, 168, 0.65);
  border-radius: 16px;
  color: #f6fff4;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: none;
}

.zld-method-flow span {
  color: #062c17;
  background: #bdf5a8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.zld-method-flow strong {
  color: #ffffff;
}

.zld-method-flow p {
  color: rgba(244, 255, 240, 0.82);
}

.zld-method-proof {
  display: grid;
  gap: 12px;
}

.zld-method-proof > article {
  border: 1px solid rgba(8, 47, 24, 0.14);
  border-left: 5px solid #258a3e;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 252, 228, 0.82));
  box-shadow: 0 16px 36px rgba(8, 47, 24, 0.08);
}

.zld-video-grid {
  gap: 12px;
}

.zld-video-grid figure {
  overflow: hidden;
  border: 1px solid rgba(8, 47, 24, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 47, 24, 0.08);
}

.zld-video-grid figcaption {
  color: #06431f;
  background: rgba(249, 255, 245, 0.95);
  font-weight: 900;
}

.proof-dashboard,
.invention-map,
.proof-strip-grid {
  border: 1px solid rgba(8, 47, 24, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(189, 245, 168, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 252, 235, 0.9));
  box-shadow: 0 24px 58px rgba(8, 47, 24, 0.12);
}

.proof-dashboard {
  padding: clamp(12px, 1.5vw, 18px);
}

.proof-main-card {
  border: 0;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(189, 245, 168, 0.22), transparent 36%),
    linear-gradient(145deg, #082f18, #135c2b 70%, #1f7a31);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 18px 42px rgba(8, 47, 24, 0.16);
}

.proof-main-card span {
  color: #bdf5a8;
}

.proof-main-card h3,
.proof-main-card p {
  color: inherit;
}

.proof-main-card p {
  color: rgba(245, 255, 242, 0.84);
}

.proof-metric-card,
.proof-metric-card:nth-child(n) {
  border: 1px solid rgba(8, 47, 24, 0.14);
  border-left: 5px solid rgba(37, 138, 62, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(189, 245, 168, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff, #f0fbea);
  box-shadow: 0 14px 30px rgba(8, 47, 24, 0.08);
}

.proof-metric-card strong {
  color: #062c17;
}

.proof-metric-card p {
  color: #2a4b38;
  font-weight: 850;
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.proof-strip-grid a {
  min-height: 152px;
  padding: clamp(16px, 1.4vw, 22px);
  border: 0;
  border-right: 1px solid rgba(8, 47, 24, 0.12);
  border-bottom: 1px solid rgba(8, 47, 24, 0.12);
  border-radius: 0;
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.proof-strip-grid a:hover,
.proof-strip-grid a:focus-visible {
  z-index: 2;
  color: #062c17;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 250, 216, 0.94));
  box-shadow: inset 0 0 0 1px rgba(37, 138, 62, 0.24), 0 18px 36px rgba(8, 47, 24, 0.14);
  transform: translateY(-3px);
}

.proof-strip-grid strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #082f18, #258a3e);
  font-size: clamp(13px, 0.9vw, 15px);
}

.proof-strip-grid span {
  color: #2a4b38;
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.32;
}

.proof-strip-grid b {
  color: #062c17;
}

.invention-map {
  overflow: hidden;
}

.invention-link-card {
  min-height: 112px;
  border-color: rgba(8, 47, 24, 0.12);
  background: transparent;
}

.invention-link-card:hover,
.invention-link-card:focus-visible {
  background:
    radial-gradient(circle at 16% 18%, rgba(189, 245, 168, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 250, 221, 0.94));
  box-shadow: inset 0 0 0 1px rgba(37, 138, 62, 0.22), 0 18px 34px rgba(8, 47, 24, 0.12);
}

.invention-number {
  color: #ffffff;
  background: linear-gradient(145deg, #082f18, #258a3e);
}

@media (max-width: 980px) {
  .zld-method-layout,
  .proof-dashboard,
  .proof-strip-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip-grid a {
    min-height: auto;
    border-right: 0;
  }
}

/* Home command homepage: single-screen ZLD command centre. */
.home-command-page {
  min-height: calc(100svh - 82px);
  color: #f7fff4;
  background: #03170c;
  overflow: hidden;
}

.home-command-page + footer {
  display: none;
}

.zld-command-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: clamp(10px, 1.05vw, 18px);
  overflow: hidden;
  isolation: isolate;
}

.command-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #03170c;
}

.command-backdrop .hero-slideshow,
.command-backdrop .hero-slide {
  position: absolute;
  inset: 0;
}

.command-backdrop .hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.06) contrast(1.06) brightness(0.98);
  transform: translateX(100%) scale(1.02);
  transition: transform 900ms ease, opacity 900ms ease;
}

.command-backdrop .hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1.02);
}

.command-backdrop .hero-slide.exiting {
  opacity: 0;
  transform: translateX(-100%) scale(1.02);
}

.zld-command-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(207, 255, 196, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(2, 19, 10, 0.74), rgba(2, 19, 10, 0.42) 26%, rgba(2, 19, 10, 0.36) 74%, rgba(2, 19, 10, 0.72)),
    linear-gradient(180deg, rgba(2, 19, 10, 0.5), rgba(2, 19, 10, 0.34) 42%, rgba(2, 19, 10, 0.66));
}

.zld-command-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(207, 255, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 255, 196, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.command-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(520px, 1.48fr) minmax(240px, 0.82fr);
  grid-template-rows: minmax(118px, 0.58fr) minmax(310px, 1.78fr) minmax(118px, 0.58fr);
  gap: clamp(10px, 0.95vw, 16px);
  height: min(680px, calc(100svh - 132px));
  min-height: 520px;
}

.route-panel,
.zld-command-core {
  border: 1px solid rgba(206, 255, 198, 0.34);
  color: #f7fff4;
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 255, 196, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(12, 68, 31, 0.78), rgba(1, 17, 8, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px);
}

.route-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: clamp(14px, 1.25vw, 22px);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.route-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.85;
  transition: transform 220ms ease, opacity 220ms ease;
}

.route-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(137, 238, 103, 0.1));
  opacity: 0;
  transition: opacity 220ms ease;
}

.route-panel:hover,
.route-panel:focus-visible {
  border-color: rgba(207, 255, 198, 0.82);
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 255, 196, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(20, 112, 48, 0.86), rgba(2, 30, 14, 0.76));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(137, 238, 103, 0.18);
  transform: translateY(-7px) scale(1.01);
}

.route-panel:hover::before,
.route-panel:focus-visible::before {
  transform: scaleX(1.12);
  opacity: 1;
}

.route-panel:hover::after,
.route-panel:focus-visible::after {
  opacity: 1;
}

.route-panel span,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  color: #062813;
  background: linear-gradient(135deg, #d7ffcc, #8bf16a);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-panel strong {
  display: block;
  color: #ffffff;
  font-size: clamp(22px, 1.55vw, 32px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.route-panel em {
  max-width: 37ch;
  color: rgba(247, 255, 244, 0.78);
  font-size: clamp(11px, 0.78vw, 14px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.28;
}

.route-auto {
  grid-column: 1;
  grid-row: 1;
  border-radius: 28px 88px 28px 28px;
}

.route-auto::before {
  top: 50%;
  right: -74px;
  width: 148px;
  height: 124px;
  background: linear-gradient(90deg, rgba(137, 238, 103, 0.24), rgba(137, 238, 103, 0));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.route-pharma {
  grid-column: 3;
  grid-row: 1;
  border-radius: 88px 28px 28px 28px;
}

.route-pharma::before {
  top: 50%;
  left: -74px;
  width: 148px;
  height: 124px;
  background: linear-gradient(270deg, rgba(137, 238, 103, 0.22), rgba(137, 238, 103, 0));
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transform: translateY(-50%);
}

.route-proof {
  grid-column: 1;
  grid-row: 3;
  border-radius: 28px 28px 88px 28px;
}

.route-proof::before {
  top: 50%;
  right: -74px;
  width: 148px;
  height: 124px;
  background: linear-gradient(90deg, rgba(137, 238, 103, 0.2), rgba(137, 238, 103, 0));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.route-other {
  grid-column: 3;
  grid-row: 3;
  border-radius: 28px 28px 28px 88px;
}

.route-other::before {
  top: 50%;
  left: -74px;
  width: 148px;
  height: 124px;
  background: linear-gradient(270deg, rgba(137, 238, 103, 0.22), rgba(137, 238, 103, 0));
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transform: translateY(-50%);
}

.zld-command-core {
  grid-column: 2;
  grid-row: 1 / 4;
  display: grid;
  grid-template-rows: auto minmax(160px, 1fr) auto;
  gap: clamp(8px, 0.78vw, 12px);
  min-width: 0;
  padding: clamp(13px, 1.12vw, 20px);
  border-radius: clamp(30px, 3vw, 56px);
  background:
    radial-gradient(circle at 50% 11%, rgba(218, 255, 207, 0.22), transparent 26%),
    radial-gradient(circle at 50% 82%, rgba(74, 225, 98, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(8, 58, 29, 0.82), rgba(1, 17, 8, 0.72));
}

.core-copy {
  text-align: center;
}

.core-copy .eyebrow {
  margin: 0 auto 8px;
}

.core-copy h1 {
  max-width: 19ch;
  margin: 0 auto 7px;
  color: #ffffff;
  font-size: clamp(30px, 2.75vw, 48px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

.core-copy p {
  max-width: 68ch;
  margin: 0 auto;
  color: rgba(247, 255, 244, 0.86);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 700;
  line-height: 1.36;
  text-wrap: balance;
}

.zld-process-spine {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  min-height: 170px;
  margin: 0;
  padding: clamp(11px, 1vw, 16px) clamp(10px, 0.9vw, 14px);
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(224, 255, 217, 0.36);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 28%, rgba(18, 191, 75, 0.12) 64%, rgba(0, 22, 10, 0.46)),
    linear-gradient(90deg, rgba(21, 111, 48, 0.7), rgba(109, 233, 91, 0.32), rgba(15, 111, 45, 0.72));
  box-shadow:
    inset 0 20px 28px rgba(255, 255, 255, 0.13),
    inset 0 -26px 36px rgba(0, 31, 12, 0.52),
    0 22px 46px rgba(0, 0, 0, 0.18);
}

.zld-process-spine::before {
  content: "";
  position: absolute;
  inset: 50% 18px auto;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(238, 255, 234, 0.62), rgba(137, 238, 103, 0.5), transparent);
  filter: blur(0.4px) drop-shadow(0 0 18px rgba(137, 238, 103, 0.24));
  transform: translateY(-50%);
  animation: commandSpineFlow 6.5s linear infinite;
  pointer-events: none;
}

.zld-process-spine li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 24px 36px minmax(38px, 1fr);
  align-items: start;
  min-width: 0;
  min-height: 100%;
  padding: clamp(7px, 0.68vw, 11px);
  color: #fafff7;
  text-align: center;
  isolation: isolate;
}

.zld-process-spine li::before {
  content: "";
  position: absolute;
  inset: 14% 0;
  z-index: -1;
  border: 1px solid rgba(226, 255, 219, 0.23);
  border-inline-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(7, 69, 30, 0.38), rgba(7, 43, 21, 0.24));
}

.zld-process-spine li:first-child::before {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}

.zld-process-spine li:last-child::before {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}

.zld-process-spine li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-top: 3px solid rgba(226, 255, 219, 0.74);
  border-right: 3px solid rgba(226, 255, 219, 0.74);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(137, 238, 103, 0.22));
}

.zld-process-spine span {
  display: inline-flex;
  align-self: start;
  justify-self: center;
  margin-bottom: 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: #062813;
  background: rgba(213, 255, 202, 0.92);
  font-size: 9.5px;
  font-weight: 950;
}

.zld-process-spine strong {
  display: block;
  align-self: start;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 950;
  line-height: 1.08;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.zld-process-spine em {
  display: block;
  align-self: start;
  color: rgba(246, 255, 242, 0.84);
  font-size: clamp(9px, 0.56vw, 10.5px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-strip span {
  display: block;
  min-width: 0;
  padding: clamp(10px, 0.82vw, 13px);
  border: 1px solid rgba(206, 255, 198, 0.24);
  border-left: 5px solid #6aff55;
  border-radius: 18px;
  color: rgba(247, 255, 244, 0.82);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(4, 43, 20, 0.36));
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 800;
  line-height: 1.15;
}

.proof-strip strong {
  display: block;
  color: #ffffff;
  font-size: clamp(21px, 1.42vw, 30px);
  font-weight: 950;
  line-height: 0.95;
}

@keyframes commandSpineFlow {
  0% {
    transform: translate(-72%, -50%);
    opacity: 0.08;
  }
  18%,
  82% {
    opacity: 0.66;
  }
  100% {
    transform: translate(72%, -50%);
    opacity: 0.08;
  }
}

@media (max-width: 1240px) {
  .home-command-page,
  .zld-command-hero {
    min-height: auto;
    overflow: visible;
  }

  .home-command-page + footer {
    display: block;
  }

  .command-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .zld-command-core,
  .route-panel {
    grid-column: auto;
    grid-row: auto;
    border-radius: 26px;
  }

  .zld-command-core {
    grid-column: 1 / -1;
    order: 1;
  }

  .route-auto {
    order: 2;
  }

  .route-pharma {
    order: 3;
  }

  .route-proof {
    order: 4;
  }

  .route-other {
    order: 5;
  }

  .route-panel::before {
    display: none;
  }

  .zld-process-spine {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    min-height: 176px;
    scrollbar-width: thin;
  }
}

@media (max-width: 760px) {
  .home-command-page {
    min-height: calc(100svh - 154px);
    overflow: hidden;
  }

  .home-command-page + footer {
    display: none;
  }

  .nav {
    padding: 12px 16px;
  }

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

  .menu-link,
  .menu-button {
    min-height: 36px;
    padding: 0 8px;
  }

  .zld-command-hero {
    min-height: calc(100svh - 154px);
    padding: 8px;
    overflow: hidden;
  }

  .command-grid {
    height: calc(100svh - 170px);
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr) 66px 66px;
    gap: 8px;
  }

  .proof-strip {
    display: none;
  }

  .zld-command-core {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    min-height: 0;
    overflow: hidden;
  }

  .route-auto {
    grid-column: 1;
    grid-row: 2;
  }

  .route-pharma {
    grid-column: 2;
    grid-row: 2;
  }

  .route-proof {
    grid-column: 1;
    grid-row: 3;
  }

  .route-other {
    grid-column: 2;
    grid-row: 3;
  }

  .core-copy {
    text-align: left;
  }

  .core-copy .eyebrow {
    margin-left: 0;
  }

  .core-copy h1 {
    margin-left: 0;
    max-width: 15ch;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 0.95;
  }

  .core-copy p {
    max-width: 100%;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .core-copy p {
    margin-left: 0;
  }

  .zld-process-spine {
    grid-template-columns: 1fr;
    gap: 6px;
    overflow: visible;
    min-height: 0;
    padding: 8px;
    border-radius: 18px;
  }

  .zld-process-spine::before {
    inset: 10px auto 10px 50%;
    width: 32px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(238, 255, 234, 0.66), transparent);
    animation: commandSpineFlowMobile 5.5s linear infinite;
  }

  .zld-process-spine li {
    min-height: auto;
    padding: 8px 12px;
    text-align: left;
  }

  .zld-process-spine li::before {
    inset: 0;
    border: 1px solid rgba(226, 255, 219, 0.24);
    border-radius: 17px;
  }

  .zld-process-spine span {
    align-self: flex-start;
    margin-bottom: 4px;
    padding: 3px 7px;
    font-size: 8.5px;
  }

  .zld-process-spine strong {
    margin-bottom: 0;
    font-size: 12.5px;
  }

  .zld-process-spine em {
    display: none;
  }

  .zld-process-spine li:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: -7px;
    transform: rotate(135deg);
  }

  .route-panel {
    min-height: 0;
    padding: 11px;
    border-radius: 16px;
  }

  .route-panel span {
    padding: 4px 8px;
    font-size: 8px;
  }

  .route-panel strong {
    font-size: 15px;
    line-height: 1.05;
  }

  .route-panel em {
    display: none;
  }
}

@keyframes commandSpineFlowMobile {
  0% {
    transform: translate(-50%, -55%);
    opacity: 0.08;
  }
  18%,
  82% {
    opacity: 0.66;
  }
  100% {
    transform: translate(-50%, 55%);
    opacity: 0.08;
  }
}

/* Homepage 2026-06-25: ZLD principle board. */
.brand {
  width: fit-content;
  min-width: 0;
  padding-inline: 0;
}

.brand-title {
  display: block;
  width: 210px;
  color: #248135;
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-tagline {
  display: block;
  width: 210px;
  color: #60707a;
  font-size: clamp(10px, 0.82vw, 12.5px);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  transform: none;
}

.home-zld-page {
  color: #092617;
  background: #ffffff;
}

.zld-principle-board {
  min-height: calc(100svh - 78px);
  padding: clamp(14px, 1.5vw, 24px) 0 clamp(18px, 2vw, 30px);
  background:
    radial-gradient(circle at 12% 18%, rgba(28, 132, 62, 0.08), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(8, 67, 32, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(8, 67, 32, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 67, 32, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.zld-board-wrap {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
}

.zld-board-intro,
.zld-scheme-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.45fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: stretch;
}

.zld-board-copy,
.zld-board-image,
.zld-scheme-board {
  border: 1px solid rgba(8, 67, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(8, 67, 32, 0.1);
}

.zld-board-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(126px, 16vh, 168px);
  padding: clamp(16px, 1.8vw, 24px);
  border-left: 7px solid #084320;
}

.home-zld-kicker {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 12px;
  border: 1px solid rgba(12, 91, 45, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: #084320;
  box-shadow: none;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zld-board-copy h1 {
  max-width: 880px;
  margin: 0;
  color: #082b17;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.zld-scheme-heading h1 {
  max-width: 880px;
  margin: 0;
  color: #082b17;
  font-size: clamp(21px, 1.6vw, 26px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.zld-board-copy p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #345441;
  font-size: clamp(12.5px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.zld-scheme-heading p {
  max-width: 760px;
  margin: 6px 0 0;
  color: #345441;
  font-size: clamp(12px, 0.86vw, 13.5px);
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.zld-board-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(118px, 13vh, 148px);
  background: #0b2315;
}

.zld-board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.zld-board-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 54%, rgba(4, 34, 17, 0.34));
}

.zld-board-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(3, 34, 16, 0.84);
  font-size: clamp(10.5px, 0.84vw, 12.5px);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.zld-scheme-board {
  margin-top: 0;
  padding: clamp(14px, 1.6vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 249, 0.98)),
    #ffffff;
}

.zld-scheme-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(118px, 13vh, 148px);
  padding: clamp(13px, 1.4vw, 18px);
  border: 1px solid rgba(8, 67, 32, 0.16);
  border-left: 7px solid #084320;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(8, 67, 32, 0.08);
}

.zld-flow-title {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.9fr) minmax(260px, 1.05fr);
  gap: 18px;
  align-items: center;
  margin: clamp(12px, 1.4vw, 18px) 0 clamp(12px, 1.4vw, 18px);
}

.zld-scheme-heading span,
.zld-flow-title span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #084320;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zld-flow-title h2 {
  margin: 0;
  color: #082b17;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.zld-flow-title p {
  margin: 0;
  color: #345441;
  font-size: clamp(12px, 0.86vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.zld-scheme-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(8, 67, 32, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8, 67, 32, 0.04), rgba(45, 152, 74, 0.16), rgba(8, 67, 32, 0.04)),
    #f8fcf8;
  list-style: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.zld-scheme-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(32px, 4vw, 58px);
  left: clamp(32px, 4vw, 58px);
  height: clamp(44px, 5.2vw, 74px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(6, 52, 24, 0.94), rgba(19, 136, 59, 0.88), rgba(178, 244, 160, 0.86), rgba(19, 136, 59, 0.88), rgba(6, 52, 24, 0.94));
  box-shadow:
    inset 0 10px 18px rgba(255, 255, 255, 0.28),
    inset 0 -14px 22px rgba(3, 31, 14, 0.22),
    0 16px 34px rgba(8, 67, 32, 0.16);
  transform: translateY(-50%);
}

.zld-scheme-flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: clamp(176px, 20vh, 218px);
  padding: clamp(12px, 1.4vw, 18px) clamp(8px, 1vw, 14px);
  text-align: center;
}

.zld-scheme-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: clamp(26px, 2.4vw, 40px);
  height: clamp(26px, 2.4vw, 40px);
  border-top: 5px solid rgba(255, 255, 255, 0.78);
  border-right: 5px solid rgba(255, 255, 255, 0.78);
  filter: drop-shadow(0 3px 4px rgba(3, 31, 14, 0.16));
  transform: translateY(-50%) rotate(45deg);
}

.zld-scheme-flow .flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(32px, 3vw, 42px);
  height: clamp(32px, 3vw, 42px);
  margin-bottom: clamp(10px, 1.1vw, 14px);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #084320;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 67, 32, 0.22);
  font-size: 13px;
  font-weight: 900;
}

.zld-scheme-flow strong {
  color: #082b17;
  font-size: clamp(17px, 1.18vw, 22px);
  font-weight: 900;
  line-height: 1.03;
}

.zld-scheme-flow em {
  max-width: 25ch;
  margin: clamp(6px, 0.8vw, 10px) auto 0;
  color: #345441;
  font-size: clamp(11px, 0.82vw, 13px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.zld-scheme-flow .flow-primary strong {
  color: #06411e;
}

.zld-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(10px, 1.2vw, 16px);
}

.zld-proof-band div {
  min-width: 0;
  padding: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(8, 67, 32, 0.17);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #ffffff, #f4faf5);
  box-shadow: 0 12px 30px rgba(8, 67, 32, 0.08);
}

.zld-proof-band strong {
  display: block;
  color: #084320;
  font-size: clamp(24px, 1.75vw, 36px);
  font-weight: 950;
  line-height: 0.95;
}

.zld-proof-band span {
  display: block;
  margin-top: 6px;
  color: #345441;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 750;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .zld-board-intro,
  .zld-scheme-top {
    grid-template-columns: 1fr;
  }

  .zld-board-image {
    min-height: 230px;
  }

  .zld-flow-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .zld-scheme-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .zld-scheme-flow::before {
    top: 28px;
    bottom: 28px;
    left: 35px;
    width: 12px;
    height: auto;
    background: linear-gradient(180deg, #063418, #0d7134 50%, #063418);
    transform: none;
  }

  .zld-scheme-flow li {
    display: grid;
    grid-template-columns: 48px minmax(120px, 0.6fr) minmax(0, 1.4fr);
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 12px 8px 12px 54px;
    text-align: left;
  }

  .zld-scheme-flow .flow-index {
    position: absolute;
    left: 7px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
  }

  .zld-scheme-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 26px;
    width: 20px;
    height: 20px;
    transform: rotate(135deg);
  }

  .zld-scheme-flow em {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .topbar .nav {
    align-items: flex-start;
    gap: 8px;
  }

  .topbar .menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
  }

  .topbar .menu-link {
    flex: 0 0 auto;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .brand-tagline {
    width: fit-content;
    font-size: 11px;
    transform: none;
  }

  .zld-principle-board {
    padding: 14px 0 24px;
  }

  .zld-board-wrap {
    width: min(100% - 28px, 1440px);
  }

  .zld-board-copy {
    min-height: 0;
    padding: 18px 16px;
  }

  .home-zld-kicker {
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .zld-board-copy h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.08;
  }

  .zld-board-copy p {
    font-size: 13px;
  }

  .zld-board-image {
    display: none;
  }

  .zld-scheme-board {
    padding: 16px 12px;
  }

  .zld-flow-title h2 {
    font-size: 24px;
  }

  .zld-scheme-flow li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-left: 56px;
  }

  .zld-proof-band {
    grid-template-columns: 1fr;
  }
}

/* Homepage 2026-06-25: centered ZLD scheme hero. */
.zld-home {
  min-height: calc(100svh - 76px);
  color: #ffffff;
  background: #03160d;
}

.zld-home-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 34px);
}

.zld-home-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #03160d;
}

.zld-home-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 900ms ease;
}

.zld-home-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.zld-home-bg img.exiting {
  opacity: 0;
  transform: scale(1.025) translateX(-2%);
}

.zld-home-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(3, 22, 13, 0.72), rgba(3, 22, 13, 0.34) 35%, rgba(3, 22, 13, 0.34) 65%, rgba(3, 22, 13, 0.72)),
    linear-gradient(180deg, rgba(3, 22, 13, 0.58), rgba(3, 22, 13, 0.36) 48%, rgba(3, 22, 13, 0.66));
}

.zld-home-content {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.zld-home-heading {
  width: min(1040px, 100%);
  margin: 0 auto clamp(12px, 1.55vw, 22px);
  padding: clamp(12px, 1.35vw, 18px) clamp(16px, 1.8vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(3, 22, 13, 0.66);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  text-align: center;
  backdrop-filter: blur(10px);
}

.zld-home-heading span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #073417;
  background: #ffffff;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zld-home-heading h1 {
  max-width: 950px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(22px, 2.05vw, 34px);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.zld-home-heading p {
  max-width: 780px;
  margin: 7px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.zld-home-scheme {
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #082b17;
  backdrop-filter: blur(14px);
}

.zld-home-scheme-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: clamp(14px, 1.7vw, 24px);
}

.zld-home-scheme-title span {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: #063f1c;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zld-home-scheme-title h2 {
  margin: 0;
  color: #082b17;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.zld-home-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: clamp(275px, 38vh, 390px);
  margin: 0;
  padding: clamp(22px, 2.5vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(8, 67, 32, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 250, 245, 0.66)),
    rgba(255, 255, 255, 0.74);
  list-style: none;
}

.zld-home-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(34px, 4vw, 64px);
  left: clamp(34px, 4vw, 64px);
  height: clamp(78px, 8.5vw, 124px);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(4, 56, 25, 0.95), rgba(16, 126, 54, 0.9), rgba(196, 248, 176, 0.82), rgba(16, 126, 54, 0.9), rgba(4, 56, 25, 0.95));
  box-shadow:
    inset 0 18px 30px rgba(255, 255, 255, 0.38),
    inset 0 -22px 32px rgba(2, 35, 15, 0.34),
    0 22px 44px rgba(8, 67, 32, 0.22);
  transform: translateY(-50%);
}

.zld-home-flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(12px, 1.4vw, 20px);
  text-align: center;
}

.zld-home-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 3;
  width: clamp(24px, 2.4vw, 40px);
  height: clamp(24px, 2.4vw, 40px);
  border-top: 5px solid rgba(255, 255, 255, 0.72);
  border-right: 5px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 3px 3px rgba(4, 56, 25, 0.2));
}

.zld-home-flow strong {
  color: #ffffff;
  font-size: clamp(17px, 1.24vw, 23px);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.zld-home-flow em {
  max-width: 24ch;
  margin: clamp(8px, 1vw, 12px) auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 0.86vw, 13.5px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.32;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}

.zld-home-flow .flow-primary strong {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .zld-home-stage {
    min-height: auto;
  }

  .zld-home-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .zld-home-flow::before {
    top: 26px;
    bottom: 26px;
    left: 36px;
    width: 13px;
    height: auto;
    background: linear-gradient(180deg, rgba(4, 56, 25, 0.95), rgba(16, 126, 54, 0.9), rgba(196, 248, 176, 0.82), rgba(16, 126, 54, 0.9), rgba(4, 56, 25, 0.95));
    transform: none;
  }

  .zld-home-flow li {
    min-height: 88px;
    padding: 14px 12px 14px 64px;
    text-align: left;
  }

  .zld-home-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 25px;
    width: 22px;
    height: 22px;
    transform: rotate(135deg);
  }

  .zld-home-flow em {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .zld-home-stage {
    padding: 10px;
  }

  .zld-home-heading {
    margin-bottom: 8px;
    padding: 11px 12px;
    text-align: left;
  }

  .zld-home-heading span {
    margin-bottom: 5px;
    padding: 4px 9px;
    font-size: 9px;
  }

  .zld-home-heading h1 {
    font-size: clamp(20px, 5.9vw, 25px);
    line-height: 1.06;
  }

  .zld-home-heading p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.28;
  }

  .zld-home-scheme {
    padding: 10px;
    border-radius: 20px;
  }

  .zld-home-scheme-title {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 8px;
  }

  .zld-home-scheme-title span {
    padding: 5px 10px;
    font-size: 9px;
  }

  .zld-home-scheme-title h2 {
    font-size: 17px;
    line-height: 1.12;
  }

  .zld-home-flow {
    gap: 7px;
    padding: 10px;
  }

  .zld-home-flow::before {
    top: 18px;
    bottom: 18px;
    left: 27px;
    width: 10px;
  }

  .zld-home-flow li {
    min-height: 62px;
    padding: 9px 10px 9px 48px;
  }

  .zld-home-flow li:not(:last-child)::after {
    bottom: -11px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .zld-home-flow strong {
    font-size: 15px;
  }

  .zld-home-flow em {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.18;
  }
}

/* Homepage final: calm glass ZLD flow over operating-plant imagery. */
.zld-home {
  min-height: calc(100svh - 152px);
  color: #ffffff;
  background: #06140c;
}

.zld-home-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 152px);
  overflow: hidden;
  padding: clamp(12px, 1.7vw, 26px);
}

.zld-home-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #06140c;
}

.zld-home-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 900ms ease;
}

.zld-home-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.zld-home-bg img.exiting {
  opacity: 0;
  transform: scale(1.02) translateX(-1.5%);
}

.zld-home-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(2, 15, 8, 0.58), rgba(2, 15, 8, 0.2) 33%, rgba(2, 15, 8, 0.18) 67%, rgba(2, 15, 8, 0.58)),
    linear-gradient(180deg, rgba(2, 15, 8, 0.36), rgba(2, 15, 8, 0.1) 48%, rgba(2, 15, 8, 0.42));
}

.zld-home-content {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.zld-home-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(16px, 2.6vh, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.zld-home-heading h1 {
  max-width: 940px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(21px, 1.85vw, 31px);
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}

.zld-home-heading p {
  max-width: 780px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12.5px, 0.98vw, 15px);
  font-weight: 650;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  text-wrap: balance;
}

.zld-home-scheme {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  backdrop-filter: none;
}

.zld-home-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: clamp(148px, 21vh, 198px);
  margin: 0;
  padding: clamp(8px, 1.4vw, 18px);
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  list-style: none;
  backdrop-filter: blur(8px) saturate(1.18);
}

.zld-home-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 56px);
  left: clamp(24px, 4vw, 56px);
  z-index: 0;
  height: clamp(92px, 8.8vw, 138px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12) 32%, rgba(255, 255, 255, 0.025) 58%, rgba(255, 255, 255, 0.24)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.1));
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.96),
    inset 0 18px 30px rgba(255, 255, 255, 0.28),
    inset 0 -20px 30px rgba(255, 255, 255, 0.1),
    inset 0 -4px 9px rgba(1, 12, 8, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.46);
  transform: translateY(-50%);
}

.zld-home-flow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(24px, 4vw, 56px);
  z-index: 0;
  right: clamp(24px, 4vw, 56px);
  width: auto;
  height: clamp(92px, 8.8vw, 138px);
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(42, 33, 21, 0.82) 0%,
      rgba(73, 66, 45, 0.68) 18%,
      rgba(74, 94, 86, 0.52) 39%,
      rgba(168, 174, 153, 0.46) 62%,
      rgba(144, 206, 218, 0.42) 82%,
      rgba(226, 255, 255, 0.58) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.5) 44%, transparent 56%);
  background-size: 100% 100%, 220% 100%;
  opacity: 0.72;
  transform: translateY(-50%);
  animation: zldWaterFlow 7.5s linear infinite;
}

.zld-home-flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(10px, 1.25vw, 18px);
  text-align: center;
}

.zld-home-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 2;
  width: clamp(20px, 2vw, 34px);
  height: clamp(20px, 2vw, 34px);
  border-top: 4px solid rgba(255, 255, 255, 0.62);
  border-right: 4px solid rgba(255, 255, 255, 0.62);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
}

.zld-home-flow strong {
  color: #ffffff;
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.74),
    0 0 1px rgba(255, 255, 255, 0.9);
}

.zld-home-flow em {
  max-width: 23ch;
  margin: clamp(7px, 0.8vw, 10px) auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(10.5px, 0.78vw, 12.5px);
  font-style: normal;
  font-weight: 650;
  line-height: 1.3;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.66);
}

@keyframes zldWaterFlow {
  0% {
    background-position: 0 0, 220% 0;
  }

  100% {
    background-position: 0 0, -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zld-home-flow::after {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .zld-home-stage {
    min-height: auto;
  }

  .zld-home-flow {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px;
    border-radius: 26px;
  }

  .zld-home-flow::before {
    top: 20px;
    bottom: 20px;
    left: 30px;
    width: 12px;
    height: auto;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12) 32%, rgba(255, 255, 255, 0.025) 58%, rgba(255, 255, 255, 0.24)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.1));
    box-shadow:
      inset 2px 0 5px rgba(255, 255, 255, 0.88),
      inset -2px 0 5px rgba(255, 255, 255, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.42);
    transform: none;
  }

  .zld-home-flow::after {
    top: 20px;
    left: 30px;
    right: auto;
    width: 12px;
    bottom: 20px;
    height: auto;
    background:
      linear-gradient(180deg,
        rgba(42, 33, 21, 0.82) 0%,
        rgba(73, 66, 45, 0.68) 18%,
        rgba(74, 94, 86, 0.52) 39%,
        rgba(168, 174, 153, 0.46) 62%,
        rgba(144, 206, 218, 0.42) 82%,
        rgba(226, 255, 255, 0.58) 100%),
      linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 44%, transparent 56%);
    background-size: 100% 100%, 100% 220%;
    opacity: 0.72;
    animation: zldWaterFlowMobile 5.5s linear infinite;
    transform: none;
  }

  .zld-home-flow li {
    min-height: 78px;
    padding: 11px 12px 11px 58px;
    text-align: left;
  }

  .zld-home-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -9px;
    left: 20px;
    width: 18px;
    height: 18px;
    transform: rotate(135deg);
  }

  .zld-home-flow em {
    max-width: none;
    margin-left: 0;
  }
}

@keyframes zldWaterFlowMobile {
  0% {
    background-position: 0 0, 0 220%;
  }

  100% {
    background-position: 0 0, 0 -120%;
  }
}

@media (max-width: 760px) {
  .zld-home {
    min-height: auto;
  }

  .zld-home-stage {
    padding: 12px 12px;
  }

  .zld-home-heading {
    margin-bottom: 16px;
    text-align: left;
  }

  .zld-home-heading h1 {
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.08;
  }

  .zld-home-heading p {
    font-size: 11.5px;
    line-height: 1.34;
  }

  .zld-home-flow {
    padding: 10px;
  }

  .zld-home-flow li {
    min-height: 52px;
    padding: 7px 10px 7px 50px;
  }

  .zld-home-flow strong {
    font-size: 14.5px;
  }

  .zld-home-flow em {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.16;
  }

  .zld-home + footer {
    padding: 8px 0;
  }

  .zld-home + footer .footer-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    line-height: 1.2;
  }

  .zld-home + footer .linkedin-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 18px;
  }
}

/* About page rebuild: clean ZLD credibility page. */
.brand {
  width: 210px;
  min-width: 0;
}

.brand-title {
  display: block;
  width: 210px;
  font-size: clamp(32px, 2.7vw, 38px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-tagline {
  display: block;
  width: 210px;
  font-size: clamp(10px, 0.82vw, 12.5px);
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-zld {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 56%, #ffffff 100%);
  color: #10222c;
}

.about-zld > section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-zld-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 48px) 0 clamp(22px, 3vw, 36px);
}

.about-zld-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #1f5524;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-zld-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #2f7d32;
}

.about-zld-copy h1 {
  max-width: 690px;
  margin: 0 0 14px;
  color: #0b2b16;
  font-size: clamp(30px, 3.45vw, 46px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-zld-copy p {
  max-width: 720px;
  margin: 0 0 10px;
  color: #30444d;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 520;
  line-height: 1.48;
}

.about-zld-copy .about-zld-lede {
  color: #18372d;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 650;
}

.about-zld-copy strong {
  color: #1f5524;
  font-weight: 850;
}

.about-zld-proof-line {
  display: inline-flex;
  margin-top: 4px !important;
  padding: 8px 0 0;
  border-top: 2px solid rgba(47, 125, 50, 0.2);
}

.about-zld-hero-image {
  margin: 0;
}

.about-zld-hero-image img {
  aspect-ratio: 16 / 11;
  width: 100%;
  max-height: 320px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 46px rgba(16, 34, 44, 0.12);
}

.about-zld-hero-image figcaption,
.about-zld-leader-card figcaption span {
  color: #62747d;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.about-zld-hero-image figcaption {
  margin-top: 9px;
  text-align: center;
}

.about-zld-defines,
.about-zld-leadership,
.about-zld-method,
.about-zld-stand {
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid rgba(47, 125, 50, 0.14);
}

.about-zld-section-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: end;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.about-zld-section-head h2,
.about-zld-stand h2 {
  margin: 0;
  color: #0b2b16;
  font-size: clamp(23px, 2.25vw, 32px);
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-zld-cred-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-zld-cred-row article {
  min-height: 136px;
  border-top: 3px solid #2f7d32;
  border-right: 1px solid rgba(47, 125, 50, 0.14);
  border-bottom: 1px solid rgba(47, 125, 50, 0.14);
  border-left: 1px solid rgba(47, 125, 50, 0.14);
  border-radius: 8px;
  padding: 16px 15px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(16, 34, 44, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-zld-cred-row article:hover {
  border-color: rgba(47, 125, 50, 0.3);
  box-shadow: 0 18px 40px rgba(16, 34, 44, 0.1);
  transform: translateY(-3px);
}

.about-zld-cred-row h3 {
  margin: 0 0 7px;
  color: #12351d;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.15;
}

.about-zld-cred-row p,
.about-zld-leader-copy p,
.about-zld-method-note,
.about-zld-stand p,
.about-zld-method-flow span {
  color: #344b54;
  font-size: 14.5px;
  font-weight: 510;
  line-height: 1.5;
}

.about-zld-cred-row p {
  margin: 0;
}

.about-zld-leader-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
}

.about-zld-leader-card {
  margin: 0;
  text-align: center;
}

.about-zld-leader-card img {
  width: min(168px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 12px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(16, 34, 44, 0.12);
}

.about-zld-leader-card strong {
  display: block;
  color: #0b2b16;
  font-size: 20px;
  line-height: 1.1;
}

.about-zld-leader-copy p {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(15px, 1.08vw, 17px);
}

.about-zld-leader-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-zld-leader-points span {
  position: relative;
  padding: 11px 12px 11px 28px;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 8px;
  color: #213941;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.about-zld-leader-points span::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f7d32;
}

.about-zld-method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
    linear-gradient(90deg, rgba(47, 125, 50, 0.06), transparent 45%, rgba(15, 124, 134, 0.06));
  list-style: none;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.94),
    0 16px 36px rgba(16, 34, 44, 0.07);
}

.about-zld-method-flow li {
  position: relative;
  min-height: 96px;
  padding: 13px 18px;
  text-align: center;
}

.about-zld-method-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(47, 125, 50, 0.55);
  border-right: 2px solid rgba(47, 125, 50, 0.55);
  transform: translateY(-50%) rotate(45deg);
}

.about-zld-method-flow strong {
  display: block;
  margin-bottom: 6px;
  color: #12351d;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.15;
}

.about-zld-method-flow span {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.about-zld-method-note {
  max-width: 900px;
  margin: 14px auto 0;
  text-align: center;
}

.about-zld-stand {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.48fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 48px);
}

.about-zld-stand p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
}

.about-zld-proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(47, 125, 50, 0.35);
  border-radius: 999px;
  padding: 0 18px;
  color: #1f5524;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(16, 34, 44, 0.08);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.about-zld-proof-link:hover,
.about-zld-proof-link:focus {
  color: #ffffff;
  background: #1f5524;
  box-shadow: 0 14px 32px rgba(31, 85, 36, 0.18);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .about-zld-intro,
  .about-zld-section-head,
  .about-zld-leader-grid,
  .about-zld-stand {
    grid-template-columns: 1fr;
  }

  .about-zld-cred-row,
  .about-zld-method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-zld-method-flow {
    border-radius: 24px;
  }

  .about-zld-method-flow li:not(:last-child)::after {
    display: none;
  }

  .about-zld-stand {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .brand-title {
    font-size: 26px;
  }

  .brand-tagline {
    font-size: 9.7px;
  }

  .about-zld > section {
    width: min(100% - 24px, 1180px);
  }

  .about-zld-intro {
    gap: 22px;
    padding-top: 26px;
  }

  .about-zld-copy h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .about-zld-copy p {
    font-size: 14.5px;
  }

  .about-zld-cred-row,
  .about-zld-leader-points,
  .about-zld-method-flow {
    grid-template-columns: 1fr;
  }

  .about-zld-cred-row article {
    min-height: 0;
  }

  .about-zld-section-head {
    gap: 8px;
  }

  .about-zld-section-head h2,
  .about-zld-stand h2 {
    font-size: 24px;
  }

  .about-zld-method-flow {
    padding: 10px;
    border-radius: 18px;
  }

  .about-zld-method-flow li {
    min-height: 0;
    padding: 12px;
    text-align: left;
  }

  .about-zld-proof-link {
    width: 100%;
  }
}

/* Global taskbar rebuild: homepage reference, glass-line interaction. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(16, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16, 34, 44, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 0 clamp(18px, 2vw, 24px);
  gap: clamp(14px, 2vw, 26px);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  width: 210px;
  min-width: 0;
}

.brand-title {
  display: block;
  width: 210px;
  color: #248135;
  font-size: clamp(32px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.brand-tagline {
  display: block;
  width: 210px;
  color: #60707a;
  font-size: clamp(10px, 0.82vw, 12.5px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 0.6vw, 10px);
  min-width: 0;
  color: #263b45;
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 800;
}

.menu-link,
.menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 clamp(8px, 0.85vw, 14px);
  color: inherit;
  background: transparent;
  box-shadow: none;
  font: inherit;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transform: none;
  transition:
    color 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.menu-link::after,
.menu-button::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 7px;
  left: 16%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 129, 53, 0), #248135, rgba(74, 192, 98, 0));
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: center;
  transition: opacity 170ms ease, transform 170ms ease;
}

.menu-link:hover,
.menu-link:focus,
.menu-link[aria-current="page"],
.menu-item:hover .menu-button,
.menu-button:focus {
  color: #0f3b1f;
  border-color: rgba(36, 129, 53, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    linear-gradient(90deg, rgba(36, 129, 53, 0.05), rgba(36, 129, 53, 0.01));
  box-shadow: 0 10px 22px rgba(16, 34, 44, 0.055);
  outline: none;
  transform: translateY(-1px);
}

.menu-link:hover::after,
.menu-link:focus::after,
.menu-link[aria-current="page"]::after,
.menu-item:hover .menu-button::after,
.menu-button:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-link[aria-current="page"] {
  border-color: rgba(36, 129, 53, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.52)),
    linear-gradient(90deg, rgba(36, 129, 53, 0.08), rgba(36, 129, 53, 0.02));
}

.dropdown {
  border: 1px solid rgba(36, 129, 53, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 42px rgba(16, 34, 44, 0.14);
}

.dropdown a {
  border-radius: 10px;
}

.dropdown a:hover,
.dropdown a:focus {
  color: #0f3b1f;
  background: rgba(36, 129, 53, 0.07);
}

@media (max-width: 1180px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 10px;
  }

  .menu {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
  }

  .menu-link,
  .menu-button {
    flex: 0 0 auto;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 8px;
    min-height: 0;
    padding: 10px 14px 8px;
  }

  .brand,
  .brand-title,
  .brand-tagline {
    width: 190px;
  }

  .brand-title {
    font-size: 34px;
  }

  .brand-tagline {
    font-size: 11.3px;
  }

  .menu {
    gap: 6px;
    margin-inline: -2px;
  }

  .menu-link,
  .menu-button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 13px;
  }

  .menu-link::after,
  .menu-button::after {
    bottom: 5px;
  }
}

/* Auto and ancillary ZLD rebuild: clean, scoped layout */
.auto-route-page {
  --auto-ink: #062b1a;
  --auto-muted: #395447;
  --auto-line: rgba(21, 119, 59, 0.22);
  --auto-dark: #08351f;
  --auto-mid: #168341;
  --auto-soft: #effaf0;
  background:
    radial-gradient(circle at 18% 12%, rgba(92, 205, 106, 0.13), transparent 28rem),
    linear-gradient(135deg, #fbfffb 0%, #f2faf2 44%, #eef7f7 100%);
  color: var(--auto-ink);
}

.auto-route-wrap,
.auto-route-shell {
  width: min(100% - clamp(24px, 3vw, 56px), 1820px);
  margin-inline: auto;
}

.auto-route-intro {
  padding: clamp(16px, 2vw, 30px) 0 clamp(10px, 1.4vw, 20px);
}

.auto-route-titlebar {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--auto-line);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(242, 255, 240, 0.78)),
    radial-gradient(circle at 86% 18%, rgba(105, 221, 111, 0.18), transparent 22rem);
  box-shadow: 0 18px 54px rgba(8, 53, 31, 0.08);
}

.auto-route-kicker,
.auto-stage {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(49, 151, 74, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(216, 251, 207, 0.78));
  color: #0b6d32;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  padding: 9px 13px;
  text-transform: uppercase;
}

.auto-route-titlebar h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--auto-ink);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.auto-route-titlebar p:not(.auto-route-kicker) {
  max-width: 1160px;
  margin: 0;
  color: var(--auto-muted);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.5;
}

.auto-route-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  align-items: center;
  gap: 8px;
  margin-top: clamp(12px, 1.2vw, 18px);
}

.auto-route-flow span {
  position: relative;
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(45, 172, 72, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, #07331e, #1b8b45);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 28px rgba(13, 78, 39, 0.12);
}

.auto-route-flow span:nth-child(3) {
  background: linear-gradient(135deg, #ebffe7, #c6ffb5);
  color: #07331e;
}

.auto-route-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 2;
  width: 18px;
  height: 3px;
  background: #51c45f;
  transform: translateY(-50%);
}

.auto-route-shell {
  display: grid;
  grid-template-columns: clamp(220px, 16vw, 292px) minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 28px);
  align-items: start;
  padding: 0 0 clamp(28px, 4vw, 60px);
}

.auto-route-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(115, 221, 126, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, #062a19 0%, #0d4e28 100%);
  box-shadow: 0 24px 56px rgba(5, 46, 24, 0.14);
}

.auto-route-index > span {
  color: #d9ffd4;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.auto-route-index ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: auto-topics;
}

.auto-route-index li {
  counter-increment: auto-topics;
}

.auto-route-index a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #f5fff2;
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.auto-route-index a::before {
  content: counter(auto-topics, decimal-leading-zero);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(66, 178, 83, 0.32);
  color: #f8fff6;
  font-size: 0.68rem;
  font-weight: 900;
}

.auto-route-index a:hover,
.auto-route-index a:focus-visible {
  border-color: rgba(201, 255, 186, 0.52);
  background: rgba(218, 255, 203, 0.14);
  color: #d7ffcb;
  transform: translateX(5px);
}

.auto-route-topics {
  display: grid;
  gap: clamp(16px, 1.8vw, 28px);
  min-width: 0;
}

.auto-route-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(18px, 1.8vw, 32px);
  align-items: start;
  scroll-margin-top: 102px;
  padding: clamp(16px, 1.7vw, 28px);
  border: 1px solid rgba(43, 145, 67, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 255, 238, 0.86)),
    radial-gradient(circle at 20% 15%, rgba(100, 213, 105, 0.14), transparent 26rem);
  box-shadow: 0 22px 60px rgba(8, 53, 31, 0.08);
}

.auto-route-card.text-only {
  grid-template-columns: 1fr;
}

.auto-route-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.auto-route-media.single {
  grid-template-columns: minmax(0, 1fr);
}

.auto-route-media figure {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 133, 63, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(8, 53, 31, 0.07);
}

.auto-route-media figure:first-child:nth-last-child(3),
.auto-route-media figure:first-child:nth-last-child(5) {
  grid-column: 1 / -1;
}

.auto-route-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(154px, 22vw, 310px);
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.auto-route-media.single img {
  max-height: clamp(220px, 34vw, 440px);
}

.auto-route-media figcaption {
  min-height: 34px;
  padding: 8px 10px;
  border-top: 1px solid rgba(38, 133, 63, 0.13);
  background: rgba(242, 255, 239, 0.88);
  color: #07331e;
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.auto-route-copy {
  display: grid;
  gap: clamp(9px, 1vw, 14px);
  min-width: 0;
}

.auto-route-copy h2 {
  max-width: 1000px;
  margin: 0;
  color: var(--auto-ink);
  font-size: clamp(1.38rem, 2.05vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.auto-route-copy p {
  margin: 0;
  color: #30473b;
  font-size: clamp(0.94rem, 0.94vw, 1.08rem);
  line-height: 1.45;
}

.auto-zld-role {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(42, 164, 59, 0.18);
  border-left: 6px solid #41c44d;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(223, 255, 213, 0.8), rgba(255, 255, 255, 0.88));
  color: #183f2b !important;
  font-weight: 750;
}

.auto-zld-role strong {
  color: #07331e;
  white-space: nowrap;
}

.auto-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.auto-proof-grid span {
  display: block;
  min-height: 74px;
  padding: 12px 13px;
  border: 1px solid rgba(40, 145, 61, 0.18);
  border-left: 5px solid rgba(53, 191, 72, 0.56);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 255, 230, 0.86));
  color: #385247;
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  line-height: 1.14;
  box-shadow: 0 10px 28px rgba(8, 53, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.auto-proof-grid span:hover {
  border-color: rgba(39, 155, 55, 0.36);
  box-shadow: 0 16px 34px rgba(8, 53, 31, 0.11);
  transform: translateY(-3px);
}

.auto-proof-grid strong {
  display: block;
  margin-bottom: 3px;
  color: #07331e;
  font-size: clamp(0.98rem, 1vw, 1.15rem);
  line-height: 1.03;
}

@media (min-width: 1540px) {
  .auto-route-card {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.35fr);
  }

  .auto-route-media img {
    max-height: 285px;
  }

  .auto-route-media.single img {
    max-height: 480px;
  }
}

@media (max-width: 1180px) {
  .auto-route-shell {
    grid-template-columns: 1fr;
  }

  .auto-route-index {
    position: static;
  }

  .auto-route-index ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .auto-route-flow {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
    padding-bottom: 3px;
  }
}

@media (max-width: 760px) {
  .auto-route-wrap,
  .auto-route-shell {
    width: min(100% - 24px, 1820px);
  }

  .auto-route-titlebar {
    border-radius: 20px;
    padding: 17px;
  }

  .auto-route-titlebar h1 {
    font-size: clamp(1.65rem, 9vw, 2.45rem);
  }

  .auto-route-flow {
    grid-template-columns: 1fr;
    gap: 7px;
    overflow: visible;
  }

  .auto-route-flow span:not(:last-child)::after {
    display: none;
  }

  .auto-route-index {
    border-radius: 20px;
    padding: 15px;
  }

  .auto-route-index ol {
    grid-template-columns: 1fr;
  }

  .auto-route-card {
    border-radius: 22px;
    padding: 14px;
  }

  .auto-route-media {
    grid-template-columns: 1fr;
  }

  .auto-route-media figure:first-child:nth-last-child(3),
  .auto-route-media figure:first-child:nth-last-child(5) {
    grid-column: auto;
  }

  .auto-route-media img,
  .auto-route-media.single img {
    max-height: none;
  }

  .auto-zld-role {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .auto-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Auto and ancillary product catalogue: clean white technical layout */
.auto-catalog-page {
  --auto-ink: #17241f;
  --auto-muted: #52645b;
  --auto-green: #287d3d;
  --auto-green-dark: #0f4f2c;
  --auto-line: rgba(40, 125, 61, 0.18);
  --auto-soft: #f7fbf7;
  background:
    radial-gradient(circle at 18% 0%, rgba(40, 125, 61, 0.07), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7faf7 46%, #f4f8f5 100%);
  color: var(--auto-ink);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: calc(100svh - 124px);
}

.auto-catalog-wrap {
  width: min(100% - clamp(22px, 2.6vw, 56px), 1880px);
  margin-inline: auto;
}

.auto-catalog-intro {
  padding: clamp(8px, 0.8vw, 14px) 0 clamp(6px, 0.6vw, 10px);
}

.auto-catalog-kicker,
.auto-catalog-label,
.auto-catalog-menu > span {
  width: fit-content;
  margin: 0;
  color: var(--auto-green);
  font-size: clamp(0.72rem, 0.68vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.auto-catalog-intro h1 {
  max-width: 980px;
  margin: 4px 0 4px;
  color: var(--auto-ink);
  font-size: clamp(1.16rem, 1.45vw, 2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 1320px;
  margin: 0;
  color: var(--auto-muted);
  font-size: clamp(0.88rem, 0.78vw, 1rem);
  line-height: 1.3;
}

.auto-catalog-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: clamp(6px, 0.6vw, 10px);
  margin-top: clamp(7px, 0.6vw, 11px);
  padding: 6px;
  border: 1px solid var(--auto-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(31, 67, 47, 0.06);
}

.auto-catalog-flow span {
  position: relative;
  display: grid;
  min-height: clamp(30px, 2vw, 38px);
  place-items: center;
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 247, 0.88));
  color: var(--auto-green-dark);
  font-size: clamp(0.78rem, 0.72vw, 0.92rem);
  font-weight: 900;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.auto-catalog-flow span.is-active-stage {
  border-color: rgba(40, 125, 61, 0.42);
  background: linear-gradient(180deg, #ffffff, #eff9ef);
  box-shadow: inset 0 -3px 0 rgba(40, 125, 61, 0.72), 0 10px 26px rgba(31, 67, 47, 0.09);
  transform: translateY(-1px);
}

.auto-catalog-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  z-index: 2;
  width: 14px;
  height: 2px;
  background: rgba(40, 125, 61, 0.34);
  transform: translateY(-50%);
}

.auto-catalog-shell {
  display: grid;
  grid-template-columns: clamp(220px, 15vw, 310px) minmax(0, 1fr);
  gap: clamp(14px, 1.5vw, 28px);
  align-items: start;
  padding: 0;
}

.auto-catalog-menu {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 9px;
  padding: clamp(10px, 0.85vw, 16px);
  border: 1px solid var(--auto-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(31, 67, 47, 0.07);
  backdrop-filter: blur(10px);
}

.auto-catalog-tabs {
  display: grid;
  gap: 4px;
}

.auto-catalog-tab {
  width: 100%;
  min-height: 31px;
  padding: 7px 10px 7px 12px;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  border-radius: 12px;
  color: #263d32;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.78rem, 0.66vw, 0.9rem);
  font-weight: 780;
  line-height: 1.15;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.auto-catalog-tab:hover,
.auto-catalog-tab:focus-visible {
  border-color: rgba(40, 125, 61, 0.16);
  border-left-color: rgba(40, 125, 61, 0.48);
  background: rgba(248, 253, 248, 0.96);
  box-shadow: 0 10px 24px rgba(31, 67, 47, 0.06);
  color: var(--auto-green-dark);
  outline: none;
  transform: translateX(4px);
}

.auto-catalog-tab.is-active {
  border-color: rgba(40, 125, 61, 0.18);
  border-left-color: var(--auto-green);
  background: linear-gradient(90deg, rgba(241, 251, 241, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--auto-green-dark);
  box-shadow: 0 12px 28px rgba(31, 67, 47, 0.08);
}

.auto-catalog-stage {
  min-width: 0;
}

.auto-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(14px, 1.25vw, 26px);
  align-items: center;
  min-height: clamp(390px, calc(100svh - 300px), 650px);
  padding: clamp(11px, 0.9vw, 21px);
  border: 1px solid var(--auto-line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 250, 0.92)),
    radial-gradient(circle at 84% 8%, rgba(40, 125, 61, 0.08), transparent 26rem);
  box-shadow: 0 26px 70px rgba(31, 67, 47, 0.08);
}

.auto-product[hidden] {
  display: none;
}

.auto-product-gallery {
  display: grid;
  gap: clamp(8px, 0.7vw, 12px);
  align-content: center;
  min-width: 0;
}

.auto-product-gallery-text {
  min-height: 360px;
  align-content: stretch;
}

.auto-catalog-figure {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(31, 67, 47, 0.07);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.auto-catalog-figure::after {
  content: "Click to enlarge";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 79, 44, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.auto-catalog-figure:hover,
.auto-catalog-figure:focus-within {
  border-color: rgba(40, 125, 61, 0.34);
  box-shadow: 0 22px 48px rgba(31, 67, 47, 0.12);
  transform: translateY(-3px);
}

.auto-catalog-figure:hover::after,
.auto-catalog-figure:focus-within::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.auto-catalog-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(58px, 5.2vw, 106px);
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.auto-main-figure img {
  max-height: clamp(168px, 13.8vw, 270px);
}

.auto-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(7px, 0.6vw, 10px);
}

.auto-thumb-row .auto-catalog-figure:only-child {
  grid-column: 1 / -1;
}

.auto-catalog-figure figcaption {
  min-height: 25px;
  padding: 5px 8px;
  border-top: 1px solid rgba(40, 125, 61, 0.12);
  color: var(--auto-green-dark);
  background: #fbfffb;
  font-size: clamp(0.62rem, 0.56vw, 0.72rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.auto-product-copy {
  display: grid;
  gap: clamp(6px, 0.55vw, 10px);
  min-width: 0;
}

.auto-product-copy h2 {
  margin: 0;
  color: var(--auto-ink);
  font-size: clamp(1.25rem, 1.55vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.auto-product-copy p {
  margin: 0;
  color: #3e5148;
  font-size: clamp(0.86rem, 0.76vw, 1rem);
  line-height: 1.32;
}

.auto-catalog-role {
  padding: 7px 11px;
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-left: 4px solid var(--auto-green);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #263d32 !important;
  font-weight: 720;
}

.auto-catalog-role strong {
  color: var(--auto-green-dark);
}

.auto-catalog-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(7px, 0.6vw, 10px);
  margin-top: 2px;
}

.auto-catalog-data span {
  display: block;
  min-height: clamp(48px, 4vw, 76px);
  padding: clamp(8px, 0.62vw, 10px);
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-left: 4px solid rgba(40, 125, 61, 0.52);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  color: #41544a;
  font-size: clamp(0.72rem, 0.64vw, 0.84rem);
  line-height: 1.1;
  box-shadow: 0 12px 26px rgba(31, 67, 47, 0.05);
}

.auto-catalog-data strong {
  display: block;
  margin-bottom: 3px;
  color: var(--auto-green-dark);
  font-size: clamp(0.9rem, 0.78vw, 1.08rem);
  line-height: 1.02;
}

.auto-catalog-proof-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 42px);
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 247, 0.84)),
    radial-gradient(circle at 22% 0%, rgba(40, 125, 61, 0.08), transparent 22rem);
  box-shadow: 0 18px 44px rgba(31, 67, 47, 0.07);
}

p.auto-catalog-proof-card {
  display: block;
  min-height: 0;
  margin: 12px 0 0;
  padding: 10px 12px 10px 14px;
  border-color: rgba(40, 125, 61, 0.18);
  border-left: 4px solid rgba(40, 125, 61, 0.54);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  color: var(--auto-muted);
  font-size: clamp(0.82rem, 0.72vw, 0.95rem);
  line-height: 1.38;
}

p.auto-catalog-proof-card strong {
  display: inline;
  margin: 0;
  color: var(--auto-green-dark);
  font-size: inherit;
  line-height: inherit;
}

p.auto-catalog-proof-card a {
  color: var(--auto-green-dark);
  font-weight: 900;
  text-decoration: none;
}

p.auto-catalog-proof-card a:hover,
p.auto-catalog-proof-card a:focus {
  text-decoration: underline;
}

.auto-catalog-proof-card span {
  color: var(--auto-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auto-catalog-proof-card strong {
  color: var(--auto-ink);
  font-size: clamp(1.45rem, 2vw, 2.4rem);
  line-height: 1.06;
}

.auto-catalog-proof-card p {
  max-width: 560px;
  margin: 0;
  color: var(--auto-muted);
  line-height: 1.5;
}

@media (min-width: 1700px) {
  .auto-product {
    grid-template-columns: minmax(430px, 0.84fr) minmax(760px, 1.16fr);
  }

  .auto-catalog-data {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
  }
}

.auto-catalog-footer {
  padding: 6px 0;
}

.auto-catalog-footer .footer-row {
  min-height: 30px;
  gap: 12px;
  font-size: clamp(0.78rem, 0.8vw, 0.95rem);
}

.auto-catalog-footer .linkedin-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

@media (max-width: 1220px) {
  .auto-catalog-shell {
    grid-template-columns: 1fr;
  }

  .auto-catalog-menu {
    position: static;
  }

  .auto-catalog-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .auto-catalog-tab {
    flex: 0 0 auto;
    width: auto;
    min-height: 38px;
    white-space: nowrap;
  }

  .auto-product {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auto-product-gallery {
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .auto-catalog-wrap {
    width: min(100% - 22px, 1880px);
  }

  .auto-catalog-intro h1 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .auto-catalog-flow {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .auto-catalog-flow span:not(:last-child)::after {
    display: none;
  }

  .auto-catalog-shell {
    gap: 12px;
  }

  .auto-catalog-menu,
  .auto-product {
    border-radius: 20px;
  }

  .auto-product {
    padding: 14px;
  }

  .auto-thumb-row,
  .auto-catalog-data {
    grid-template-columns: 1fr;
  }

  .auto-catalog-figure img,
  .auto-main-figure img {
    max-height: none;
  }
}

/* Clean careers and contact rebuild */
.career-clean-page,
.contact-clean-page {
  min-height: calc(100svh - var(--header-h, 96px) - 58px);
  padding: clamp(18px, 2.2vw, 34px) clamp(16px, 3vw, 48px);
  background:
    radial-gradient(circle at 12% 4%, rgba(40, 125, 61, 0.08), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #fbfefb 54%, #f3faf5 100%);
  color: #0b2f1d;
}

.career-clean-shell,
.contact-clean-shell {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  width: min(100%, 1440px);
  min-height: calc(100svh - var(--header-h, 96px) - 120px);
  margin-inline: auto;
  align-content: center;
}

.clean-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 12px;
  border: 1px solid rgba(40, 125, 61, 0.18);
  border-radius: 999px;
  color: #1f7d3d;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-clean-intro,
.contact-clean-intro {
  max-width: 960px;
}

.career-clean-intro h1,
.contact-clean-intro h1 {
  margin: 0;
  color: #092b19;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.career-clean-intro p,
.contact-clean-intro p,
.career-clean-learning p,
.career-clean-apply-copy p,
.contact-clean-card p {
  margin: 10px 0 0;
  color: #365346;
  font-size: clamp(0.92rem, 0.95vw, 1.12rem);
  line-height: 1.48;
}

.career-clean-learning,
.career-clean-apply,
.contact-clean-grid,
.contact-clean-topics {
  border: 1px solid rgba(40, 125, 61, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(31, 67, 47, 0.06);
}

.career-clean-learning {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(16px, 2vw, 34px);
  padding: clamp(18px, 2vw, 30px);
}

.career-clean-learning h2,
.career-clean-apply-copy h2 {
  margin: 0;
  color: #0a321d;
  font-size: clamp(1.35rem, 1.8vw, 2.35rem);
  line-height: 1.05;
}

.career-clean-tags,
.contact-clean-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: center;
}

.career-clean-tags span,
.contact-clean-topics span {
  padding: 9px 12px;
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-radius: 999px;
  color: #103a24;
  background: #ffffff;
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  font-weight: 820;
}

.career-clean-apply {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(620px, 1fr);
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(18px, 2vw, 30px);
}

.career-clean-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 10px;
}

.career-clean-form label {
  display: grid;
  gap: 6px;
  color: #244336;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-clean-form input,
.career-clean-form select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(40, 125, 61, 0.18);
  border-radius: 14px;
  color: #143626;
  background: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
}

.career-clean-form input:focus,
.career-clean-form select:focus {
  outline: 2px solid rgba(40, 125, 61, 0.2);
  border-color: rgba(40, 125, 61, 0.45);
}

.clean-submit {
  min-height: 42px;
  align-self: end;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b4026, #287d3d);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(31, 67, 47, 0.14);
}

.clean-submit:hover,
.clean-submit:focus {
  transform: translateY(-1px);
}

.contact-clean-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.82fr;
  gap: 12px;
  padding: clamp(16px, 1.6vw, 24px);
}

.contact-clean-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 190px;
  padding: clamp(16px, 1.6vw, 24px);
  border: 1px solid rgba(40, 125, 61, 0.12);
  border-radius: 22px;
  background: #ffffff;
}

.contact-clean-card.primary {
  border-left: 5px solid #287d3d;
}

.contact-clean-card span {
  color: #287d3d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-clean-card h2 {
  margin: 0;
  color: #0a321d;
  font-size: clamp(1.1rem, 1.28vw, 1.7rem);
  line-height: 1.1;
}

.contact-clean-card a {
  width: fit-content;
  margin-top: 4px;
  color: #0f5c31;
  font-weight: 900;
  text-decoration: none;
}

.contact-clean-card a:hover,
.contact-clean-card a:focus {
  text-decoration: underline;
}

.contact-clean-topics {
  padding: clamp(14px, 1.4vw, 20px);
  box-shadow: none;
}

/* ZLD page image watermark softening. Homepage imagery is intentionally excluded. */
.auto-catalog-page .auto-catalog-figure img {
  filter: saturate(0.74) contrast(1.03) brightness(1.05);
}

.auto-catalog-page .auto-catalog-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.auto-catalog-page .auto-catalog-figure:hover img,
.auto-catalog-page .auto-catalog-figure:focus-within img {
  filter: saturate(0.82) contrast(1.04) brightness(1.04);
}

/* Final ZLD catalogue rebuild: clear images, integrated proof, compact product story */
.auto-catalog-page {
  --auto-ink: #10281d;
  --auto-muted: #43574e;
  --auto-green: #2c8a43;
  --auto-green-dark: #0b3a22;
  --auto-line: rgba(30, 116, 54, 0.18);
  background:
    radial-gradient(circle at 8% 0%, rgba(44, 138, 67, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 52%, #f6faf7 100%);
  min-height: calc(100svh - var(--header-h, 96px));
}

.auto-catalog-wrap {
  width: min(100% - clamp(18px, 2.4vw, 48px), 1760px);
}

.auto-catalog-intro {
  padding: clamp(10px, 1vw, 18px) 0 clamp(8px, 0.8vw, 14px);
}

.auto-catalog-kicker,
.auto-catalog-label,
.auto-catalog-menu > span {
  color: var(--auto-green-dark);
  font-size: clamp(0.68rem, 0.64vw, 0.78rem);
  letter-spacing: 0.085em;
}

.auto-catalog-intro h1 {
  max-width: 1120px;
  margin: 5px 0 5px;
  font-size: clamp(1.35rem, 1.75vw, 2.35rem);
  line-height: 1.02;
}

.auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 1260px;
  color: var(--auto-muted);
  font-size: clamp(0.84rem, 0.78vw, 0.98rem);
}

.auto-catalog-flow {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 5px;
  margin-top: 10px;
  padding: 5px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(19, 67, 39, 0.05);
}

.auto-catalog-flow span {
  min-height: 34px;
  border-color: rgba(30, 116, 54, 0.18);
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff, #f5fbf6);
  color: #153f27;
  font-size: clamp(0.74rem, 0.66vw, 0.86rem);
}

.auto-catalog-flow span.is-active-stage {
  background: linear-gradient(180deg, #ffffff, #e9f8ed);
  box-shadow: inset 0 -3px 0 rgba(44, 138, 67, 0.65);
}

.auto-catalog-flow span:not(:last-child)::after {
  display: none;
}

.auto-catalog-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1vw, 16px);
  padding-bottom: clamp(8px, 1vw, 16px);
}

.auto-catalog-menu {
  position: static;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(10px, 1vw, 16px);
  align-items: center;
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(19, 67, 39, 0.05);
}

.auto-catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.auto-catalog-tab {
  width: auto;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(30, 116, 54, 0.15);
  border-radius: 999px;
  background: #ffffff;
  color: #243c31;
  font-size: clamp(0.72rem, 0.64vw, 0.84rem);
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.auto-catalog-tab:hover,
.auto-catalog-tab:focus-visible {
  border-color: rgba(44, 138, 67, 0.35);
  background: #f7fcf8;
  color: var(--auto-green-dark);
  transform: translateY(-1px);
}

.auto-catalog-tab.is-active {
  border-color: rgba(44, 138, 67, 0.42);
  background: linear-gradient(180deg, #ffffff, #ebf8ee);
  color: var(--auto-green-dark);
  box-shadow: inset 0 -3px 0 rgba(44, 138, 67, 0.55);
}

.auto-product {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(14px, 1.35vw, 28px);
  align-items: stretch;
  min-height: clamp(480px, calc(100svh - 260px), 720px);
  padding: clamp(14px, 1.35vw, 24px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 251, 0.92)),
    radial-gradient(circle at 90% 12%, rgba(44, 138, 67, 0.07), transparent 30rem);
  box-shadow: 0 22px 58px rgba(19, 67, 39, 0.07);
}

.auto-product-gallery,
.auto-product-media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(8px, 0.8vw, 12px);
  min-width: 0;
  align-content: stretch;
}

.auto-catalog-figure {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(19, 67, 39, 0.06);
}

.auto-catalog-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(120px, 16svh, 230px);
  max-height: none !important;
  object-fit: contain;
  filter: none !important;
}

.auto-main-figure img {
  height: clamp(220px, 34svh, 390px);
}

.auto-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 12px);
}

.auto-thumb-row .auto-catalog-figure:only-child {
  max-width: 56%;
  justify-self: center;
}

.auto-catalog-figure::before {
  content: "SARTIME";
  position: absolute;
  inset: 0 0 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: rgba(14, 74, 39, 0.12);
  font-size: clamp(1.4rem, 3.4vw, 4rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.75);
}

.auto-catalog-figure::after {
  z-index: 5;
}

.auto-catalog-figure figcaption {
  position: relative;
  z-index: 4;
  min-height: 30px;
  padding: 6px 9px;
  background: #ffffff;
  color: var(--auto-green-dark);
  font-size: clamp(0.62rem, 0.56vw, 0.72rem);
}

.auto-product-copy {
  align-content: center;
  gap: clamp(7px, 0.7vw, 12px);
}

.auto-product-copy h2 {
  font-size: clamp(1.35rem, 1.7vw, 2.45rem);
  line-height: 1.04;
}

.auto-product-copy p {
  color: #354b42;
  font-size: clamp(0.86rem, 0.78vw, 1rem);
  line-height: 1.38;
}

.auto-catalog-role,
.auto-plant-record {
  padding: 8px 12px;
  border: 1px solid rgba(30, 116, 54, 0.16);
  border-left: 4px solid rgba(44, 138, 67, 0.62);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  color: #263d32 !important;
  font-weight: 760;
}

.auto-plant-record {
  margin: 0;
  font-size: clamp(0.82rem, 0.74vw, 0.94rem);
  line-height: 1.36;
}

.auto-plant-record strong {
  color: var(--auto-green-dark);
}

.auto-catalog-data {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 0.75vw, 12px);
}

.auto-catalog-data span {
  min-height: 0;
  padding: clamp(9px, 0.8vw, 12px);
  border-color: rgba(30, 116, 54, 0.15);
  border-left: 4px solid rgba(44, 138, 67, 0.46);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #3b5047;
  font-size: clamp(0.72rem, 0.64vw, 0.83rem);
}

.auto-catalog-data strong {
  color: var(--auto-green-dark);
  font-size: clamp(0.92rem, 0.78vw, 1.12rem);
}

.auto-product-gallery-text .auto-catalog-proof-card {
  min-height: 100%;
  border-radius: 18px;
  background: #ffffff;
}

.auto-catalog-footer {
  border-top: 1px solid rgba(30, 116, 54, 0.12);
  background: #ffffff;
}

@media (min-width: 1560px) {
  .auto-product {
    grid-template-columns: minmax(520px, 0.95fr) minmax(720px, 1.05fr);
  }

  .auto-catalog-data {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .auto-catalog-menu {
    grid-template-columns: 1fr;
  }

  .auto-catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .auto-product {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auto-product-gallery,
  .auto-product-media {
    grid-template-rows: auto auto;
  }

  .auto-main-figure img {
    height: clamp(210px, 34vw, 360px);
  }
}

@media (max-width: 760px) {
  .auto-catalog-flow {
    grid-template-columns: 1fr;
  }

  .auto-thumb-row,
  .auto-catalog-data {
    grid-template-columns: 1fr;
  }

  .auto-thumb-row .auto-catalog-figure:only-child {
    max-width: none;
  }

  .auto-catalog-figure img,
  .auto-main-figure img {
    height: auto;
    max-height: none !important;
  }

  .auto-catalog-figure::before {
    font-size: clamp(1.3rem, 10vw, 3.4rem);
  }
}

@media (max-width: 1020px) {
  .career-clean-shell,
  .contact-clean-shell {
    min-height: auto;
    align-content: start;
  }

  .career-clean-learning,
  .career-clean-apply,
  .contact-clean-grid {
    grid-template-columns: 1fr;
  }

  .career-clean-form {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 680px) {
  .career-clean-page,
  .contact-clean-page {
    padding: 16px 12px;
  }

  .career-clean-intro h1,
  .contact-clean-intro h1 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

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

  .career-clean-learning,
  .career-clean-apply,
  .contact-clean-grid,
  .contact-clean-topics {
    border-radius: 20px;
  }
}

/* ZLD catalogue final lock: one homepage-style glass scheme, stage names only */
.auto-catalog-page .auto-catalog-intro {
  min-height: 0;
  padding: clamp(12px, 2vh, 24px) 0 clamp(6px, 1vh, 12px);
}

.auto-catalog-page .auto-catalog-kicker,
.auto-catalog-page .auto-catalog-intro .auto-catalog-flow,
.auto-catalog-page .auto-catalog-menu > span {
  display: none !important;
}

.auto-catalog-page .auto-catalog-intro h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(1.35rem, 2.35vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.auto-catalog-page .auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 980px;
  margin-top: 8px;
  font-size: clamp(0.9rem, 1vw, 1.06rem);
  line-height: 1.42;
}

.auto-catalog-page .auto-catalog-shell {
  gap: clamp(12px, 1.5vh, 18px);
  padding-bottom: clamp(14px, 2vh, 28px);
}

.auto-catalog-page .auto-catalog-menu {
  position: relative;
  z-index: 60;
  top: 0;
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.auto-catalog-page .auto-catalog-tabs {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: clamp(74px, 8vh, 96px);
  padding: 8px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(84, 76, 58, 0.42), rgba(193, 217, 211, 0.66), rgba(213, 242, 243, 0.6)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.72),
    inset 0 -20px 32px rgba(21, 64, 43, 0.12),
    0 18px 42px rgba(31, 67, 47, 0.12);
}

.auto-catalog-page .auto-catalog-tabs::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08) 44%, rgba(10, 55, 35, 0.14) 100%);
  pointer-events: none;
}

.auto-catalog-page .auto-catalog-stage-group {
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.auto-catalog-page .auto-catalog-stage-group > strong {
  min-height: clamp(58px, 6.6vh, 78px);
  padding: 12px 30px 12px 18px;
  color: #fff;
  font-size: clamp(0.86rem, 1vw, 1.18rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44);
}

.auto-catalog-page .auto-catalog-stage-group > strong::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 5;
  width: 26px;
  height: 26px;
  border-top: 5px solid rgba(255, 255, 255, 0.72);
  border-right: 5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 2px 5px rgba(10, 42, 28, 0.24));
}

.auto-catalog-page .auto-catalog-stage-group:last-child > strong::after {
  display: none;
}

.auto-catalog-page .auto-catalog-stage-group:hover,
.auto-catalog-page .auto-catalog-stage-group:focus-within,
.auto-catalog-page .auto-catalog-stage-group.is-active-stage {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
}

.auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 18px;
  color: #1f3329;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 247, 0.9));
  box-shadow: 0 12px 28px rgba(31, 67, 47, 0.08);
  font-size: clamp(0.74rem, 0.78vw, 0.9rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 861px) {
  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    z-index: 50;
    width: min(270px, 92vw);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -5px);
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(2) {
    top: calc(100% + 52px);
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(3) {
    top: calc(100% + 94px);
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(4) {
    top: calc(100% + 136px);
  }

  .auto-catalog-page .auto-catalog-stage-group:hover .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group:focus-within .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group.is-active-stage .auto-catalog-tab.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.auto-catalog-page .auto-product {
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(14px, 1.6vw, 26px);
  padding: clamp(12px, 1.45vw, 22px);
}

.auto-catalog-page .auto-product-gallery,
.auto-catalog-page .auto-product-media {
  grid-template-rows: minmax(170px, 0.7fr) auto;
}

.auto-catalog-page .auto-main-figure {
  max-height: clamp(180px, 31vh, 300px);
}

.auto-catalog-page .auto-catalog-figure img {
  object-fit: contain;
}

.auto-catalog-page .auto-main-figure img {
  object-fit: cover;
}

@media (max-width: 860px) {
  .auto-catalog-page .auto-catalog-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 10px;
    border-radius: 24px;
  }

  .auto-catalog-page .auto-catalog-stage-group {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.28);
  }

  .auto-catalog-page .auto-catalog-stage-group > strong {
    min-height: 46px;
    justify-content: flex-start;
    padding-inline: 16px 42px;
    text-align: left;
  }

  .auto-catalog-page .auto-catalog-stage-group > strong::after {
    right: 18px;
    width: 10px;
    height: 10px;
    border-width: 3px;
    transform: translateY(-50%) rotate(135deg);
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
    position: static;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0 10px 8px;
  }

  .auto-catalog-page .auto-product {
    grid-template-columns: 1fr;
  }

  .auto-catalog-page .auto-product-gallery,
  .auto-catalog-page .auto-product-media {
    grid-template-rows: auto;
  }
}

/* Compact executive pages: About, Careers and Contact */
.about-exec-page,
.career-clean-page,
.contact-clean-page {
  min-height: calc(100svh - 72px - 44px);
  padding: clamp(8px, 1.05vw, 18px) clamp(14px, 2.4vw, 38px);
  background:
    radial-gradient(circle at 12% 0%, rgba(40, 125, 61, 0.055), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #fbfefb 58%, #f7fbf8 100%);
}

.about-exec-shell,
.career-clean-shell,
.contact-clean-shell {
  width: min(100%, 1420px);
  min-height: calc(100svh - 72px - 76px);
  margin-inline: auto;
  display: grid;
  align-content: center;
  gap: clamp(8px, 0.95vw, 14px);
}

.about-exec-identity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(16px, 2vw, 30px);
  align-items: center;
}

.about-exec-copy h1,
.career-clean-intro h1,
.contact-clean-intro h1 {
  max-width: 920px;
  margin: 0;
  color: #092b19;
  font-size: clamp(1.75rem, 2.7vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-exec-copy p,
.career-clean-intro p,
.contact-clean-intro p,
.career-clean-learning p,
.career-clean-apply-copy p,
.contact-clean-card p {
  margin: 8px 0 0;
  color: #365346;
  font-size: clamp(0.86rem, 0.82vw, 1rem);
  line-height: 1.42;
}

.about-exec-copy strong {
  color: #1f7d3d;
  font-weight: 900;
}

.about-exec-image {
  margin: 0;
}

.about-exec-image img {
  display: block;
  width: 100%;
  max-height: clamp(150px, 17vw, 230px);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(31, 67, 47, 0.1);
}

.about-exec-image figcaption {
  margin-top: 6px;
  color: #62746b;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.about-exec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(10px, 1.1vw, 16px);
}

.about-exec-card,
.career-clean-learning,
.career-clean-apply,
.contact-clean-grid,
.contact-clean-topics {
  border: 1px solid rgba(40, 125, 61, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(31, 67, 47, 0.055);
}

.about-exec-card {
  padding: clamp(12px, 1.15vw, 18px);
}

.about-exec-card h2,
.career-clean-learning h2,
.career-clean-apply-copy h2,
.contact-clean-card h2 {
  margin: 0;
  color: #0a321d;
  font-size: clamp(1.02rem, 1.28vw, 1.55rem);
  line-height: 1.08;
}

.about-exec-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.about-exec-points span {
  padding: 8px 9px;
  border-left: 3px solid rgba(40, 125, 61, 0.58);
  border-radius: 12px;
  background: rgba(247, 252, 248, 0.9);
  color: #395147;
  font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  line-height: 1.25;
}

.about-exec-points strong {
  display: block;
  color: #103a24;
  font-size: 0.94em;
}

.about-exec-leader {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
}

.about-exec-leader img {
  width: 86px;
  aspect-ratio: 1;
  border: 1px solid rgba(40, 125, 61, 0.18);
  border-radius: 16px;
  object-fit: cover;
}

.about-exec-leader p {
  margin: 8px 0 0;
  color: #365346;
  font-size: clamp(0.8rem, 0.74vw, 0.94rem);
  line-height: 1.38;
}

.about-exec-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(40, 125, 61, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.about-exec-flow span,
.about-exec-flow a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #143626;
  background: rgba(247, 252, 248, 0.92);
  font-size: clamp(0.72rem, 0.7vw, 0.88rem);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.about-exec-flow a {
  color: #ffffff;
  background: linear-gradient(135deg, #0b4026, #287d3d);
}

.clean-kicker {
  margin-bottom: 7px;
  padding: 5px 10px;
  font-size: clamp(0.62rem, 0.62vw, 0.74rem);
}

.career-clean-learning,
.career-clean-apply {
  padding: clamp(11px, 1.05vw, 17px);
}

.career-clean-learning {
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(12px, 1.5vw, 24px);
}

.career-clean-tags {
  gap: 6px;
}

.career-clean-tags span,
.contact-clean-topics span {
  padding: 6px 9px;
  font-size: clamp(0.72rem, 0.68vw, 0.84rem);
}

.career-clean-apply {
  grid-template-columns: minmax(190px, 0.26fr) minmax(650px, 1fr);
}

.career-clean-form {
  gap: 8px;
}

.career-clean-form label {
  gap: 4px;
  font-size: 0.68rem;
}

.career-clean-form input,
.career-clean-form select,
.clean-submit {
  min-height: 36px;
  border-radius: 12px;
  font-size: 0.84rem;
}

.contact-clean-grid {
  padding: clamp(10px, 1vw, 15px);
  gap: 9px;
}

.contact-clean-card {
  min-height: 128px;
  padding: clamp(11px, 1vw, 16px);
  border-radius: 18px;
}

.contact-clean-card span {
  font-size: 0.68rem;
}

.contact-clean-card a {
  margin-top: 0;
  font-size: 0.86rem;
}

.contact-clean-topics {
  padding: 8px;
}

.career-clean-page + footer,
.contact-clean-page + footer,
.about-exec-page + footer {
  padding: 6px 0;
}

.career-clean-page + footer .footer-row,
.contact-clean-page + footer .footer-row,
.about-exec-page + footer .footer-row {
  min-height: 30px;
  font-size: clamp(0.72rem, 0.72vw, 0.88rem);
}

.career-clean-page + footer .linkedin-icon,
.contact-clean-page + footer .linkedin-icon,
.about-exec-page + footer .linkedin-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

@media (max-width: 1120px) {
  .about-exec-shell,
  .career-clean-shell,
  .contact-clean-shell {
    min-height: auto;
    align-content: start;
  }

  .about-exec-identity,
  .about-exec-grid,
  .career-clean-learning,
  .career-clean-apply,
  .contact-clean-grid {
    grid-template-columns: 1fr;
  }

  .career-clean-form {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 720px) {
  .about-exec-page,
  .career-clean-page,
  .contact-clean-page {
    padding: 14px 12px;
  }

  .about-exec-copy h1,
  .career-clean-intro h1,
  .contact-clean-intro h1 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .about-exec-points,
  .about-exec-flow,
  .career-clean-form {
    grid-template-columns: 1fr;
  }

  .about-exec-flow {
    border-radius: 18px;
  }

  .about-exec-leader {
    grid-template-columns: 72px 1fr;
  }

  .about-exec-leader img {
    width: 72px;
    border-radius: 14px;
  }
}

/* Final fit and homepage polish */
@media (min-width: 1121px) {
  .career-clean-shell {
    width: min(calc(100% - 2px), 1420px);
    min-height: auto;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    grid-template-areas:
      "intro learn"
      "intro apply";
    align-items: stretch;
    gap: clamp(10px, 1vw, 16px);
  }

  .career-clean-intro {
    grid-area: intro;
    display: grid;
    align-content: center;
    max-width: none;
    padding: clamp(16px, 1.6vw, 24px);
    border: 1px solid rgba(40, 125, 61, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 36px rgba(31, 67, 47, 0.045);
  }

  .career-clean-learning {
    grid-area: learn;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  }

  .career-clean-apply {
    grid-area: apply;
  }

  .career-clean-apply {
    grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  }
}

@media (max-height: 720px) and (min-width: 980px) {
  .career-clean-page,
  .about-exec-page,
  .contact-clean-page {
    padding-block: 6px;
  }

  .career-clean-shell,
  .about-exec-shell,
  .contact-clean-shell {
    gap: 7px;
  }

  .career-clean-intro h1,
  .about-exec-copy h1,
  .contact-clean-intro h1 {
    font-size: clamp(1.55rem, 2.2vw, 2.65rem);
  }

  .career-clean-intro p,
  .career-clean-learning p,
  .career-clean-apply-copy p,
  .about-exec-copy p,
  .contact-clean-intro p,
  .contact-clean-card p {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .career-clean-tags span,
  .contact-clean-topics span {
    padding-block: 5px;
  }

  .career-clean-form input,
  .career-clean-form select,
  .clean-submit {
    min-height: 32px;
  }
}

.zld-home-stage {
  align-items: center;
  padding-top: clamp(2px, 0.5vh, 8px);
  padding-bottom: clamp(10px, 1.2vh, 16px);
}

.zld-home-content {
  transform: translateY(clamp(-34px, -4vh, -14px));
}

.zld-home-heading {
  margin-bottom: clamp(12px, 1.8vh, 20px);
}

.zld-home-flow::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18) 32%, rgba(255, 255, 255, 0.06) 58%, rgba(255, 255, 255, 0.34)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 2px 7px rgba(255, 255, 255, 1),
    inset 0 19px 34px rgba(255, 255, 255, 0.36),
    inset 0 -20px 32px rgba(255, 255, 255, 0.16),
    inset 0 -4px 9px rgba(1, 12, 8, 0.22),
    0 16px 38px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.58),
    0 0 34px rgba(196, 255, 218, 0.18);
}

.zld-home-flow::after {
  opacity: 0.84;
  background:
    linear-gradient(90deg,
      rgba(49, 38, 24, 0.82) 0%,
      rgba(88, 78, 50, 0.68) 18%,
      rgba(78, 111, 95, 0.54) 39%,
      rgba(185, 188, 160, 0.48) 62%,
      rgba(146, 221, 230, 0.48) 82%,
      rgba(237, 255, 255, 0.72) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.68) 44%, transparent 56%);
}

.zld-home-flow strong {
  text-shadow:
    0 2px 9px rgba(0, 0, 0, 0.82),
    0 0 3px rgba(255, 255, 255, 0.78);
}

/* Final homepage ZLD pipe: make the recovery transition unmistakable. */
.zld-home-flow::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.22) 28%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.42)),
    linear-gradient(90deg, rgba(102, 63, 25, 0.3) 0%, rgba(102, 63, 25, 0.08) 26%, rgba(84, 142, 126, 0.12) 47%, rgba(181, 236, 244, 0.24) 74%, rgba(255, 255, 255, 0.48) 100%);
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.98),
    inset 0 18px 36px rgba(255, 255, 255, 0.38),
    inset 0 -18px 34px rgba(9, 35, 39, 0.2),
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.64),
    0 0 42px rgba(206, 252, 255, 0.28);
}

.zld-home-flow::after {
  opacity: 0.98;
  background:
    radial-gradient(circle at 9% 52%, rgba(70, 38, 14, 0.92) 0 5px, transparent 6px),
    radial-gradient(circle at 18% 40%, rgba(132, 82, 26, 0.8) 0 3px, transparent 4px),
    radial-gradient(circle at 31% 58%, rgba(153, 112, 54, 0.62) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(54, 31, 13, 0.94) 0%,
      rgba(118, 72, 24, 0.88) 22%,
      rgba(133, 118, 48, 0.78) 36%,
      rgba(69, 143, 119, 0.76) 52%,
      rgba(113, 205, 220, 0.72) 70%,
      rgba(220, 252, 255, 0.92) 88%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.88) 43%, transparent 58%);
  background-size:
    180px 100%,
    240px 100%,
    210px 100%,
    100% 100%,
    230% 100%;
  animation: zldWaterFlow 4.6s linear infinite;
  filter: saturate(1.25) contrast(1.08);
}

.auto-proof-logo-only {
  justify-content: flex-start;
}

.auto-proof-logo-only .brand {
  cursor: default;
  pointer-events: none;
}

/* Final Auto ZLD polish: stronger pipe, lifted stages, attached dropdowns. */
.auto-flow-pipe::before {
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 1),
    inset 0 24px 42px rgba(255, 255, 255, 0.46),
    inset 0 -24px 36px rgba(2, 21, 19, 0.22),
    inset 0 -5px 12px rgba(1, 12, 8, 0.34),
    0 20px 52px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 56px rgba(223, 255, 255, 0.42);
}

.auto-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 48%, rgba(68, 34, 10, 0.88) 0 5px, transparent 6px),
    radial-gradient(circle at 23% 58%, rgba(153, 88, 28, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 43%, rgba(124, 121, 43, 0.72) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(70, 36, 13, 0.98) 0%,
      rgba(150, 84, 25, 0.94) 22%,
      rgba(126, 130, 45, 0.86) 39%,
      rgba(55, 151, 126, 0.84) 55%,
      rgba(108, 212, 226, 0.82) 73%,
      rgba(222, 253, 255, 0.98) 91%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.95) 43%, transparent 58%);
  background-size:
    210px 100%,
    250px 100%,
    230px 100%,
    100% 100%,
    235% 100%;
  opacity: 1;
  animation: autoDirtyToRecoveredFlow 3.8s linear infinite;
  filter: saturate(1.28) contrast(1.08);
}

.auto-flow-stage {
  transition: transform 180ms ease, filter 180ms ease, text-shadow 180ms ease;
  will-change: transform;
}

.auto-flow-stage.is-open,
.auto-flow-stage:hover,
.auto-flow-stage:focus-visible {
  transform: translateY(-8px) scale(1.055);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.34)) brightness(1.14);
}

@keyframes autoStageHeartbeat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }

  14% {
    transform: translateY(-5px) scale(1.045);
    filter: brightness(1.12);
  }

  28% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }

  42% {
    transform: translateY(-3px) scale(1.028);
    filter: brightness(1.08);
  }
}

.auto-stage-dropdowns {
  min-height: clamp(104px, 15vh, 142px);
  margin-top: -4px;
}

.auto-stage-dropdown {
  left: var(--dropdown-left, 50%);
  width: min(var(--dropdown-width, 440px), calc(100vw - 32px));
  transform: translateX(-50%) translateY(12px);
  transform-origin: top center;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 10px;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
}

.auto-stage-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: var(--dropdown-pointer, 50%);
  width: 22px;
  height: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.auto-stage-dropdown.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.auto-stage-dropdown a {
  justify-content: flex-start;
  min-height: 38px;
  text-align: left;
}

.auto-proof-topline {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  color: #39454a;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.auto-proof-topline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auto-proof-topline span:not(:last-child)::after {
  content: "/";
  color: rgba(57, 69, 74, 0.42);
  font-weight: 900;
}

.auto-proof-heading {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
}

.auto-proof-heading h1 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
}

.auto-proof-heading [data-proof-role] {
  max-width: 62ch;
  padding: 10px 12px;
  border: 1px solid rgba(62, 74, 80, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.auto-proof-proposition {
  padding: 10px 12px;
}

.auto-proof-proposition p {
  font-size: clamp(0.9rem, 0.92vw, 1.05rem);
  line-height: 1.38;
}

@media (max-width: 980px) {
  .auto-flow-stage.is-open,
  .auto-flow-stage:hover,
  .auto-flow-stage:focus-visible {
    transform: translateY(-5px) scale(1.025);
  }

  .auto-stage-dropdowns {
    min-height: auto;
  }

  .auto-stage-dropdown {
    position: relative;
    left: auto;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }

  .auto-stage-dropdown::before {
    display: none;
  }

  .auto-proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auto-proof-heading [data-proof-role] {
    border-radius: 14px;
  }
}

/* True final product proof page alignment and footer fit. */
.auto-proof-page {
  min-height: auto;
  padding: 8px clamp(14px, 1.7vw, 24px) 6px;
}

.auto-proof-shell {
  grid-template-rows: auto auto minmax(158px, 1fr) auto auto;
  gap: 8px;
  min-height: calc(100svh - 196px);
  max-height: calc(100svh - 170px);
  padding: 10px 16px 12px;
}

.auto-proof-heading {
  grid-template-columns: max-content minmax(360px, 680px);
  justify-content: start;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.auto-proof-heading h1 {
  white-space: nowrap;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  max-width: 680px;
  margin: 0;
  padding: 11px 16px;
}

.auto-proof-rail {
  align-self: center;
}

.auto-proof-image img {
  height: clamp(104px, 17vh, 166px);
}

.auto-proof-proposition {
  padding: 9px 14px;
}

.auto-proof-tube {
  min-height: 64px;
  padding: 8px 12px;
}

.auto-proof-footer .footer-row {
  min-height: 42px;
  align-items: center;
}

@media (max-width: 980px) {
  .auto-proof-shell {
    min-height: auto;
    max-height: none;
  }

  .auto-proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auto-proof-heading h1 {
    white-space: normal;
  }

  .auto-proof-heading [data-proof-role] {
    max-width: none;
  }
}

/* Pharma ZLD selector: Auto philosophy with a cleaner validated-process feel. */
.pharma-selector-page {
  background: #eef5f7;
  color: #132027;
}

.pharma-selector-page::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.48), transparent 28%),
    linear-gradient(90deg, rgba(238, 247, 250, 0.86), rgba(245, 249, 251, 0.42) 34%, rgba(245, 249, 251, 0.42) 66%, rgba(238, 247, 250, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(234, 244, 247, 0.28) 50%, rgba(255, 255, 255, 0.78));
}

.pharma-selector-page .auto-selector-slide {
  filter: saturate(0.96) contrast(1.06) brightness(1.08);
}

.pharma-selector-page .auto-selector-kicker,
.pharma-selector-page .auto-selector-copy {
  color: rgba(19, 32, 39, 0.86);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.72);
}

.pharma-selector-page .auto-selector-shell h1 {
  color: #122129;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.82);
}

.pharma-flow-pipe::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 30%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(110, 36, 151, 0.18), rgba(36, 136, 143, 0.2), rgba(230, 255, 255, 0.48));
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 1),
    inset 0 24px 42px rgba(255, 255, 255, 0.5),
    inset 0 -24px 36px rgba(3, 34, 43, 0.2),
    0 20px 52px rgba(38, 60, 66, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.78),
    0 0 58px rgba(193, 251, 255, 0.5);
}

.pharma-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 46%, rgba(105, 26, 157, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 58%, rgba(159, 42, 188, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 44%, rgba(18, 142, 149, 0.82) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(82, 19, 139, 1) 0%,
      rgba(155, 42, 183, 0.98) 22%,
      rgba(70, 86, 166, 0.9) 38%,
      rgba(20, 149, 150, 0.9) 56%,
      rgba(91, 216, 230, 0.88) 74%,
      rgba(220, 252, 255, 0.98) 91%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.95) 43%, transparent 58%);
  background-size:
    210px 100%,
    250px 100%,
    230px 100%,
    100% 100%,
    235% 100%;
  opacity: 1;
  animation: pharmaValidatedFlow 3.8s linear infinite;
  filter: saturate(1.35) contrast(1.1);
}

@keyframes pharmaValidatedFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 235% 0;
  }

  100% {
    background-position: 210px 0, 250px 0, 230px 0, 0 0, -145% 0;
  }
}

.pharma-flow-stage strong {
  color: #ffffff;
}

.pharma-flow-stage span {
  color: rgba(255, 255, 255, 0.94);
}

.pharma-stage-dropdown {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 249, 252, 0.76));
}

.pharma-stage-dropdown a:hover,
.pharma-stage-dropdown a:focus-visible {
  border-color: rgba(50, 144, 160, 0.34);
  background: rgba(246, 254, 255, 0.96);
}

.pharma-proof-body {
  background:
    linear-gradient(120deg, rgba(226, 238, 242, 0.94), rgba(65, 82, 91, 0.7)),
    url("assets/curated/pharma-process.jpg") center / cover fixed;
}

.pharma-proof-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 252, 0.72));
}

.pharma-proof-tubes .auto-proof-tube::before {
  background:
    linear-gradient(90deg, rgba(135, 58, 178, 0.32), rgba(56, 158, 165, 0.34), rgba(225, 252, 255, 0.48));
}

.pharma-proof-page .auto-proof-topline span:first-child {
  color: #24333b;
}

/* Absolute final Auto product title stack: keep role under title on every product page. */
.auto-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  align-items: start;
  gap: 7px;
}

.auto-proof-heading h1 {
  margin: 0;
  white-space: normal;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  width: fit-content;
  max-width: min(720px, 100%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
}

/* Product title stack: role text sits directly below every Auto ZLD product title. */
.auto-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  align-items: start;
  gap: 7px;
}

.auto-proof-heading h1 {
  margin: 0;
  white-space: normal;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  width: fit-content;
  max-width: min(720px, 100%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
}

.auto-proof-shell {
  grid-template-rows: auto auto minmax(160px, 1fr) auto auto;
}

/* Product proof page final alignment and footer fit. */
.auto-proof-page {
  min-height: auto;
  padding: 8px clamp(14px, 1.7vw, 24px) 6px;
}

.auto-proof-shell {
  grid-template-rows: auto auto minmax(158px, 1fr) auto auto;
  gap: 8px;
  min-height: calc(100svh - 196px);
  max-height: calc(100svh - 170px);
  padding: 10px 16px 12px;
}

.auto-proof-heading {
  grid-template-columns: max-content minmax(360px, 680px);
  justify-content: start;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.auto-proof-heading h1 {
  white-space: nowrap;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  max-width: 680px;
  margin: 0;
  padding: 11px 16px;
}

.auto-proof-rail {
  align-self: center;
}

.auto-proof-image img {
  height: clamp(104px, 17vh, 166px);
}

.auto-proof-proposition {
  padding: 9px 14px;
}

.auto-proof-tube {
  min-height: 64px;
  padding: 8px 12px;
}

.auto-proof-footer .footer-row {
  min-height: 42px;
  align-items: center;
}

@media (max-width: 980px) {
  .auto-proof-shell {
    min-height: auto;
    max-height: none;
  }

  .auto-proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auto-proof-heading h1 {
    white-space: normal;
  }

  .auto-proof-heading [data-proof-role] {
    max-width: none;
  }
}

/* Focused product proof viewer */
.proof-view-body {
  min-height: 100svh;
  overflow: hidden;
  margin: 0;
  color: #0b2f1d;
  background:
    radial-gradient(circle at 14% 10%, rgba(40, 125, 61, 0.08), transparent 28rem),
    radial-gradient(circle at 86% 82%, rgba(48, 135, 82, 0.08), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #fbfefb 58%, #f5faf6 100%);
}

.proof-viewer {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(10px, 1.5vh, 18px);
  width: min(100% - clamp(20px, 4vw, 72px), 1540px);
  height: 100svh;
  margin-inline: auto;
  padding: clamp(12px, 2vh, 28px) 0;
}

.proof-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(40, 125, 61, 0.18);
  border-radius: 999px;
  color: #113923;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(31, 67, 47, 0.06);
  font-weight: 900;
  text-decoration: none;
}

.proof-back:hover,
.proof-back:focus {
  transform: translateY(-1px);
  border-color: rgba(40, 125, 61, 0.38);
  outline: none;
}

.proof-panel {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}

.proof-copy,
.proof-grid {
  min-height: 0;
  border: 1px solid rgba(40, 125, 61, 0.12);
  border-radius: clamp(20px, 2vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 48px rgba(31, 67, 47, 0.07);
}

.proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(18px, 2.5vw, 38px);
}

.proof-kicker {
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 11px;
  border: 1px solid rgba(40, 125, 61, 0.16);
  border-radius: 999px;
  color: #1f7d3d;
  background: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.65rem, 0.75vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: #092b19;
  font-size: clamp(2rem, 4.4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.proof-copy p:last-child {
  max-width: 46ch;
  margin: 14px 0 0;
  color: #365346;
  font-size: clamp(0.9rem, 1vw, 1.15rem);
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(12px, 1.4vw, 22px);
}

.proof-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(40, 125, 61, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(31, 67, 47, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(40, 125, 61, 0.35);
  box-shadow: 0 22px 44px rgba(31, 67, 47, 0.12);
}

.proof-card-image {
  position: relative;
  display: block;
  min-height: 0;
  border: 0;
  padding: 0;
  background: #f7fbf8;
  cursor: zoom-in;
}

.proof-card-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: 10px;
}

.proof-card-image span {
  position: absolute;
  inset: auto 14px 14px;
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 45, 25, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.proof-card:hover .proof-card-image span,
.proof-card:focus-within .proof-card-image span {
  opacity: 1;
  transform: translateY(0);
}

.proof-card-copy {
  padding: 12px 14px 14px;
}

.proof-card-copy p {
  margin: 0 0 6px;
  color: #1f7d3d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card-copy h2 {
  margin: 0;
  color: #0b2f1d;
  font-size: clamp(1rem, 1vw, 1.25rem);
  line-height: 1.08;
}

.proof-card-copy span {
  display: block;
  margin-top: 7px;
  color: #42594f;
  font-size: clamp(0.78rem, 0.78vw, 0.94rem);
  line-height: 1.33;
}

.proof-lightbox[hidden] {
  display: none;
}

.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 32px);
  background: rgba(3, 18, 10, 0.86);
}

.proof-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #0b2f1d;
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.proof-lightbox figure {
  display: grid;
  gap: 10px;
  width: min(100%, 1180px);
  max-height: 94svh;
  margin: 0;
}

.proof-lightbox img {
  width: 100%;
  max-height: calc(94svh - 56px);
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.proof-lightbox figcaption {
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 980px) {
  .proof-view-body {
    overflow: auto;
  }

  .proof-viewer {
    height: auto;
    min-height: 100svh;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    align-content: start;
  }

  .proof-copy h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 3.2rem);
  }

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

  .proof-card {
    grid-template-rows: minmax(220px, 42svh) auto;
  }
}

@media (max-height: 720px) and (min-width: 981px) {
  .proof-viewer {
    padding-block: 8px;
    gap: 8px;
  }

  .proof-copy {
    padding: 18px;
  }

  .proof-copy h1 {
    font-size: clamp(1.9rem, 3.2vw, 4rem);
  }

  .proof-copy p:last-child {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .proof-grid {
    gap: 9px;
    padding: 10px;
  }

  .proof-card-copy {
    padding: 9px 11px 10px;
  }

  .proof-card-copy span {
    font-size: 0.76rem;
    line-height: 1.24;
  }
}

/* Proof viewer clean pass: compact, image-led, no large content panels */
.proof-view-body {
  overflow: hidden;
  color: #10251a;
  background:
    radial-gradient(circle at 10% 12%, rgba(46, 125, 68, 0.05), transparent 24rem),
    radial-gradient(circle at 90% 88%, rgba(46, 125, 68, 0.05), transparent 28rem),
    #ffffff;
}

.proof-viewer {
  width: min(100% - clamp(22px, 4vw, 74px), 1320px);
  height: 100svh;
  padding-block: clamp(10px, 1.8vh, 22px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(8px, 1.2vh, 14px);
}

.proof-back {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(34, 112, 55, 0.2);
  border-radius: 999px;
  color: #164523;
  background: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  line-height: 1;
  box-shadow: none;
}

.proof-back::before {
  content: "<";
  margin-right: 8px;
  font-weight: 900;
}

.proof-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: 1fr;
  gap: clamp(8px, 1.2vh, 14px);
  align-items: start;
}

.proof-copy {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-kicker {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #25703a;
  background: transparent;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  letter-spacing: 0.03em;
  text-transform: none;
}

.proof-copy h1 {
  max-width: none;
  margin: 0;
  color: #0b2f1d;
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 1.05;
}

.proof-copy p:last-child {
  max-width: 76ch;
  margin: 0;
  color: #466154;
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.35;
}

.proof-grid {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(8px, 1.2vh, 14px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
}

.proof-main-image {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid rgba(34, 112, 55, 0.13);
  border-radius: 18px;
  background: #ffffff;
  cursor: zoom-in;
  overflow: hidden;
}

.proof-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-main-image span {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 8px);
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(11, 47, 29, 0.84);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.proof-main-image:hover span,
.proof-main-image:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.proof-detail {
  align-self: center;
  display: grid;
  gap: 7px;
  padding-left: clamp(10px, 1.4vw, 18px);
  border-left: 3px solid rgba(34, 112, 55, 0.35);
}

.proof-detail p {
  margin: 0;
  color: #25703a;
  font-size: clamp(0.72rem, 0.8vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-detail h2 {
  margin: 0;
  color: #0b2f1d;
  font-size: clamp(1.2rem, 1.7vw, 2rem);
  line-height: 1.05;
}

.proof-detail strong {
  color: #193f28;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
}

.proof-detail span {
  color: #4c6257;
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.38;
}

.proof-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-thumbs button {
  min-width: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(34, 112, 55, 0.14);
  border-radius: 14px;
  color: #173d27;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.proof-thumbs button:hover,
.proof-thumbs button:focus-visible,
.proof-thumbs button.is-active {
  border-color: rgba(34, 112, 55, 0.42);
  background: rgba(246, 252, 247, 0.98);
  transform: translateY(-1px);
  outline: none;
}

.proof-thumbs img {
  width: 56px;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 10px;
  background: #f5faf6;
}

.proof-thumbs span {
  overflow: hidden;
  display: -webkit-box;
  color: #244b33;
  font-size: clamp(0.78rem, 0.82vw, 0.92rem);
  line-height: 1.18;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 860px) {
  .proof-view-body {
    overflow: hidden;
  }

  .proof-viewer {
    height: 100svh;
    min-height: 0;
    width: min(100% - 22px, 620px);
    padding-block: 9px;
    gap: 7px;
  }

  .proof-main {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .proof-main-image {
    min-height: 0;
    height: min(35svh, 292px);
    padding: 7px;
  }

  .proof-detail {
    align-self: start;
    gap: 4px;
    padding-left: 10px;
  }

  .proof-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .proof-thumbs button {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 6px;
    text-align: center;
  }

  .proof-thumbs img {
    width: 100%;
    aspect-ratio: 1.45;
  }

  .proof-thumbs span {
    font-size: 0.68rem;
    -webkit-line-clamp: 1;
  }

  .proof-copy h1 {
    font-size: clamp(1.35rem, 5.4vw, 2rem);
  }

  .proof-copy p:last-child,
  .proof-detail span {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .proof-detail h2 {
    font-size: clamp(1.02rem, 4.4vw, 1.42rem);
  }
}

@media (max-height: 720px) and (min-width: 861px) {
  .proof-main {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.3fr);
  }

  .proof-thumbs button {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 6px;
  }

  .proof-thumbs img {
    width: 44px;
  }
}

/* ZLD catalogue v4: homepage-aligned glass flow with stage dropdowns */
.auto-catalog-page {
  --zld-ink: #10241b;
  --zld-muted: #52645b;
  --zld-line: rgba(17, 96, 48, 0.18);
  --zld-accent: #2f8a43;
  --zld-glass: rgba(255, 255, 255, 0.72);
  min-height: calc(100svh - var(--header-height, 82px));
  color: var(--zld-ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(47, 138, 67, 0.055), transparent 24rem),
    radial-gradient(circle at 86% 78%, rgba(32, 122, 80, 0.05), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 52%, #f7fbf8 100%);
}

/* ZLD catalogue v5: single glass scheme as the product menu */
.auto-catalog-page .auto-catalog-intro {
  padding: clamp(18px, 3vh, 34px) 0 clamp(8px, 1.3vh, 16px);
}

.auto-catalog-page .auto-catalog-kicker {
  display: none;
}

.auto-catalog-page .auto-catalog-intro h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(1.6rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.auto-catalog-page .auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 980px;
  margin-top: 8px;
  font-size: clamp(0.9rem, 1vw, 1.06rem);
}

.auto-catalog-page .auto-catalog-intro .auto-catalog-flow {
  display: none;
}

.auto-catalog-page .auto-catalog-shell {
  gap: clamp(12px, 1.5vh, 18px);
  padding-bottom: clamp(14px, 2vh, 28px);
}

.auto-catalog-page .auto-catalog-menu {
  z-index: 40;
}

.auto-catalog-page .auto-catalog-menu > span {
  display: none;
}

.auto-catalog-page .auto-catalog-tabs {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: clamp(74px, 8vh, 96px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(88, 81, 64, 0.38), rgba(202, 221, 214, 0.62), rgba(211, 241, 242, 0.56)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.72),
    inset 0 -20px 32px rgba(21, 64, 43, 0.12),
    0 18px 42px rgba(31, 67, 47, 0.12);
  overflow: visible;
}

.auto-catalog-page .auto-catalog-tabs::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08) 43%, rgba(10, 55, 35, 0.12) 100%);
  pointer-events: none;
}

.auto-catalog-page .auto-catalog-stage-group {
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.auto-catalog-page .auto-catalog-stage-group > strong {
  min-height: clamp(58px, 6.6vh, 78px);
  padding: 12px 28px 12px 18px;
  color: #fff;
  font-size: clamp(0.86rem, 1vw, 1.18rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.auto-catalog-page .auto-catalog-stage-group > strong::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 4;
  width: 26px;
  height: 26px;
  border-top: 5px solid rgba(255, 255, 255, 0.72);
  border-right: 5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 2px 5px rgba(10, 42, 28, 0.24));
}

.auto-catalog-page .auto-catalog-stage-group:last-child > strong::after {
  display: none;
}

.auto-catalog-page .auto-catalog-stage-group:hover,
.auto-catalog-page .auto-catalog-stage-group:focus-within,
.auto-catalog-page .auto-catalog-stage-group.is-active-stage {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
}

.auto-catalog-page .auto-catalog-stage-group.is-active-stage > strong {
  color: #f5fff2;
}

@media (min-width: 861px) {
  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
    top: calc(100% + 10px);
    width: min(270px, 92vw);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 247, 0.88));
  }
}

.auto-catalog-page .auto-product {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(14px, 1.6vw, 26px);
  padding: clamp(12px, 1.45vw, 22px);
}

.auto-catalog-page .auto-product-gallery,
.auto-catalog-page .auto-product-media {
  grid-template-rows: minmax(170px, 0.7fr) auto;
}

.auto-catalog-page .auto-main-figure {
  max-height: clamp(180px, 31vh, 300px);
}

.auto-catalog-page .auto-catalog-figure img {
  object-fit: contain;
}

.auto-catalog-page .auto-main-figure img {
  object-fit: cover;
}

@media (max-width: 860px) {
  .auto-catalog-page .auto-catalog-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 10px;
    border-radius: 24px;
  }

  .auto-catalog-page .auto-catalog-stage-group {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.28);
  }

  .auto-catalog-page .auto-catalog-stage-group > strong {
    min-height: 46px;
    justify-content: flex-start;
    padding-inline: 16px 42px;
    text-align: left;
  }

  .auto-catalog-page .auto-catalog-stage-group > strong::after {
    right: 18px;
    width: 10px;
    height: 10px;
    border-width: 3px;
    transform: translateY(-50%) rotate(135deg);
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
    margin: 0 10px 8px;
  }

  .auto-catalog-page .auto-product {
    grid-template-columns: 1fr;
  }

  .auto-catalog-page .auto-product-gallery,
  .auto-catalog-page .auto-product-media {
    grid-template-rows: auto;
  }
}

.auto-catalog-wrap {
  width: min(100% - clamp(22px, 4vw, 72px), 1480px);
  margin-inline: auto;
}

.auto-catalog-intro {
  padding: clamp(14px, 2.2vh, 28px) 0 clamp(8px, 1.4vh, 18px);
  text-align: center;
  background: transparent;
}

.auto-catalog-kicker,
.auto-catalog-label,
.auto-catalog-menu > span {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 6px 12px;
  border: 1px solid rgba(47, 138, 67, 0.18);
  border-radius: 999px;
  color: #1f6433;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(28, 79, 45, 0.055);
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auto-catalog-intro h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #0b2919;
  font-size: clamp(1.55rem, 2.55vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 1040px;
  margin: 8px auto 0;
  color: #44594d;
  font-size: clamp(0.92rem, 1vw, 1.1rem);
  line-height: 1.45;
}

.auto-catalog-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(12px, 1.6vh, 22px) auto 0;
  padding: 7px;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(31, 67, 47, 0.07);
  overflow: hidden;
}

.auto-catalog-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #173325;
  background: rgba(255, 255, 255, 0.34);
  font-size: clamp(0.76rem, 0.85vw, 0.98rem);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.auto-catalog-flow span::after {
  content: "";
  position: absolute;
  right: -9px;
  width: 18px;
  height: 2px;
  background: rgba(47, 138, 67, 0.35);
}

.auto-catalog-flow span:last-child::after {
  display: none;
}

.auto-catalog-flow span.is-active-stage {
  color: #061a10;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(222, 255, 229, 0.6));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 1px rgba(47, 138, 67, 0.18),
    0 12px 24px rgba(34, 122, 57, 0.12);
}

.auto-catalog-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.7vh, 22px);
  padding-bottom: clamp(18px, 3vh, 42px);
}

.auto-catalog-menu {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.auto-catalog-menu > span {
  margin-bottom: 0;
}

.auto-catalog-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  overflow: visible;
}

.auto-catalog-stage-group {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(31, 67, 47, 0.06);
}

.auto-catalog-stage-group > strong {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 30px 10px 14px;
  color: #12291e;
  font-size: clamp(0.76rem, 0.86vw, 0.98rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.auto-catalog-stage-group > strong::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(47, 138, 67, 0.75);
  border-bottom: 2px solid rgba(47, 138, 67, 0.75);
  transform: rotate(45deg) translateY(-2px);
}

.auto-catalog-stage-group.is-active-stage {
  border-color: rgba(47, 138, 67, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 255, 247, 0.7)),
    rgba(255, 255, 255, 0.7);
}

.auto-catalog-stage-group .auto-catalog-tab {
  display: flex;
}

@media (min-width: 861px) {
  .auto-catalog-stage-group .auto-catalog-tab {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    z-index: 20;
    width: min(280px, calc(100vw - 42px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -5px);
  }

  .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(2) {
    top: calc(100% + 52px);
  }

  .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(3) {
    top: calc(100% + 96px);
  }

  .auto-catalog-stage-group .auto-catalog-tab:nth-of-type(4) {
    top: calc(100% + 140px);
  }

  .auto-catalog-stage-group:hover .auto-catalog-tab,
  .auto-catalog-stage-group:focus-within .auto-catalog-tab,
  .auto-catalog-stage-group.is-active-stage .auto-catalog-tab.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.auto-catalog-tab {
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 999px;
  color: #1f3329;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 255, 251, 0.82));
  box-shadow: 0 12px 28px rgba(31, 67, 47, 0.08);
  font-size: clamp(0.74rem, 0.78vw, 0.9rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auto-catalog-tab:hover,
.auto-catalog-tab:focus-visible,
.auto-catalog-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(47, 138, 67, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 255, 243, 0.92));
  box-shadow: 0 16px 34px rgba(31, 67, 47, 0.11);
  outline: none;
}

.auto-catalog-stage {
  min-width: 0;
}

.auto-product {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(16px, 2vw, 34px);
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 28px);
  border: 1px solid rgba(47, 138, 67, 0.13);
  border-radius: clamp(22px, 2vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 54px rgba(31, 67, 47, 0.075);
}

.auto-product[hidden] {
  display: none !important;
}

.auto-product-gallery,
.auto-product-media {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 10px;
}

.auto-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auto-catalog-figure {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(47, 138, 67, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(31, 67, 47, 0.05);
  cursor: zoom-in;
}

.auto-catalog-figure::before {
  content: "SARTIME";
  position: absolute;
  inset: 0 0 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(10, 68, 32, 0.095);
  font-size: clamp(0.82rem, 1.12vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-10deg);
  pointer-events: none;
}

.auto-catalog-figure::after {
  content: "Click to enlarge";
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(11, 41, 25, 0.76);
  font-size: 0.72rem;
  font-weight: 850;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.auto-catalog-figure:hover,
.auto-catalog-figure:focus-within {
  transform: translateY(-2px);
  border-color: rgba(47, 138, 67, 0.26);
}

.auto-catalog-figure:hover::after,
.auto-catalog-figure:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.auto-catalog-figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: 8px;
  filter: none;
}

.auto-main-figure img {
  min-height: clamp(250px, 32vw, 440px);
}

.auto-thumb-row .auto-catalog-figure img {
  min-height: clamp(140px, 15vw, 210px);
}

.auto-catalog-figure figcaption {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 8px 10px;
  color: #243a2e;
  background: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.72rem, 0.72vw, 0.84rem);
  font-weight: 750;
  line-height: 1.22;
  text-align: center;
}

.auto-product-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: clamp(8px, 1.1vh, 14px);
}

.auto-product-copy .auto-catalog-label {
  margin: 0;
}

.auto-product-copy h2 {
  margin: 0;
  color: #0b2919;
  font-size: clamp(1.45rem, 2.05vw, 2.65rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.auto-product-copy p {
  margin: 0;
  color: var(--zld-muted);
  font-size: clamp(0.9rem, 0.96vw, 1.06rem);
  line-height: 1.45;
}

.auto-catalog-role,
.auto-plant-record,
.auto-catalog-proof-card {
  padding: 10px 13px;
  border: 1px solid rgba(47, 138, 67, 0.14);
  border-left: 4px solid rgba(47, 138, 67, 0.62);
  border-radius: 16px;
  color: #293d31;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
}

.auto-catalog-role strong,
.auto-plant-record strong {
  color: #132f20;
}

.auto-catalog-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.auto-catalog-data span {
  min-width: 0;
  display: block;
  padding: 12px 13px;
  border: 1px solid rgba(47, 138, 67, 0.13);
  border-radius: 17px;
  color: #3d4d44;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(31, 67, 47, 0.06);
  font-size: clamp(0.82rem, 0.84vw, 0.98rem);
  line-height: 1.24;
}

.auto-catalog-data span::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 138, 67, 0.68), rgba(124, 206, 118, 0.42));
}

.auto-catalog-data strong {
  display: block;
  margin-bottom: 4px;
  color: #111f18;
  font-size: clamp(1rem, 1.04vw, 1.2rem);
  line-height: 1.03;
}

.auto-catalog-proof-card {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 100%;
}

.auto-catalog-proof-card span {
  color: #2f8a43;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.auto-catalog-proof-card strong {
  color: #10241b;
  font-size: clamp(1.1rem, 1.25vw, 1.55rem);
  line-height: 1.1;
}

.auto-catalog-proof-card p {
  margin: 0;
  color: #52645b;
}

.auto-catalog-footer {
  background: #ffffff;
}

@media (max-width: 1080px) {
  .auto-catalog-flow,
  .auto-catalog-tabs {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .auto-catalog-flow span::after {
    display: none;
  }

  .auto-catalog-stage-group .auto-catalog-tab {
    position: static;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0 8px 8px;
  }

  .auto-product {
    grid-template-columns: 1fr;
  }

  .auto-product-gallery,
  .auto-product-media {
    grid-template-rows: auto auto;
  }

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

@media (max-width: 680px) {
  .auto-catalog-wrap {
    width: min(100% - 20px, 560px);
  }

  .auto-catalog-intro h1 {
    font-size: clamp(1.5rem, 8vw, 2.35rem);
  }

  .auto-product {
    padding: 12px;
    border-radius: 22px;
  }

  .auto-thumb-row,
  .auto-catalog-data {
    grid-template-columns: 1fr;
  }

  .auto-main-figure img,
  .auto-thumb-row .auto-catalog-figure img {
    min-height: 210px;
  }
}

/* Current homepage fit: keep the full header and ZLD headline visible on phones. */
@media (max-width: 760px) {
  .topbar .nav {
    padding: 10px 12px 8px;
  }

  .topbar .brand,
  .topbar .brand-title,
  .topbar .brand-tagline {
    width: min(190px, 100%);
  }

  .topbar .menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .topbar .menu-link,
  .topbar .menu-button {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 0 8px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .zld-home-stage {
    min-height: auto;
    padding-top: 14px;
  }

  .zld-home-content {
    transform: none;
  }

  .zld-home-heading {
    margin-bottom: 12px;
  }
}

@media (max-width: 340px) {
  .topbar .menu {
    grid-template-columns: 1fr;
  }
}

/* Clean auto ZLD catalogue build: compact intro, click-open stages, one-screen product view. */
.auto-catalog-page {
  --auto-green: #1f7a35;
  --auto-deep: #0b2919;
  --auto-line: rgba(47, 138, 67, 0.16);
  min-height: calc(100svh - 86px);
}

.auto-catalog-page .auto-catalog-wrap {
  width: min(100% - 52px, 1824px);
}

.auto-catalog-page .auto-catalog-intro {
  padding: clamp(8px, 1.2vh, 14px) 0 6px;
}

.auto-catalog-page .auto-catalog-kicker {
  display: none;
}

.auto-catalog-page .auto-catalog-intro h1 {
  max-width: 980px;
  color: #244737;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.25;
}

.auto-catalog-page .auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 820px;
  margin-top: 4px;
  color: #4a5f54;
  font-size: clamp(0.82rem, 0.82vw, 0.98rem);
  line-height: 1.3;
}

.auto-catalog-page .auto-catalog-flow {
  display: grid;
  margin-top: 8px;
  padding: 6px;
  border-color: rgba(36, 121, 54, 0.16);
  background:
    linear-gradient(180deg, rgba(236, 249, 241, 0.72), rgba(220, 242, 232, 0.46)),
    rgba(238, 248, 242, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 26px rgba(31, 67, 47, 0.055);
}

.auto-catalog-page .auto-catalog-intro .auto-catalog-flow {
  display: grid;
}

.auto-catalog-page .auto-catalog-flow span {
  min-height: 36px;
  padding: 7px 10px;
  color: #173325;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.72rem, 0.78vw, 0.92rem);
  cursor: pointer;
  animation: autoStagePulse 2.4s ease-in-out infinite;
}

.auto-catalog-page .auto-catalog-flow span:focus-visible {
  outline: 2px solid rgba(31, 122, 53, 0.45);
  outline-offset: 2px;
}

.auto-catalog-page .auto-catalog-flow span.is-active-stage {
  color: var(--auto-deep);
  background: rgba(47, 138, 67, 0.1);
  box-shadow: inset 0 0 0 1px rgba(47, 138, 67, 0.16);
}

@keyframes autoStagePulse {
  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.028);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.02);
  }
}

.auto-catalog-page .auto-catalog-shell {
  gap: 8px;
  padding-bottom: 8px;
}

.auto-catalog-page .auto-catalog-menu {
  z-index: 40;
  gap: 0;
}

.auto-catalog-page .auto-catalog-menu > span {
  display: none;
}

.auto-catalog-page .auto-catalog-menu:has(.is-menu-open) {
  padding-bottom: 190px;
}

.auto-catalog-page .auto-catalog-tabs {
  gap: 8px;
}

.auto-catalog-page .auto-catalog-stage-group {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(250, 255, 252, 0.82), rgba(236, 248, 241, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 22px rgba(31, 67, 47, 0.055);
}

.auto-catalog-page .auto-catalog-stage-group > strong {
  min-height: 42px;
  padding: 8px 30px 8px 12px;
  font-size: clamp(0.72rem, 0.78vw, 0.92rem);
  cursor: pointer;
  animation: autoStagePulse 2.4s ease-in-out infinite;
}

.auto-catalog-page .auto-catalog-stage-group > strong:focus-visible {
  outline: 2px solid rgba(31, 122, 53, 0.45);
  outline-offset: 2px;
}

.auto-catalog-page .auto-catalog-stage-group.is-active-stage {
  border-color: rgba(47, 138, 67, 0.28);
  background:
    linear-gradient(180deg, rgba(238, 249, 242, 0.92), rgba(221, 242, 231, 0.68)),
    rgba(238, 248, 242, 0.72);
}

.auto-catalog-page .auto-catalog-stage-group.is-menu-open {
  z-index: 80;
  border-color: rgba(47, 138, 67, 0.42);
}

@media (min-width: 861px) {
  .auto-catalog-page .auto-catalog-stage-group:hover .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group:focus-within .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group.is-active-stage .auto-catalog-tab.is-active {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -5px);
  }

  .auto-catalog-page .auto-catalog-stage-group.is-menu-open .auto-catalog-tab {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.auto-catalog-page .auto-catalog-tab,
.auto-catalog-page .auto-catalog-tab:hover,
.auto-catalog-page .auto-catalog-tab:focus-visible,
.auto-catalog-page .auto-catalog-tab.is-active {
  min-height: 34px;
  border-color: rgba(47, 138, 67, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 247, 0.92));
  box-shadow: 0 10px 24px rgba(31, 67, 47, 0.09);
  font-size: clamp(0.72rem, 0.76vw, 0.88rem);
}

.auto-catalog-page .auto-catalog-stage {
  min-width: 0;
}

.auto-catalog-page .auto-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
}

.auto-catalog-page .auto-product[hidden] {
  display: none !important;
}

.auto-catalog-page .auto-product-gallery,
.auto-catalog-page .auto-product-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-template-rows: none;
  gap: 10px;
}

.auto-catalog-page .auto-thumb-row {
  display: contents;
}

.auto-catalog-page .auto-catalog-figure {
  min-height: 0;
  border-radius: 14px;
}

.auto-catalog-page .auto-catalog-figure img,
.auto-catalog-page .auto-main-figure img,
.auto-catalog-page .auto-thumb-row .auto-catalog-figure img {
  height: clamp(118px, 18vh, 168px);
  min-height: 0;
  padding: 6px;
  object-fit: contain;
}

.auto-catalog-page .auto-catalog-figure figcaption {
  padding: 6px 8px;
  font-size: clamp(0.64rem, 0.66vw, 0.78rem);
  line-height: 1.18;
}

.auto-catalog-page .auto-catalog-figure::after {
  bottom: 34px;
}

.auto-catalog-page .auto-product-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.25fr);
  gap: 10px 14px;
  align-content: start;
}

.auto-catalog-page .auto-product-copy .auto-catalog-label {
  display: none;
}

.auto-catalog-page .auto-product-copy h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.2rem, 1.55vw, 1.85rem);
  line-height: 1.08;
}

.auto-catalog-page .auto-product-copy p {
  font-size: clamp(0.78rem, 0.82vw, 0.95rem);
  line-height: 1.32;
}

.auto-catalog-page .auto-catalog-role,
.auto-catalog-page .auto-plant-record,
.auto-catalog-page .auto-catalog-proof-card {
  padding: 8px 10px;
  border-left-width: 3px;
  border-radius: 13px;
}

.auto-catalog-page .auto-catalog-role {
  grid-column: 1 / -1;
}

.auto-catalog-page .auto-catalog-data {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.auto-catalog-page .auto-catalog-data span {
  padding: 9px 10px;
  border-radius: 13px;
  font-size: clamp(0.72rem, 0.74vw, 0.88rem);
  line-height: 1.18;
}

.auto-catalog-page .auto-catalog-data span::before {
  width: 24px;
  height: 2px;
  margin-bottom: 6px;
}

.auto-catalog-page .auto-catalog-data strong {
  font-size: clamp(0.86rem, 0.9vw, 1.04rem);
}

.auto-catalog-page .auto-plant-record {
  grid-column: 1 / -1;
}

.auto-catalog-page .auto-catalog-footer {
  padding: 6px 0;
}

.auto-catalog-page + .auto-catalog-footer .footer-row {
  min-height: 30px;
  font-size: clamp(0.7rem, 0.72vw, 0.84rem);
}

@media (max-width: 1180px) {
  .auto-catalog-page .auto-catalog-data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auto-catalog-page .auto-product-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .auto-catalog-page .auto-catalog-menu:has(.is-menu-open) {
    padding-bottom: 0;
  }

  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab {
    display: none;
  }

  .auto-catalog-page .auto-catalog-stage-group.is-menu-open .auto-catalog-tab {
    display: flex;
  }
}

@media (max-width: 680px) {
  .auto-catalog-page .auto-catalog-wrap {
    width: min(100% - 20px, 560px);
  }

  .auto-catalog-page .auto-catalog-flow,
  .auto-catalog-page .auto-catalog-tabs,
  .auto-catalog-page .auto-catalog-data {
    grid-template-columns: 1fr;
  }
}

/* Auto ZLD 1000/10 build: dark industrial system map with white-glass product proof sheets. */
.auto-catalog-page {
  --auto-glass: rgba(255, 255, 255, 0.76);
  --auto-glass-strong: rgba(255, 255, 255, 0.9);
  --auto-stroke: rgba(255, 255, 255, 0.38);
  --auto-ink: #0d2519;
  --auto-muted: #476054;
  --auto-accent: #2f8a43;
  --auto-accent-dark: #0f5226;
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  min-height: calc(100svh - 68px);
  padding: clamp(16px, 2.2vh, 28px) 0 clamp(14px, 2vh, 24px);
  color: var(--auto-ink);
  background:
    linear-gradient(120deg, rgba(5, 17, 12, 0.94), rgba(9, 33, 24, 0.78) 48%, rgba(6, 24, 18, 0.92)),
    url("assets/curated/auto-revamp-treatment-modules.jpg") center / cover fixed;
}

.auto-catalog-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(108, 206, 130, 0.16), transparent 24rem);
  background-size: 56px 56px, 56px 56px, auto;
  opacity: 0.72;
  pointer-events: none;
}

.auto-catalog-page .auto-catalog-wrap {
  width: min(100% - 48px, 1680px);
}

.auto-catalog-page .auto-catalog-intro {
  width: min(100% - 48px, 1680px);
  margin: 0 auto 12px;
  padding: clamp(18px, 2.4vw, 34px);
  border: 1px solid var(--auto-stroke);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 80px rgba(0, 0, 0, 0.28);
  text-align: left;
  backdrop-filter: blur(18px) saturate(1.16);
}

.auto-catalog-page .auto-catalog-intro .auto-catalog-wrap {
  width: 100%;
}

.auto-catalog-page .auto-catalog-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  border-color: rgba(47, 138, 67, 0.24);
  background: rgba(255, 255, 255, 0.64);
}

.auto-catalog-page .auto-catalog-intro h1 {
  max-width: 900px;
  margin: 0;
  color: var(--auto-ink);
  font-size: clamp(2rem, 4.2vw, 5.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.auto-catalog-page .auto-catalog-intro > .auto-catalog-wrap > p:not(.auto-catalog-kicker) {
  max-width: 1100px;
  margin: 14px 0 0;
  color: #223d30;
  font-size: clamp(0.98rem, 1.08vw, 1.28rem);
  line-height: 1.42;
}

.auto-catalog-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.auto-catalog-reasons span {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(47, 138, 67, 0.15);
  border-radius: 16px;
  color: var(--auto-muted);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: clamp(0.82rem, 0.86vw, 0.98rem);
  line-height: 1.32;
}

.auto-catalog-reasons strong {
  display: block;
  margin-bottom: 4px;
  color: var(--auto-ink);
  font-size: clamp(0.9rem, 0.92vw, 1.06rem);
}

.auto-catalog-page .auto-catalog-flow {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(47, 138, 67, 0.18);
  border-radius: 22px;
  background: rgba(8, 35, 22, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: visible;
}

.auto-catalog-page .auto-catalog-intro .auto-catalog-flow {
  display: grid !important;
}

.auto-catalog-page .auto-catalog-flow span {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 16px;
  color: #123222;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 250, 245, 0.62));
  box-shadow: 0 10px 24px rgba(20, 56, 35, 0.08);
  font-size: clamp(0.78rem, 0.86vw, 1rem);
  font-weight: 900;
  animation: autoStagePulse 2.8s ease-in-out infinite;
}

.auto-catalog-page .auto-catalog-flow span::after {
  display: none;
}

.auto-catalog-page .auto-catalog-flow span.is-active-stage {
  background:
    linear-gradient(180deg, rgba(234, 249, 239, 0.95), rgba(209, 237, 219, 0.7));
  box-shadow:
    inset 0 0 0 1px rgba(47, 138, 67, 0.22),
    0 12px 26px rgba(31, 67, 47, 0.1);
}

.auto-catalog-page .auto-catalog-shell {
  width: min(100% - 48px, 1680px);
  margin: 0 auto;
  padding: 0;
}

.auto-catalog-page .auto-catalog-menu {
  padding: clamp(14px, 1.7vw, 22px);
  border: 1px solid var(--auto-stroke);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 68px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.14);
}

.auto-catalog-page .auto-catalog-menu > span {
  display: block !important;
  margin: 0 0 12px;
  border: 0;
  padding: 0;
  color: var(--auto-muted);
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.76rem, 0.8vw, 0.92rem);
  letter-spacing: 0.08em;
}

.auto-catalog-page .auto-catalog-menu:has(.is-menu-open) {
  padding-bottom: clamp(14px, 1.7vw, 22px);
}

.auto-catalog-page .auto-catalog-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.auto-catalog-page .auto-catalog-stage-group {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 230px;
  padding: 12px;
  border: 1px solid rgba(47, 138, 67, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 34px rgba(18, 52, 31, 0.08);
}

.auto-catalog-page .auto-catalog-stage-group > strong {
  justify-content: flex-start;
  min-height: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(47, 138, 67, 0.14);
  color: var(--auto-ink);
  font-size: clamp(0.86rem, 0.95vw, 1.08rem);
  line-height: 1.15;
  text-align: left;
  cursor: default;
  animation: none;
}

.auto-catalog-page .auto-catalog-stage-group > strong::after {
  display: none;
}

.auto-catalog-page .auto-catalog-stage-group.is-active-stage,
.auto-catalog-page .auto-catalog-stage-group.is-menu-open {
  border-color: rgba(47, 138, 67, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 249, 244, 0.58));
}

@media (min-width: 861px) {
  .auto-catalog-page .auto-catalog-stage-group .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group:hover .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group:focus-within .auto-catalog-tab,
  .auto-catalog-page .auto-catalog-stage-group.is-active-stage .auto-catalog-tab.is-active,
  .auto-catalog-page .auto-catalog-stage-group.is-menu-open .auto-catalog-tab {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

.auto-catalog-page .auto-catalog-tab,
.auto-catalog-page .auto-catalog-tab:hover,
.auto-catalog-page .auto-catalog-tab:focus-visible,
.auto-catalog-page .auto-catalog-tab.is-active {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid rgba(47, 138, 67, 0.14);
  border-radius: 12px;
  color: #183325;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 253, 250, 0.64));
  box-shadow: 0 8px 20px rgba(31, 67, 47, 0.055);
  font-size: clamp(0.78rem, 0.8vw, 0.92rem);
  line-height: 1.18;
  text-align: left;
}

.auto-catalog-page .auto-catalog-tab:hover,
.auto-catalog-page .auto-catalog-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 138, 67, 0.34);
  background: rgba(255, 255, 255, 0.95);
}

.auto-catalog-page:not(.is-product-open) .auto-catalog-stage {
  display: none;
}

.auto-catalog-page.is-product-open .auto-catalog-stage {
  position: fixed;
  inset: 86px 18px 18px;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: auto;
}

.auto-catalog-page.is-product-open .auto-catalog-stage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(5, 17, 12, 0.86), rgba(9, 33, 24, 0.74)),
    rgba(4, 14, 10, 0.72);
  backdrop-filter: blur(8px);
}

.auto-catalog-page .auto-product {
  position: relative;
  width: min(100%, 1520px);
  max-height: calc(100svh - 118px);
  overflow: auto;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(16px, 1.7vw, 26px);
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 34px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px) saturate(1.12);
}

.auto-catalog-page .auto-product[hidden] {
  display: none !important;
}

.auto-product-close {
  position: sticky;
  top: 0;
  z-index: 20;
  justify-self: end;
  grid-column: 1 / -1;
  min-height: 38px;
  border: 1px solid rgba(47, 138, 67, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  color: #10321f;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(31, 67, 47, 0.09);
  font-weight: 850;
  cursor: pointer;
}

.auto-product-close:hover,
.auto-product-close:focus-visible {
  border-color: rgba(47, 138, 67, 0.44);
  outline: none;
}

.auto-catalog-page .auto-product-gallery,
.auto-catalog-page .auto-product-media {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 10px;
}

.auto-catalog-page .auto-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auto-catalog-page .auto-catalog-figure {
  border-color: rgba(47, 138, 67, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.auto-catalog-page .auto-catalog-figure img,
.auto-catalog-page .auto-main-figure img,
.auto-catalog-page .auto-thumb-row .auto-catalog-figure img {
  height: auto;
  min-height: clamp(150px, 18vw, 320px);
  max-height: 390px;
  object-fit: contain;
}

.auto-catalog-page .auto-main-figure img {
  min-height: clamp(240px, 26vw, 430px);
}

.auto-catalog-page .auto-product-copy {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
}

.auto-catalog-page .auto-product-copy .auto-catalog-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
}

.auto-catalog-page .auto-product-copy h2 {
  font-size: clamp(1.8rem, 2.5vw, 3.3rem);
  line-height: 1;
}

.auto-catalog-page .auto-product-copy p {
  font-size: clamp(0.94rem, 0.98vw, 1.12rem);
  line-height: 1.42;
}

.auto-catalog-page .auto-catalog-role {
  grid-column: auto;
  border-left-color: rgba(47, 138, 67, 0.8);
}

.auto-catalog-page .auto-catalog-data {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auto-catalog-page .auto-catalog-data span {
  min-height: 96px;
  padding: 12px;
}

.auto-catalog-page .auto-catalog-footer {
  background: rgba(255, 255, 255, 0.96);
}

body:has(.auto-catalog-page.is-product-open) {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .auto-catalog-reasons,
  .auto-catalog-page .auto-catalog-tabs {
    grid-template-columns: 1fr;
  }

  .auto-catalog-page .auto-catalog-stage-group {
    min-height: 0;
  }

  .auto-catalog-page .auto-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .auto-catalog-page {
    padding-top: 12px;
  }

  .auto-catalog-page .auto-catalog-wrap,
  .auto-catalog-page .auto-catalog-intro,
  .auto-catalog-page .auto-catalog-shell {
    width: min(100% - 22px, 680px);
  }

  .auto-catalog-page .auto-catalog-intro {
    padding: 16px;
    border-radius: 20px;
  }

  .auto-catalog-page .auto-catalog-intro h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .auto-catalog-page .auto-catalog-flow,
  .auto-catalog-reasons,
  .auto-catalog-page .auto-catalog-tabs,
  .auto-catalog-page .auto-catalog-data {
    grid-template-columns: 1fr;
  }

  .auto-catalog-page.is-product-open .auto-catalog-stage {
    inset: 12px;
  }

  .auto-catalog-page .auto-product {
    max-height: calc(100svh - 24px);
    padding: 14px;
    border-radius: 20px;
  }

  .auto-catalog-page .auto-thumb-row {
    grid-template-columns: 1fr;
  }
}

/* Clean Auto ZLD selector: one bright animated pipe, one job. */
.auto-selector-page {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 128px);
  overflow: hidden;
  padding: clamp(18px, 3vw, 42px);
  color: #ffffff;
  background: #07130d;
}

.auto-selector-slides {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #07130d;
}

.auto-selector-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1100ms ease;
}

.auto-selector-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.auto-selector-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.14), transparent 31%),
    linear-gradient(90deg, rgba(3, 15, 9, 0.78), rgba(3, 15, 9, 0.34) 35%, rgba(3, 15, 9, 0.34) 65%, rgba(3, 15, 9, 0.78)),
    linear-gradient(180deg, rgba(3, 15, 9, 0.5), rgba(3, 15, 9, 0.18) 48%, rgba(3, 15, 9, 0.56));
}

.auto-selector-shell {
  width: min(1380px, 100%);
  text-align: center;
  transform: translateY(clamp(-22px, -2.5vh, -8px));
}

.auto-selector-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auto-selector-shell h1 {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.7rem, 3.4vw, 3.8rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.auto-selector-copy {
  max-width: 790px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.82rem, 0.98vw, 1.08rem);
  font-weight: 650;
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.auto-flow-pipe {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: clamp(138px, 20vh, 190px);
  margin: clamp(22px, 4vh, 42px) auto 0;
  padding: clamp(8px, 1.2vw, 16px);
  border-radius: 999px;
  overflow: visible;
  backdrop-filter: blur(9px) saturate(1.18);
}

.auto-flow-pipe::before,
.auto-flow-pipe::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(22px, 4vw, 58px);
  left: clamp(22px, 4vw, 58px);
  height: clamp(94px, 9.5vw, 144px);
  border-radius: 999px;
  transform: translateY(-50%);
}

.auto-flow-pipe::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.4)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.2));
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 1),
    inset 0 20px 36px rgba(255, 255, 255, 0.38),
    inset 0 -22px 34px rgba(255, 255, 255, 0.18),
    inset 0 -4px 9px rgba(1, 12, 8, 0.24),
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.62),
    0 0 38px rgba(226, 255, 255, 0.3);
}

.auto-flow-pipe::after {
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(92, 52, 26, 0.94) 0%,
      rgba(143, 82, 31, 0.88) 16%,
      rgba(110, 121, 65, 0.76) 36%,
      rgba(71, 150, 126, 0.66) 54%,
      rgba(156, 225, 229, 0.7) 76%,
      rgba(241, 255, 255, 0.96) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.84) 44%, transparent 56%);
  background-size: 100% 100%, 240% 100%;
  opacity: 0.95;
  animation: autoDirtyToRecoveredFlow 5.2s linear infinite;
}

@keyframes autoDirtyToRecoveredFlow {
  0% {
    background-position: 0 0, 240% 0;
  }

  100% {
    background-position: 0 0, -140% 0;
  }
}

.auto-flow-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 118px;
  border: 0;
  padding: clamp(10px, 1.2vw, 18px);
  color: #ffffff;
  background: transparent;
  text-align: center;
  cursor: pointer;
  animation: autoStageHeartbeat 2.7s ease-in-out infinite;
}

.auto-flow-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: clamp(22px, 2vw, 34px);
  height: clamp(22px, 2vw, 34px);
  border-top: 4px solid rgba(255, 255, 255, 0.72);
  border-right: 4px solid rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.34));
  transform: translateY(-50%) rotate(45deg);
}

.auto-flow-stage strong {
  font-size: clamp(0.95rem, 1.15vw, 1.35rem);
  font-weight: 920;
  line-height: 1.05;
  text-shadow:
    0 2px 9px rgba(0, 0, 0, 0.86),
    0 0 3px rgba(255, 255, 255, 0.84);
}

.auto-flow-stage span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.64rem, 0.72vw, 0.82rem);
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.76);
}

.auto-flow-stage.is-open,
.auto-flow-stage:hover,
.auto-flow-stage:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.03);
}

@keyframes autoStageHeartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.035);
  }

  24% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.026);
  }
}

.auto-stage-dropdowns {
  position: relative;
  min-height: clamp(94px, 14vh, 132px);
  margin-top: 12px;
}

.auto-stage-dropdown {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  width: min(680px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 20px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px) saturate(1.12);
  transform: translateX(-50%);
}

.auto-stage-dropdown.is-open {
  display: grid;
}

.auto-stage-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(31, 48, 54, 0.12);
  border-radius: 12px;
  padding: 8px 10px;
  color: #1e3036;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 850;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(23, 38, 42, 0.08);
}

.auto-stage-dropdown a:hover,
.auto-stage-dropdown a:focus-visible {
  border-color: rgba(72, 109, 124, 0.32);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

/* Auto product proof magazine. */
.auto-proof-body {
  background:
    linear-gradient(120deg, rgba(30, 35, 37, 0.96), rgba(68, 60, 50, 0.88)),
    url("assets/curated/auto-revamp-treatment-modules.jpg") center / cover fixed;
}

.auto-proof-page {
  min-height: calc(100svh - 118px);
  padding: 10px clamp(14px, 2vw, 28px);
  color: #1d2528;
}

.auto-proof-shell {
  display: grid;
  grid-template-rows: auto auto minmax(190px, 0.92fr) auto auto;
  gap: 9px;
  width: min(1500px, 100%);
  min-height: calc(100svh - 138px);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(1.12);
}

.auto-proof-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #5b6468;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auto-proof-topline a {
  color: #263238;
}

.auto-proof-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.52fr);
  gap: 14px;
  align-items: end;
}

.auto-proof-heading p {
  margin: 0;
}

.auto-proof-heading [data-proof-category] {
  color: #5d6467;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auto-proof-heading h1 {
  margin: 3px 0 0;
  color: #121a1d;
  font-size: clamp(1.55rem, 2.3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.auto-proof-heading [data-proof-role] {
  color: #2c373b;
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 750;
  line-height: 1.34;
}

.auto-proof-rail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
  min-height: 0;
}

.auto-proof-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(57, 68, 72, 0.16);
  border-radius: 999px;
  color: #253237;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 18px rgba(24, 32, 36, 0.08);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.auto-proof-arrow[hidden] {
  visibility: hidden;
  display: block;
}

.auto-proof-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  min-width: 0;
  overflow: hidden;
}

.auto-proof-image {
  flex: 1 1 0;
  max-width: 310px;
  min-width: 120px;
  border: 1px solid rgba(55, 65, 68, 0.12);
  border-radius: 16px;
  padding: 6px;
  color: #303a3d;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 24px rgba(29, 38, 41, 0.08);
  opacity: calc(1 - (min(var(--distance), 2) * 0.18));
  transform: scale(calc(0.86 + (1 - min(var(--distance), 1)) * 0.14));
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.auto-proof-image.is-center {
  z-index: 3;
  border-color: rgba(80, 94, 100, 0.34);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 16px 38px rgba(26, 34, 38, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.72);
}

.auto-proof-image img {
  width: 100%;
  height: clamp(110px, 19vh, 178px);
  object-fit: contain;
}

.auto-proof-image span {
  display: block;
  min-height: 34px;
  padding: 6px 5px 2px;
  font-size: clamp(0.62rem, 0.68vw, 0.76rem);
  font-weight: 750;
  line-height: 1.15;
}

.auto-proof-proposition {
  padding: 12px 14px;
  border: 1px solid rgba(57, 68, 72, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.auto-proof-proposition p {
  margin: 0;
  color: #253136;
  font-size: clamp(0.95rem, 1vw, 1.16rem);
  font-weight: 620;
  line-height: 1.45;
}

.auto-proof-tubes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 9px;
  align-items: stretch;
}

.auto-proof-tube {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(76px, 0.42fr) minmax(0, 0.58fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(70, 78, 82, 0.13);
  border-radius: 999px;
  color: #222b2e;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.44));
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.95),
    inset 0 -8px 16px rgba(60, 70, 75, 0.08),
    0 10px 24px rgba(25, 33, 37, 0.1);
  animation: proofTubeBounce 1.55s cubic-bezier(.2, .7, .28, 1.24) infinite;
  animation-delay: var(--tube-delay);
}

.auto-proof-tube::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(132, 82, 42, 0.35), rgba(169, 186, 178, 0.26), rgba(222, 247, 255, 0.42));
  opacity: 0.72;
  pointer-events: none;
}

.auto-proof-tube strong,
.auto-proof-tube span {
  position: relative;
  z-index: 1;
}

.auto-proof-tube strong {
  font-size: clamp(0.98rem, 1.05vw, 1.24rem);
  line-height: 1;
}

.auto-proof-tube span {
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 720;
  line-height: 1.22;
}

@keyframes proofTubeBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  22% {
    transform: translateY(-10px) scale(1.035);
  }

  42% {
    transform: translateY(2px) scale(0.992);
  }

  58% {
    transform: translateY(-5px) scale(1.016);
  }
}

.auto-proof-footer {
  background: rgba(255, 255, 255, 0.94);
}

.auto-proof-footer .footer-row {
  min-height: 34px;
  font-size: 0.76rem;
}

.auto-proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 15, 17, 0.82);
  backdrop-filter: blur(10px);
}

.auto-proof-lightbox[hidden] {
  display: none;
}

.auto-proof-lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  cursor: pointer;
}

.auto-proof-lightbox figure {
  width: min(1100px, 100%);
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.auto-proof-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.auto-proof-lightbox figcaption {
  padding: 10px 14px;
  color: #242d31;
  font-weight: 750;
  text-align: center;
}

.auto-catalog-page .auto-catalog-figure::before,
.auto-proof-page .auto-catalog-figure::before,
.auto-proof-page .auto-proof-image::before,
.auto-selector-page .auto-selector-slide::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 980px) {
  .auto-flow-pipe,
  .auto-proof-heading,
  .auto-proof-tube {
    grid-template-columns: 1fr;
  }

  .auto-flow-pipe {
    border-radius: 28px;
  }

  .auto-flow-pipe::before,
  .auto-flow-pipe::after,
  .auto-flow-stage:not(:last-child)::after {
    display: none;
  }

  .auto-flow-stage {
    min-height: 72px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
  }

  .auto-proof-shell {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .auto-selector-page {
    min-height: auto;
    padding: 16px 12px;
  }

  .auto-selector-shell {
    transform: none;
  }

  .auto-proof-page {
    padding: 10px;
  }

  .auto-proof-rail {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .auto-proof-arrow {
    width: 34px;
    height: 34px;
  }

  .auto-proof-images {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .auto-proof-image {
    flex: 0 0 78%;
  }
}

/* Final Auto ZLD polish overrides must stay after the clean Auto block. */
.auto-flow-pipe::before {
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 1),
    inset 0 24px 42px rgba(255, 255, 255, 0.46),
    inset 0 -24px 36px rgba(2, 21, 19, 0.22),
    inset 0 -5px 12px rgba(1, 12, 8, 0.34),
    0 20px 52px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 56px rgba(223, 255, 255, 0.42);
}

.auto-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 48%, rgba(68, 34, 10, 0.88) 0 5px, transparent 6px),
    radial-gradient(circle at 23% 58%, rgba(153, 88, 28, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 43%, rgba(124, 121, 43, 0.72) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(70, 36, 13, 0.98) 0%,
      rgba(150, 84, 25, 0.94) 22%,
      rgba(126, 130, 45, 0.86) 39%,
      rgba(55, 151, 126, 0.84) 55%,
      rgba(108, 212, 226, 0.82) 73%,
      rgba(222, 253, 255, 0.98) 91%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.95) 43%, transparent 58%);
  background-size:
    210px 100%,
    250px 100%,
    230px 100%,
    100% 100%,
    235% 100%;
  opacity: 1;
  animation: autoDirtyToRecoveredFlow 3.8s linear infinite;
  filter: saturate(1.28) contrast(1.08);
}

.auto-flow-stage {
  transition: transform 180ms ease, filter 180ms ease, text-shadow 180ms ease;
  will-change: transform;
}

.auto-flow-stage.is-open,
.auto-flow-stage:hover,
.auto-flow-stage:focus-visible {
  transform: translateY(-8px) scale(1.055);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.34)) brightness(1.14);
}

@keyframes autoStageHeartbeat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }

  14% {
    transform: translateY(-5px) scale(1.045);
    filter: brightness(1.12);
  }

  28% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }

  42% {
    transform: translateY(-3px) scale(1.028);
    filter: brightness(1.08);
  }
}

.auto-stage-dropdowns {
  min-height: clamp(104px, 15vh, 142px);
  margin-top: -4px;
}

.auto-stage-dropdown {
  left: var(--dropdown-left, 50%);
  width: min(var(--dropdown-width, 440px), calc(100vw - 32px));
  transform: translateX(-50%) translateY(12px);
  transform-origin: top center;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 10px;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
}

.auto-stage-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: var(--dropdown-pointer, 50%);
  width: 22px;
  height: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.auto-stage-dropdown.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.auto-stage-dropdown a {
  justify-content: flex-start;
  min-height: 38px;
  text-align: left;
}

.auto-proof-topline {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  color: #39454a;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.auto-proof-topline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auto-proof-topline span:not(:last-child)::after {
  content: "/";
  color: rgba(57, 69, 74, 0.42);
  font-weight: 900;
}

.auto-proof-heading {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
}

.auto-proof-heading h1 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
}

.auto-proof-heading [data-proof-role] {
  max-width: 62ch;
  padding: 10px 12px;
  border: 1px solid rgba(62, 74, 80, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.auto-proof-proposition {
  padding: 10px 12px;
}

.auto-proof-proposition p {
  font-size: clamp(0.9rem, 0.92vw, 1.05rem);
  line-height: 1.38;
}

@media (max-width: 980px) {
  .auto-flow-stage.is-open,
  .auto-flow-stage:hover,
  .auto-flow-stage:focus-visible {
    transform: translateY(-5px) scale(1.025);
  }

  .auto-stage-dropdowns {
    min-height: auto;
  }

  .auto-stage-dropdown {
    position: relative;
    left: auto;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }

  .auto-stage-dropdown::before {
    display: none;
  }

  .auto-proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auto-proof-heading [data-proof-role] {
    border-radius: 14px;
  }
}

/* Winning Auto product title stack: role text directly below every product title. */
.auto-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  align-items: start;
  gap: 7px;
}

.auto-proof-heading h1 {
  margin: 0;
  white-space: normal;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  width: fit-content;
  max-width: min(720px, 100%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
}

.auto-proof-shell {
  grid-template-rows: auto auto minmax(160px, 1fr) auto auto;
}

/* True final product proof page alignment and footer fit. */
.auto-proof-page {
  min-height: auto;
  padding: 8px clamp(14px, 1.7vw, 24px) 6px;
}

.auto-proof-shell {
  grid-template-rows: auto auto minmax(158px, 1fr) auto auto;
  gap: 8px;
  min-height: calc(100svh - 196px);
  max-height: calc(100svh - 170px);
  padding: 10px 16px 12px;
}

.auto-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  align-items: start;
  gap: 7px;
}

.auto-proof-heading h1 {
  margin: 0;
  white-space: normal;
}

.auto-proof-heading [data-proof-role] {
  justify-self: start;
  width: fit-content;
  max-width: min(720px, 100%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
}

.auto-proof-rail {
  align-self: center;
}

.auto-proof-image img {
  height: clamp(104px, 17vh, 166px);
}

.auto-proof-proposition {
  padding: 9px 14px;
}

.auto-proof-tube {
  min-height: 64px;
  padding: 8px 12px;
}

.auto-proof-footer .footer-row {
  min-height: 42px;
  align-items: center;
}

@media (max-width: 980px) {
  .auto-proof-shell {
    min-height: auto;
    max-height: none;
  }

  .auto-proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auto-proof-heading h1 {
    white-space: normal;
  }

  .auto-proof-heading [data-proof-role] {
    max-width: none;
  }
}


/* Absolute final Pharma ZLD selector and proof styling. */
.pharma-selector-page {
  background: #eef5f7;
  color: #132027;
}

.pharma-selector-page::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.48), transparent 28%),
    linear-gradient(90deg, rgba(238, 247, 250, 0.86), rgba(245, 249, 251, 0.42) 34%, rgba(245, 249, 251, 0.42) 66%, rgba(238, 247, 250, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(234, 244, 247, 0.28) 50%, rgba(255, 255, 255, 0.78));
}

.pharma-selector-page .auto-selector-slide {
  filter: saturate(0.96) contrast(1.06) brightness(1.08);
}

.pharma-selector-page .auto-selector-kicker,
.pharma-selector-page .auto-selector-copy {
  color: rgba(19, 32, 39, 0.86);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.72);
}

.pharma-selector-page .auto-selector-shell h1 {
  color: #122129;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.82);
}

.pharma-flow-pipe::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 30%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(110, 36, 151, 0.18), rgba(36, 136, 143, 0.2), rgba(230, 255, 255, 0.48));
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 1),
    inset 0 24px 42px rgba(255, 255, 255, 0.5),
    inset 0 -24px 36px rgba(3, 34, 43, 0.2),
    0 20px 52px rgba(38, 60, 66, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.78),
    0 0 58px rgba(193, 251, 255, 0.5);
}

.pharma-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 46%, rgba(105, 26, 157, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 58%, rgba(159, 42, 188, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 44%, rgba(18, 142, 149, 0.82) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(82, 19, 139, 1) 0%,
      rgba(155, 42, 183, 0.98) 22%,
      rgba(70, 86, 166, 0.9) 38%,
      rgba(20, 149, 150, 0.9) 56%,
      rgba(91, 216, 230, 0.88) 74%,
      rgba(220, 252, 255, 0.98) 91%,
      rgba(255, 255, 255, 1) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.95) 43%, transparent 58%);
  background-size: 210px 100%, 250px 100%, 230px 100%, 100% 100%, 235% 100%;
  opacity: 1;
  animation: pharmaValidatedFlow 3.8s linear infinite;
  filter: saturate(1.35) contrast(1.1);
}

@keyframes pharmaValidatedFlow {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 235% 0; }
  100% { background-position: 210px 0, 250px 0, 230px 0, 0 0, -145% 0; }
}

.pharma-flow-stage strong,
.pharma-flow-stage span {
  color: #ffffff;
}

.pharma-stage-dropdown {
  border-color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 249, 252, 0.76));
}

.pharma-stage-dropdown a:hover,
.pharma-stage-dropdown a:focus-visible {
  border-color: rgba(50, 144, 160, 0.34);
  background: rgba(246, 254, 255, 0.96);
}

.pharma-proof-body {
  background:
    linear-gradient(120deg, rgba(226, 238, 242, 0.94), rgba(65, 82, 91, 0.7)),
    url("assets/curated/pharma-process.jpg") center / cover fixed;
}

.pharma-proof-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 252, 0.72));
}

.pharma-proof-tubes .auto-proof-tube::before {
  background: linear-gradient(90deg, rgba(135, 58, 178, 0.32), rgba(56, 158, 165, 0.34), rgba(225, 252, 255, 0.48));
}

/* Final Pharma selector tuning: softer pipe, clearer background image. */
.pharma-selector-page::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(5, 18, 24, 0.34), rgba(238, 248, 251, 0.08) 34%, rgba(238, 248, 251, 0.08) 66%, rgba(5, 18, 24, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 50%, rgba(3, 14, 18, 0.2));
}

.pharma-selector-page .auto-selector-slide {
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
}

.pharma-selector-page .auto-selector-kicker,
.pharma-selector-page .auto-selector-copy {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.68);
}

.pharma-selector-page .auto-selector-shell h1 {
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.62);
}

.pharma-flow-pipe::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.07) 58%, rgba(255, 255, 255, 0.42)),
    linear-gradient(90deg, rgba(120, 65, 150, 0.12), rgba(51, 136, 143, 0.16), rgba(226, 254, 255, 0.34));
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.95),
    inset 0 20px 38px rgba(255, 255, 255, 0.34),
    inset 0 -22px 34px rgba(3, 34, 43, 0.18),
    0 18px 46px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 0 42px rgba(193, 251, 255, 0.28);
}

.pharma-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 46%, rgba(112, 50, 151, 0.48) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 58%, rgba(151, 72, 170, 0.38) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 44%, rgba(55, 150, 154, 0.46) 0 4px, transparent 5px),
    linear-gradient(90deg,
      rgba(91, 42, 133, 0.72) 0%,
      rgba(139, 74, 163, 0.62) 23%,
      rgba(78, 105, 156, 0.52) 39%,
      rgba(40, 147, 151, 0.58) 57%,
      rgba(124, 217, 230, 0.58) 76%,
      rgba(224, 253, 255, 0.82) 92%,
      rgba(255, 255, 255, 0.92) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.76) 43%, transparent 58%);
  background-size: 210px 100%, 250px 100%, 230px 100%, 100% 100%, 235% 100%;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.02);
}

/* Final home-page ZLD master plant pipe: raw effluent to recovered water. */
.zld-home-flow::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22) 28%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.4)),
    linear-gradient(90deg,
      rgba(68, 42, 18, 0.34) 0%,
      rgba(120, 91, 42, 0.16) 26%,
      rgba(58, 117, 106, 0.14) 50%,
      rgba(210, 205, 176, 0.2) 72%,
      rgba(225, 252, 255, 0.42) 100%);
  box-shadow:
    inset 0 3px 9px rgba(255, 255, 255, 0.98),
    inset 0 20px 38px rgba(255, 255, 255, 0.36),
    inset 0 -20px 34px rgba(7, 33, 38, 0.22),
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.62),
    0 0 42px rgba(206, 252, 255, 0.26);
}

.zld-home-flow::after {
  opacity: 0.98;
  background:
    radial-gradient(circle at 7% 53%, rgba(49, 28, 12, 0.94) 0 5px, transparent 6px),
    radial-gradient(circle at 14% 39%, rgba(92, 55, 19, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 24% 59%, rgba(143, 98, 37, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 39% 43%, rgba(92, 119, 69, 0.5) 0 3px, transparent 4px),
    radial-gradient(circle at 63% 49%, rgba(230, 221, 178, 0.42) 0 3px, transparent 4px),
    linear-gradient(90deg,
      rgba(46, 27, 12, 0.98) 0%,
      rgba(101, 63, 23, 0.94) 16%,
      rgba(158, 115, 43, 0.86) 31%,
      rgba(92, 124, 84, 0.78) 45%,
      rgba(38, 150, 154, 0.76) 59%,
      rgba(193, 184, 132, 0.74) 72%,
      rgba(230, 226, 195, 0.78) 81%,
      rgba(170, 232, 244, 0.84) 91%,
      rgba(255, 255, 255, 0.98) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.86) 43%, transparent 58%);
  background-size:
    170px 100%,
    210px 100%,
    250px 100%,
    260px 100%,
    310px 100%,
    100% 100%,
    230% 100%;
  animation: zldPlantWaterFlow 4.8s linear infinite;
  filter: saturate(1.18) contrast(1.06);
}

@keyframes zldPlantWaterFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 230% 0;
  }

  100% {
    background-position: 170px 0, 210px 0, 250px 0, 260px 0, 310px 0, 0 0, -140% 0;
  }
}

@media (max-width: 1180px) {
  .zld-home-flow::after {
    background:
      linear-gradient(180deg,
        rgba(46, 27, 12, 0.98) 0%,
        rgba(101, 63, 23, 0.94) 16%,
        rgba(158, 115, 43, 0.86) 31%,
        rgba(92, 124, 84, 0.78) 45%,
        rgba(38, 150, 154, 0.76) 59%,
        rgba(193, 184, 132, 0.74) 72%,
        rgba(230, 226, 195, 0.78) 81%,
        rgba(170, 232, 244, 0.84) 91%,
        rgba(255, 255, 255, 0.98) 100%),
      linear-gradient(10deg, transparent 0%, rgba(255, 255, 255, 0.78) 42%, transparent 58%);
    background-size: 100% 100%, 100% 230%;
    animation: zldPlantWaterFlowMobile 5.2s linear infinite;
  }
}

@keyframes zldPlantWaterFlowMobile {
  0% { background-position: 0 0, 0 230%; }
  100% { background-position: 0 0, 0 -140%; }
}

/* Absolute final Other Industries selector and proof styling. */
.other-selector-page {
  background: #101719;
  color: #ffffff;
}

.other-selector-page::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(2, 9, 12, 0.72), rgba(2, 9, 12, 0.28) 34%, rgba(2, 9, 12, 0.28) 66%, rgba(2, 9, 12, 0.72)),
    linear-gradient(180deg, rgba(2, 9, 12, 0.42), rgba(2, 9, 12, 0.1) 50%, rgba(2, 9, 12, 0.52));
}

.other-selector-page .auto-selector-slide {
  filter: saturate(1.08) contrast(1.08) brightness(0.9);
}

.other-selector-page .auto-selector-kicker,
.other-selector-page .auto-selector-copy {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.74);
}

.other-selector-page .auto-selector-shell h1 {
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.other-flow-pipe::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.06) 58%, rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(36, 41, 126, 0.22), rgba(154, 91, 31, 0.18), rgba(84, 118, 90, 0.16), rgba(57, 151, 155, 0.2), rgba(230, 255, 255, 0.36));
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.95),
    inset 0 22px 40px rgba(255, 255, 255, 0.34),
    inset 0 -22px 36px rgba(2, 20, 25, 0.28),
    0 20px 52px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.58),
    0 0 46px rgba(180, 247, 255, 0.24);
}

.other-flow-pipe::after {
  background:
    radial-gradient(circle at 8% 48%, rgba(30, 28, 112, 0.82) 0 5px, transparent 6px),
    radial-gradient(circle at 19% 58%, rgba(71, 47, 145, 0.68) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 42%, rgba(164, 91, 27, 0.68) 0 4px, transparent 5px),
    radial-gradient(circle at 48% 55%, rgba(93, 126, 83, 0.5) 0 3px, transparent 4px),
    linear-gradient(90deg,
      rgba(21, 25, 112, 0.94) 0%,
      rgba(59, 44, 151, 0.86) 17%,
      rgba(159, 90, 26, 0.82) 33%,
      rgba(96, 122, 83, 0.76) 48%,
      rgba(33, 146, 151, 0.76) 63%,
      rgba(185, 213, 186, 0.74) 77%,
      rgba(174, 232, 243, 0.84) 90%,
      rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.84) 43%, transparent 58%);
  background-size: 180px 100%, 220px 100%, 250px 100%, 280px 100%, 100% 100%, 235% 100%;
  opacity: 0.98;
  animation: otherIndustrialFlow 4.4s linear infinite;
  filter: saturate(1.16) contrast(1.06);
}

@keyframes otherIndustrialFlow {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 235% 0; }
  100% { background-position: 180px 0, 220px 0, 250px 0, 280px 0, 0 0, -145% 0; }
}

.other-flow-stage strong,
.other-flow-stage span {
  color: #ffffff;
}

.other-stage-dropdown {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 244, 244, 0.72));
}

.other-stage-dropdown a:hover,
.other-stage-dropdown a:focus-visible {
  border-color: rgba(47, 122, 139, 0.36);
  background: rgba(248, 253, 253, 0.96);
}

.other-proof-body {
  background:
    linear-gradient(120deg, rgba(20, 28, 31, 0.9), rgba(76, 68, 58, 0.7)),
    url("assets/curated/front1-plant.jpg") center / cover fixed;
}

.other-proof-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 245, 245, 0.68));
}

.other-proof-tubes .auto-proof-tube::before {
  background: linear-gradient(90deg, rgba(35, 45, 140, 0.28), rgba(162, 95, 35, 0.3), rgba(69, 153, 156, 0.34), rgba(225, 252, 255, 0.46));
}

@media (max-width: 1180px) {
  .other-flow-pipe::after {
    background:
      linear-gradient(180deg,
        rgba(21, 25, 112, 0.94) 0%,
        rgba(59, 44, 151, 0.86) 17%,
        rgba(159, 90, 26, 0.82) 33%,
        rgba(96, 122, 83, 0.76) 48%,
        rgba(33, 146, 151, 0.76) 63%,
        rgba(185, 213, 186, 0.74) 77%,
        rgba(174, 232, 243, 0.84) 90%,
        rgba(255, 255, 255, 0.96) 100%),
      linear-gradient(10deg, transparent 0%, rgba(255, 255, 255, 0.74) 42%, transparent 58%);
    background-size: 100% 100%, 100% 230%;
    animation: otherIndustrialFlowMobile 5.2s linear infinite;
  }
}

@keyframes otherIndustrialFlowMobile {
  0% { background-position: 0 0, 0 230%; }
  100% { background-position: 0 0, 0 -145%; }
}

/* Final sector pipe harmonization: wider, grounded, same flow behavior. */
.auto-selector-shell {
  width: min(1600px, 98vw);
}

.auto-flow-pipe {
  width: min(1560px, 96vw);
  min-height: clamp(142px, 19vh, 188px);
  margin-inline: auto;
  padding-inline: clamp(6px, 0.8vw, 12px);
}

.auto-flow-pipe::before,
.auto-flow-pipe::after {
  right: clamp(16px, 2.8vw, 42px);
  left: clamp(16px, 2.8vw, 42px);
}

.auto-flow-stage {
  min-width: 0;
  padding-inline: clamp(8px, 0.8vw, 14px);
}

.auto-flow-stage strong {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(0.86rem, 1vw, 1.18rem);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.auto-flow-stage span {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(0.58rem, 0.66vw, 0.76rem);
  line-height: 1.16;
  text-wrap: balance;
}

.auto-flow-pipe::after,
.pharma-flow-pipe::after,
.other-flow-pipe::after {
  background-size: 220px 100%, 300px 100%, 100% 100%, 260% 100%;
  animation: sectorGlassWaterFlow 5.2s linear infinite;
}

.auto-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 48%, rgba(65, 36, 15, 0.52) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 57%, rgba(110, 75, 32, 0.36) 0 3px, transparent 4px),
    linear-gradient(90deg,
      rgba(67, 39, 17, 0.82) 0%,
      rgba(122, 78, 33, 0.68) 24%,
      rgba(91, 113, 84, 0.5) 43%,
      rgba(54, 139, 144, 0.54) 64%,
      rgba(165, 224, 231, 0.58) 84%,
      rgba(244, 255, 255, 0.84) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.72) 43%, transparent 58%);
  opacity: 0.94;
  filter: saturate(0.98) contrast(1.02);
}

.pharma-flow-pipe::after {
  background:
    radial-gradient(circle at 11% 47%, rgba(86, 58, 105, 0.38) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 55%, rgba(76, 105, 118, 0.3) 0 3px, transparent 4px),
    linear-gradient(90deg,
      rgba(80, 59, 100, 0.62) 0%,
      rgba(100, 78, 122, 0.5) 26%,
      rgba(92, 112, 122, 0.44) 43%,
      rgba(54, 139, 145, 0.48) 65%,
      rgba(171, 229, 235, 0.54) 84%,
      rgba(248, 255, 255, 0.82) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.7) 43%, transparent 58%);
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.01);
}

.other-flow-pipe::after {
  background:
    radial-gradient(circle at 10% 47%, rgba(31, 35, 104, 0.48) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 55%, rgba(130, 83, 35, 0.38) 0 3px, transparent 4px),
    linear-gradient(90deg,
      rgba(31, 37, 112, 0.72) 0%,
      rgba(61, 53, 130, 0.58) 18%,
      rgba(135, 84, 35, 0.58) 36%,
      rgba(89, 115, 86, 0.48) 52%,
      rgba(48, 140, 145, 0.52) 68%,
      rgba(175, 224, 229, 0.58) 86%,
      rgba(249, 255, 255, 0.84) 100%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.72) 43%, transparent 58%);
  opacity: 0.94;
  filter: saturate(0.98) contrast(1.02);
}

@keyframes sectorGlassWaterFlow {
  0% { background-position: 0 0, 0 0, 0 0, 260% 0; }
  100% { background-position: 220px 0, 300px 0, 0 0, -150% 0; }
}

@media (max-width: 980px) {
  .auto-flow-pipe {
    width: min(100%, 720px);
  }

  .auto-flow-stage strong,
  .auto-flow-stage span {
    max-width: none;
  }
}

/* Final glass navigation and compact info pages: 2026-07-03 */
.topbar {
  background: rgba(248, 250, 251, 0.82) !important;
  border-bottom: 1px solid rgba(160, 174, 181, 0.28) !important;
  box-shadow: 0 14px 40px rgba(20, 30, 34, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.12) !important;
}
.nav {
  min-height: 92px;
  gap: clamp(14px, 2vw, 34px);
}
.brand-title {
  color: #23823a;
}
.menu {
  gap: clamp(6px, 0.72vw, 14px) !important;
  align-items: center;
}
.menu-link {
  color: #27363d !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0) !important;
  box-shadow: none !important;
  padding: 0.72rem 0.92rem !important;
  line-height: 1 !important;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease !important;
  white-space: nowrap;
}
.menu-link:hover,
.menu-link:focus-visible {
  color: #13242c !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 242, 246, 0.72)) !important;
  border-color: rgba(160, 186, 196, 0.52) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 30px rgba(34, 48, 54, 0.11) !important;
  transform: translateY(-2px);
}
.menu-link[aria-current="page"] {
  color: #12252d !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 238, 244, 0.82)) !important;
  border-color: rgba(143, 173, 185, 0.6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 14px 34px rgba(33, 46, 52, 0.12) !important;
}
.glass-info-page {
  position: relative;
  min-height: calc(100svh - 150px);
  padding: clamp(12px, 1.5vw, 22px) clamp(18px, 2.4vw, 32px);
  overflow: hidden;
  background: #e9edf0;
  isolation: isolate;
}
.glass-info-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(0.92);
  transform: scale(1.03);
}
.glass-info-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, rgba(250, 252, 253, 0.78), rgba(229, 235, 238, 0.52) 46%, rgba(255, 255, 255, 0.82));
}
.glass-about-page::before {
  background-image: url("assets/curated/front2-site.jpg");
}
.glass-contact-page::before {
  background-image: url("assets/curated/front1-plant.jpg");
}
.glass-careers-page::before {
  background-image: url("assets/engineering-review.jpeg");
}
.glass-info-shell {
  width: min(1780px, 100%);
  margin: 0 auto;
  min-height: calc(100svh - 194px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 237, 239, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 26px 70px rgba(21, 31, 36, 0.22);
  backdrop-filter: blur(21px) saturate(1.03);
  -webkit-backdrop-filter: blur(21px) saturate(1.03);
}
.glass-info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(16px, 2.4vw, 36px);
  align-items: end;
}
.glass-breadcrumb,
.glass-panel > span,
.glass-proof-card strong {
  margin: 0 0 0.52rem;
  color: #3b4b52;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.glass-info-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #111d22;
  font-size: clamp(2rem, 3.1vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.glass-info-hero p {
  max-width: 900px;
  margin: 0.8rem 0 0;
  color: #263940;
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  line-height: 1.48;
  font-weight: 650;
}
.glass-proof-card,
.glass-panel,
.glass-form {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(235, 240, 242, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 42px rgba(24, 36, 42, 0.13);
}
.glass-proof-card {
  padding: 1rem 1.12rem;
}
.glass-proof-card span {
  display: block;
  color: #26373e;
  font-weight: 760;
  line-height: 1.42;
}
.glass-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}
.about-grid .wide {
  grid-column: span 2;
}
.glass-panel {
  padding: clamp(14px, 1.35vw, 22px);
  min-height: 0;
}
.glass-panel h2 {
  margin: 0;
  color: #122129;
  font-size: clamp(1.08rem, 1.35vw, 1.72rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.glass-panel p {
  margin: 0.72rem 0 0;
  color: #2c3e45;
  font-size: clamp(0.88rem, 0.92vw, 1.02rem);
  line-height: 1.42;
  font-weight: 620;
}
.profile-panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.profile-panel img {
  width: 96px;
  height: 116px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(20, 30, 34, 0.18);
}
.glass-tube-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 0.9vw, 14px);
}
.glass-tube-row span {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #26373e;
  background: linear-gradient(90deg, rgba(229, 224, 218, 0.68), rgba(245, 250, 252, 0.86));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.34), 0 12px 28px rgba(20, 30, 34, 0.14);
  font-weight: 820;
  line-height: 1.06;
}
.glass-tube-row strong {
  color: #16242b;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  line-height: 0.92;
}
.glass-contact-layout,
.glass-career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: stretch;
}
.glass-contact-cards,
.compact-career-form,
.career-grid {
  min-height: 0;
}
.glass-contact-cards {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1vw, 14px);
}
.glass-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  padding: clamp(14px, 1.3vw, 20px);
}
.glass-form label {
  display: grid;
  gap: 5px;
  color: #2e3e45;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.glass-form label.full,
.glass-submit {
  grid-column: 1 / -1;
}
.glass-form input,
.glass-form select,
.glass-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(143, 160, 168, 0.42);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
  color: #16262d;
  padding: 0.74rem 0.82rem;
  font: inherit;
  font-weight: 680;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.glass-form textarea {
  resize: vertical;
}
.glass-submit,
.glass-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(48, 65, 73, 0.34);
  border-radius: 999px;
  color: #f8fbfc;
  background: linear-gradient(135deg, #22313a, #50616a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 28px rgba(22, 33, 39, 0.18);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.glass-panel a {
  margin-top: 0.8rem;
  padding: 0.68rem 1rem;
}
.career-grid {
  grid-template-columns: 1fr;
}
.compact-career-form {
  align-self: stretch;
}
.glass-career-layout .glass-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 1180px) {
  .nav {
    min-height: auto;
    padding-block: 12px;
  }
  .menu {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }
  .glass-info-page {
    overflow: visible;
  }
  .glass-info-shell {
    min-height: auto;
  }
  .glass-info-hero,
  .glass-contact-layout,
  .glass-career-layout {
    grid-template-columns: 1fr;
  }
  .glass-info-grid,
  .glass-tube-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid .wide {
    grid-column: span 1;
  }
}
@media (max-width: 680px) {
  .glass-info-page {
    padding: 10px;
  }
  .glass-info-shell {
    padding: 14px;
    border-radius: 18px;
  }
  .glass-info-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .glass-info-grid,
  .glass-tube-row,
  .glass-form,
  .glass-career-layout .glass-form {
    grid-template-columns: 1fr;
  }
  .profile-panel {
    grid-template-columns: 78px 1fr;
  }
  .profile-panel img {
    width: 78px;
    height: 96px;
  }
}


/* Desktop fit polish for compact glass info pages: 2026-07-03 */
@media (min-width: 1181px) {
  .nav {
    min-height: 84px;
  }
  footer {
    padding: 0 !important;
  }
  .footer-row {
    min-height: 52px !important;
    padding-block: 6px !important;
  }
  .glass-info-page {
    min-height: auto;
    padding: 8px clamp(18px, 1.8vw, 28px);
  }
  .glass-info-shell {
    min-height: calc(100svh - 158px);
    gap: 10px;
    padding: clamp(14px, 1.25vw, 20px);
    border-radius: 22px;
  }
  .glass-info-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: clamp(12px, 1.6vw, 26px);
    align-items: center;
  }
  .glass-info-hero h1 {
    max-width: 720px;
    font-size: clamp(1.85rem, 2.55vw, 3.35rem);
    line-height: 0.98;
  }
  .glass-info-hero p {
    margin-top: 0.58rem;
    max-width: 820px;
    font-size: clamp(0.94rem, 0.95vw, 1.08rem);
    line-height: 1.34;
  }
  .glass-breadcrumb,
  .glass-panel > span,
  .glass-proof-card strong {
    margin-bottom: 0.38rem;
    font-size: clamp(0.66rem, 0.68vw, 0.78rem);
  }
  .glass-proof-card,
  .glass-panel,
  .glass-form {
    border-radius: 18px;
  }
  .glass-proof-card {
    padding: 0.78rem 0.95rem;
  }
  .glass-proof-card span {
    font-size: 0.9rem;
    line-height: 1.25;
  }
  .glass-info-grid {
    gap: 10px;
  }
  .glass-panel {
    padding: clamp(11px, 0.95vw, 16px);
  }
  .glass-panel h2 {
    font-size: clamp(1rem, 1.08vw, 1.34rem);
    line-height: 1.04;
  }
  .glass-panel p {
    margin-top: 0.5rem;
    font-size: clamp(0.8rem, 0.82vw, 0.94rem);
    line-height: 1.28;
  }
  .profile-panel {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }
  .profile-panel img {
    width: 78px;
    height: 94px;
    border-radius: 14px;
  }
  .glass-tube-row {
    gap: 8px;
  }
  .glass-tube-row span {
    min-height: 48px;
    padding: 0.5rem 0.7rem;
    gap: 0.5rem;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.34), 0 10px 22px rgba(20, 30, 34, 0.12);
    font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  }
  .glass-tube-row strong {
    font-size: clamp(0.92rem, 1.08vw, 1.24rem);
  }
  .glass-contact-layout,
  .glass-career-layout {
    gap: 10px;
  }
  .glass-contact-cards {
    gap: 10px;
  }
  .glass-form {
    gap: 7px 9px;
    padding: clamp(10px, 0.9vw, 14px);
  }
  .glass-form label {
    gap: 3px;
    font-size: 0.68rem;
  }
  .glass-form input,
  .glass-form select,
  .glass-form textarea {
    min-height: 34px;
    border-radius: 11px;
    padding: 0.48rem 0.62rem;
    font-size: 0.86rem;
  }
  .glass-form textarea {
    max-height: 82px;
  }
  .glass-submit,
  .glass-panel a {
    min-height: 36px;
    font-size: 0.86rem;
  }
  .glass-panel a {
    margin-top: 0.52rem;
    padding: 0.5rem 0.82rem;
  }
}



/* Restore unified ZLD selector pipe only: 2026-07-03 */
.auto-flow-pipe {
  --sector-gradient: linear-gradient(90deg,
    rgba(55, 31, 12, 0.92) 0%,
    rgba(118, 73, 24, 0.84) 22%,
    rgba(142, 111, 52, 0.7) 34%,
    rgba(77, 112, 92, 0.58) 48%,
    rgba(53, 135, 144, 0.58) 67%,
    rgba(177, 226, 232, 0.64) 86%,
    rgba(248, 255, 255, 0.92) 100%);
  overflow: visible;
  background: transparent !important;
  box-shadow: none !important;
}
.pharma-flow-pipe {
  --sector-gradient: linear-gradient(90deg,
    rgba(77, 58, 91, 0.72) 0%,
    rgba(99, 80, 111, 0.64) 23%,
    rgba(91, 112, 120, 0.58) 42%,
    rgba(57, 133, 142, 0.58) 64%,
    rgba(178, 226, 232, 0.64) 84%,
    rgba(248, 255, 255, 0.92) 100%);
}
.other-flow-pipe {
  --sector-gradient: linear-gradient(90deg,
    rgba(45, 48, 100, 0.78) 0%,
    rgba(69, 64, 111, 0.68) 20%,
    rgba(128, 82, 37, 0.66) 36%,
    rgba(88, 111, 88, 0.58) 52%,
    rgba(50, 133, 142, 0.58) 70%,
    rgba(179, 226, 232, 0.64) 88%,
    rgba(249, 255, 255, 0.92) 100%);
}
.auto-flow-pipe::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: clamp(74px, 7.2vw, 118px);
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.24) 28%, rgba(255,255,255,0.08) 58%, rgba(255,255,255,0.44)),
    linear-gradient(90deg, rgba(255,255,255,0.32), rgba(232,244,248,0.1), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow:
    inset 0 3px 8px rgba(255,255,255,0.98),
    inset 0 20px 36px rgba(255,255,255,0.36),
    inset 0 -18px 34px rgba(8, 31, 37, 0.18),
    0 18px 40px rgba(0,0,0,0.22),
    0 0 30px rgba(214, 246, 252, 0.26);
  opacity: 0.98;
}
.auto-flow-pipe::after {
  content: "";
  position: absolute;
  inset: 50% 8px auto 8px;
  height: clamp(54px, 5.2vw, 86px);
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 7% 53%, rgba(49, 28, 12, 0.86) 0 5px, transparent 6px),
    radial-gradient(circle at 14% 39%, rgba(93, 58, 24, 0.7) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 60%, rgba(146, 102, 44, 0.56) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 43%, rgba(83, 111, 84, 0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 49%, rgba(220, 222, 190, 0.36) 0 3px, transparent 4px),
    var(--sector-gradient),
    linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.72) 42%, transparent 58%);
  background-size: 180px 100%, 210px 100%, 250px 100%, 260px 100%, 310px 100%, 100% 100%, 240% 100%;
  animation: sectorUnifiedWaterFlow 4.8s linear infinite;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.96;
  box-shadow: inset 0 12px 20px rgba(255,255,255,0.24), inset 0 -12px 18px rgba(6, 32, 39, 0.14);
}
.pharma-flow-pipe::after,
.other-flow-pipe::after {
  animation: sectorUnifiedWaterFlow 4.8s linear infinite !important;
}
.pharma-flow-pipe::after { filter: saturate(0.98) contrast(1.02); }
.other-flow-pipe::after { filter: saturate(1.02) contrast(1.02); }
.auto-flow-stage {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transition: transform 180ms ease, filter 180ms ease !important;
}
.auto-flow-stage:hover,
.auto-flow-stage:focus-visible,
.auto-flow-stage.is-open {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(-9px) scale(1.035) !important;
  filter: drop-shadow(0 18px 24px rgba(7, 25, 31, 0.22));
}
.auto-flow-stage strong {
  color: #ffffff !important;
  text-shadow: 0 2px 9px rgba(0,0,0,0.76), 0 0 3px rgba(255,255,255,0.8) !important;
}
.auto-flow-stage span {
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.62) !important;
}
@keyframes sectorUnifiedWaterFlow {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 230% 0; }
  100% { background-position: 170px 0, 210px 0, 250px 0, 260px 0, 310px 0, 0 0, -140% 0; }
}
@media (max-width: 980px) {
  .auto-flow-pipe::before,
  .auto-flow-pipe::after { inset-inline: 16px; }
}

/* Final ZLD selector pipe alignment and viewport fit: 2026-07-03 */
.auto-selector-page {
  min-height: calc(100svh - 152px);
  padding-block: clamp(12px, 2.2vh, 30px);
}

.auto-selector-shell {
  transform: translateY(clamp(-14px, -1.6vh, -6px));
}

.auto-flow-pipe {
  margin-top: clamp(16px, 3vh, 32px);
}

.auto-flow-pipe::before {
  inset: 50% clamp(44px, 5vw, 84px) auto clamp(44px, 5vw, 84px);
}

.auto-flow-pipe::after {
  inset: 50% clamp(52px, 5.8vw, 96px) auto clamp(52px, 5.8vw, 96px);
}

@media (max-width: 980px) {
  .auto-selector-page {
    min-height: auto;
  }

  .auto-flow-pipe::before,
  .auto-flow-pipe::after {
    inset-inline: 16px;
  }
}

/* Quiet image-led rebuild for About, Careers and Contact: 2026-07-03 */
.quiet-body .menu-link:hover,
.quiet-body .menu-link:focus,
.quiet-body .menu-link[aria-current="page"],
.quiet-body .menu-item:hover .menu-button,
.quiet-body .menu-button:focus {
  color: #17222a;
  background: linear-gradient(135deg, #f6f7f7, #e8ecee);
  box-shadow: inset 0 -2px 0 #27323a, 0 8px 20px rgba(16, 34, 44, 0.08);
}

.quiet-body .footer-link,
.quiet-body .footer-link:hover,
.quiet-body .footer-link:focus {
  color: #17222a;
}

.quiet-page {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 148px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 72px);
  color: #ffffff;
  background: #111315;
}

.quiet-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiet-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.62), rgba(12, 13, 15, 0.18) 48%, rgba(12, 13, 15, 0.08)),
    linear-gradient(180deg, rgba(12, 13, 15, 0.12), rgba(12, 13, 15, 0.34));
  pointer-events: none;
}

.quiet-about-page::before {
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.7), rgba(12, 13, 15, 0.24) 44%, rgba(12, 13, 15, 0.08)),
    linear-gradient(180deg, rgba(12, 13, 15, 0.1), rgba(12, 13, 15, 0.28));
}

.quiet-shell {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.quiet-about-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 390px);
  gap: clamp(34px, 8vw, 112px);
  align-items: center;
}

.quiet-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 440px);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.quiet-copy {
  max-width: 560px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.62);
}

.quiet-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quiet-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.quiet-careers-page .quiet-copy h1,
.quiet-contact-page .quiet-copy h1 {
  max-width: 10ch;
  font-size: clamp(1.9rem, 4vw, 4.1rem);
}

.quiet-copy p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.96rem, 1.2vw, 1.18rem);
  font-weight: 520;
  line-height: 1.5;
}

.quiet-facts,
.quiet-notes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
  margin: clamp(28px, 5vh, 56px) 0 0;
}

.quiet-facts div,
.quiet-notes span {
  min-width: 92px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.quiet-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiet-facts dd,
.quiet-notes span {
  margin: 0.28rem 0 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 760;
}

.quiet-director {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.66);
}

.quiet-director img {
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.quiet-director h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.28rem, 1.8vw, 1.78rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.05;
}

.quiet-director p:not(.quiet-kicker) {
  max-width: 28rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 520;
  line-height: 1.48;
}

.quiet-director-points {
  display: grid;
  gap: 10px;
  margin: clamp(18px, 3vh, 28px) 0 0;
}

.quiet-director-points div {
  display: grid;
  grid-template-columns: minmax(92px, 0.44fr) minmax(0, 0.56fr);
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.quiet-director-points dt,
.quiet-director-points dd {
  margin: 0;
}

.quiet-director-points dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiet-director-points dd {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.25;
}

.quiet-address {
  display: grid;
  gap: 0.45rem;
  margin-top: clamp(22px, 4vh, 42px);
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 560;
  line-height: 1.45;
}

.quiet-address a {
  color: #ffffff;
  text-decoration: none;
}

.quiet-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-self: center;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

.quiet-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiet-form input,
.quiet-form select,
.quiet-form textarea {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 0;
  padding: 7px 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 560;
  outline: none;
}

.quiet-form textarea {
  resize: vertical;
}

.quiet-form input::placeholder,
.quiet-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.quiet-form input:focus,
.quiet-form select:focus,
.quiet-form textarea:focus {
  border-bottom-color: #ffffff;
}

.quiet-form option {
  color: #111315;
}

.quiet-full,
.quiet-submit,
.quiet-career-form label:nth-of-type(5),
.quiet-career-form label:nth-of-type(6) {
  grid-column: 1 / -1;
}

.quiet-submit {
  justify-self: start;
  min-height: 38px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  padding: 0 20px;
  color: #ffffff;
  background: rgba(15, 16, 18, 0.18);
  font-weight: 780;
  cursor: pointer;
}

.quiet-submit:hover,
.quiet-submit:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.quiet-page + footer {
  background: rgba(246, 247, 248, 0.96);
}

@media (max-width: 900px) {
  .quiet-page {
    min-height: auto;
    padding: 34px 20px;
  }

  .quiet-split {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .quiet-about-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quiet-form {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .quiet-page {
    padding: 28px 16px;
  }

  .quiet-page::before,
  .quiet-about-page::before {
    background: linear-gradient(90deg, rgba(12, 13, 15, 0.72), rgba(12, 13, 15, 0.28));
  }

  .quiet-copy h1,
  .quiet-careers-page .quiet-copy h1,
  .quiet-contact-page .quiet-copy h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

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

  .quiet-director {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .quiet-director img {
    width: 64px;
  }

  .quiet-director-points div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quiet-career-form label:nth-of-type(5),
  .quiet-career-form label:nth-of-type(6) {
    grid-column: auto;
  }
}
