:root {
  --paper: #FFFFFF;
  --panel: #F3F6F4;
  --ink: #16272B;
  --muted: #5C6A6C;
  --teal: #0E6E5C;
  --teal-deep: #0A5748;
  --teal-bright: #15B892;
  --line: #E2E6E3;
  --header-height: 88px;
  --container: 1320px;
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "Space Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--teal);
  color: var(--paper);
}

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  text-wrap: balance;
}

.home-container {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 24px;
  top: 16px;
  padding: 11px 16px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition:
    color 360ms var(--ease-soft),
    background-color 360ms var(--ease-soft),
    border-color 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(22, 39, 43, .08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: background-color 360ms var(--ease-soft), backdrop-filter 360ms var(--ease-soft);
}

.site-header.is-solid {
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(22, 39, 43, .06);
}

.site-header.is-solid::before {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  height: var(--header-height);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  position: relative;
  display: block;
  width: 180px;
  height: 46px;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  height: 34px;
  transform: translateY(-50%);
  transition: opacity 300ms ease;
}

.brand-logo--dark {
  opacity: 0;
}

.brand-logo--light {
  opacity: 1;
}

.site-header.is-solid .brand-logo--dark {
  opacity: 1;
}

.site-header.is-solid .brand-logo--light {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
}

.nav-links > a,
.nav-item > .nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
}

.nav-links > a::after,
.nav-item > .nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-item > .nav-link:hover::after,
.nav-item > .nav-link.is-active::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after,
.nav-item:has(.nav-dropdown a.is-active) > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 280ms var(--ease);
}

.nav-dropdown {
  position: absolute;
  z-index: 12;
  top: calc(100% - 5px);
  left: 50%;
  width: 310px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(22, 39, 43, .1);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(22, 39, 43, .15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 350ms var(--ease);
}

.nav-dropdown::before {
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
  content: "";
}

.nav-dropdown a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  transition: color 180ms ease, background-color 180ms ease, transform 250ms var(--ease);
}

.nav-dropdown a span {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.nav-dropdown a small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a.is-active {
  color: var(--teal);
  background: var(--panel);
  transform: translateX(2px);
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:hover > .nav-link .nav-caret,
.nav-item:focus-within > .nav-link .nav-caret {
  transform: translateY(3px) rotate(225deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    background-color 250ms ease,
    transform 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, .12);
  transform: translateX(-105%) skewX(-16deg);
  transition: transform 600ms var(--ease);
}

.button:hover::before {
  transform: translateX(105%) skewX(-16deg);
}

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

.button:active {
  transform: translateY(0);
}

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

.button--primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  box-shadow: 0 12px 28px rgba(10, 87, 72, .22);
}

.button--ghost-light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .02);
}

.button--ghost-light:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button--bright {
  color: var(--ink);
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}

.button--bright:hover {
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
}

.site-header:not(.is-solid) .nav-contact {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(14, 110, 92, .9);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-media video {
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 24, 27, .88) 0%, rgba(13, 24, 27, .68) 38%, rgba(13, 24, 27, .22) 72%, rgba(13, 24, 27, .35) 100%),
    linear-gradient(0deg, rgba(13, 24, 27, .64) 0%, transparent 42%),
    linear-gradient(180deg, rgba(13, 24, 27, .38) 0%, transparent 25%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-top: calc(var(--header-height) + 120px);
  padding-bottom: clamp(96px, 12vh, 150px);
}

.hero-copy {
  max-width: 930px;
}

.mono-label,
.section-marker,
.footer-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Keep the homepage's compact labels crisp at their deliberately small scale. */
.home-page .mono-label,
.home-page .section-marker,
.home-page .footer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .86);
  opacity: 0;
  animation: hero-rise 900ms 150ms var(--ease) forwards;
}

.hero-kicker span {
  width: 34px;
  height: 1px;
  background: var(--teal-bright);
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 28px;
  color: var(--paper);
  font-size: clamp(54px, 6.1vw, 88px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .99;
  opacity: 0;
  transform: translateY(42px);
  animation: hero-rise 1100ms 260ms var(--ease) forwards;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .79);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 1000ms 440ms var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 950ms 580ms var(--ease) forwards;
}

.hero-index {
  display: grid;
  justify-items: end;
  gap: 10px;
  padding-bottom: 4px;
  font-family: var(--mono);
  opacity: .68;
}

