@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #132326;
  --muted: #5d6c6f;
  --line: #d9e1e3;
  --paper: #f6f8f7;
  --white: #ffffff;
  --teal: #0c6f73;
  --teal-dark: #06474b;
  --gold: #b88a43;
  --graphite: #1a2428;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(19, 35, 38, 0.14);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img,
svg,
video,
canvas {
  max-width: 100%;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(217, 225, 227, 0.78);
  background: rgba(246, 248, 247, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  align-items: center;
  min-width: 176px;
}

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

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.nav-group > a {
  display: inline-flex;
  padding: 8px 0;
}

.nav a:hover,
.header-cta:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}

.share-price-ticker {
  display: grid;
  gap: 1px;
  min-width: 126px;
  padding: 9px 14px;
  border: 1px solid rgba(12, 111, 115, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(14, 27, 31, 0.06);
  color: var(--ink);
  line-height: 1.05;
}

.share-price-ticker:hover {
  border-color: rgba(12, 111, 115, 0.34);
  color: var(--ink);
  transform: translateY(-1px);
}

.share-price-symbol {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.share-price-ticker strong {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}

.share-price-ticker small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-price-ticker[data-quote-state="error"] strong,
.share-price-ticker[data-quote-state="error"] small {
  color: #9d433f;
}

.share-price-ticker[data-quote-state="stale"] small {
  color: #9a6d2f;
}

.nav-group {
  position: relative;
}

.nav-group > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin: 8px 0 0 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-menu--api {
  left: 50%;
  display: grid;
  gap: 4px;
  width: 285px;
  padding: 10px;
  overflow: visible;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-section {
  position: relative;
  width: auto;
  min-width: 0;
  padding: 0;
}

.nav-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  bottom: 0;
  width: 18px;
}

.nav-menu .nav-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.nav-menu .nav-section-title::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.72;
}

.nav-submenu {
  position: absolute;
  top: -10px;
  left: calc(100% + 2px);
  z-index: 55;
  display: grid;
  min-width: 300px;
  max-width: 360px;
  max-height: min(520px, calc(100vh - 120px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  gap: 1px;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  transform: translateX(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18px;
  width: 18px;
}

.nav-section:hover .nav-section-title,
.nav-section:focus-within .nav-section-title {
  background: rgba(12, 111, 115, 0.08);
  color: var(--teal);
}

.nav-section:hover .nav-submenu,
.nav-section:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-submenu a {
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  white-space: normal;
}

.nav-menu a:hover {
  background: rgba(12, 111, 115, 0.08);
}

.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(12, 111, 115, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(14, 27, 31, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  border-color: rgba(12, 111, 115, 0.28);
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  align-items: end;
  padding: clamp(120px, 16vw, 210px) clamp(18px, 4vw, 70px) 44px;
}

.page-hero {
  min-height: 520px;
  align-items: center;
  padding: clamp(96px, 12vw, 150px) clamp(18px, 4vw, 70px) clamp(70px, 8vw, 110px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/biotech-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 21, 0.96) 0%, rgba(7, 18, 21, 0.88) 36%, rgba(7, 18, 21, 0) 50%, rgba(7, 18, 21, 0) 100%),
    linear-gradient(0deg, rgba(7, 18, 21, 0.46) 0%, rgba(7, 18, 21, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.4vw, 82px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 5.4vw, 72px);
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
}

.page-hero .hero-copy {
  max-width: 780px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-quicknav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  padding: 0 clamp(18px, 4vw, 70px);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-quicknav a {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.section-quicknav a:last-child {
  border-right: 0;
}

.section-quicknav a:hover,
.section-quicknav a[aria-current="page"] {
  background: rgba(12, 111, 115, 0.055);
  color: var(--teal);
}

.hero-home {
  min-height: clamp(640px, 82vh, 860px);
  padding: clamp(92px, 7vw, 128px) clamp(18px, 4vw, 70px) clamp(34px, 4vw, 54px);
  background: linear-gradient(180deg, #08181b 0%, #0d1d20 44%, #13272a 100%);
  overflow: hidden;
}

.home-hero-media {
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 115, 120, 0.16), transparent 22%),
    radial-gradient(circle at 88% 72%, rgba(184, 138, 67, 0.14), transparent 26%);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 21, 0.92) 0%, rgba(7, 18, 21, 0.78) 24%, rgba(7, 18, 21, 0.3) 52%, rgba(7, 18, 21, 0.08) 72%, rgba(7, 18, 21, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 18, 21, 0.28) 0%, rgba(7, 18, 21, 0.02) 48%);
}

.hero-home-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
  min-height: clamp(430px, 58vh, 620px);
}

.hero-content--home {
  display: grid;
  gap: 22px;
  width: min(680px, 100%);
  max-width: min(680px, 100%);
}

.hero-home h1 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.96;
}

.hero-home .hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.45;
}

.hero-home .hero-actions {
  margin-top: 8px;
}

.hero-home-rotator {
  position: relative;
  overflow: hidden;
}

.hero-home-rotator .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 22, 0.88) 0%, rgba(8, 19, 22, 0.78) 34%, rgba(8, 19, 22, 0.44) 66%, rgba(8, 19, 22, 0.2) 100%);
}

.home-hero-panels {
  position: absolute;
  inset: 0;
}

.home-hero-panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 21, 0.08), rgba(7, 18, 21, 0.16)),
    var(--home-hero-image) center / cover no-repeat,
    #10272a;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 4.5s ease;
}

.home-hero-panel.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content--home-rotator {
  position: relative;
  z-index: 2;
  gap: 24px;
  width: min(760px, 100%);
  max-width: min(760px, 100%);
}

.home-hero-focus {
  position: relative;
  min-height: 348px;
}

.home-hero-focus-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-hero-focus-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-hero-focus-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero-focus-header span,
.home-hero-focus-header strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero-focus-panel h2 {
  margin: 0;
  max-width: 640px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.home-hero-focus-panel p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.45;
}

.home-hero-focus-panel .button {
  width: fit-content;
  margin-top: 2px;
}

.home-hero-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.home-hero-tab {
  display: grid;
  gap: 6px;
  min-height: 84px;
  align-content: center;
  justify-items: center;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--teal-dark);
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.home-hero-tab:last-child {
  border-right: 0;
}

.home-hero-tab:hover {
  background: rgba(12, 111, 115, 0.055);
  color: var(--teal);
}

.home-hero-tab.is-active {
  background: rgba(12, 111, 115, 0.07);
  color: var(--teal);
}

.home-hero-tab span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero-tab strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.bottling-line,
.distillation-suite,
.reactor-suite,
.grow-room {
  position: absolute;
  inset: 28px 28px 112px 28px;
}

.bottling-conveyor {
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 18%;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(222, 232, 238, 0.28), rgba(67, 95, 104, 0.2)),
    linear-gradient(90deg, rgba(12, 111, 115, 0.15), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.bottling-conveyor::after {
  content: "";
  position: absolute;
  inset: 4px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 22%, transparent 48%, rgba(255, 255, 255, 0.15) 72%, transparent 100%);
  animation: conveyorPulse 3.8s linear infinite;
}

.bottling-station {
  position: absolute;
  bottom: 24%;
  width: 15%;
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(169, 184, 196, 0.14), rgba(48, 71, 80, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bottling-station--fill { left: 16%; }
.bottling-station--cap { left: 42%; }
.bottling-station--label { left: 67%; }

.bottling-station span {
  position: absolute;
  top: 12%;
  width: 12px;
  height: 54%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 240, 245, 0.82), rgba(112, 138, 149, 0.16));
}

.bottling-station--fill span:nth-child(1) { left: 20%; animation: fillPulse 2.8s ease-in-out infinite; }
.bottling-station--fill span:nth-child(2) { left: 44%; animation: fillPulse 2.8s ease-in-out 0.3s infinite; }
.bottling-station--fill span:nth-child(3) { left: 68%; animation: fillPulse 2.8s ease-in-out 0.6s infinite; }
.bottling-station--cap span:nth-child(1) { left: 32%; height: 38%; animation: capPulse 3s ease-in-out infinite; }
.bottling-station--cap span:nth-child(2) { left: 56%; height: 38%; animation: capPulse 3s ease-in-out 0.4s infinite; }
.bottling-station--label span:nth-child(1),
.bottling-station--label span:nth-child(2) {
  top: 26%;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(213, 225, 232, 0.26);
  border-radius: 999px;
  background: none;
  animation: labelSpin 3.4s linear infinite;
}

.bottling-station--label span:nth-child(1) { left: 18%; }
.bottling-station--label span:nth-child(2) { left: 54%; animation-direction: reverse; }

.hero-bottle {
  position: absolute;
  bottom: 17%;
  width: 28px;
  height: 74px;
  border-radius: 8px 8px 6px 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 22%, transparent 24%),
    linear-gradient(180deg, rgba(155, 88, 26, 0.88), rgba(120, 66, 18, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 219, 184, 0.22),
    0 14px 24px rgba(0, 0, 0, 0.28);
  animation: bottleTravel 10s linear infinite;
}

.hero-bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 6px;
  width: 16px;
  height: 16px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #10181b, #1d272b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-bottle::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 26px;
  height: 18px;
  border-radius: 4px;
  background: rgba(245, 248, 250, 0.92);
}

.hero-bottle--1 { animation-delay: 0s; }
.hero-bottle--2 { animation-delay: 2s; }
.hero-bottle--3 { animation-delay: 4s; }
.hero-bottle--4 { animation-delay: 6s; }
.hero-bottle--5 { animation-delay: 8s; }

