﻿: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/watermarked/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;
}

.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: "";
}

.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 24px;
  padding: 30px;
  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 {
  position: absolute;
  right: -64px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 22px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.about-summary h1,
.about-summary h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
}

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

.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: 0 0 16px;
  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 {
  margin: 0 0 14px;
}

.about-pillar-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.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 8px;
  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: 13px;
}

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

.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;
  }

  .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;
  }
}