.hero-index span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-index strong {
  color: var(--teal-bright);
  font-size: 13px;
  letter-spacing: .12em;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--teal-bright);
  transform: translateX(-100%);
  animation: scroll-line 2.1s var(--ease-soft) infinite;
}

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

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.section {
  padding: clamp(104px, 10vw, 150px) 0;
}

.platform-chapter,
.company-chapter {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  color: #879194;
}

.section-marker b {
  color: var(--teal);
}

.section-marker span {
  width: 28px;
  height: 1px;
  background: #BFC8C5;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform 900ms var(--ease);
}

.section-marker.is-visible span {
  transform: scaleX(1);
}

.section-marker--sub {
  margin-bottom: 30px;
  color: var(--teal);
}

.section-title {
  max-width: 820px;
  margin-bottom: 32px;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .92fr);
  align-items: start;
  gap: clamp(64px, 10vw, 150px);
}

.platform-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.platform-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.platform-model {
  position: relative;
  margin-top: clamp(76px, 8vw, 116px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 32px 90px rgba(22, 39, 43, .07);
}

.platform-model__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .8fr);
  align-items: end;
  gap: 72px;
  padding: 44px 48px 38px;
  border-bottom: 1px solid var(--line);
}

.platform-model__heading .mono-label {
  margin-bottom: 14px;
  color: var(--teal);
}

.platform-model__heading h3 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.platform-model__heading > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.platform-model__stage {
  position: relative;
  min-height: clamp(520px, 52vw, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 38%, rgba(14, 110, 92, .12), transparent 32%),
    linear-gradient(180deg, #F8FAF8 0%, var(--panel) 100%);
}

.platform-model model-viewer {
  display: block;
  width: 100%;
  height: clamp(520px, 52vw, 720px);
  --poster-color: transparent;
  --progress-bar-color: var(--teal);
  --progress-bar-height: 3px;
  cursor: grab;
}

.platform-model model-viewer:active {
  cursor: grabbing;
}

.platform-model__tools {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(226, 230, 227, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(22, 39, 43, .1);
  backdrop-filter: blur(12px);
}

.platform-model__tools span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.platform-model__tools button {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--teal);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 200ms ease, transform 260ms var(--ease);
}

.platform-model__tools button:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.platform-model__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.platform-model__legend > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.platform-model__legend > div:last-child {
  border-right: 0;
}

.platform-model__legend b {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.platform-model__legend span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.platform-model__note {
  margin: 0;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  color: #7B8789;
  background: var(--paper);
  font-size: 11px;
  line-height: 1.5;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 600;
}

.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform 380ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(76px, 8vw, 116px);
}

.benefit-card,
.operation-card {
  border: 1px solid var(--line);
  border-radius: 9px;
}

.benefit-card {
  min-height: 275px;
  padding: 30px;
  transition: transform 500ms var(--ease), border-color 300ms ease, box-shadow 500ms var(--ease);
}

.benefit-card:hover {
  z-index: 1;
  border-color: rgba(14, 110, 92, .4);
  box-shadow: 0 24px 65px rgba(22, 39, 43, .09);
  transform: translateY(-8px);
}

.benefit-card .mono-label,
.operation-card .mono-label,
.product-heading .mono-label,
.bulk-heading .mono-label,
.solution-body .mono-label,
.locations-heading .mono-label,
.news-card .mono-label,
.partners-heading .mono-label {
  margin-bottom: 18px;
  color: var(--teal);
}

.benefit-card h3,
.operation-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.benefit-card p:last-child,
.operation-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.operations-section {
  padding: 0 0 clamp(104px, 10vw, 150px);
  background: var(--panel);
}

.operations-scroll {
  position: relative;
  height: 280svh;
}

.operations-sticky {
  position: sticky;
  top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 48px 0;
  overflow: clip;
}

.operations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
}

.operations-heading .section-marker {
  margin-bottom: 24px;
}

.operations-heading .section-title {
  margin-bottom: 0;
}

.operations-status {
  width: 220px;
  padding-bottom: 8px;
}

.operations-status > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.operations-status > div {
  height: 2px;
  overflow: hidden;
  background: rgba(14, 110, 92, .14);
}

.operations-status i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal);
  transform: scaleX(.3333);
  transform-origin: left;
  transition: transform 520ms var(--ease);
}