.distillation-column {
  position: absolute;
  right: 48%;
  top: 3%;
  width: 108px;
  height: 74%;
  border-radius: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(219, 230, 236, 0.22), rgba(75, 103, 114, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.distillation-column-core {
  position: absolute;
  inset: 6% 24%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 214, 150, 0.46), rgba(255, 183, 62, 0.06));
  animation: columnGlow 4.6s ease-in-out infinite;
}

.distillation-column-ring {
  position: absolute;
  left: 16%;
  right: 16%;
  height: 12px;
  border-radius: 999px;
  background: rgba(215, 228, 234, 0.34);
}

.distillation-column-ring--1 { top: 28%; }
.distillation-column-ring--2 { top: 54%; }

.distillation-stream {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 18%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 203, 92, 0.12), rgba(243, 184, 64, 0.95), rgba(255, 203, 92, 0.12));
  transform-origin: left center;
  animation: streamFlow 3.4s ease-in-out infinite;
}

.distillation-beakers {
  position: absolute;
  right: 7%;
  bottom: 18%;
  display: flex;
  gap: 18px;
  align-items: end;
}

.distillation-beaker {
  position: relative;
  width: 80px;
  height: 106px;
  border: 2px solid rgba(214, 226, 233, 0.44);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(160, 178, 188, 0.04));
  overflow: hidden;
}

.distillation-beaker span {
  position: absolute;
  inset: auto 0 0 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(255, 220, 139, 0.88), rgba(173, 109, 31, 0.94));
  animation: beakerFill 4.2s ease-in-out infinite;
}

.distillation-beaker--1 span { animation-delay: 0s; }
.distillation-beaker--2 span { animation-delay: 0.6s; }
.distillation-beaker--3 span { animation-delay: 1.2s; }

.reactor-head {
  position: absolute;
  left: 40%;
  top: 2%;
  width: 170px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(200, 216, 223, 0.28), rgba(62, 84, 92, 0.18));
}

.reactor-vessel {
  position: absolute;
  left: 36%;
  top: 14%;
  width: 240px;
  height: 360px;
  border: 2px solid rgba(220, 232, 238, 0.42);
  border-radius: 40px 40px 110px 110px / 40px 40px 90px 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(152, 171, 182, 0.04));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.reactor-liquid {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 56%;
  border-radius: 30px 30px 90px 90px / 26px 26px 80px 80px;
  background: linear-gradient(180deg, rgba(201, 219, 228, 0.18), rgba(141, 170, 182, 0.22));
}

.reactor-cloud {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 44%;
  border-radius: 999px 999px 120px 120px;
  background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.8), rgba(246, 250, 252, 0.28) 42%, transparent 72%);
  animation: crystalCloud 4.6s ease-in-out infinite;
}

.reactor-crystal-bed {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 10%;
  height: 20%;
  border-radius: 999px 999px 42px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 246, 0.62));
  animation: crystalBed 4.6s ease-in-out infinite;
}

.reactor-stirrer {
  position: absolute;
  left: calc(50% - 4px);
  top: 6%;
  width: 8px;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 240, 244, 0.88), rgba(87, 111, 121, 0.18));
  transform-origin: 50% 18%;
  animation: stirSpin 4s linear infinite;
}

.reactor-stirrer::after {
  content: "";
  position: absolute;
  left: -38px;
  right: -38px;
  bottom: 24%;
  height: 8px;
  border-radius: 999px;
  background: rgba(236, 244, 247, 0.76);
}

.reactor-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
  animation: crystalFloat 6s ease-in-out infinite;
}

.reactor-particle--1 { left: 34%; top: 34%; animation-delay: 0s; }
.reactor-particle--2 { left: 58%; top: 42%; animation-delay: 1s; }
.reactor-particle--3 { left: 46%; top: 28%; animation-delay: 2s; }
.reactor-particle--4 { left: 28%; top: 52%; animation-delay: 3s; }
.reactor-particle--5 { left: 62%; top: 58%; animation-delay: 4s; }
.reactor-particle--6 { left: 40%; top: 62%; animation-delay: 5s; }

.grow-room::before {
  content: "";
  position: absolute;
  inset: 10% 8% 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(13, 30, 33, 0) 0%, rgba(13, 30, 33, 0.52) 70%, rgba(13, 30, 33, 0.9) 100%);
}

.grow-lights {
  position: absolute;
  top: 14%;
  left: 12%;
  right: 12%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.grow-lights span {
  display: block;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(249, 244, 228, 0.98), rgba(243, 180, 95, 0.42));
  box-shadow:
    0 0 36px rgba(255, 208, 129, 0.4),
    0 0 70px rgba(246, 182, 95, 0.14);
}

.grow-fan {
  position: absolute;
  top: 24%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle, rgba(216, 227, 233, 0.24) 0 18%, transparent 19%),
    conic-gradient(from 0deg, rgba(216, 227, 233, 0.18) 0 18%, transparent 18% 33%, rgba(216, 227, 233, 0.18) 33% 51%, transparent 51% 66%, rgba(216, 227, 233, 0.18) 66% 84%, transparent 84% 100%);
  animation: fanSpin 2.4s linear infinite;
}

.grow-fan--1 { right: 18%; }
.grow-fan--2 { right: 6%; top: 28%; animation-duration: 2.8s; }

.grow-row {
  position: absolute;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.grow-row--back {
  bottom: 24%;
  opacity: 0.78;
  transform: scale(0.92);
}

.grow-row--front {
  bottom: 12%;
}

.grow-plant {
  position: relative;
  width: 58px;
  height: 180px;
  border-radius: 999px 999px 22px 22px;
  background:
    linear-gradient(180deg, rgba(52, 126, 86, 0.22), rgba(52, 126, 86, 0) 36%),
    linear-gradient(180deg, #27553f 0%, #2d7a54 38%, #7d5fa2 78%, #e49a53 100%);
  transform-origin: 50% 100%;
  animation: plantSway 4.6s ease-in-out infinite;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}

.grow-row .grow-plant:nth-child(2n) { animation-duration: 5.2s; }
.grow-row .grow-plant:nth-child(3n) { animation-duration: 4.2s; }
.grow-row .grow-plant:nth-child(2) { animation-delay: 0.3s; }
.grow-row .grow-plant:nth-child(3) { animation-delay: 0.6s; }
.grow-row .grow-plant:nth-child(4) { animation-delay: 0.9s; }
.grow-row .grow-plant:nth-child(5) { animation-delay: 1.2s; }

.grow-plant::before,
.grow-plant::after {
  content: "";
  position: absolute;
  top: 26%;
  width: 42px;
  height: 76px;
  border-radius: 42px 0 42px 0;
  background: linear-gradient(180deg, rgba(46, 120, 78, 0.94), rgba(111, 82, 156, 0.74));
}

.grow-plant::before {
  left: -18px;
  transform: rotate(-26deg);
}

.grow-plant::after {
  right: -18px;
  transform: scaleX(-1) rotate(-26deg);
}

@keyframes conveyorPulse {
  0% { transform: translateX(-14%); opacity: 0.2; }
  40% { opacity: 0.48; }
  100% { transform: translateX(14%); opacity: 0.2; }
}

@keyframes bottleTravel {
  0% { left: 5%; opacity: 0; transform: translateY(0); }
  8% { opacity: 1; }
  55% { opacity: 1; transform: translateY(-1px); }
  92% { opacity: 1; }
  100% { left: 78%; opacity: 0; transform: translateY(0); }
}

@keyframes fillPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 186, 88, 0); }
  40% { box-shadow: 0 16px 0 rgba(255, 186, 88, 0.28); }
}

@keyframes capPulse {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
}

@keyframes labelSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes columnGlow {
  0%, 100% { opacity: 0.42; transform: scaleY(0.98); }
  50% { opacity: 0.9; transform: scaleY(1.02); }
}

@keyframes streamFlow {
  0%, 100% { opacity: 0.42; transform: scaleX(0.78); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes beakerFill {
  0%, 100% { height: 18%; }
  45% { height: 48%; }
  70% { height: 42%; }
}

@keyframes crystalCloud {
  0%, 100% { opacity: 0.34; transform: translateY(6px) scale(0.96); }
  50% { opacity: 0.92; transform: translateY(-4px) scale(1.04); }
}

@keyframes crystalBed {
  0%, 100% { height: 12%; opacity: 0.56; }
  50% { height: 22%; opacity: 0.98; }
}

@keyframes stirSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes crystalFloat {
  0%, 100% { transform: translateY(0) scale(0.82); opacity: 0.48; }
  50% { transform: translateY(-16px) scale(1.08); opacity: 0.96; }
}

@keyframes fanSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes plantSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .scene-photo img,
  .scene-scan,
  .scene-bottle-run,
  .scene-flow,
  .scene-flow-glow,
  .scene-stir-ring,
  .scene-particle,
  .scene-breeze,
  .scene-grow-haze {
    animation: none !important;
    transform: none !important;
  }
  .home-hero-slide,
  .hero-bottle,
  .bottling-conveyor::after,
  .bottling-station span,
  .distillation-column-core,
  .distillation-stream,
  .distillation-beaker span,
  .reactor-cloud,
  .reactor-crystal-bed,
  .reactor-stirrer,
  .reactor-particle,
  .grow-fan,
  .grow-plant {
    animation: none !important;
    transition: none !important;
  }
}

.product-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 640px;
  padding: clamp(110px, 13vw, 170px) clamp(18px, 5vw, 78px) clamp(64px, 8vw, 110px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 18, 21, 0.98) 0%, rgba(7, 18, 21, 0.9) 34%, rgba(7, 18, 21, 0.5) 49%, rgba(7, 18, 21, 0.14) 64%, rgba(7, 18, 21, 0) 78%),
    var(--product-hero-image) right center / auto 100% no-repeat,
    var(--teal-dark);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.product-hero-content {
  position: relative;
  z-index: 1;
}

