:root {
  --ink: #101713;
  --forest: #06382f;
  --forest-deep: #032b24;
  --lime: #ddff2f;
  --leaf-green: #9fc56f;
  --paper: #ffffff;
  --off-white: #f4f5ef;
  --pale-green: #eaf0df;
  --muted: #68716c;
  --line: #dce1da;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

/* Navigation */

.site-header {
  position: fixed;
  z-index: 100;
  top: 24px;
  right: 0;
  left: 0;
  display: grid;
  width: var(--shell);
  height: 64px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  margin-inline: auto;
  transition: background 180ms ease, border-color 180ms ease, border-radius 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 0 14px;
  border-color: transparent;
  border-radius: 14px;
  background: rgba(3, 43, 36, 0.92);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.menu-open .site-header {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-logo {
  width: 25px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  width: 5px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-30deg) translate(-3px, -1px);
}

.brand-mark i + i {
  transform: rotate(150deg) translate(-3px, -1px);
}

.site-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: flex;
  width: 100vw;
  height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 2.2vh, 24px);
  padding: clamp(110px, 15vh, 170px) max(32px, calc((100vw - 1180px) / 2));
  background: var(--forest-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.site-nav a {
  opacity: 0.72;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.95;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  transform: translateX(8px);
}

.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--lime);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(3, 43, 36, 0.38);
  color: var(--paper);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.menu-toggle i {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 19px;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button span {
  font-size: 15px;
  transition: transform 180ms ease;
}

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

.button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -2px);
}

.button--nav {
  min-height: 40px;
  margin-left: auto;
  padding-inline: 18px;
  background: var(--lime);
  color: var(--ink);
}

.button--nav:focus-visible {
  outline-color: var(--forest);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--lime);
}

.button--dark {
  background: var(--forest);
  color: var(--paper);
}

/* Hero */

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #7ba082;
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/saf-hero-v2.jpg");
  background-position: center;
  background-size: cover;
}

.hero-media {
  animation: hero-settle 1100ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 34, 27, 0.72) 0%, rgba(3, 34, 27, 0.36) 42%, rgba(3, 34, 27, 0.03) 74%),
    linear-gradient(0deg, rgba(3, 34, 27, 0.3), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(700px, 100svh);
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 150px;
}

.eyebrow,
.section-kicker,
.mini-label,
.journey-overline {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.eyebrow::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 7vw, 98px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span {
  background: none;
  color: var(--leaf-green);
  -webkit-text-fill-color: currentColor;
}

.hero-copy {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  bottom: 0;
  display: grid;
  width: min(930px, 76vw);
  min-height: 108px;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  background: var(--forest);
  color: var(--ink);
  margin-inline: auto;
}

.hero-proof .proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 26px;
  background: var(--forest);
  color: var(--paper);
}

.proof-intro > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-intro strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.proof-intro i {
  color: var(--lime);
  font-style: normal;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  background: var(--paper);
}

.hero-proof > * + * {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.proof-item span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.42;
}

/* Shared sections */

.section {
  padding: 112px 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
}

.section-kicker span {
  display: inline-flex;
  width: 32px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.7);
}

.problem-heading h2,
.solution-heading h2,
.verdant-content h2,
.closing h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.problem-heading p,
.solution-heading p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Challenge */

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

.problem-heading {
  max-width: 900px;
  margin: 55px auto 0;
  text-align: center;
}

.problem-heading p {
  max-width: 650px;
  margin: 24px auto 0;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 64px;
}

.challenge-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.challenge-card--image {
  background: var(--forest);
}

.challenge-card__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/aviation-refueling-v2.jpg");
  background-position: center;
  background-size: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.challenge-card--image:hover .challenge-card__image {
  transform: scale(1.025);
}

.challenge-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 38, 31, 0.82), rgba(3, 38, 31, 0.02) 72%);
  content: "";
}

.challenge-card__overlay {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 30px;
  color: var(--paper);
}

.challenge-card__overlay span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.challenge-card__overlay strong {
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.challenge-card--data {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--pale-green);
}

.mini-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-size: 8px;
}