.operations-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.operation-card {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 36px 34px;
  overflow: visible;
  background: rgba(255, 255, 255, .68);
  transform: scale(.985);
  transition:
    color 420ms var(--ease),
    background-color 420ms var(--ease),
    border-color 420ms var(--ease),
    transform 520ms var(--ease),
    box-shadow 520ms var(--ease);
}

.operation-card::before {
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  border-radius: 9px 9px 0 0;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms var(--ease);
}

.operation-card:not(.is-active) h3 {
  color: #607073;
}

.operation-card:not(.is-active) > p:last-of-type {
  color: #7A8789;
}

.operation-card.is-complete {
  border-color: rgba(14, 110, 92, .24);
  background: rgba(255, 255, 255, .82);
}

.operation-card.is-active {
  z-index: 5;
  border-color: rgba(14, 110, 92, .52);
  background: var(--paper);
  box-shadow: 0 28px 68px rgba(22, 39, 43, .13);
  transform: translateY(-9px) scale(1.012);
}

.operation-card.is-active::before {
  transform: scaleX(1);
}

.operation-card:nth-child(1) {
  z-index: 3;
}

.operation-card:nth-child(2) {
  z-index: 2;
}

.operation-card:hover {
  box-shadow: 0 22px 60px rgba(22, 39, 43, .08);
}

.operation-card.is-active:hover {
  box-shadow: 0 28px 68px rgba(22, 39, 43, .13);
  transform: translateY(-9px) scale(1.012);
}

.operations-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 0;
  color: #7A8789;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.operations-scroll-hint i {
  position: relative;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(14, 110, 92, .45);
  border-radius: 999px;
}

.operations-scroll-hint i::after {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: var(--teal);
  transform: translateX(-50%);
  animation: operation-scroll-cue 1.8s var(--ease-soft) infinite;
}

.operations-scroll.is-exit-ready .operations-scroll-hint {
  color: var(--teal);
}

@keyframes operation-scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  70% { opacity: 1; transform: translate(-50%, 9px); }
  100% { opacity: 0; transform: translate(-50%, 9px); }
}

.mineral-pipeline {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
  margin-top: 84px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.mineral-pipeline__intro .mono-label {
  margin-bottom: 14px;
  color: var(--teal);
}

.mineral-pipeline__intro h3 {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.mineral-pipeline__intro > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.mineral-explorer {
  min-width: 0;
}

.periodic-shell {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(22, 39, 43, .09);
}

.periodic-shell__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.periodic-shell__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(14, 110, 92, .16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
}

.periodic-shell__hint svg {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--teal);
}

.periodic-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  /* vertical padding + negative margins so the lifted/scaled active cell
     isn't clipped by overflow: hidden (top-row elements: Mg, Si, P) */
  margin: 10px -8px -10px;
  padding: 10px 8px;
  overflow: hidden;
}

.periodic-stage::after {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 18px;
  width: 15%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(21, 184, 146, .1), transparent);
  transform: skewX(-9deg) translateX(-160%);
  animation: periodic-scan 7.5s var(--ease-soft) infinite;
}

.periodic-periods {
  display: grid;
  grid-template-rows: repeat(2, 56px);
  gap: 4px;
  color: rgba(22, 39, 43, .42);
  font-family: var(--mono);
  font-size: 8px;
}

.periodic-periods span {
  display: grid;
  place-items: center;
}

.periodic-table {
  display: grid;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  grid-template-rows: repeat(2, 56px);
  gap: 4px;
}

.periodic-cell {
  position: relative;
  min-width: 0;
  grid-column: var(--group);
  grid-row: var(--period);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5px;
  border: 1px solid rgba(22, 39, 43, .08);
  border-radius: 5px;
  color: rgba(22, 39, 43, .36);
  background: rgba(255, 255, 255, .46);
}

.periodic-cell small {
  font-family: var(--mono);
  font-size: 6px;
  line-height: 1;
}

.periodic-cell strong {
  font-family: var(--display);
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.periodic-cell--focusable {
  appearance: none;
  overflow: hidden;
  border-color: rgba(14, 110, 92, .3);
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  font: inherit;
  text-align: left;
  animation: element-signal 5.8s var(--ease-soft) var(--pulse-delay, 0s) infinite;
  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease,
    box-shadow 450ms var(--ease),
    transform 450ms var(--ease);
}

.periodic-cell--focusable::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 22%, rgba(21, 184, 146, .16) 48%, transparent 74%);
  transform: translateX(-135%);
  animation: mineral-selectable-sheen 5.2s var(--ease-soft) var(--pulse-delay, 0s) infinite;
}