.product-hero-content {
  max-width: 760px;
}

.product-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.product-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 22px 10px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.button-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin-top: clamp(54px, 8vw, 110px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  min-height: 136px;
  padding: 22px;
  background: rgba(8, 31, 34, 0.46);
}

.hero-panel span,
.spec-list span,
.timeline-grid span,
.capability-grid span,
.news-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.35;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.ticker span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 70px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: start;
  background: var(--white);
}

.copy-stack {
  color: var(--muted);
  font-size: 18px;
}

.seo-content {
  background: var(--white);
}

.content-article {
  display: grid;
  gap: 34px;
  width: 100%;
  max-width: none;
}

.content-article .copy-stack {
  max-width: none;
}

.content-article code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--teal-dark);
  font-size: 0.92em;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-list span,
.seo-note {
  border: 1px solid var(--line);
  background: var(--paper);
}

.topic-list span {
  padding: 10px 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.supplementary-copy,
.seo-note {
  max-width: 860px;
  padding: 26px;
}

.supplementary-copy {
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.supplementary-copy h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.supplementary-copy p,
.seo-note p {
  color: var(--muted);
}

.supplementary-copy p:last-child,
.seo-note p:last-child {
  margin-bottom: 0;
}

.seo-note {
  color: var(--muted);
}

.image-band,
.visual-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.image-band img,
.visual-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-feature.visual-feature--reverse img {
  order: 2;
}

.visual-feature.visual-feature--reverse > div {
  order: 1;
}

.image-band h2,
.visual-feature h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.image-band p:not(.eyebrow),
.visual-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}


.manufacturing-stage-section {
  background: var(--paper);
}

.manufacturing-stage-grid,
.manufacturing-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.manufacturing-stage-card,
.manufacturing-pair-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.manufacturing-stage-card img,
.manufacturing-pair-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.manufacturing-stage-card div,
.manufacturing-pair-card div {
  padding: 24px 24px 28px;
}

.manufacturing-stage-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.manufacturing-stage-card h3,
.manufacturing-pair-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.08;
}

.manufacturing-stage-card p,
.manufacturing-pair-card p:not(.eyebrow),
.manufacturing-frame-copy p {
  color: var(--muted);
  font-size: 17px;
}

.manufacturing-frame {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.12), rgba(184, 138, 67, 0.08)),
    var(--graphite);
}

.manufacturing-frame .eyebrow,
.manufacturing-pair-card .eyebrow {
  color: var(--gold);
}

.manufacturing-frame h2 {
  color: var(--white);
}

.manufacturing-frame-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.manufacturing-frame .spec-list {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.manufacturing-frame .spec-list dt {
  color: rgba(255, 255, 255, 0.62);
}

.manufacturing-frame .spec-list dd {
  color: var(--white);
}

.section-tree {
  background: var(--paper);
}

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

.tree-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.tree-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tree-card p {
  color: var(--muted);
}

.copy-stack p:last-child,
.section-heading p:last-child,
.product-copy p:last-child,
.quality-card p:last-of-type,
.contact p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.timeline {
  background: var(--paper);
}

.timeline-grid,
.capability-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline-grid article,
.news-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.timeline-grid p,
.capability-grid p,
.news-grid p,
.product-copy {
  color: var(--muted);
}

.about-page .page-hero {
  min-height: 560px;
}

.about-story-lead,
.about-story-focus,
.about-current {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 5.5vw, 86px);
  align-items: start;
  background: var(--white);
}

.about-story-lead {
  max-width: 1540px;
  margin: 0 auto;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(50px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.about-story-kicker {
  max-width: 640px;
}

.about-story-lead h2,
.about-story-focus h2,
.about-current h2 {
  max-width: 620px;
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.02;
}

.about-page .copy-stack {
  max-width: 820px;
}

.about-page .copy-stack p {
  margin-bottom: 20px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
}

.about-story-focus {
  max-width: none;
  padding-block: clamp(56px, 7vw, 96px);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.12), rgba(184, 138, 67, 0.08)),
    var(--graphite);
  color: var(--white);
}

.about-story-focus > div {
  max-width: 1540px;
}

.about-story-focus .eyebrow {
  color: var(--gold);
}

.about-story-focus h2 {
  color: var(--white);
}

.about-story-focus .copy-stack {
  color: rgba(255, 255, 255, 0.72);
}

.about-story-focus .copy-stack p {
  color: rgba(255, 255, 255, 0.72);
}

.about-journey {
  background: var(--paper);
}

.about-journey .section-heading {
  max-width: 1080px;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1120px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(94px, 14vw, 178px);
  width: 1px;
  background: var(--line);
}

.about-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: clamp(94px, 14vw, 178px) minmax(0, 1fr);
  min-height: 156px;
  border-bottom: 1px solid var(--line);
}

.about-timeline article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(clamp(94px, 14vw, 178px) - 6px);
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(12, 111, 115, 0.22);
}

.about-timeline span {
  padding: 30px 26px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-timeline div {
  padding: 28px clamp(24px, 4vw, 52px) 30px;
}

.about-timeline h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 2.2vw, 29px);
}

.about-timeline p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-current {
  max-width: 1540px;
  margin: 0 auto;
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.about-company-structure {
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.04), rgba(184, 138, 67, 0.04)),
    var(--paper);
}

.about-company-structure .section-heading {
  max-width: 1100px;
}

.company-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 4vw, 46px);
}

.company-structure-card {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 430px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.company-structure-card:hover,
.company-structure-card:focus-within {
  border-color: rgba(11, 91, 86, 0.36);
  box-shadow: 0 22px 48px rgba(9, 26, 29, 0.1);
  transform: translateY(-2px);
}

.company-structure-card-hit {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-structure-card > *:not(.company-structure-card-hit) {
  position: relative;
  z-index: 1;
}

.company-structure-card span,
.company-committee-panel .eyebrow,
.director-committee-grid span {
  color: var(--gold);
}

.company-structure-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.04;
}

.company-structure-card p,
.company-structure-card dd,
.director-committee-grid p {
  color: var(--muted);
}

.company-structure-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-structure-card dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.company-structure-card dt {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-structure-card dd {
  margin: 0;
  font-weight: 650;
}

.company-structure-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-self: end;
}

.company-committee-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  margin-top: 16px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--graphite);
  color: var(--white);
}

.company-committee-panel h3 {
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 42px);
}

.company-committee-panel p {
  color: rgba(255, 255, 255, 0.7);
}

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

.company-committee-links a {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.company-committee-links span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-committee-links strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.company-committee-links em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.about-next {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.08), rgba(184, 138, 67, 0.07)),
    var(--paper);
}

.about-next .section-heading {
  max-width: 980px;
}

.about-next-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.about-next-grid a {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.about-next-grid a:last-child {
  border-right: 0;
}

.about-next-grid a:hover {
  background: var(--graphite);
  color: var(--white);
}

.about-next-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-next-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 650;
  line-height: 1.05;
}

.about-next-grid em {
  display: block;
  max-width: 280px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.about-next-grid a:hover em {
  color: rgba(255, 255, 255, 0.7);
}

.route-grid {
  background: var(--paper);
}

.investor-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.investor-panel--single {
  grid-template-columns: 1fr;
}

.investor-panel--single .copy-stack {
  max-width: 1200px;
}

.investor-panel h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.04;
}

.investor-panel .copy-stack {
  max-width: 860px;
}

.governance-shell {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.governance-page {
  width: 100%;
}

.governance-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.governance-intro,
.governance-summary-card,
.governance-focus-card,
.governance-doc-panel {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.governance-intro {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.04), rgba(184, 138, 67, 0.035)),
    var(--white);
}

.governance-intro h2 {
  max-width: 920px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
}

.governance-intro .copy-stack {
  max-width: 920px;
}

.governance-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.metric-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.metric-card-header span {
  margin: 0;
}

.metric-card-header strong {
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.governance-metric-grid .metric-card {
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid rgba(19, 35, 38, 0.1);
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.02), rgba(255, 255, 255, 0)),
    var(--white);
}

.governance-metric-grid .metric-card p {
  max-width: none;
}

.governance-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.governance-focus-grid--single {
  grid-template-columns: 1fr;
}

.governance-focus-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.governance-focus-card h3 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
}

.governance-inline-links {
  margin-top: 4px;
}

.governance-docs-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: start;
}

.governance-docs-grid--single {
  grid-template-columns: 1fr;
}

.governance-doc-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.governance-doc-panel .section-heading {
  margin: 0;
  max-width: 900px;
}

.governance-doc-panel .section-heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
}

.governance-doc-panel .section-heading p {
  max-width: 760px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.governance-doc-panel .investor-document-table-wrap,
.governance-doc-panel .investor-document-list {
  margin-top: 0;
}

.governance-policy-list {
  grid-template-columns: 1fr;
}

.governance-policy-list .investor-document-card {
  gap: 18px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 18px 40px rgba(17, 34, 38, 0.05);
}

.governance-policy-list .investor-document-card h3 {
  max-width: 640px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.02;
}

.governance-policy-list .investor-document-card p {
  max-width: 780px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.governance-policy-list .document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.investor-stat-grid,
.investor-document-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(22px, 3vw, 38px);
}

.director-grid {
  display: block;
  column-count: 2;
  column-gap: 18px;
  margin-top: clamp(22px, 3vw, 38px);
}

.investor-stat-grid article,
.investor-document-card,
.director-card {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  background: var(--white);
}

.investor-stat-grid span,
.investor-document-meta,
.director-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investor-stat-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.investor-stat-grid p,
.investor-document-card p,
.director-card p {
  color: var(--muted);
}

.investor-document-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.investor-document-card h3,
.director-card h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
}