.challenge-card--data h3 {
  max-width: 440px;
  margin: 25px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.gap-visual {
  position: relative;
  min-height: 130px;
  margin: 18px -8px 0;
  overflow: hidden;
}

.gap-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gap-visual::before,
.gap-visual::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(13, 22, 19, 0.1);
  content: "";
}

.gap-visual::before { top: 34px; }
.gap-visual::after { top: 87px; }

.gap-route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.gap-route--dark {
  stroke: var(--forest);
}

.gap-route--green {
  stroke: #b9dd14;
}

.gap-aircraft {
  fill: var(--forest);
}

.challenge-card--data p {
  margin: auto 0 0;
  color: #5e6862;
  font-size: 13px;
  line-height: 1.58;
}

/* Solution */

.solution {
  overflow: hidden;
  background: var(--off-white);
  color: var(--ink);
}

.solution .section-kicker--light {
  color: var(--muted);
}

.solution-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr;
  gap: 80px;
  align-items: end;
  margin-top: 55px;
}

.solution-heading p {
  margin: 0 0 4px;
}

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

.solution-card {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-rows: auto minmax(215px, 1fr) auto auto;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.solution-card:hover {
  border-color: #bdc7bd;
  transform: translateY(-4px);
}

.solution-card--accent {
  border-color: var(--lime);
  background: var(--lime);
}

.solution-card__number {
  display: inline-flex;
  width: 36px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.solution-card h3 {
  margin: 0 0 11px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.solution-card p,
.solution-card--accent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.solution-card--accent p {
  color: rgba(16, 23, 19, 0.66);
}

.solution-graphic {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 215px;
  align-items: center;
  margin: 5px 0 2px;
}

.solution-graphic svg {
  width: 100%;
  height: auto;
  max-height: 210px;
  overflow: visible;
  color: var(--forest);
}

.solution-graphic circle,
.solution-graphic path,
.solution-graphic rect {
  vector-effect: non-scaling-stroke;
}

.diagram-chain circle,
.diagram-output circle {
  fill: var(--paper);
  stroke: currentColor;
  stroke-width: 1.5;
}

.diagram-chain path,
.diagram-output path,
.diagram-arrow,
.diagram-flow,
.diagram-icon,
.diagram-pipe,
.diagram-signal {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.diagram-enzyme {
  fill: var(--forest);
  stroke: var(--forest);
}

.solution-graphic--enzyme > svg > text:not(.diagram-caption) {
  fill: var(--lime);
  font-size: 24px;
  font-weight: 500;
  text-anchor: middle;
}

.diagram-caption {
  fill: currentColor;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.diagram-node,
.diagram-vessel,
.diagram-filter,
.diagram-tank {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.diagram-drop {
  fill: rgba(221, 255, 47, 0.34);
  stroke: currentColor;
  stroke-width: 1.5;
}

.diagram-signal {
  fill: var(--lime);
  stroke: currentColor;
  stroke-width: 1.5;
}

.solution-card--accent .diagram-chain circle,
.solution-card--accent .diagram-output circle {
  fill: var(--lime);
}

/* Scroll journey */

.journey {
  position: relative;
  height: 340vh;
  padding: 12px 0;
  background: var(--paper);
}

.journey-sticky {
  position: sticky;
  top: 12px;
  height: calc(100svh - 24px);
  min-height: 650px;
  margin: 0 12px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--paper);
}

.journey-backgrounds,
.journey-bg {
  position: absolute;
  inset: 0;
}

.journey-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(0.82);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1400ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.journey-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.journey-bg[data-journey-bg="0"] {
  background-image: url("assets/journey-source.jpg");
}

.journey-bg[data-journey-bg="1"] {
  background-image: url("assets/journey-transform-v3.jpg");
}

.journey-bg[data-journey-bg="2"] {
  background-image: url("assets/journey-refine-v6.jpg");
}

.journey-bg[data-journey-bg="3"] {
  background-image: url("assets/saf-hero-v2.jpg");
}

.journey-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 43%, rgba(221, 255, 47, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(3, 43, 36, 0.93) 0%, rgba(3, 43, 36, 0.68) 52%, rgba(3, 43, 36, 0.18) 100%);
}

.journey-shell {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 42px;
  padding-bottom: 36px;
}

.journey-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journey-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.journey-progress > div {
  width: 105px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.journey-progress i {
  display: block;
  width: calc(var(--journey-progress, 0) * 100%);
  height: 100%;
  background: var(--lime);
}

.journey-copy {
  max-width: 700px;
  transition: opacity 150ms ease, transform 150ms ease;
}

.journey-copy.is-changing {
  opacity: 0.12;
  transform: translateY(9px);
}

.journey-overline {
  margin: 0 0 15px;
  color: var(--lime);
}

.journey-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.journey-copy > p:last-child {
  max-width: 530px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.62;
}

.journey-diagram {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
}

.journey-node {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.38);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 220ms ease;
}

.journey-node span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.journey-node small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-node.is-active {
  color: var(--lime);
}

.journey-node:hover,
.journey-node:focus-visible {
  color: var(--lime);
}

.journey-node:focus-visible {
  outline: none;
}

.journey-node:focus-visible span {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.journey-line {
  height: 1px;
  margin: 0 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.journey-line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  transition: width 260ms ease;
}

.journey-line.is-complete i {
  width: 100%;
}

/* Project Verdant */

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

.verdant-feature {
  position: relative;
  min-height: 680px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--paper);
  isolation: isolate;
}

.verdant-feature > picture {
  position: absolute;
  inset: 0;
}

.verdant-feature > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.003);
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.verdant-feature:hover > picture img {
  transform: scale(1.02);
}

.verdant-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 43, 36, 0.17), transparent 38%),
    linear-gradient(90deg, rgba(3, 43, 36, 0.9) 0%, rgba(3, 43, 36, 0.55) 46%, rgba(3, 43, 36, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 43, 36, 0.58), transparent 42%);
}