.periodic-cell--focusable span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.periodic-cell--focusable:hover {
  z-index: 4;
  border-color: var(--teal);
  background: var(--paper);
  transform: translateY(-3px) scale(1.045);
}

.periodic-cell--focusable:hover::after {
  animation: none;
  transform: translateX(135%);
  transition: transform 650ms var(--ease);
}

.periodic-cell--focusable.is-active {
  z-index: 5;
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
  box-shadow:
    0 0 0 3px rgba(14, 110, 92, .12),
    0 14px 30px rgba(22, 39, 43, .16);
  animation: none;
  transform: translateY(-4px) scale(1.07);
}

.periodic-cell--focusable.is-active::after {
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, .16) 50%, transparent 76%);
  transform: translateX(135%);
  animation: none;
}

@keyframes periodic-scan {
  0%,
  18% {
    opacity: 0;
    transform: skewX(-9deg) translateX(-160%);
  }
  25% {
    opacity: 1;
  }
  62% {
    opacity: .8;
    transform: skewX(-9deg) translateX(680%);
  }
  70%,
  100% {
    opacity: 0;
    transform: skewX(-9deg) translateX(680%);
  }
}

@keyframes element-signal {
  0%,
  72%,
  100% {
    border-color: rgba(14, 110, 92, .3);
    box-shadow: none;
  }
  82% {
    border-color: rgba(14, 110, 92, .68);
    box-shadow: 0 0 20px rgba(14, 110, 92, .12);
  }
}

@keyframes mineral-selectable-sheen {
  0%,
  54% {
    transform: translateX(-135%);
  }
  76%,
  100% {
    transform: translateX(135%);
  }
}

.mineral-detail {
  position: relative;
  z-index: 2;
  min-height: 190px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.mineral-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 18px;
  color: var(--teal);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(14, 110, 92, .1), transparent 70%),
    var(--panel);
}

.mineral-element small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mineral-element strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.mineral-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 42px;
}

.mineral-detail__copy .mono-label {
  margin-bottom: 12px;
  color: var(--teal);
}

.mineral-detail__copy h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.mineral-detail__copy > p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.mineral-detail.is-switching .mineral-element,
.mineral-detail.is-switching .mineral-detail__copy {
  animation: mineral-swap 420ms var(--ease);
}

@keyframes mineral-swap {
  from {
    opacity: .15;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading-row .section-title {
  margin-bottom: 22px;
}

.section-heading-row > .text-link {
  margin-bottom: 15px;
}

.product-heading,
.bulk-heading {
  margin-top: 80px;
  margin-bottom: 32px;
}

.product-heading .mono-label,
.bulk-heading .mono-label {
  margin-bottom: 10px;
}

.product-heading h3,
.bulk-heading h3 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.025em;
}

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

.retail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease), border-color 300ms ease;
}

.retail-card:hover {
  z-index: 2;
  border-color: rgba(14, 110, 92, .36);
  box-shadow: 0 30px 75px rgba(22, 39, 43, .11);
  transform: translateY(-8px);
}

.retail-media {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .98) 0 31%, transparent 64%),
    var(--panel);
}

.retail-media img {
  --retail-scale: 1;
  --retail-hover-scale: 1.035;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(22, 39, 43, .13));
  transform: scale(var(--retail-scale));
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.retail-media--potash img {
  max-width: 90%;
  max-height: 90%;
}

.retail-media--paste img {
  --retail-scale: 1.68;
  --retail-hover-scale: 1.73;
}

.retail-media--shower img {
  --retail-scale: 1.34;
  --retail-hover-scale: 1.39;
}

.retail-media--bar img {
  --retail-scale: 1.7;
  --retail-hover-scale: 1.76;
}

.retail-media--potash-small img {
  --retail-scale: 1.22;
  --retail-hover-scale: 1.26;
}

.retail-media--potash-medium img {
  --retail-scale: 1.1;
  --retail-hover-scale: 1.14;
}

.retail-media--potash-large img {
  --retail-scale: 1.2;
  --retail-hover-scale: 1.24;
}

.retail-card:hover .retail-media img {
  filter: drop-shadow(0 32px 27px rgba(22, 39, 43, .2));
  transform: translateY(-6px) scale(var(--retail-hover-scale));
}

.retail-meta {
  position: relative;
  min-height: 108px;
  padding: 22px 58px 22px 24px;
  border-top: 1px solid var(--line);
}