.investor-document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
}

.investor-document-meta span {
  margin: 0;
}

.investor-document-table-wrap {
  margin-top: clamp(22px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
  overflow-x: auto;
}

.investor-document-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 15px;
}

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

.investor-document-table th,
.investor-document-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.investor-document-table th {
  color: var(--teal-dark);
  background: rgba(12, 111, 115, 0.06);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investor-document-table tbody tr:last-child td {
  border-bottom: 0;
}

.investor-document-table tbody tr:hover {
  background: rgba(12, 111, 115, 0.035);
}

.investor-document-table time,
.document-type {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-document-table strong {
  display: block;
  max-width: 620px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.2;
}

.investor-document-table small {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.empty-state {
  padding: clamp(24px, 4vw, 42px);
}

.director-group {
  margin-top: clamp(34px, 5vw, 70px);
}

.board-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 42px);
  margin-bottom: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--white);
}

.board-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 16px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.board-tab:last-child {
  border-right: 0;
}

.board-tab span {
  font-family: var(--font-display);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.board-tab strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(12, 111, 115, 0.08);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
}

.board-tab.is-active {
  background: rgba(12, 111, 115, 0.055);
  box-shadow: none;
}

.board-tab-shell {
  width: 100%;
}

.board-entity-panel[hidden] {
  display: none;
}

.board-entity-panel .section-heading {
  margin-bottom: 24px;
}

.director-intro-panel {
  border-color: rgba(12, 111, 115, 0.2);
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.07), rgba(184, 138, 67, 0.045)),
    var(--white);
}

.director-intro-panel h2 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 48px);
}

.director-group .section-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.director-card {
  break-inside: avoid;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 18px;
  min-height: 0;
  border-color: rgba(19, 35, 38, 0.12);
  box-shadow: 0 16px 42px rgba(19, 35, 38, 0.05);
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.018), rgba(255, 255, 255, 0) 42%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(12, 111, 115, 0.92), rgba(184, 138, 67, 0.72));
}

.director-card > div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.director-card img,
.director-avatar {
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.12), rgba(184, 138, 67, 0.1)),
    var(--paper);
}

.director-avatar {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.director-card span {
  margin-bottom: 0;
  font-size: 11px;
  opacity: 0.95;
}

.director-card h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.04;
  text-wrap: balance;
}

.director-role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  margin-bottom: 4px;
  padding: 7px 12px 8px;
  border: 1px solid rgba(12, 111, 115, 0.14);
  border-radius: 999px;
  background: rgba(12, 111, 115, 0.055);
  color: var(--teal-dark) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.director-card p:not(.director-role) {
  max-width: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

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

.director-committee-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.director-committee-grid h3 {
  font-size: 19px;
}

.director-committee-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.director-committee-grid li strong {
  display: inline-block;
  margin-left: 6px;
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.nav a[aria-current="page"],
.nav-group > a[aria-current="page"] {
  color: var(--teal-dark);
  font-weight: 800;
}

.news-grid a {
  color: var(--teal-dark);
}

.news-grid a:hover {
  color: var(--teal);
}

.comparison-table {
  border: 1px solid rgba(94, 108, 110, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) minmax(150px, 0.9fr) minmax(120px, 0.7fr) minmax(220px, 1.2fr);
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(94, 108, 110, 0.14);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span {
  color: var(--muted);
  line-height: 1.35;
}

.comparison-table a {
  color: var(--ink);
  font-weight: 700;
}

.comparison-head {
  background: var(--ink);
}

.comparison-head span {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grouped-portfolio {
  background: var(--white);
}

.portfolio-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.portfolio-tabs a {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-tabs a:last-child {
  border-right: 0;
}

.api-group {
  scroll-margin-top: 100px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.035), rgba(184, 138, 67, 0.035)),
    var(--paper);
}

.api-group + .api-group {
  margin-top: 28px;
}

.api-group-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.api-group-heading h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.08;
}

.api-group-heading > span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(12, 111, 115, 0.18);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.api-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.api-product-grid article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 15px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-radius: var(--radius);
  background: var(--white);
}

.api-product-grid img {
  width: 104px;
  height: 78px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper);
}

.api-product-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.api-product-grid h3 {
  margin: 3px 0 5px;
  font-size: 18px;
  line-height: 1.16;
}

.api-product-grid a {
  color: var(--ink);
}

.api-product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.comparison-table.compact {
  margin-top: 16px;
}

.spec-section {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.06), rgba(184, 138, 67, 0.04)),
    var(--white);
}

.spec-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(94, 108, 110, 0.18);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 35, 38, 0.08);
  overflow: hidden;
}

.spec-product-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  min-height: 430px;
  margin: 0;
  background:
    linear-gradient(rgba(12, 111, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 111, 115, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.spec-product-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.spec-product-frame figcaption {
  padding: 14px 18px;
  border-top: 1px solid rgba(94, 108, 110, 0.14);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.spec-sheet {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.spec-sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(94, 108, 110, 0.16);
}

.spec-sheet-header span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-sheet-header strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.metric-panel {
  display: grid;
  gap: 12px;
}

.composition-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(94, 108, 110, 0.14);
  background: transparent;
}

.composition-label span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.composition-label strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.composition-track {
  height: 8px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(19, 35, 38, 0.08), rgba(19, 35, 38, 0.04)),
    rgba(94, 108, 110, 0.14);
  overflow: hidden;
}

.composition-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-dark), #00a0a8, var(--gold));
  box-shadow: 0 0 16px rgba(12, 111, 115, 0.22);
}

.technical-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 0;
  border-top: 1px solid rgba(94, 108, 110, 0.18);
  background: transparent;
}

.technical-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  min-height: 0;
  border-bottom: 1px solid rgba(94, 108, 110, 0.18);
  background: transparent;
}

.technical-table strong {
  display: block;
  padding: 14px 0;
  background: transparent;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technical-table span {
  display: block;
  padding: 14px 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
}

.capability-band {
  background: var(--graphite);
  color: var(--white);
}

.capability-band .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-grid {
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  overflow-x: auto;
  padding-bottom: 6px;
}

.capability-grid article,
.capability-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.capability-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.capability-card:hover,
.capability-card:focus-visible {
  border-color: rgba(192, 143, 55, 0.55);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-2px);
}

.capability-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.capability-grid-link {
  display: inline-flex;
  margin-top: 14px;
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.api-selection-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(192, 143, 55, 0.16), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(12, 111, 115, 0.22), transparent 30%),
    linear-gradient(135deg, #101a1c 0%, #1c282a 58%, #121b1d 100%);
}

.api-selection-band .section-heading {
  max-width: 1080px;
}

.api-selection-band .section-heading h2 {
  max-width: 980px;
  letter-spacing: -0.055em;
}

.api-selection-band .capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  overflow: visible;
  padding-bottom: 0;
}

.api-selection-band .capability-grid article {
  position: relative;
  min-height: auto;
  padding: clamp(26px, 3vw, 36px);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.api-selection-band .capability-grid article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  right: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(192, 143, 55, 0));
}

.api-selection-band .capability-grid article > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(192, 143, 55, 0.38);
  border-radius: 999px;
  background: rgba(192, 143, 55, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.api-selection-band .capability-grid h3 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.api-selection-band .capability-grid p {
  max-width: 34em;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.62;
}

.api-selection-band .capability-grid .cta-row {
  margin-top: 24px;
}

.homepage-platform-band .capability-grid .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.homepage-platform-band .capability-grid .button-secondary:hover {
  border-color: rgba(192, 143, 55, 0.54);
  background: rgba(192, 143, 55, 0.12);
}

.homepage-platform-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-platform-band .section-heading {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.homepage-platform-band .capability-grid h3 {
  max-width: 16ch;
}

.home-product-pathway-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 18%, rgba(192, 143, 55, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(12, 111, 115, 0.16), transparent 28%),
    linear-gradient(180deg, #0f1b1d 0%, #132024 58%, #10181b 100%);
}

.home-product-pathway-band .section-heading {
  max-width: 1020px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.home-product-pathway-band .section-heading h2 {
  max-width: 860px;
}

.home-product-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.home-product-pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
  padding: clamp(24px, 2.4vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(7, 18, 21, 0.06) 0%, rgba(7, 18, 21, 0.42) 48%, rgba(7, 18, 21, 0.82) 100%),
    linear-gradient(120deg, rgba(12, 111, 115, 0.16), rgba(192, 143, 55, 0.04)),
    var(--product-pathway-image) center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-product-pathway-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(192, 143, 55, 0));
}

.home-product-pathway-card > * {
  position: relative;
  z-index: 1;
}

.home-product-pathway-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-product-pathway-card strong {
  display: block;
  max-width: 14ch;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 28px rgba(7, 18, 21, 0.42);
}

.home-product-pathway-card p {
  max-width: 29ch;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.54;
  text-shadow: 0 8px 24px rgba(7, 18, 21, 0.34);
}

.home-product-pathway-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-product-pathway-card em::after {
  content: "→";
  font-size: 14px;
}

.home-product-pathway-card:hover,
.home-product-pathway-card:focus-visible {
  border-color: rgba(192, 143, 55, 0.48);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.products {
  background: var(--white);
}

.api-detail-lead {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 440px);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.055), rgba(184, 138, 67, 0.035)),
    var(--white);
}