.verdant-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  min-height: 575px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 65px;
}

.verdant-status {
  display: grid;
  gap: 3px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--lime);
}

.verdant-status span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdant-status strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.verdant-status em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-style: normal;
}

.verdant-content p {
  max-width: 620px;
  margin: 24px 0 27px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.65;
}

.verdant-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 104px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 43, 36, 0.73);
  backdrop-filter: blur(12px);
}

.verdant-facts > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 29px;
}

.verdant-facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.verdant-facts strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.verdant-facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

/* Closing and footer */

.closing {
  margin: 12px;
  padding: 100px 0;
  border-radius: var(--radius-xl);
  background: var(--lime);
}

.closing-inner {
  display: grid;
  grid-template-columns: 0.52fr 1.6fr auto;
  gap: 40px;
  align-items: end;
}

.closing p {
  margin: 0 0 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.closing h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.footer {
  margin: 12px;
  padding: 72px 0 30px;
  border-radius: var(--radius-xl);
  background: var(--forest-deep);
  color: var(--paper);
}

.footer-top {
  display: grid;
  min-height: 245px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.brand--footer {
  align-self: start;
  gap: 14px;
  font-size: 25px;
}

.brand--footer .brand-logo {
  width: 40px;
  height: 49px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 580px;
  text-align: right;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.hero .reveal:nth-child(2) { transition-delay: 70ms; }
.hero .reveal:nth-child(3) { transition-delay: 140ms; }
.hero .reveal:nth-child(4) { transition-delay: 210ms; }

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero-proof {
    width: min(900px, 84vw);
  }

  .solution-heading {
    grid-template-columns: 1.3fr 0.8fr;
    gap: 45px;
  }

  .closing-inner {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .closing .button {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-xl: 24px;
    --radius-lg: 20px;
  }

  .site-header {
    position: fixed;
    top: 12px;
    right: auto;
    left: 20px;
    width: calc(100% - 40px);
    height: 54px;
    padding-bottom: 10px;
    margin-inline: 0;
    transform: none;
    transition: background 180ms ease, border-radius 180ms ease, padding 180ms ease;
  }

  .site-header.is-scrolled {
    padding: 0 13px;
    border-color: transparent;
    border-radius: 14px;
    background: rgba(3, 43, 36, 0.95);
    backdrop-filter: blur(12px);
  }

  body.menu-open .site-header {
    padding: 0 13px;
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .brand-logo {
    width: 22px;
    height: 27px;
  }

  .button--nav {
    display: none;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    gap: 6px;
    background: transparent;
  }

  .menu-toggle i {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    inset: 0;
    width: 100vw;
    height: 100svh;
    gap: 22px;
    padding: 96px 38px 44px;
  }

  .site-nav a {
    font-size: 27px;
    letter-spacing: -0.04em;
  }

  .hero {
    min-height: 880px;
    margin: 0;
    border-radius: 0;
  }

  .hero-media {
    animation: none;
    background-image: url("assets/saf-hero-mobile-v4.jpg");
    background-position: right center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 34, 27, 0.73), rgba(3, 34, 27, 0.13)),
      linear-gradient(0deg, rgba(3, 34, 27, 0.72), transparent 65%);
  }

  .hero-content {
    min-height: 750px;
    justify-content: flex-end;
    padding-top: 105px;
    padding-bottom: 205px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 62px);
    line-height: 0.93;
  }

  .hero-copy {
    margin-top: 21px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .hero-proof {
    right: 8px;
    left: 8px;
    width: calc(100% - 16px);
    min-height: 176px;
    grid-template-columns: 1fr 1fr;
    margin-inline: 0;
  }

  .hero-proof > div {
    padding: 16px 12px;
  }

  .hero-proof > *:nth-child(3) {
    border-left: 0;
  }

  .hero-proof > *:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .proof-intro {
    min-height: 88px;
  }

  .proof-item strong {
    font-size: 14px;
  }

  .proof-item span {
    font-size: 9px;
  }

  .section {
    padding: 80px 0;
  }

  .problem-heading {
    margin-top: 40px;
    text-align: left;
  }

  .problem-heading h2,
  .solution-heading h2,
  .verdant-content h2,
  .closing h2 {
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .problem-heading p {
    margin-left: 0;
  }

  .challenge-grid,
  .solution-grid {
    grid-template-columns: 1fr;
    margin-top: 43px;
  }

  .challenge-card {
    min-height: 390px;
  }

  .challenge-card__image,
  .challenge-card--image:hover .challenge-card__image {
    transform: none;
    transition: none;
  }

  .challenge-card--data {
    padding: 26px;
  }

  .solution-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 40px;
  }

  .solution-heading p {
    font-size: 14px;
  }

  .solution-card {
    min-height: 400px;
  }

  .journey {
    height: 330vh;
    padding: 8px 0;
  }

  .journey-sticky {
    top: 8px;
    height: calc(100svh - 16px);
    min-height: 640px;
    margin: 0 8px;
  }

  .journey-bg,
  .journey-bg.is-active {
    filter: none;
    transform: none;
  }

  .journey-bg {
    transition: opacity 420ms ease;
  }

  .journey-bg[data-journey-bg="0"] {
    background-image: url("assets/journey-source-mobile.jpg");
  }

  .journey-bg[data-journey-bg="1"] {
    background-image: url("assets/journey-transform-mobile-v3.jpg");
  }

  .journey-bg[data-journey-bg="2"] {
    background-image: url("assets/journey-refine-mobile-v6.jpg");
  }

  .journey-bg[data-journey-bg="3"] {
    background-image: url("assets/saf-hero-mobile-v4.jpg");
    background-position: right center;
  }

  .journey-shell {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .journey-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .journey-progress > div {
    width: 82px;
  }

  .journey-copy h2 {
    font-size: clamp(43px, 12.5vw, 60px);
  }

  .journey-copy > p:last-child {
    font-size: 14px;
  }

  .journey-node {
    gap: 0;
  }

  .journey-node span {
    width: 32px;
    height: 32px;
  }

  .journey-node small {
    display: none;
  }

  .journey-line {
    margin: 0 6px;
  }

  .verdant-feature {
    min-height: 790px;
    margin-top: 40px;
  }

  .verdant-feature > picture img {
    object-position: 43% center;
    transform: none;
    transition: none;
  }

  .verdant-feature:hover > picture img {
    transform: none;
  }

  .verdant-shade {
    background: linear-gradient(0deg, rgba(3, 43, 36, 0.98), rgba(3, 43, 36, 0.64) 61%, rgba(3, 43, 36, 0.1));
  }

  .verdant-content {
    min-height: 610px;
    justify-content: flex-end;
    padding: 28px 24px;
  }

  .verdant-content p {
    font-size: 13px;
  }

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

  .verdant-facts > div {
    min-height: 60px;
    padding: 10px 24px;
  }

  .verdant-facts > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .verdant-facts strong {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .closing {
    margin: 8px;
    padding: 78px 0;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .footer {
    margin: 8px;
    padding-top: 56px;
  }

  .footer-top {
    min-height: 360px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .footer-bottom p:last-child {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Interior pages */

.site-header--interior {
  position: fixed;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 43, 36, 0.93), rgba(3, 43, 36, 0.48) 56%, rgba(3, 43, 36, 0.08));
  content: "";
}

.page-hero--about::before {
  background-image: url("assets/journey-source.jpg");
}

.page-hero--investors::before {
  background-image: url("assets/project-verdant.jpg");
}

.page-hero--news::before {
  background-image: url("assets/news-feasibility.jpg");
}

.page-hero--careers::before {
  background-image: url("assets/careers-hero-v3.jpg");
}

.page-hero--contact::before {
  background-image: url("assets/contact-hero-v2.jpg");
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 80px;
}

.page-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.page-label--plain {
  gap: 0;
}

.page-label--plain::before {
  display: none;
}

.page-label--ticker {
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.08em;
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.page-hero h1 span {
  background: none;
  color: var(--leaf-green);
  -webkit-text-fill-color: currentColor;
}

.page-hero__copy {
  max-width: 650px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.6;
}

.content-section {
  padding: 110px 0;
}

.content-section--soft {
  background: var(--off-white);
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.editorial-split h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.editorial-copy {
  max-width: 690px;
}

.editorial-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.editorial-copy p + p {
  margin-top: 20px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.fact-row > div {
  min-height: 150px;
  padding: 30px;
}

.fact-row > div + div {
  border-left: 1px solid var(--line);
}

.fact-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.fact-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.timeline-grid,
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.timeline-card,
.advantage-card {
  min-height: 310px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.timeline-card:first-child,
.advantage-card:first-child {
  border-color: var(--lime);
  background: var(--lime);
}

.timeline-card__step,
.advantage-card__step {
  display: inline-flex;
  min-width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-card h3,
.advantage-card h3 {
  margin: 125px 0 12px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.timeline-card p,
.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.timeline-card:first-child p,
.advantage-card:first-child p {
  color: rgba(16, 23, 19, 0.66);
}

.feature-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--paper);
}

.feature-band > picture {
  position: absolute;
  inset: 0;
}

.feature-band > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 43, 36, 0.93), rgba(3, 43, 36, 0.45) 58%, transparent);
  content: "";
}

.feature-band__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 700px;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 65px;
}

.feature-band h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.feature-band p {
  max-width: 570px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

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

.metric-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.metric-card--accent {
  border-color: var(--lime);
  background: var(--lime);
}

.metric-card__label {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 75px 0 10px;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.metric-card--accent .metric-card__label,
.metric-card--accent p {
  color: rgba(16, 23, 19, 0.65);
}

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

.resource-card {
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.resource-card:hover {
  border-color: #b9c3b8;
  transform: translateY(-3px);
}

.resource-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 65px 0 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.resource-card > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-style: normal;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--paper);
}

.news-feature__image {
  min-height: 500px;
  background: url("assets/project-verdant.jpg") center / cover;
}

.news-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 55px;
}

.news-date {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-feature .news-date {
  color: var(--lime);
}

.news-feature h2 {
  margin: 20px 0 22px;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.news-feature p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

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

.news-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.news-card:hover {
  border-color: #b9c3b8;
  transform: translateY(-3px);
}

.news-card h3 {
  margin: 42px 0 18px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.news-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-card__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 750;
}

.signup-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  padding: 55px;
  border-radius: var(--radius-xl);
  background: var(--lime);
}

.signup-panel h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.signup-panel p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(16, 23, 19, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.signup-form {
  display: flex;
  gap: 8px;
}

.signup-form input {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(16, 23, 19, 0.2);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.signup-form button {
  height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  background: var(--forest);
  color: var(--paper);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.signup-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: rgba(16, 23, 19, 0.7);
  font-size: 11px;
}

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

.job-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
}

.job-status {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-card h3 {
  max-width: 650px;
  margin: 28px 0 18px;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.job-card__main p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.job-card__meta {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.job-card__meta > div {
  display: grid;
  gap: 6px;
}

.job-card__meta > div > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-card__meta strong {
  font-size: 16px;
  line-height: 1.35;
}

.job-card__meta .button {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-layout--form-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-copy h2 {
  margin: 48px 0 20px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

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

.contact-address {
  display: grid;
  gap: 10px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-address span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-address strong {
  font-size: 16px;
  font-weight: 550;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--off-white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
}

.contact-form__note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

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

.contact-channel {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-channel:hover {
  border-color: #b9c3b8;
  transform: translateY(-3px);
}

.contact-channel > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.contact-channel i {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-style: normal;
}

/* Project Verdant page */

.page-hero--verdant::before {
  background-image: url("assets/project-verdant.jpg");
  background-position: center 56%;
}

.page-hero--verdant::after {
  background:
    linear-gradient(90deg, rgba(3, 43, 36, 0.96), rgba(3, 43, 36, 0.6) 52%, rgba(3, 43, 36, 0.12)),
    linear-gradient(0deg, rgba(3, 43, 36, 0.4), transparent 44%);
}

.verdant-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.verdant-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 750;
  transition: color 160ms ease, transform 160ms ease;
}

.verdant-hero__link:hover,
.verdant-hero__link:focus-visible {
  color: var(--paper);
  transform: translateY(-2px);
}

.verdant-hero__caption {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdant-fact-row {
  margin-top: 76px;
}

.verdant-disclaimer {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.verdant-system {
  padding: 112px 0;
  background: var(--forest-deep);
  color: var(--paper);
}

.verdant-system__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px 90px;
  align-items: end;
  margin-bottom: 58px;
}

.verdant-system__heading .page-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--leaf-green);
}

.verdant-system__heading h2 {
  margin: 0;
  font-size: clamp(50px, 6.5vw, 84px);
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.verdant-system__heading h2 span {
  color: var(--leaf-green);
}

.verdant-system__heading > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.65;
}

.verdant-pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.verdant-pathway {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--ink);
}

.verdant-pathway--light {
  background: var(--pale-green);
}

.verdant-pathway--accent {
  background: var(--lime);
}

.verdant-pathway__number {
  display: inline-grid;
  width: 38px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.verdant-pathway__graphic {
  position: absolute;
  top: 56px;
  right: -46px;
  width: 330px;
  height: 250px;
  opacity: 0.76;
}

.verdant-pathway__graphic i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(3, 43, 36, 0.38);
  border-radius: 50%;
}

.verdant-pathway__graphic i:nth-child(2) {
  inset: 34px;
}

.verdant-pathway__graphic i:nth-child(3) {
  inset: 68px;
}

.verdant-pathway__graphic b {
  position: absolute;
  top: 96px;
  left: 137px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--forest);
}

.verdant-pathway__graphic--bio {
  transform: rotate(18deg);
}

.verdant-pathway__graphic--bio i {
  border-radius: 55% 45% 62% 38%;
}

.verdant-pathway__label {
  display: block;
  margin-bottom: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdant-pathway h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.verdant-pathway p {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(16, 23, 19, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.verdant-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.verdant-flow > div {
  display: grid;
  gap: 7px;
}

.verdant-flow span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdant-flow strong {
  font-size: 16px;
  font-weight: 560;
}

.verdant-flow > i {
  color: var(--leaf-green);
  font-style: normal;
}

.verdant-validation {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--paper);
}

.verdant-validation__image {
  min-height: 560px;
  background: url("assets/news-feasibility.jpg") center / cover;
}

.verdant-validation__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px;
}

.verdant-validation__content .page-label {
  color: var(--leaf-green);
}

.verdant-validation h2 {
  margin: 0 0 25px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.verdant-validation p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.verdant-validation p + p {
  margin-top: 18px;
}

.verdant-validation .button {
  margin-top: 30px;
}

.verdant-roadmap .timeline-card:first-child {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.verdant-roadmap .timeline-card:first-child p {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 900px) {
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .timeline-grid,
  .advantage-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .signup-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .job-card,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .job-card__meta {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-grid--three,
  .contact-channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .verdant-system__heading,
  .verdant-validation {
    grid-template-columns: 1fr;
  }

  .verdant-system__heading {
    gap: 28px;
  }

  .verdant-validation__image {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .site-header--interior {
    position: fixed;
  }

  .page-hero {
    min-height: 720px;
  }

  .page-hero::before {
    background-position: 62% center;
  }

  .page-hero--about::before {
    background-image: url("assets/journey-source-mobile.jpg");
  }

  .page-hero--investors::before,
  .page-hero--verdant::before {
    background-image: url("assets/project-verdant-mobile.jpg");
  }

  .page-hero--news::before {
    background-image: url("assets/news-feasibility-mobile.jpg");
  }

  .page-hero--careers::before {
    background-image: url("assets/careers-hero-mobile-v3.jpg");
  }

  .page-hero--contact::before {
    background-image: url("assets/contact-hero-mobile-v2.jpg");
    background-position: 88% center;
  }

  .page-hero__content {
    padding-top: 135px;
    padding-bottom: 60px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .page-hero__copy {
    font-size: 15px;
  }

  .content-section {
    padding: 78px 0;
  }

  .editorial-split h2,
  .section-heading h2 {
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .fact-row,
  .metric-grid,
  .resource-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .fact-row > div {
    min-height: 125px;
  }

  .fact-row > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
  }

  .timeline-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .timeline-card,
  .advantage-card {
    min-height: 270px;
  }

  .timeline-card h3,
  .advantage-card h3 {
    margin-top: 95px;
  }

  .feature-band,
  .feature-band__content {
    min-height: 660px;
  }

  .feature-band > picture img {
    object-position: 42% center;
  }

  .feature-band::after {
    background: linear-gradient(0deg, rgba(3, 43, 36, 0.96), rgba(3, 43, 36, 0.5) 68%, rgba(3, 43, 36, 0.06));
  }

  .feature-band__content {
    justify-content: flex-end;
    padding: 30px 24px;
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .news-feature__image {
    min-height: 310px;
    background-image: url("assets/project-verdant-mobile.jpg");
  }

  .news-feature__content {
    padding: 32px 25px;
  }

  .signup-panel {
    padding: 32px 24px;
  }

  .signup-form {
    flex-direction: column;
  }

  .job-card {
    padding: 28px 24px;
  }

  .advantage-grid--three,
  .contact-channel-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-address {
    margin-top: 45px;
  }

  .page-hero--verdant::before {
    background-position: 58% center;
  }

  .verdant-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .verdant-hero__caption {
    right: 20px;
    bottom: 17px;
  }

  .verdant-fact-row {
    margin-top: 52px;
  }

  .verdant-system {
    padding: 80px 0;
  }

  .verdant-system__heading h2 {
    font-size: clamp(46px, 12.5vw, 62px);
  }

  .verdant-pathways {
    grid-template-columns: 1fr;
  }

  .verdant-pathway {
    min-height: 520px;
    padding: 27px 24px;
  }

  .verdant-pathway__graphic {
    top: 50px;
    right: -105px;
  }

  .verdant-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px;
  }

  .verdant-flow > i {
    transform: rotate(90deg);
  }

  .verdant-validation__image {
    background-image: url("assets/news-feasibility-mobile.jpg");
    min-height: 315px;
  }

  .verdant-validation__content {
    padding: 38px 25px;
  }
}