.retail-meta span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.retail-meta h3 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.retail-action {
  margin-top: 30px;
}

.bulk-heading {
  margin-top: 112px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.bulk-heading + .solution-grid {
  margin-top: 0;
}

.solution-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.solution-card:hover {
  box-shadow: 0 26px 68px rgba(22, 39, 43, .1);
  transform: translateY(-7px);
}

.solution-media {
  height: 310px;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  background: var(--panel);
}

.solution-media img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(22, 39, 43, .15));
  transition: transform 700ms var(--ease);
}

.solution-media--sack img {
  width: auto;
  height: auto;
}

.solution-media--potash img {
  max-width: 60%;
  max-height: 224px;
}

.solution-media--cocoboost img {
  max-width: 62%;
  max-height: 230px;
}

.solution-media--wide img {
  max-width: 94%;
  max-height: 76%;
}

.solution-card:hover .solution-media img {
  transform: scale(1.04) translateY(-5px);
}

.solution-body {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.solution-body h3 {
  margin-bottom: 16px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.solution-body > p:not(.mono-label) {
  margin-bottom: 26px;
  color: var(--muted);
}

.solution-body .text-link {
  margin-top: auto;
}

.locations {
  margin-top: 120px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(22, 39, 43, .06);
}

.locations-section {
  background: var(--panel);
}

.locations--standalone {
  margin-top: 64px;
  background: var(--paper);
}

.locations-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.locations-heading .mono-label {
  color: var(--teal);
}

.locations-heading h3 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.location-card:last-child {
  border-right: 0;
}

.location-card > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.location-card h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.location-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.locations-action {
  margin-top: 32px;
}

.impact-section {
  padding-bottom: clamp(116px, 12vw, 176px);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-stat {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--line);
}

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

.impact-stat strong {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1;
}

.impact-stat span {
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.impact-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.impact-story {
  min-height: 260px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
}

.impact-story .mono-label {
  margin-bottom: 24px;
  color: var(--teal);
}

.impact-story h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.impact-story > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.impact-action {
  margin-top: 34px;
}

.company-overview {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.company-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: start;
  gap: clamp(64px, 10vw, 150px);
}

.company-overview__grid .section-title {
  max-width: 760px;
  margin: 0;
}

.company-overview__copy > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.company-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-top: 34px;
}

.news-section {
  border-top: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 66px;
}

.news-image {
  position: relative;
  height: 255px;
  display: block;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--panel);
}

.news-image::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(22, 39, 43, .08);
  border-radius: inherit;
  pointer-events: none;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.news-card:hover .news-image img {
  filter: saturate(.85);
  transform: scale(1.045);
}

.news-card .mono-label {
  margin-bottom: 12px;
}

.news-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.news-card > p:not(.mono-label) {
  min-height: 56px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}

.partners-section {
  padding: 116px 0 130px;
  background: var(--panel);
}

.partners-heading {
  margin-bottom: 50px;
  text-align: center;
}

.partners-heading .mono-label {
  margin-bottom: 16px;
  color: #879194;
}

.partners-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.partner-grid > div {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease;
}

.partner-grid > div:hover {
  background: #F9FBFA;
}

.partner-grid img {
  max-width: 88%;
  max-height: 64px;
  object-fit: contain;
  filter: saturate(.92);
  transition: filter 300ms ease, transform 400ms var(--ease);
}

.partner-grid > div:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.team-section {
  padding-bottom: clamp(110px, 12vw, 168px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.team-photo {
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--panel);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.01);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.team-card:hover .team-photo img {
  filter: saturate(.9);
  transform: scale(1.045);
}

.team-card h3 {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.team-card p {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 14px;
}

.closing-section {
  color: var(--paper);
  background: var(--ink);
}

.closing-row {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.closing-row h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.closing-row > div {
  display: flex;
  flex: none;
  gap: 12px;
}

.site-footer {
  padding: 92px 0 30px;
  color: rgba(255, 255, 255, .62);
  background: var(--ink);
}

.footer-brand {
  display: grid;
  grid-template-columns: 220px minmax(0, 560px);
  align-items: start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-brand img {
  width: 168px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

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

.footer-offices {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 2fr);
  gap: 64px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer-offices > .footer-label {
  margin: 3px 0 0;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.footer-office {
  display: grid;
  align-content: start;
  gap: 5px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.footer-office strong {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .88);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}

.footer-office a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .76);
  transition: color 200ms ease;
}

.footer-office a:hover {
  color: var(--teal-bright);
}

.footer-offices + .footer-bottom {
  margin-top: 36px;
}

.footer-label {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .48);
}

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

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .72);
  transition: color 200ms ease;
}

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

.footer-links span {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--teal-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.operation-card.reveal.is-visible {
  transform: scale(.985);
}

.operation-card.reveal.is-visible.is-active {
  transform: translateY(-9px) scale(1.012);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 80px;
  }

  .home-container {
    width: min(var(--container), calc(100% - 56px));
  }

  .nav {
    grid-template-columns: 190px 1fr auto;
  }

  .nav-links {
    gap: 24px;
  }

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

  .mineral-pipeline {
    grid-template-columns: 1fr;
  }

  .team-photo {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr .7fr .8fr 1.15fr;
    gap: 38px;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 38px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 14ch;
    margin-bottom: 18px;
    font-size: clamp(50px, 5vw, 64px);
  }

  .hero-lede {
    max-width: 660px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .operations-sticky {
    padding: 26px 0;
  }

  .operations-heading .section-marker {
    margin-bottom: 14px;
  }

  .operations-heading .section-title {
    font-size: clamp(36px, 3.8vw, 50px);
  }

  .operations-grid {
    margin-top: 30px;
  }

  .operation-card {
    min-height: 210px;
    padding: 28px 30px;
  }

  .operations-scroll-hint {
    margin-top: 24px;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    display: block;
    overflow: auto;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform 450ms var(--ease), opacity 300ms ease, visibility 450ms;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__inner {
    width: min(var(--container), calc(100% - 56px));
    display: grid;
    margin: 0 auto;
    padding: 34px 0 40px;
  }

  .mobile-menu__inner > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 24px;
  }

  .mobile-menu__inner > a.is-active:not(.button) {
    color: var(--teal);
  }

  .mobile-menu__group {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu__parent {
    display: block;
    padding: 15px 0 9px;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.2;
  }

  .mobile-menu__parent.is-active {
    color: var(--teal);
  }

  .mobile-menu__group:has(.mobile-menu__children a.is-active) .mobile-menu__parent {
    color: var(--teal);
  }

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

  .mobile-menu__children a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    transition: color 180ms ease;
  }

  .mobile-menu__children a:hover,
  .mobile-menu__children a.is-active {
    color: var(--teal);
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 24px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(50px, 8vw, 72px);
  }

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

  .platform-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .platform-model__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .operations-section {
    padding: 104px 0;
  }

  .operations-scroll {
    height: auto;
  }

  .operations-sticky {
    position: static;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .operations-heading {
    grid-template-columns: 1fr;
  }

  .operations-status,
  .operations-scroll-hint {
    display: none;
  }

  .operations-scroll.is-static .operation-card,
  .operations-scroll.is-static .operation-card.is-active,
  .operations-scroll.is-static .operation-card.reveal.is-visible {
    border-color: var(--line);
    background: var(--paper);
    box-shadow: none;
    transform: none;
  }

  .operations-scroll.is-static .operation-card::before {
    display: none;
  }

  .operations-grid,
  .solution-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .mineral-detail {
    grid-template-columns: 196px 1fr;
  }

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

  .solution-card {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
  }

  .solution-media {
    height: auto;
    min-height: 360px;
  }

  .solution-body {
    min-height: 360px;
  }

  .locations {
    padding: 48px;
  }

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

  .location-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .impact-stat:nth-child(1),
  .impact-stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .company-overview__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-card > p:not(.mono-label) {
    min-height: 0;
  }

  .news-image {
    height: 420px;
  }

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

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

  .team-photo {
    height: 420px;
  }

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

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

  .footer-offices {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .home-container {
    width: calc(100% - 40px);
  }

  .brand {
    width: 154px;
  }

  .brand-logo {
    height: 29px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 90px);
    padding-bottom: 94px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(43px, 12vw, 58px);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-index,
  .hero-scroll {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-media video {
    object-position: 58% center;
  }

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

  .section {
    padding: 92px 0;
  }

  .section-marker {
    margin-bottom: 30px;
  }

  .section-title,
  .platform-intro h2 {
    font-size: clamp(36px, 10vw, 47px);
  }

  .platform-copy p {
    font-size: 16px;
  }

  .platform-model {
    margin-top: 64px;
  }

  .platform-model__heading {
    padding: 30px 24px 26px;
  }

  .platform-model__heading h3 {
    font-size: 32px;
  }

  .platform-model__stage,
  .platform-model model-viewer {
    min-height: 430px;
    height: 430px;
  }

  .platform-model__tools {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: space-between;
  }

  .platform-model__tools span {
    max-width: 160px;
    line-height: 1.35;
  }

  .platform-model__legend {
    grid-template-columns: 1fr;
  }

  .platform-model__legend > div {
    min-height: 58px;
    padding: 14px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-model__legend > div:last-child {
    border-bottom: 0;
  }

  .platform-model__note {
    padding: 14px 22px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

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

  .operations-grid {
    gap: 16px;
    margin-top: 48px;
  }

  .mineral-pipeline {
    gap: 34px;
    margin-top: 56px;
    padding-top: 46px;
  }

  .periodic-shell {
    padding: 16px;
  }

  .periodic-shell__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .periodic-stage {
    grid-template-columns: 1fr;
    margin: 8px -8px -10px;
  }

  .periodic-periods,
  .periodic-cell--context {
    display: none;
  }

  .periodic-table {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 88px;
    gap: 8px;
  }

  .periodic-cell--focusable {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 88px;
    padding: 10px 8px;
  }

  .periodic-cell--focusable strong {
    font-size: 25px;
  }

  .periodic-cell--focusable span {
    position: static;
    width: auto;
    height: auto;
    margin-top: 5px;
    overflow: visible;
    clip: auto;
    color: var(--muted);
    font-size: 7px;
    line-height: 1;
    white-space: normal;
  }

  .periodic-cell--focusable.is-active span {
    color: rgba(255, 255, 255, .72);
  }

  .mineral-detail {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .mineral-element {
    min-height: 128px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mineral-detail__copy {
    min-height: 220px;
    padding: 32px 28px;
  }

  .section-heading-row,
  .locations-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-row > .text-link {
    margin-bottom: 0;
  }

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

  .retail-media {
    height: 300px;
  }

  .bulk-heading {
    margin-top: 86px;
  }

  .solution-card {
    display: block;
  }

  .solution-media {
    min-height: 300px;
  }

  .solution-body {
    min-height: 310px;
  }

  .locations {
    margin-top: 90px;
    padding: 34px 24px;
  }

  .locations--standalone {
    margin-top: 48px;
  }

  .locations-heading h3 {
    font-size: 30px;
  }

  .location-card {
    grid-template-columns: 38px 1fr;
    padding: 26px 0;
  }

  .impact-grid {
    margin-top: 54px;
  }

  .impact-stat,
  .impact-stat:nth-child(1),
  .impact-stat:nth-child(2) {
    min-height: 165px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-stat:last-child {
    border-bottom: 0;
  }

  .impact-stories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-story {
    min-height: 0;
    padding: 30px 26px;
  }

  .company-overview__copy > p {
    font-size: 16px;
  }

  .company-overview__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid {
    gap: 52px;
  }

  .news-image {
    height: 250px;
  }

  .partners-section {
    padding: 88px 0 100px;
  }

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

  .partner-grid > div {
    min-height: 104px;
    padding: 16px;
  }

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

  .team-photo {
    height: 410px;
  }

  .closing-row > div {
    width: 100%;
    display: grid;
  }

  .closing-row .button {
    width: 100%;
  }

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

  .footer-office-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-media video {
    display: none;
  }

  .hero-media {
    background: url("../../images/process-cocoa-poster.jpg") center / cover no-repeat;
  }

  .reveal,
  .hero-kicker,
  .hero h1,
  .hero-lede,
  .hero-actions {
    opacity: 1;
    transform: none;
  }

  .operations-scroll {
    height: auto;
  }

  .operations-sticky {
    position: static;
    min-height: 0;
    padding: clamp(72px, 8vw, 110px) 0 0;
    overflow: visible;
  }

  .operations-status,
  .operations-scroll-hint {
    display: none;
  }

  .operation-card,
  .operation-card.is-active,
  .operation-card.reveal.is-visible,
  .operation-card.reveal.is-visible.is-active {
    border-color: var(--line);
    background: var(--paper);
    box-shadow: none;
    transform: none !important;
  }

  .operation-card::before {
    display: none;
  }

  .periodic-stage::after {
    display: none;
  }

  .periodic-cell--focusable {
    animation: none !important;
  }

}