.api-detail-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.api-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.api-detail-nav a {
  padding: 10px 13px;
  border: 1px solid rgba(12, 111, 115, 0.2);
  border-radius: 999px;
  background: rgba(12, 111, 115, 0.06);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.api-snapshot-card {
  position: sticky;
  top: 98px;
  padding: 16px;
  border: 1px solid rgba(94, 108, 110, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.api-snapshot-image {
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(94, 108, 110, 0.14);
  border-radius: 8px;
  background: var(--paper);
}

.api-snapshot-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.api-snapshot-image figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.api-snapshot-list {
  display: grid;
  gap: 8px;
}

.api-snapshot-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.api-snapshot-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.api-snapshot-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.cta-row,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row-stack {
  display: grid;
}

.section .button-secondary,
.api-snapshot-card .button-secondary {
  border-color: rgba(12, 111, 115, 0.28);
  background: var(--white);
  color: var(--teal-dark);
}

.api-product-dossier {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.065), rgba(184, 138, 67, 0.04)),
    var(--white);
}

.api-product-dossier .spec-visual {
  width: 100%;
  max-width: 1180px;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  margin-top: 6px;
  overflow: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.product-description-card {
  display: grid;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-description-card h2 {
  font-size: clamp(30px, 3.8vw, 50px);
}

.product-description-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
}

.product-description-card dl {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  border-top: 1px solid rgba(94, 108, 110, 0.18);
}

.product-description-card dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(94, 108, 110, 0.18);
  background: transparent;
}

.product-description-card dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-description-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.product-description-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 2px solid var(--teal);
}

.product-description-notes div {
  padding: 0;
  border: 0;
  background: transparent;
}

.product-description-notes span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.product-description-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.product-inline-cta {
  margin-top: 18px;
}

.product-spec-panel {
  position: sticky;
  top: 96px;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(94, 108, 110, 0.18);
}

.spec-visual--sheet {
  display: block;
  width: 100%;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.spec-visual--sheet .spec-sheet {
  min-height: 100%;
  padding: 22px 0 0;
}

.api-product-intro h2 {
  max-width: 780px;
}

.api-product-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.api-decision-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.api-decision-list div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.api-decision-list span,
.api-technical-summary dt,
.technical-note-grid span,
.related-compact-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.api-decision-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.22;
}

.api-evidence-section {
  background: var(--white);
}

.api-evidence-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.api-technical-summary {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-left: 4px solid var(--teal);
  background: var(--paper);
}

.api-technical-summary h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.api-technical-summary p {
  color: var(--muted);
  font-size: 17px;
}

.api-technical-summary dl {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
}

.api-technical-summary dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(94, 108, 110, 0.16);
}

.api-technical-summary dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.api-technical-summary-wide {
  max-width: 1040px;
}

.api-technical-notes {
  background: var(--paper);
}

.technical-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
}

.technical-note-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  background: var(--white);
}

.technical-note-grid p {
  color: var(--muted);
}

.technical-note-faq {
  display: grid;
  align-content: start;
  gap: 8px;
}

.technical-note-faq details {
  padding-top: 9px;
  border-top: 1px solid rgba(94, 108, 110, 0.14);
}

.technical-note-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.technical-note-faq details p {
  margin: 8px 0 0;
  font-size: 14px;
}

.api-related-section {
  background: var(--white);
}

.api-related-section-single .section-heading {
  max-width: 900px;
}

.api-related-stack {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.api-related-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.api-related-grid h3 {
  margin-bottom: 16px;
}

.related-compact-list {
  display: grid;
  gap: 8px;
}

.related-compact-list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.api-comparison-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(94, 108, 110, 0.18);
}

.api-comparison-cards a {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(220px, 0.36fr) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(94, 108, 110, 0.18);
  background: transparent;
}

.api-comparison-cards span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.api-comparison-cards strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.api-comparison-cards em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.related-compact-list a {
  display: grid;
  gap: 3px;
  padding: 15px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  background: var(--paper);
}

.related-compact-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
}

.related-compact-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.api-cta-band {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  background: var(--teal-dark);
  color: var(--white);
}

.api-cta-band h2 {
  max-width: 780px;
}

.api-cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.api-cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.api-cta-band-final {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.92), rgba(19, 35, 38, 0.96)),
    var(--teal-dark);
}

.service-page {
  --service-accent: var(--teal);
  --service-accent-soft: rgba(12, 111, 115, 0.08);
  --service-rule: rgba(94, 108, 110, 0.17);
  background: #f7f9f8;
}

.service-page--oils {
  --service-accent: #9b7337;
  --service-accent-soft: rgba(184, 138, 67, 0.12);
}

.service-page--topicals {
  --service-accent: #0c6f73;
  --service-accent-soft: rgba(12, 111, 115, 0.1);
}

.service-page--packaging {
  --service-accent: #60706a;
  --service-accent-soft: rgba(96, 112, 106, 0.12);
}

.service-page--vapes {
  --service-accent: #6f7f8c;
  --service-accent-soft: rgba(111, 127, 140, 0.12);
}

.service-page .page-hero {
  min-height: clamp(470px, 56vw, 620px);
  align-items: end;
  padding-top: clamp(92px, 10vw, 140px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.service-page .hero-media {
  filter: saturate(0.9) contrast(1.04);
}

.service-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 21, 0.94) 0%, rgba(7, 18, 21, 0.88) 34%, rgba(7, 18, 21, 0.54) 58%, rgba(7, 18, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 18, 21, 0.64) 0%, rgba(7, 18, 21, 0.12) 56%, rgba(7, 18, 21, 0) 100%);
}

.service-page .hero-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.service-page .page-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.98;
  text-wrap: balance;
}

.service-page .page-hero .hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.7vw, 22px);
}

.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 880px;
  margin-top: 10px;
}

.service-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.service-page .section-quicknav {
  position: relative;
  top: auto;
  z-index: 20;
  padding-inline: clamp(18px, 4vw, 70px);
  border-bottom-color: rgba(94, 108, 110, 0.14);
  box-shadow: 0 14px 28px rgba(19, 35, 38, 0.045);
}

.service-page .section-quicknav a {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.service-page .section-quicknav a:hover,
.service-page .section-quicknav a[aria-current="page"] {
  background: linear-gradient(180deg, var(--service-accent-soft), rgba(255, 255, 255, 0.94));
  color: var(--teal-dark);
}

.service-page .section {
  padding-block: clamp(58px, 7vw, 104px);
}

.service-page .split {
  grid-template-columns: minmax(280px, 0.7fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  border-top: 1px solid rgba(94, 108, 110, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfcfb);
}

.service-page .split > div:first-child {
  position: relative;
  max-width: 680px;
  padding-left: clamp(18px, 2vw, 28px);
}

.service-page .split > div:first-child::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: var(--service-accent);
}

.service-page .split h2,
.service-page .section-heading h2,
.service-page .api-cta-band h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  text-wrap: balance;
}

.service-page .copy-stack {
  display: grid;
  gap: 15px;
  max-width: 760px;
}

.service-page .copy-stack p {
  margin-bottom: 0;
}

.service-page .products {
  border-top: 1px solid rgba(94, 108, 110, 0.08);
  background:
    linear-gradient(135deg, var(--service-accent-soft), rgba(255, 255, 255, 0.72) 42%),
    #ffffff;
}

.service-page .route-grid {
  border-top: 1px solid rgba(94, 108, 110, 0.08);
  background: #f3f6f5;
}

.service-page .section-heading {
  max-width: 900px;
}

.service-page .section-heading p {
  max-width: 820px;
}

.service-page .spec-list {
  gap: 12px;
  border: 0;
  background: transparent;
}

.service-page .spec-list div {
  min-height: 104px;
  padding: 20px 20px 20px 22px;
  border: 1px solid var(--service-rule);
  border-top: 3px solid var(--service-accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(19, 35, 38, 0.055);
}

.service-page .spec-list span,
.service-page .news-grid span,
.service-page .related-compact-list span {
  color: var(--service-accent);
}

.service-page .spec-list strong {
  font-size: 16px;
  line-height: 1.42;
}

.service-page .news-grid {
  gap: 16px;
}

.service-page .news-grid article {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 26px;
  border-color: var(--service-rule);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(19, 35, 38, 0.055);
}

.service-page .news-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--service-accent);
}

.service-page .news-grid h3 {
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.18;
}

.service-page .related-compact-list a {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-page .related-compact-list a:hover,
.service-page .related-compact-list a:focus-visible {
  border-color: rgba(12, 111, 115, 0.35);
  box-shadow: 0 12px 30px rgba(19, 35, 38, 0.065);
  transform: translateY(-2px);
}

.service-page .api-cta-band-final {
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(6, 71, 75, 0.96), rgba(19, 35, 38, 0.98)),
    var(--teal-dark);
}

.service-page .api-cta-band-final .cta-row {
  min-width: min(100%, 280px);
  justify-content: flex-end;
}

.thc-process-section {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.05), rgba(184, 138, 67, 0.04)),
    var(--white);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 35, 38, 0.06);
}

.process-step > i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(12, 111, 115, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.9), transparent 22%),
    conic-gradient(from 120deg, rgba(12, 111, 115, 0.86), rgba(184, 138, 67, 0.86), rgba(12, 111, 115, 0.86));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.72);
}

.process-step span,
.process-product-card .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-top: 14px;
}

.process-step p,
.process-split p {
  color: var(--muted);
}

.process-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid rgba(12, 111, 115, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(12, 111, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 111, 115, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
}

.process-visual-line {
  position: absolute;
  top: 48px;
  left: 54px;
  right: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.process-visual-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.process-visual-node b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(12, 111, 115, 0.22);
}

.process-visual-node span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.process-product-card {
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: var(--paper);
}

.process-product-card h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.process-product-card a:not(.button) {
  color: var(--ink);
}

.process-product-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.process-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper);
}

.process-split-alt {
  background: var(--white);
}

.refinement-visual,
.chromatography-visual {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(94, 108, 110, 0.16);
  border-radius: var(--radius);
  background: var(--white);
}

.refinement-visual {
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
}

.vial-stage {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.vial-stage span,
.chromatography-column span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vial-stage i {
  display: block;
  width: 74px;
  height: 112px;
  border: 4px solid rgba(96, 119, 123, 0.22);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, transparent 0 28%, var(--liquid) 28% 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.34);
}

.vial-stage-crude {
  --liquid: #090503;
}

.vial-stage-distillate {
  --liquid: #b97920;
}

.vial-stage strong {
  color: var(--ink);
}

.refinement-arrow {
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 111, 115, 0.08);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.refinement-arrow::after {
  content: " ->";
}

.chromatography-visual {
  grid-template-columns: 130px 1fr;
  align-items: center;
}

.chromatography-column {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.chromatography-column::before {
  content: "";
  display: block;
  width: 54px;
  height: 220px;
  border: 2px solid rgba(96, 119, 123, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.1), rgba(184, 138, 67, 0.14)),
    var(--paper);
}

.chromatography-column i {
  position: absolute;
  top: var(--y);
  left: 50%;
  width: 42px;
  height: 16px;
  border-radius: 999px;
  background: var(--c);
  transform: translateX(-50%);
  opacity: 0.86;
}

.fraction-stack {
  display: grid;
  gap: 8px;
}

.fraction-stack div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.fraction-stack span {
  color: var(--ink);
  font-weight: 850;
}

.fraction-stack strong {
  color: var(--muted);
  font-size: 13px;
}

.minor-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.minor-link-grid a {
  padding: 10px 13px;
  border: 1px solid rgba(12, 111, 115, 0.22);
  border-radius: 999px;
  background: rgba(12, 111, 115, 0.06);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.technical-copy {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 4px solid var(--teal);
  background: var(--paper);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 460px);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.product-copy {
  font-size: 18px;
}

.product-copy-wide {
  max-width: 980px;
}

.product-form-figure {
  margin: 0 0 24px;
  border: 1px solid rgba(94, 108, 110, 0.18);
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-form-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f8faf9;
}

.product-form-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
}

.spec-list {
  display: grid;
  gap: 10px;
}

.spec-list div {
  padding: 22px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.spec-list strong {
  display: block;
  font-size: 19px;
}

.quality {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.08), rgba(184, 138, 67, 0.08)),
    var(--paper);
}

.quality-card {
  max-width: 1060px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quality-card p {
  color: var(--muted);
  font-size: 18px;
}

.quality-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.quality-points span {
  padding: 10px 12px;
  border: 1px solid rgba(12, 111, 115, 0.18);
  background: rgba(12, 111, 115, 0.06);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-preview {
  background: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 110px);
  background: var(--teal-dark);
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

address {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  font-style: normal;
}

address strong {
  font-size: 22px;
}

address span,
address a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-intake {
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
}

.contact-intake-copy {
  display: grid;
  gap: 28px;
}

.regulated-intake-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.intake-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intake-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.intake-type-grid button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
}

.intake-type-grid button.is-active {
  border-color: rgba(184, 138, 67, 0.7);
  background: var(--gold);
  color: var(--ink);
}

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

.regulated-intake-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.regulated-intake-form input,
.regulated-intake-form select,
.regulated-intake-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.regulated-intake-form textarea {
  resize: vertical;
}

.regulated-intake-form input:focus,
.regulated-intake-form select:focus,
.regulated-intake-form textarea:focus,
.intake-type-grid button:focus-visible {
  outline: 2px solid rgba(184, 138, 67, 0.92);
  outline-offset: 2px;
}

.intake-message,
.intake-submit-row {
  grid-column: 1 / -1;
}

.intake-submit-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.intake-submit-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.intake-submit-row p[data-state="success"] {
  color: #cde9d4;
}

.intake-submit-row p[data-state="error"] {
  color: #ffd7d4;
}

.regulated-intake-form .button[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.5fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 70px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d191b;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
  max-width: 430px;
}

.footer-credentials span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(184, 138, 67, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(184, 138, 67, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-credentials span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--gold);
}

.footer-credentials strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.footer-credentials small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-purchase-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #137f83;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.footer-purchase-cta:hover {
  background: #199195;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
}

.footer-sitemap div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-sitemap h2 {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-sitemap h2 a,
.footer-sitemap h2 a:hover {
  color: inherit;
  text-decoration: none;
}

.footer-sitemap a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.footer-sitemap a:hover {
  color: var(--white);
}

.footer-featured-on {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-featured-label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-featured-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 34px);
}

.footer-featured-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  opacity: 0.78;
  white-space: nowrap;
}

.footer-featured-logo-bloomberg {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.055em;
}

.footer-featured-logo-yahoo {
  flex-direction: column;
  color: #a477ff;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -0.075em;
  text-transform: lowercase;
}

.footer-featured-logo-yahoo em {
  margin-top: -4px;
  font-size: 0.46em;
  font-style: normal;
  letter-spacing: -0.05em;
}

.footer-featured-logo-businessday {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.8vw, 26px);
  letter-spacing: -0.06em;
}

.footer-featured-logo-businessday strong {
  color: #e76666;
  font-weight: 800;
}

.footer-featured-logo-businessday em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 800;
}

.footer-featured-logo-enca {
  overflow: hidden;
  width: 92px;
  min-height: 30px;
  border-radius: 4px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.02em;
  opacity: 0.86;
}

.footer-featured-logo-enca strong,
.footer-featured-logo-enca em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.footer-featured-logo-enca strong {
  width: 34%;
  background: #0076bd;
  font-weight: 900;
  text-transform: lowercase;
}

.footer-featured-logo-enca em {
  width: 66%;
  background: #d70912;
  font-weight: 900;
}

.footer-featured-logo-cnbc {
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.footer-featured-logo-cnbc > span {
  display: grid;
  gap: 2px;
}

.footer-featured-logo-cnbc strong {
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 900;
}

.footer-featured-logo-cnbc em {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(7px, 0.62vw, 10px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.footer-cnbc-peacock {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
  flex: 0 0 auto;
}

.footer-cnbc-peacock b {
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 8px;
  height: 16px;
  border-radius: 8px 8px 3px 3px;
  transform-origin: 50% 100%;
}

.footer-cnbc-peacock b:nth-child(1) {
  background: #6f2da8;
  transform: translateX(-50%) rotate(-58deg);
}

.footer-cnbc-peacock b:nth-child(2) {
  background: #1f77b4;
  transform: translateX(-50%) rotate(-34deg);
}

.footer-cnbc-peacock b:nth-child(3) {
  background: #19a0d8;
  transform: translateX(-50%) rotate(-11deg);
}

.footer-cnbc-peacock b:nth-child(4) {
  background: #2ca24c;
  transform: translateX(-50%) rotate(11deg);
}

.footer-cnbc-peacock b:nth-child(5) {
  background: #f4c542;
  transform: translateX(-50%) rotate(34deg);
}

.footer-cnbc-peacock b:nth-child(6) {
  background: #d7372f;
  transform: translateX(-50%) rotate(58deg);
}

.footer-featured-logo-engineering {
  gap: 3px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.4vw, 21px);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-featured-logo-engineering::before {
  content: "";
  width: 3px;
  height: 21px;
  margin-right: 3px;
  background: #d82027;
}

.footer-featured-logo-engineering em {
  color: #d82027;
  font-style: normal;
  font-weight: 900;
}

.footer-featured-logo-engineering strong {
  font-weight: 900;
}

.footer-featured-logo-sunday {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.9vw, 29px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: none;
}

.footer-featured-logo-sunday strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .manufacturing-stage-grid,
  .manufacturing-pair-grid,
  .manufacturing-frame {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-group {
    position: static;
  }

  .nav-menu {
    position: static;
    display: none;
    min-width: 0;
    width: auto;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu--api {
    display: none;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px;
    overflow: visible;
  }

  .nav-section {
    width: auto;
    padding: 3px 0 6px;
  }

  .nav-section::after {
    content: none;
  }

  .nav-menu .nav-section-title::after {
    transform: rotate(45deg);
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    max-width: none;
    max-height: none;
    margin: 2px 0 0 10px;
    padding: 2px 0 2px 8px;
    border: 0;
    border-left: 1px solid rgba(12, 111, 115, 0.18);
    box-shadow: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    content: none;
  }

  .nav-section:hover .nav-submenu,
  .nav-section:focus-within .nav-submenu {
    display: grid;
  }

  .nav-group:focus-within .nav-menu,
  .nav-group:hover .nav-menu {
    display: grid;
  }

  .hero-panel,
  .hero-home-layout,
  .product-hero,
  .ticker,
  .split,
  .about-story-lead,
  .about-story-focus,
  .about-current,
  .image-band,
  .visual-feature,
  .timeline-grid,
  .api-detail-lead,
  .api-product-dossier,
  .product-detail-grid,
  .api-evidence-grid,
  .api-related-grid,
  .api-cta-band,
  .process-product-card,
  .process-split,
  .refinement-visual,
  .chromatography-visual,
  .product-layout,
	  .news-grid,
	  .tree-grid,
    .about-next-grid,
    .company-structure-grid,
    .company-committee-panel,
    .api-product-grid,
	  .spec-visual,
    .investor-panel,
    .investor-stat-grid,
    .governance-metric-grid,
    .investor-document-list,
    .governance-lead,
    .governance-focus-grid,
    .governance-docs-grid,
    .director-committee-grid,
	  .contact {
	    grid-template-columns: 1fr;
	  }

  .director-grid {
    column-count: 1;
  }

  .about-story-kicker {
    position: static;
  }

  .about-timeline::before {
    left: 82px;
  }

  .about-timeline article {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .about-timeline article::before {
    left: 76px;
  }

  .about-timeline span {
    padding-inline: 18px;
  }

  .about-next-grid a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-next-grid a:last-child {
    border-bottom: 0;
  }

  .company-committee-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 42px);
  }

  .service-page .section-quicknav {
    top: 0;
  }

  .home-hero-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .intake-field-grid,
  .intake-submit-row {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    transform: none;
  }

  .product-hero {
    min-height: auto;
    padding-top: 104px;
    background-size: auto 78%, cover;
  }

  .product-spec-panel {
    position: static;
  }

  .api-product-dossier .spec-visual {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .spec-product-frame {
    min-height: auto;
  }

  .spec-product-frame img {
    min-height: 260px;
  }

  .process-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }

  .process-visual-line {
    display: none;
  }

  .refinement-arrow {
    min-width: 0;
  }

  .refinement-arrow::after {
    content: "";
  }

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

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table > div {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .api-decision-list {
    grid-template-columns: 1fr;
  }

  .product-description-notes,
  .related-compact-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .api-comparison-cards {
    grid-template-columns: 1fr;
  }

  .api-comparison-cards a {
    grid-template-columns: minmax(130px, 0.28fr) minmax(180px, 0.36fr) 1fr;
  }

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

  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .api-product-grid article {
    grid-template-columns: 92px 1fr;
  }

  .api-product-grid img {
    width: 92px;
    height: 72px;
  }

	  .composition-row {
	    grid-template-columns: 1fr;
	    gap: 8px;
	  }

	  .api-group-heading {
	    display: grid;
	    align-items: start;
	  }

	  .technical-table {
	    grid-template-columns: 1fr;
	  }

	  .technical-table div:nth-last-child(-n + 2) {
	    border-bottom: 0;
	  }

  .api-snapshot-card {
    position: static;
  }

  .api-cta-band {
    align-items: start;
  }

  .footer-credentials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 68px;
    padding: 11px clamp(14px, 4vw, 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(116px, 28vw, 142px);
  }

  .mobile-nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .share-price-ticker {
    max-width: min(34vw, 154px);
    min-width: 0;
    padding: 8px 11px;
  }

  .share-price-symbol,
  .share-price-ticker small {
    font-size: 9px;
  }

  .share-price-ticker strong {
    font-size: 12px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 10px;
    left: 10px;
    z-index: 80;
    display: none;
    max-height: calc(100vh - 82px);
    padding: 10px;
    overflow: auto;
    border: 1px solid rgba(217, 225, 227, 0.94);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 247, 0.98)),
      var(--white);
    box-shadow: 0 26px 70px rgba(19, 35, 38, 0.22);
    color: var(--ink);
    font-size: 15px;
    gap: 3px;
    grid-column: auto;
    justify-content: stretch;
  }

  .site-header.is-mobile-nav-open .nav {
    display: grid;
  }

  .nav > a,
  .nav-group > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .nav > a:hover,
  .nav-group > a:hover,
  .nav a[aria-current="page"],
  .nav-group > a[aria-current="page"] {
    background: rgba(12, 111, 115, 0.08);
    color: var(--teal-dark);
  }

  .nav-group {
    position: static;
    border-bottom: 1px solid rgba(217, 225, 227, 0.78);
  }

  .nav-group:last-child {
    border-bottom: 0;
  }

  .nav-group > a::after,
  .nav-menu .nav-section-title::after {
    transform: rotate(45deg);
    transition: transform 160ms ease;
  }

  .nav-group.is-open > a::after,
  .nav-section.is-open > .nav-section-title::after {
    transform: rotate(-135deg);
  }

  .nav-menu,
  .nav-menu--api {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    max-height: none;
    margin: 0 0 8px;
    padding: 4px 0 8px 12px;
    overflow: visible;
    border: 0;
    border-left: 2px solid rgba(12, 111, 115, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu::before,
  .nav-section::after,
  .nav-submenu::before {
    content: none;
  }

  .nav-group.is-open > .nav-menu {
    display: grid;
  }

  .nav-menu a,
  .nav-menu .nav-section-title {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    white-space: normal;
  }

  .nav-section {
    position: static;
    padding: 0;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    max-width: none;
    max-height: none;
    margin: 0 0 6px 10px;
    padding: 2px 0 2px 10px;
    overflow: visible;
    border: 0;
    border-left: 1px solid rgba(12, 111, 115, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-section.is-open > .nav-submenu {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 0;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 126px;
  }

  .nav {
    right: 8px;
    left: 8px;
    max-height: calc(100vh - 74px);
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    width: auto;
    justify-self: end;
    justify-content: flex-end;
  }

  .share-price-ticker {
    min-width: 0;
    width: fit-content;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 76px 18px 58px;
  }

  .hero-home {
    padding: 76px 16px 42px;
  }

  .hero-home-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content--home {
    gap: 22px;
  }

  .home-hero-focus {
    min-height: 236px;
  }

  .home-hero-tabs {
    grid-template-columns: 1fr;
  }

  .home-hero-tab,
  .section-quicknav a,
  .board-tab,
  .portfolio-tabs a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-hero-tab:last-child,
  .section-quicknav a:last-child,
  .board-tab:last-child,
  .portfolio-tabs a:last-child {
    border-bottom: 0;
  }

  .scene-breeze {
    width: 48%;
  }

  .distillation-beakers {
    gap: 10px;
  }

  .distillation-beaker {
    width: 58px;
    height: 88px;
  }

  .grow-plant {
    width: 42px;
    height: 144px;
  }

  .product-hero {
    padding: 94px 18px 52px;
    background:
      linear-gradient(90deg, rgba(7, 18, 21, 0.98) 0%, rgba(7, 18, 21, 0.92) 54%, rgba(7, 18, 21, 0.7) 100%),
      var(--product-hero-image) right bottom / auto 54% no-repeat,
      var(--teal-dark);
  }

  .product-hero-meta,
  .product-description-notes,
  .related-compact-list-grid,
  .api-comparison-cards {
    grid-template-columns: 1fr;
  }

  .product-description-card dl div,
  .technical-table div,
  .api-comparison-cards a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-spec-panel {
    padding-left: 0;
    border-left: 0;
  }

  h1 {
    font-size: clamp(36px, 13vw, 52px);
    line-height: 1;
  }

  .page-hero h1,
  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-copy,
  .page-hero .hero-copy,
  .api-product-lede,
  .copy-stack,
  .product-copy,
  .api-cta-band p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 48px 16px;
  }

  .service-page .section-quicknav {
    position: static;
    box-shadow: none;
  }

  .service-page .split > div:first-child {
    padding-left: 18px;
  }

  .about-page .page-hero {
    min-height: auto;
  }

  .about-timeline {
    border-top: 0;
  }

  .about-timeline::before {
    left: 24px;
  }

  .about-timeline article {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-left: 46px;
  }

  .about-timeline article::before {
    top: 32px;
    left: 19px;
  }

  .about-timeline span {
    padding: 26px 0 0;
  }

  .about-timeline div {
    padding: 8px 18px 28px 0;
  }

  .about-timeline h3 {
    font-size: 21px;
  }

  .about-timeline p {
    font-size: 16px;
  }

  .cta-row,
  .section-action,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .api-decision-list div {
    min-height: 0;
    padding: 15px;
  }

  .api-product-dossier .spec-visual,
  .spec-visual {
    gap: 18px;
    padding: 16px;
  }

  .spec-visual--sheet {
    padding: 0;
  }

  .spec-product-frame img {
    min-height: 220px;
  }

  .metric-panel {
    gap: 10px;
  }

  .composition-row {
    padding: 13px;
  }

  .technical-table {
    font-size: 14px;
  }

  .technical-table div {
    grid-template-columns: 1fr;
  }

  .technical-table div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .technical-table strong,
  .technical-table span {
    padding: 10px 12px;
  }

  .api-technical-summary {
    padding: 20px;
  }

  .api-technical-summary h2 {
    font-size: 28px;
  }

  .technical-note-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .investor-document-table-wrap {
    border: 0;
    background: transparent;
    overflow-x: visible;
  }

  .investor-document-table,
  .investor-document-table thead,
  .investor-document-table tbody,
  .investor-document-table tr,
  .investor-document-table th,
  .investor-document-table td {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .investor-document-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
  }

  .investor-document-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .investor-document-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(217, 225, 227, 0.7);
  }

  .investor-document-table td::before {
    content: attr(data-label);
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .investor-document-table td:last-child {
    border-bottom: 0;
  }

  .document-actions {
    gap: 8px 14px;
  }

  .investor-document-table strong {
    font-size: 17px;
  }

  .investor-panel,
  .investor-stat-grid article,
  .investor-document-card,
  .director-card,
  .governance-intro,
  .governance-summary-card,
  .governance-focus-card,
  .governance-doc-panel,
  .company-structure-card,
  .company-committee-panel,
  .director-committee-grid article {
    padding: 20px;
  }

  .company-structure-card {
    min-height: 0;
  }

  .company-structure-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .director-card {
    grid-template-columns: 1fr;
  }

  .technical-note-grid article {
    min-height: 0;
  }

  .api-product-grid {
    gap: 10px;
  }

  .api-product-grid article {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .api-product-grid img {
    width: 78px;
    height: 64px;
  }

  .api-product-grid h3,
  .related-compact-list strong {
    font-size: 16px;
  }

  .process-rail {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .process-step {
    min-height: 0;
  }

  .process-visual {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .process-product-card {
    padding: 18px;
  }

  .refinement-visual,
  .chromatography-visual {
    padding: 16px;
  }

  .hero-panel div {
    min-height: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 16px 22px;
  }

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

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

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

  .footer-featured-logo-grid {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .api-selection-band .capability-grid {
    grid-template-columns: 1fr;
  }

  .api-selection-band .capability-grid h3 {
    max-width: 22ch;
  }
}

/* Investor information refinement: scoped to imported investor pages only. */
.investor-page .investor-content-section {
  background:
    radial-gradient(circle at top left, rgba(12, 111, 115, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(247, 245, 239, 0.9), #ffffff 38%, rgba(247, 245, 239, 0.82));
}

.investor-page .content-article {
  width: 100%;
  max-width: none;
}

.investor-page .investor-panel,
.investor-page .governance-intro,
.investor-page .governance-summary-card,
.investor-page .governance-focus-card,
.investor-page .governance-doc-panel,
.investor-page .investor-document-table-wrap,
.investor-page .investor-document-card,
.investor-page .director-card,
.investor-page .director-committee-grid article {
  border-color: rgba(19, 35, 38, 0.12);
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(19, 35, 38, 0.07);
}

.investor-page .investor-panel,
.investor-page .governance-intro,
.investor-page .governance-doc-panel {
  background:
    linear-gradient(135deg, rgba(12, 111, 115, 0.055), rgba(184, 138, 67, 0.045) 48%, rgba(255, 255, 255, 0.96)),
    var(--white);
}

.investor-page .investor-panel h2,
.investor-page .governance-intro h2,
.investor-page .governance-doc-panel .section-heading h2,
.investor-page .director-intro-panel h2 {
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.investor-page .investor-stat-grid,
.investor-page .investor-document-list,
.investor-page .governance-metric-grid,
.investor-page .governance-focus-grid,
.investor-page .governance-docs-grid {
  gap: clamp(18px, 2vw, 26px);
}

.investor-page .investor-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.investor-page .metric-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.investor-page .metric-card-header strong {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.investor-page .investor-stat-grid:not(.shareholder-register-grid) article {
  min-height: 118px;
  padding: clamp(16px, 1.6vw, 22px);
}

.investor-page .investor-stat-grid:not(.shareholder-register-grid) .metric-card-header {
  gap: clamp(10px, 1vw, 14px);
}

.investor-page .investor-stat-grid:not(.shareholder-register-grid) .metric-card-header span {
  max-width: 18ch;
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  line-height: 1.28;
}

.investor-page .investor-stat-grid:not(.shareholder-register-grid) .metric-card-header strong {
  max-width: 100%;
  font-size: clamp(1.6rem, 1.9vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.investor-page .investor-stat-grid:not(.shareholder-register-grid) p {
  max-width: 28ch;
  font-size: clamp(0.82rem, 0.92vw, 0.96rem);
  line-height: 1.34;
  margin-top: 2px;
}

.investor-page .shareholder-register-panel {
  margin-top: clamp(18px, 2vw, 28px);
  padding: clamp(22px, 2.3vw, 34px);
}

.investor-page .shareholder-register-panel h2 {
  max-width: 780px;
  font-size: clamp(28px, 2.7vw, 42px);
}

.investor-page .shareholder-register-panel .copy-stack {
  max-width: 980px;
}

.investor-page .shareholder-register-panel .copy-stack p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}

.investor-page .shareholder-register-grid {
  margin-top: clamp(14px, 1.7vw, 22px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 16px);
  align-items: stretch;
}

.investor-page .investor-stat-grid article,
.investor-page .metric-card,
.investor-page .investor-document-card,
.investor-page .governance-focus-card,
.investor-page .governance-doc-panel,
.investor-page .director-committee-grid article {
  position: relative;
  overflow: hidden;
}

.investor-page .investor-stat-grid article::before,
.investor-page .metric-card::before,
.investor-page .investor-document-card::before,
.investor-page .governance-focus-card::before,
.investor-page .governance-doc-panel::before,
.investor-page .director-committee-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(12, 111, 115, 0.9), rgba(184, 138, 67, 0.78), rgba(12, 111, 115, 0));
}

.investor-page .investor-stat-grid article,
.investor-page .investor-document-card,
.investor-page .governance-metric-grid .metric-card,
.investor-page .governance-focus-card,
.investor-page .director-committee-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.68)),
    var(--white);
}

.investor-page .investor-stat-grid span,
.investor-page .investor-document-meta,
.investor-page .director-card span,
.investor-page .metric-card-header span {
  letter-spacing: 0.15em;
}

.investor-page .shareholder-register-grid .metric-card {
  min-height: 148px;
  padding: clamp(18px, 1.75vw, 24px);
}

.investor-page .shareholder-register-grid .metric-card-header {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 1.7vw, 24px);
}

.investor-page .shareholder-register-grid .metric-card-header span {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: pretty;
}

.investor-page .shareholder-register-grid .metric-card-header strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(2rem, 2.55vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  text-align: left;
  white-space: nowrap;
  overflow-wrap: normal;
}

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

  .investor-page .shareholder-register-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  }
}

@media (max-width: 700px) {
  .home-product-pathway-grid {
    grid-template-columns: 1fr;
  }

  .home-product-pathway-card {
    min-height: 228px;
  }

  .investor-page .shareholder-register-grid {
    grid-template-columns: 1fr;
  }

  .investor-page .shareholder-register-grid .metric-card {
    min-height: 0;
  }

  .investor-page .shareholder-register-grid .metric-card-header strong {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }
}

.investor-page .investor-document-card h3,
.investor-page .director-card h3,
.investor-page .governance-focus-card h3,
.investor-page .director-committee-grid h3 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.investor-page .investor-document-table-wrap {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.025), rgba(255, 255, 255, 0)),
    var(--white);
}

.investor-page .investor-document-table th {
  background:
    linear-gradient(180deg, rgba(12, 111, 115, 0.09), rgba(12, 111, 115, 0.045)),
    var(--paper);
  color: var(--ink);
}

.investor-page .investor-document-table tbody tr:hover {
  background: rgba(12, 111, 115, 0.055);
}

.investor-page .document-actions .text-link,
.investor-page .investor-document-card .text-link,
.investor-page .investor-document-table a {
  text-underline-offset: 0.22em;
}

@media (max-width: 980px) {
  .investor-page .investor-panel,
  .investor-page .governance-docs-grid,
  .investor-page .governance-focus-grid,
  .investor-page .governance-metric-grid,
  .investor-page .investor-stat-grid,
  .investor-page .investor-document-list {
    grid-template-columns: 1fr;
  }
}

.contract-platform-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 138, 67, 0.16), transparent 26%),
    radial-gradient(circle at 86% 4%, rgba(12, 111, 115, 0.16), transparent 28%),
    linear-gradient(135deg, #091819 0%, #102326 54%, #081112 100%);
  color: var(--white);
}

.contract-platform-heading {
  max-width: 1120px;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.contract-platform-heading h2 {
  max-width: 1080px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contract-platform-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
}

.contract-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.contract-platform-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(270px, 18vw, 330px);
  overflow: hidden;
  border: 1px solid rgba(205, 225, 225, 0.22);
  background: #0f1d1f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  color: var(--white);
  text-decoration: none;
  transform: translateZ(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contract-platform-card img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
  opacity: 0.78;
  transform: scale(1.01);
  transition: transform 420ms ease, opacity 180ms ease, filter 180ms ease;
}

.contract-platform-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 18, 19, 0.94) 0%, rgba(8, 22, 24, 0.82) 34%, rgba(8, 22, 24, 0.34) 72%, rgba(8, 22, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 18, 20, 0.16) 0%, rgba(6, 18, 20, 0.82) 100%);
}

.contract-platform-rule {
  position: absolute;
  top: 0;
  left: 38px;
  width: 112px;
  height: 1px;
  background: var(--gold);
}

.contract-platform-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  max-width: 62%;
  padding: clamp(24px, 2.2vw, 34px);
}

.contract-platform-copy .eyebrow {
  color: #d7a556;
}

.contract-platform-copy strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contract-platform-copy em {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
}

.contract-platform-copy b {
  display: inline-flex;
  margin-top: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contract-platform-card:hover,
.contract-platform-card:focus-visible {
  border-color: rgba(184, 138, 67, 0.74);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.contract-platform-card:hover img,
.contract-platform-card:focus-visible img {
  filter: saturate(0.95) contrast(1.08);
  opacity: 0.88;
  transform: scale(1.055);
}

@media (max-width: 980px) {
  .contract-platform-grid {
    grid-template-columns: 1fr;
  }

  .contract-platform-card {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .contract-platform-heading h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .contract-platform-copy {
    max-width: 84%;
    padding: 24px;
  }
}
