@import url('https://api.fontshare.com/v2/css?f[]=general-sans@701,200,500,301,201,1,300,2,601,600,401,501,400,700&display=swap');

:root {
  --dark-green: #163d2b;
  --mid-green: #1f6b3b;
  --lime: #a4d233;
  --lime-soft: #c5e86a;
  --cream: #f4f8e6;
  --black: #0a0d0a;
  --text-green: #1d5236;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-duration: .72s;
  --motion-rise: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  background: transparent
}

/* CUSTOM SCROLLBAR: fixed overlay with no visible track or layout footprint. */
.floating-scrollbar {
  position: fixed;
  z-index: 200;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 22px;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
  contain: layout style paint
}

.floating-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: var(--scrollbar-thumb-height, 0px);
  background: transparent;
  opacity: 0;
  transform: translate3d(0, var(--scrollbar-thumb-y, 0px), 0);
  transform-origin: top;
  will-change: transform, height;
  transition: opacity .18s ease;
  cursor: grab;
  pointer-events: none;
  touch-action: none
}

.floating-scrollbar__thumb::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .75);
  transform-origin: right center;
  transition: width .16s cubic-bezier(.22, 1, .36, 1), background-color .16s ease, box-shadow .16s ease
}

.floating-scrollbar.is-hovered .floating-scrollbar__thumb,
.floating-scrollbar.is-scrolling .floating-scrollbar__thumb {
  opacity: 0.72;
  pointer-events: auto
}

.floating-scrollbar.is-dragging .floating-scrollbar__thumb {
  opacity: 0.9;
  cursor: grabbing
}

.floating-scrollbar.is-hovered .floating-scrollbar__thumb::before {
  width: 9px;
}

.floating-scrollbar.is-dragging .floating-scrollbar__thumb::before {
  width: 9px;
}

/* Thumb seeking is intentionally immediate, even though normal page scrolls are smooth. */
html.is-scrollbar-dragging {
  scroll-behavior: auto !important;
  cursor: grabbing
}

html.is-scrollbar-dragging *,
html.is-scrollbar-dragging *::before,
html.is-scrollbar-dragging *::after {
  transition-duration: 0s !important;
  transition-delay: 0s !important
}

html.is-scrollbar-dragging .floating-scrollbar__thumb {
  transition-duration: .18s !important
}

html.is-scrollbar-dragging .floating-scrollbar__thumb::before {
  transition-duration: .16s !important
}

body {
  font-family: 'General Sans', sans-serif;
  color: var(--text-green);
  background: var(--cream);
  line-height: 1.5625;
  font-weight: 500;
  letter-spacing: normal;
  overflow-x: clip
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #000
}

body,
main,
section {
  max-width: 100%
}

html.hero-locked,
body.hero-locked {
  overflow: hidden;
  overscroll-behavior: none
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

img {
  max-width: 100%;
  display: block
}

header {
  position: fixed;
  top: 15px;
  left: 50%;
  width: min(85% - 48px, 1540px);
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: opacity .28s ease, transform .28s ease
}

header.scrolled {
  background: transparent
}

body.contact-active .btn-talk {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px)
}

.logo img {
  height: 34px
}

.btn-talk {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  padding: 12px 21px;
  border: 0;
  border-radius: 50px;
  background: #94c121;
  color: #000;
  font-size: 18px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin: -1px 12px;
  position: relative;
  isolation: isolate;
  box-shadow: none;
  transform: none;
  transition: background-color .5s ease, color .5s ease
}

.btn-talk::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #94c121;
  background: transparent;
  z-index: -1;
  opacity: 1;
  transform: scaleX(1) scaleY(1);
  pointer-events: none
}

.btn-talk::before {
  animation: talk-ripple 1s linear infinite
}

.btn-talk:hover {
  background: #000;
  color: ghostwhite;
  transform: none;
  box-shadow: none
}

.btn-talk__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
  transition: none
}

.btn-talk__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.btn-talk__label {
  display: inline-block;
  line-height: 1.2;
  transition: none
}

.btn-talk:hover .btn-talk__icon img {
  filter: brightness(0) invert(1)
}

@keyframes talk-ripple {
  0% {
    transform: scaleX(1) scaleY(1);
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: scaleX(1.2) scaleY(1.5)
  }
}

/* HERO with video background */
.hero-stage {
  position: relative
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: clip
}

.hero {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  padding: 0;
  overflow: hidden;
  background: var(--black)
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 766px;
  object-fit: cover;
  object-position: center 14%
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0));
  opacity: .9;
}

.hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0 0 100px clamp(96px, 10vw, 192px);
  will-change: transform, opacity
}

.hero .inner > * {
  opacity: 0;
  transform: translate3d(0, var(--motion-rise), 0);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease)
}

body.is-ready .hero .inner > * {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.hero h1[data-hero-reveal="title"] {
  transition-delay: .12s
}

.hero .sub[data-hero-reveal="copy"] {
  transition-delay: .28s
}

.hero-actions[data-hero-reveal="cta"] {
  transition-delay: .5s
}

.hero h1 {
  font-size: 74px;
  font-weight: 600;
  line-height: 76px;
  font-family: inherit;
  letter-spacing: normal;
  color: #94c121;
  text-shadow: none;
  max-width: 760px;
}

.hero h1 .lime {
  color: inherit
}

.hero .sub {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 35px;
  color: #fff;
  max-width: 760px;
  font-weight: 500;
  line-height: 47px;
  letter-spacing: normal
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background-color .35s ease, border-color .35s ease, box-shadow .35s ease
}

.hero-cta:hover {
  background: rgba(148, 193, 33, .92);
  border-color: rgba(148, 193, 33, .96);
  color: #102015;
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, .26)
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

.hero-floater {
  position: absolute;
  width: clamp(180px, 18vw, 250px);
  padding: 14px 16px 14px 14px;
  border-radius: 24px;
  background: rgba(248, 251, 239, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 54px rgba(4, 11, 6, .28);
  color: #f8fff1;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(.94);
  will-change: transform, opacity;
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1)
}

.hero-floater img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover
}

.hero-floater p {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600
}

body.is-ready .hero-floater {
  opacity: 1;
  transform: translate3d(0, var(--float-shift, 0px), 0) scale(1)
}

.hero-floater-one {
  top: 15%;
  right: 14%;
  transition-delay: .44s
}

.hero-floater-two {
  top: 43%;
  right: 8%;
  transition-delay: .58s
}

.hero-floater-three {
  left: 10%;
  bottom: 26%;
  transition-delay: .68s
}

.hero-scroll {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0
}

.hero-scroll::before {
  content: '';
  width: 64px;
  height: 1px;
  background: #fff
}

.hero-scroll:hover {
  color: var(--lime)
}

.hero-scroll:hover::before {
  background: var(--lime)
}

.questions-card {
  --questions-card-inset: 16px;
  --questions-card-radius: 16px;
  --questions-peek: 30px;

  position: relative;
  z-index: 5;
  display: block;
  align-items: flex-start;
  margin-top: calc(var(--questions-peek) * -1);
  padding: 0 var(--questions-card-inset, 8px);
  pointer-events: none;
  background: transparent;
  overflow-x: clip;
  overflow-y: visible;
  box-shadow: none;
}

body.talk-open {
  overflow: hidden
}

body.talk-open header {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none
}

.talk-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility 0s linear .24s
}

.talk-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s
}

.talk-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 8, .3);
  backdrop-filter: blur(12px)
}

.talk-overlay__panel {
  position: absolute;
  inset: 0;
  overflow: auto;
  padding: clamp(14px, 2.4vw, 24px)
}

.talk-overlay__shell {
  position: relative;
  min-height: 100%;
  padding: clamp(84px, 10vw, 132px) clamp(20px, 4vw, 48px) clamp(28px, 4vw, 40px);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(148, 193, 33, .18), transparent 32%),
    linear-gradient(135deg, #072113 0%, #0b3d28 55%, #0f5a3a 100%);
  color: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  transform-origin: top center;
  transform: translate3d(0, 18px, 0) scale(.96);
  opacity: 0;
  transition: transform .58s cubic-bezier(.22, 1, .36, 1), opacity .4s ease, border-radius .58s cubic-bezier(.22, 1, .36, 1)
}

.talk-overlay.is-open .talk-overlay__shell {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1
}

.talk-overlay__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, .95fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  min-height: calc(100vh - 180px)
}

.talk-overlay__copy {
  max-width: 640px;
  align-self: center
}

.talk-overlay__eyebrow {
  color: var(--lime-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 18px
}

.talk-overlay__title {
  font-size: clamp(40px, 5vw, 76px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 11ch;
  margin-bottom: 20px
}

.talk-overlay__body {
  max-width: 34rem;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px
}

.talk-overlay .li-link {
  color: #fff
}

.talk-overlay__form-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.talk-overlay__form {
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 28px;
  background: rgba(244, 248, 230, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .18)
}

.talk-overlay__form input,
.talk-overlay__form textarea {
  background: rgba(255, 255, 255, .08)
}

.talk-overlay__form button {
  width: 100%
}

.talk-overlay__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), background-color .3s ease
}

.talk-overlay__close:hover {
  background: transparent;
  transform: scale(1.04)
}

.questions-card > * {
  width: 100%;
  max-width: 100%;
}

.questions {
  --questions-card-radius: 24px;
  width: 100%;
  background: rgb(253, 255, 237);
  border-top-left-radius: var(--questions-card-radius);
  border-top-right-radius: var(--questions-card-radius);
  display: flex;
  opacity: 1;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
  letter-spacing: normal;
  font-family: inherit;
  font-size: 18px;
  margin: 0 auto;
  overflow: hidden;
  border: none;
  border-bottom: 0;
  transform: translate3d(0, 0, 0) scale(var(--questions-scale, 1));
  transform-origin: top center;
  will-change: transform, border-radius, box-shadow, opacity;
  pointer-events: auto;
  padding-top: 72px;
  box-shadow: 0 -14px 40px rgba(11, 31, 20, .16)
}

.questions h2 {
  text-align: center;
  color: #237914;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: normal;
  font-family: inherit;
  margin-bottom: clamp(36px, 5vw, 84px);
  padding: 20px 0;
}

.marquee-stack {
  display: grid;
  gap: clamp(6px, .75vw, 12px);
  margin-bottom: clamp(12px, 1.4vw, 22px)
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.track {
  display: inline-flex;
  gap: 12px;
  padding: 0;
  min-width: max-content;
  animation: scroll 41s linear infinite
}

.marquee.rev .track {
  animation-direction: reverse
}

.marquee-stack .marquee:nth-child(3) .track {
  animation-duration:25s
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: clamp(7px, .75vw, 12px) clamp(11px, 1.15vw, 18px) clamp(7px, .75vw, 12px) clamp(7px, .75vw, 12px);
  border-radius: 50px;
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 600;
  color: #000;
  letter-spacing: 0.2;
  flex: 0 0 auto;
  transition: background-color .25s ease, color .25s ease
}

.pill img {
  width: clamp(30px, 2.6vw, 40px);
  height: clamp(30px, 2.6vw, 40px);
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto
}

.pill.dark {
  background: #94c121
}

.pill.light {
  background: #c6ed94
}

.pill:hover {
  background: #000;
  color: #fff
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.partners {
  padding: clamp(36px, 5vw, 70px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  position: relative;
  z-index: 5
}

.partners-inline {
  width: 100%
}

.partners .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(92px, 100%), 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(24px, 4.2vw, 80px);
  width: 100%;
  max-width: 100%;
  padding: 0px;
  animation: none
}

.partners img {
  display: block;
  width: min(140px, 100%);
  max-height: 64px;
  height: auto;
  opacity: 1;
  filter: grayscale(1);
  transform: translateY(0);
  transition: filter .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1), opacity .35s ease
}

@keyframes partners-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.intro {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 165px 0px 180px 60px;
  color: #fff;
  overflow: hidden;
  background:
    url('assets/drone-image.jpg') left top / cover no-repeat
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none
}

.intro-content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-left: clamp(0px, 6vw, 136px);
  will-change: transform, opacity, filter
}

.intro p {
  max-width: 80%;
  margin: 0;
  font-family: inherit;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: normal;
  text-wrap: balance;
}

.stage-section {
  min-height: 600vh;
  background: #fdffed;
  position: relative
}

.stage-section-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(90deg, #004e35 0 50%, #fdffed 50% 100%)
}

.stage-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 500px;
  background: #237914;
}

.stage-copy-lane,
.stage-visual-lane {
  position: relative;
  overflow: hidden;
  min-height: 100vh
}

.stage-copy-track,
.stage-visual-track {
  display: flex;
  width: 400%;
  min-height: 100vh;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1)
}

.stage-copy-slide,
.stage-visual-slide {
  width: 25%;
  flex: 0 0 25%;
  min-height: 100vh
}

.stage-copy-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5vw 0 10.7vw
}

.stage-copy-slide h2 {
  font-size: 58px;
  line-height: 1.9ch;
  font-weight: 600;
  color: #fff;
  letter-spacing: normal;
  font-family: inherit;
  max-width: 840px;
  opacity: .34;
  transform: translate3d(0, var(--motion-rise), 0);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease)
}

.stage-copy-slide.is-active h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.stage-visual-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0px;
  gap: 30px;
  overflow: hidden
}

.stage-visual-slide h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
  margin-bottom: 28px;
  opacity: .2;
  transform: translate3d(0, var(--motion-rise), 0);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease)
}

.stage-visual-slide.is-active h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.stage-wrapper {
  width: min(660px, 100%);
  margin: 0 auto;
  position: relative
}

.stage-figure {
  width: min(660px, 100%);
  height: 190px;
  margin: 0 auto;
  position: relative
}

.stage-base {
  width: 260px;
  display: block;
  margin: 0 auto;
  opacity: .15;
  transform: translate3d(0, var(--motion-rise), 0) scale(.98);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease)
}

.stage-visual-slide.is-active .stage-base {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1)
}

.stage-all .stage-base {
  width: 410px
}

.stage-all .stage-figure {
  height: 250px
}

.stage-chip {
  position: absolute;
  padding: 5px 20px;
  background: #004e35;
  color: #88e53e;
  border: 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(.98);
  transition: background-color .3s ease, color .3s ease, transform .52s var(--motion-ease), opacity .52s var(--motion-ease), box-shadow .3s ease;
  transform-origin: center center
}

.stage-visual-slide.is-active .stage-chip {
  animation: stage-chip-in .52s cubic-bezier(.22, 1, .36, 1) forwards
}

.stage-chip.pos-1 {
  animation-delay: .45s
}

.stage-chip.pos-2 {
  animation-delay: .6s
}

.stage-chip.pos-3 {
  animation-delay: .75s
}

.stage-chip.pos-4 {
  animation-delay: .9s
}

@keyframes stage-chip-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.98)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
  }
}

.stage-chip:hover,
.stage-chip:focus-visible,
.stage-chip.is-active {
  background: #88e53e;
  color: #004e35;
  box-shadow: 0 14px 32px rgba(0, 78, 53, .18);
  outline: none
}

.stage-early .pos-1 {
  top: 14px;
  left: 135px
}

.stage-early .pos-2 {
  top: 13px;
  left: 376px
}

.stage-early .pos-3 {
  top: 78px;
  left: 110px
}

.stage-early .pos-4 {
  top: 70px;
  left: 403px
}

.stage-mid .pos-1 {
  left: 127px;
  top: 34px
}

.stage-mid .pos-2 {
  top: 33px;
  left: 360px
}

.stage-mid .pos-3 {
  top: 93px;
  left: 160px
}

.stage-mid .pos-4 {
  top: 90px;
  left: 390px
}

.stage-late .pos-1 {
  left: 127px;
  top: 20px
}

.stage-late .pos-2 {
  left: 379px;
  top: 19px
}

.stage-late .pos-3 {
  left: 160px;
  top: 81px
}

.stage-late .pos-4 {
  left: 386px;
  top: 76px
}

.stage-all .pos-1 {
  left: -13px;
  top: 30px
}

.stage-all .pos-2 {
  left: 260px;
  top: 25px
}

.stage-all .pos-3 {
  left: 490px;
  top: 40px
}

.stage-all .pos-4 {
  left: 129px;
  top: 132px
}

.stage-detail {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4px;
  position: relative;
  padding-right: 50px;
  max-width: 100%
}

.stage-finding span {
  display: inline-block;
  background: #88e53e;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  padding: 4px 25px;
  border-radius: 30px;
  margin-bottom: 20px
}

.stage-finding,
.stage-recommendation {
  position: relative
}

.stage-finding {
  min-width: 250px;
  max-width: 250px
}

.stage-recommendation img {
  width: min(270px, 100%);
  display: block
}

.stage-finding p,
.stage-recommendation p {
  position: absolute;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .52s var(--motion-ease), transform .52s var(--motion-ease);
  margin: 0
}

.stage-finding p {
  top: 40px;
  left: 0;
  font-size: 16px;
  max-width: 250px;
  line-height: 1.5;
  color: #000
}

@media(min-width:981px) and (max-width:1180px) {
  .stage-copy-inner {
    padding-left: 7vw
  }

  .stage-copy-slide h2 {
    font-size: 46px;
    line-height: 1.02
  }

  .stage-visual-inner {
    padding: 0 24px
  }

  .stage-wrapper {
    max-width: 560px
  }

  .stage-figure {
    transform: translateX(-50%) scale(.8);
    transform-origin: top center;
    width: 660px;
    max-width: none;
    margin-left: 50%
  }

  .stage-detail {
    margin-top: 0;
    padding-right: 0;
    gap: 14px
  }

  .stage-finding {
    min-width: 220px;
    max-width: 220px
  }

  .stage-finding p {
    max-width: 220px;
    font-size: 14px
  }

  .stage-recommendation img {
    width: 230px
  }

}

.stage-recommendation p {
  top: -4px;
  left: 150px;
  width: 152px;
  font-size: 16px;
  line-height: 1.5;
  color: #000
}

@media(min-width:981px) and (max-width:1180px) {
  .stage-recommendation p {
    left: 126px;
    width: 132px;
    font-size: 14px
  }
}

.stage-finding p.is-active,
.stage-recommendation p.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.stage-mobile-controls {
  display: none
}

@media(max-width:980px) {
  .stage-section {
    min-height: auto;
    padding: 40px 0;
    background: #fdffed
  }

  .stage-section-pin {
    position: relative;
    display: block;
    background: #fdffed
  }

  .stage-divider {
    display: none
  }

  .stage-copy-lane,
  .stage-visual-lane,
  .stage-copy-slide,
  .stage-visual-slide,
  .stage-copy-track,
  .stage-visual-track {
    min-height: auto
  }

  .stage-copy-slide,
  .stage-visual-slide {
    width: 100%;
    flex: 0 0 auto
  }

  .stage-copy-track,
  .stage-visual-track {
    width: 100%;
    display: block;
    transform: none !important
  }

  .stage-copy-slide:not(.is-active),
  .stage-visual-slide:not(.is-active) {
    display: none
  }

  .stage-copy-inner {
    min-height: auto;
    padding: 42px 24px 28px;
    justify-content: center;
    background: #fdffed;
    text-align: center
  }

  .stage-copy-slide h2 {
    max-width: 16ch;
    font-size: 24px;
    line-height: 1.25;
    color: #00573b;
    margin: 0 auto
  }

  .stage-visual-inner {
    min-height: auto;
    padding: 18px 18px 36px
  }

  .stage-visual-slide h3 {
    font-size: 22px;
    margin-bottom: 22px
  }

  .stage-wrapper {
    width: min(100%, 320px);
  }

  .stage-figure {
    width: min(100%, 280px);
    height: 120px
  }

  .stage-base {
    width: 140px;
    opacity: 1;
    transform: none
  }

  .stage-all .stage-base {
    width: 192px
  }

  .stage-chip {
    z-index: 1;
    font-size: 9px;
    padding: 2px 10px;
    opacity: 1;
    transform: none
  }

  .stage-mid .pos-1 {
    left: 10px;
    top: 17px
  }

  .stage-mid .pos-2 {
    left: 160px;
    top: 16px
  }

  .stage-mid .pos-3 {
    left: 40px;
    top: 50px
  }

  .stage-mid .pos-4 {
    left: 170px;
    top: 46px
  }

  .stage-early .pos-1 {
    left: 25px;
    top: 7px
  }

  .stage-early .pos-2 {
    left: 170px;
    top: 6px
  }

  .stage-early .pos-3 {
    left: 10px;
    top: 40px
  }

  .stage-early .pos-4 {
    left: 180px;
    top: 36px
  }

  .stage-late .pos-1 {
    left: 18px;
    top: 10px
  }

  .stage-late .pos-2 {
    left: 163px;
    top: 10px
  }

  .stage-late .pos-3 {
    left: 40px;
    top: 43px
  }

  .stage-late .pos-4 {
    left: 180px;
    top: 38px
  }

  .stage-all .pos-1 {
    left: -14px;
    top: 9px
  }

  .stage-all .pos-2 {
    left: 110px;
    top: 10px
  }

  .stage-all .pos-3 {
    left: 200px;
    top: 10px
  }

  .stage-all .pos-4 {
    left: 30px;
    top: 60px
  }

  .stage-detail {
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
    padding: 0 40px;
    width: 100%
  }

  .stage-finding span {
    min-width: 86px;
    text-align: center;
    font-size: 11px;
    margin-bottom: 12px
  }

  .stage-finding,
  .stage-finding p {
    max-width: 100%;
    min-width: 0
  }

  .stage-finding p {
    display: none;
    position: relative;
    top: 0;
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 0
  }

  .stage-finding p.is-active {
    display: block
  }

  .stage-recommendation {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 122px
  }

  .stage-recommendation img {
    width: 130px
  }

  .stage-recommendation p {
    display: none;
    position: static;
    width: auto;
    font-size: 11px;
    line-height: 1.25;
    padding-top: 14px
  }

  .stage-recommendation p.is-active {
    display: block
  }

  .stage-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px
  }

  .stage-mobile-arrow {
    position: absolute;
    top: 168px;
    width: 29px;
    height: 29px;
    border: 0;
    background: #00573b;
    color: #fdffed;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
  }

  .stage-mobile-arrow:first-child {
    left: -8px
  }

  .stage-mobile-arrow:last-child {
    right: -8px
  }

  .stage-mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
  }

  .stage-mobile-dot {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 50%;
    background: #00573b;
    cursor: pointer
  }

  .stage-mobile-dot.is-active {
    background: #80e43d
  }
}

@media(max-width:780px) {
  header {
    width: min(100% - 24px, 1540px);
    top: 14px;
    padding: 0;
    display: none
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-pin {
    position: relative;
    height: auto;
    min-height: 78svh
  }

  .btn-talk {
    min-height: 48px;
    gap: 8px;
    padding: 8px 16px;
    font-size: 11px
  }

  .btn-talk__icon {
    width: 14px;
    height: 14px
  }

  .intro {
    min-height: auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background-position: right
  }

  .intro-content {
    width: min(100%, 500px);
    margin-left: 0
  }

  .intro p {
    max-width: 12ch;
    font-size: 24px;
    line-height: normal;
    letter-spacing: normal
  }

  .partners img {
    height: 52px
  }

  .panel.active {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px
  }

  .questions-card {
    min-height: auto;
    padding: 0 12px;
    margin-top: -22px;
    background: transparent;
    overflow-x: clip;
    overflow-y: visible
  }

  .questions {
    min-height: auto;
    justify-content: flex-start;
    padding: 24px 0 12px;
    max-width: 100%;
    background: #fdffed;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    transform: translate3d(0, 0, 0)
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 32px;
  }

  .hero .inner {
    padding-left: 0;
    width: min(100%, 520px)
  }

  .hero-actions {
    margin-top: 24px
  }

  .hero-cta {
    min-height: 50px;
    padding: 0 22px;
    font-size: 15px
  }

  .hero h1 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: normal
  }

  .hero .sub {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.2
  }

  .hero-floaters {
    inset: 14% 14px auto
  }

  .hero-floater {
    width: min(220px, 58vw);
    padding: 10px 12px;
    grid-template-columns: 36px 1fr;
    gap: 10px
  }

  .hero-floater img {
    width: 36px;
    height: 36px
  }

  .hero-floater p {
    font-size: 12px
  }

  .hero-floater-one {
    top: 0;
    right: 0
  }

  .hero-floater-two {
    top: 112px;
    right: 6px
  }

  .hero-floater-three {
    display: none
  }

  .questions h2 {
    font-size: 22px;
    line-height: normal;
    margin: 0 auto 10px;
    width: calc(100% - 40px);
    max-width: none;
    padding: 32px 0;
  }

  .questions h2 br {
    display: none
  }

  .marquee-stack {
    gap: 4px;
    margin-bottom: 0
  }

  .pill {
    padding: 4px 9px 4px 5px;
    font-size: 12px
  }

  .pill img {
    width: 30px;
    height: 30px
  }

  .partners {
    padding: 30px 20px 24px
  }

  .partners .row {
    grid-template-columns: repeat(auto-fit, minmax(min(82px, 100%), 1fr));
    gap: 22px;
    padding: 6px 10px 0
  }

  .partners img {
    width: 92px
  }

}

.panel .illus {
  background: linear-gradient(180deg, rgba(31, 107, 59, .06), rgba(164, 210, 51, .08));
  border: 1px solid rgba(22, 61, 43, .08);
  border-radius: 22px;
  padding: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%
}

.panel .illus img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain
}

.panel .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4px 4px 4px 2px;
  overflow: auto
}

.panel .info h3 {
  color: var(--mid-green);
  margin-bottom: 8px;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -.03em
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px
}

.metric {
  background: var(--mid-green);
  color: #fff;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 8px 18px rgba(31, 107, 59, .12)
}

.finding {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(227, 234, 208, .9)
}

.finding > div {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(22, 61, 43, .06);
  border-radius: 16px;
  padding: 10px 12px;
  min-height: 100%
}

.finding .label {
  font-weight: 600;
  color: var(--lime);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .08em
}

@media(max-width:520px) {
  .hero-stage {
    min-height: 0
  }

  .finding {
    grid-template-columns: 1fr
  }

  .partners {
    padding: 0 0 52px
  }

  .partners .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
  }

  .hero-scroll {
    margin-top: 24px;
    font-size: .82rem;
    letter-spacing: .06em
  }

  .hero-scroll::before {
    width: 42px
  }

  .questions {
    transform: translate3d(0, 0, 0)
  }

  .questions h2 {
    font-size: 20px
  }

  .questions {
    padding: 18px 0 12px
  }

  header {
    top: 12px;
    padding: 0 12px
  }

  .btn-talk {
    width: 100%;
    justify-content: center;
    font-size: 16px
  }
}

.video {
  position: relative;
  color: #fff;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 160px 48px 96px 64px;
  overflow: hidden;
  background: #0c120d
}

.video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('assets/crop-fields.jpg') center center / cover no-repeat;
  opacity: .96
}

.video>* {
  position: relative;
  z-index: 2
}

.video-layout {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
  align-items: start;
  justify-content: center;
  gap: 88px
}

.video-copy {
  padding-top: 18px;
  padding-left: 36px
}

.video-title {
  font-family: inherit;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 66px;
  color: #fff;
  text-align: left;
  margin-left: clamp(0px, 5vw, 80px);
  width: 100%;
  align-self: start;
}

.video .frame {
  width: 90%;
  max-width: 980px;
  margin: 24px 0 0;
  align-self: start;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18)
}

.video .frame img.thumb {
  width: 100%;
  display: block
}

.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: #edff1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, background-color .35s ease
}

.play:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 42px rgba(0, 0, 0, .24);
  background: #f6ff57
}

.play-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto
}

.play-icon svg {
  width: 100%;
  height: 100%;
  display: block
}

.play-icon path {
  fill: none;
  stroke: #111111;
  stroke-width: 3;
  stroke-linejoin: round
}

.play-label {
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: #111111
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 5, .76);
  backdrop-filter: blur(6px)
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(81vw, 1560px);
  max-width: 100%;
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 24px, 0) scale(.98);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1)
}

.video-modal.is-open .video-modal__dialog {
  transform: translate3d(0, 0, 0) scale(1)
}

.video-modal__close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 0;
  background: rgba(50, 57, 69, .96);
  opacity: 0.8;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .25s ease
}

.video-modal__close:hover {
  background: rgba(68, 76, 90, .98)
}

.video-modal__frame {
  width: 100%;
  max-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  background: #000
}

.video-modal__frame video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  background: #000
}

.video-modal__frame video:-webkit-full-screen,
.video-modal__frame video:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: #000
}

@media(max-width:980px) {
  .video {
    padding: 88px 28px 78px
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .video-title {
    margin-left: 0;
    text-align: center;
    width: 100%;
    font-size: clamp(38px, 6vw, 48px)
  }

  .video .frame {
    margin: 0 auto;
    width: min(100%, 760px)
  }
}

@media(max-width:780px) {
  .video {
    min-height: 100svh;
    padding: 88px 18px 72px
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .video-copy {
    padding-top: 0;
    padding-left: 0
  }

  .video-title {
    font-size: 26px;
    font-weight: 600;
    font-family: inherit;
    line-height: normal;
    text-align: center;
    padding: 0 12px;
    margin-left: 0;
    width: 100%;
  }

  .video .frame {
    width: min(100%, 92%);
    margin: 0 auto;
    border-radius: 16px
  }

  .play {
    height: 52px;
    padding: 0 20px;
    gap: 8px
  }

  .play-icon {
    width: 20px;
    height: 20px
  }

  .play-icon path {
    stroke-width: 3
  }

  .play-label {
    font-size: 18px;
    font-family: inherit
  }

  .video-modal {
    padding: 58px 12px 12px
  }

  .video-modal__dialog {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100vh - 70px);
    padding: 0;
    border-radius: 0
  }

  .video-modal__close {
    top: 0;
    right: 0;
    width: 46px;
    height: 46px;
    font-size: 30px
  }

  .video-modal__frame video {
    max-height: calc(100vh - 70px)
  }
}

.team {
  background: #fdffed;
  color: var(--text-green);
  min-height: auto;
  display: block;
  padding: 70px 0 50px;
  /* Sticky headings need a visible scroll path through their section. */
  overflow: visible;
  position: relative;
  isolation: isolate
}

.team>.wrap {
  max-width: 1260px;
  width: 100%;
  min-height: 0;
  padding: 0 12px;
  position: relative;
  top: auto;
  /* This wrapper is the containing block that releases the sticky heading. */
  display: block;
  overflow: visible
}

#team,
.team-scope {
  position: relative;
  overflow: visible
}

.team-heading {
  position: sticky;
  top: 8vh;
  z-index: 5;
  text-align: center;
  font-size: 54px;
  line-height: 1;
  padding: 15px 0 70px 0px;
  background: #fdffed;
  color: #0f6301;
  font-weight: 600;
  transform: translate3d(0, var(--team-heading-release-offset), 0)
}

.team-heading::before {
  content: '';
  position: absolute;
  top: -70px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #fdffed;
  z-index: -1;
  pointer-events: none
}

#team {
  position: relative
}

.team-story {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 8px;
  align-items: start;
  min-height: 520px;
}

.team-visual-rail {
  position: relative;
  min-height: 100%;
  z-index: 1
}

.team-visual-stick {
  position: sticky;
  /* Never let the photo rail scroll beneath the sticky heading. */
  top: max(26vh, calc(8vh + 139px));
  height: min(64vh, 650px);
  min-height: 560px;
  overflow: hidden
}

.team-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 87%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  will-change: opacity, transform, filter;
  transform: none;
  filter: none;
  transition: 0.5s ease;
  box-shadow: none
}

.team-visual.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
  filter: none
}

.team-copy-stack {
  display: grid;
  gap: 0;
  height: auto;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 22px;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.team-copy-stack::-webkit-scrollbar {
  display: none
}

.team-panel {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 50px 0;
  opacity: 0;
  transform: none;
  transition: opacity .5s ease;
  pointer-events: none
}

/* .team-panel {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 24px 0 0 8px;
  transition: opacity .5s ease;
} */

.team-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.team-panel.is-revealed {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.team-panel.is-upcoming {
  opacity: 0.1;
  transform: none;
  pointer-events: none
}

.team-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0
}

.team-mobile-img {
  display: none
}

.team-panel-inner {
  max-width: none
}

.member-meta {
  margin-bottom: 20px
}

.member-meta strong {
  color: #111111;
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
}

.member-meta small {
  color: #111111;
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
}

.team-panel p {
  color: #0f6301;
  margin-bottom: 20px;
  font-size: 21.5px;
  width: 100%;
  line-height: normal;
  font-weight: 600;
  letter-spacing: normal;
  font-family: inherit;
}

.team .li-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: black;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: normal;
  font-size: 22px;
  line-height: normal;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .16);
  transition: color .25s ease, transform .25s ease
}

.team-panel-spacer {
  width: 100%;
  height: 0;
  flex: 0 0 auto
}

.team .li-link::before {
  content: '';
  width: 21px;
  height: 22px;
  flex: 0 0 21px;
  background: url('assets/arrow.svg') center / contain no-repeat;
  transform: translateY(5px)
}

.contact .li-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ddd8c7;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  letter-spacing: -.02em;
  font-size: 1.02rem;
  transition: color .25s ease, transform .25s ease
}

.contact .li-link::before {
  font-size: .95em;
  line-height: 1;
  flex: 0 0 auto
}

.li-link__text {
  display: inline-block;
  line-height: 1;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor
}

@media(max-width:1199.98px) {
  .team {
    min-height: auto;
    display: block;
    padding: 40px 0 78px
  }

  .team>.wrap {
    width: auto;
    min-height: 0;
    padding: 0 12px;
    position: relative;
    top: auto;
    display: block
  }

  .team-heading {
    margin-bottom: 42px
  }

  .team-story {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 0;
    min-height: 0
  }

  .team-visual-rail {
    min-height: 380px
  }

  .team-visual-stick {
    top: 26vh;
    height: min(58vh, 500px);
    min-height: 380px
  }

  .team-panel p {
    margin-bottom: 18px
  }

  .member-meta strong {
    font-size: 28px
  }

  .member-meta small {
    font-size: 18px
  }

  .team-panel p,
  .team .li-link {
    font-size: 17px
  }
}

@media(min-width:781px) and (max-width:1199.98px) {
  .team {
    min-height: auto;
    padding: 40px 0 78px;
    overflow: visible
  }

  .team>.wrap {
    width: 100%;
    min-height: 0;
    padding: 0 12px;
    position: relative;
    top: auto;
    display: block
  }
}

@media(max-width:1199.98px) {
  .team {
    min-height: auto;
    display: block;
    padding: 40px 0 60px;
    overflow: visible
  }

  .team-heading {
    position: relative;
    top: auto;
    font-size: 26px;
    margin-bottom: 20px
  }

  .team-heading::before {
    display: none
  }

  .team-story {
    display: block;
    height: auto;
    min-height: 0
  }

  .team-visual-rail {
    display: none
  }

  .team-copy-stack {
    gap: 0;
    height: auto;
    overflow: visible;
    padding-right: 0
  }

  .team-panel {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 20px 0px;
    opacity: 1;
    transform: none;
    text-align: center
  }

  .team-panel-inner {
    align-items: center;
    max-width: 480px;
    padding: 14px 0 42px
  }

  .team-mobile-img {
    display: block;
    border-radius: 12px;
    width: min(188px, 56vw);
    max-width: none;
    margin: 0 auto 28px
  }

  .member-meta {
    margin-bottom: 16px
  }

  .member-meta strong {
    font-size: 20px;
    line-height: 1.05
  }

  .member-meta small {
    font-size: 17px;
    line-height: 1.15
  }

  .team-panel p {
    font-size: 14px;
    line-height: 1.32;
    margin-bottom: 16px
  }

  .team .li-link {
    align-self: center;
    font-size: 15px;
    margin-bottom: 24px
  }

  .team-panel-spacer {
    height: 32px
  }
}

@media(max-width:1366px) and (min-width:1200px) {
  .team>.wrap {
    max-width: 1140px
  }

  .team-panel p,
  .team .li-link {
    font-size: 18px
  }

  .team .li-link__text {
    border-bottom-width: 2px
  }
}

.contact {
  background: #004e35;
  color: #fff;
  padding: 124px 0 40px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.contact .wrap {
  max-width: 1300px;
  padding: 0 34px
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.03fr) minmax(360px, .97fr);
  align-items: start;
  padding: 0px;
}

.contact-grid,
.contact-copy,
.contact-form {
  will-change: transform, opacity
}

.contact-copy {
  max-width: none;
}

.contact .logo-big img {
  width: auto;
  max-width: 204px;
  height: auto
}

.contact .tagline {
  color: #fff;
  margin-bottom: 20px;
  font-size: 53px;
  font-family: inherit;
  line-height: 2ch;
  font-weight: 600;
  letter-spacing: normal;
}

.contact .intro-line {
  color: #fff;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: normal;
  max-width: 74%
}

.contact .logo-big {
  margin-bottom: 22px
}

.contact .conect-lin {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0;
  letter-spacing: normal;
  line-height: 1;
  transition: color .25s ease, transform .25s ease
}

.contact .conect-lin .li-link__icon {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1;
  transform: translateY(1px)
}

.contact .conect-lin .li-link__text {
  line-height: 1;
  padding-bottom: 7px;
  border-bottom: 3px solid currentColor
}

.contact-form-wrap {
  max-width: none;
  width: 100%;
  justify-self: end
}

.contact-form {
  max-width: none;
  width: 100%
}

.contact .contact-form input,
.contact .contact-form textarea {
  width: 100%;
  background: #00573b;
  border: 0;
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  font-size: 18px;
  font-family: inherit;
  margin-bottom: 15px;
  font-weight: 500
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  outline: none;
  box-shadow: none
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
}

.contact .contact-form input {
  min-height: 54px
}

.contact .contact-form textarea {
  min-height: 100px;
  resize: none
}

.contact .contact-form button {
  width: 245px;
  background: var(--cream);
  color: #004e35;
  border: 1px solid #fdffed;
  padding: 10px 40px;
  min-height: 55px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: normal;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background-color .35s ease, box-shadow .35s ease, color .35s ease, border-color .35s ease
}

.contact .contact-form button:hover {
  background: #004e35;
  color: #fdffed;
  border-color: #fdffed;
  transform: translateY(0);
  box-shadow: none
}

.contact-copyright p {
  text-align: center;
  margin: 84px 0 0;
  color: #b8b8b8;
  font-size: 15px;
  font-family: inherit;
  line-height: 25px
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, var(--motion-rise), 0);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0s)
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

/* Lightweight replacement for the archived site's Locomotive-style hooks.
   data-scroll-section is inert by itself; jquery-animations.js reads
   data-scroll-speed and applies the eased translate3d movement. Add it only to
   safe wrappers/copy/media, not forms, modals, sticky tracks, or elements whose
   transform is already owned by another animation. */
[data-scroll-speed] {
  will-change: transform;
  transform: translate3d(0, 0, 0)
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .hero .inner > *,
  .hero-floater,
  .member,
  [data-scroll-speed],
  [data-animate] {
    opacity: 1 !important;
    transform: none !important
  }
}

@media(max-width:1180px) {
  .contact {
    padding: 96px 0 22px
  }

  .contact .wrap {
    padding: 0 32px
  }

  .contact .intro-line {
    max-width: 100%;
    margin-bottom: 26px
  }
}

@media(max-width:980px) {
  .talk-overlay__grid {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .talk-overlay__copy {
    align-self: start
  }

  .talk-overlay__form-wrap {
    justify-content: stretch
  }

  .talk-overlay__form {
    width: 100%
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-copy,
  .contact-form {
    max-width: 100%;
    justify-self: stretch
  }

  .contact-copy {
    padding-top: 0
  }

  .contact .contact-form button {
    width: 100%
  }

  .contact-copyright p {
    margin-top: 80px
  }
}

@media(max-width:720px) {
  .talk-overlay__panel {
    padding: 10px
  }

  .talk-overlay__shell {
    padding: 78px 18px 22px;
    border-radius: 28px
  }

  .talk-overlay__title {
    max-width: none
  }

  .talk-overlay__body {
    font-size: 15px
  }

  .talk-overlay__form {
    padding: 18px;
    border-radius: 22px
  }

  .talk-overlay__close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 28px
  }

  .contact {
    padding: 72px 0 18px
  }

  .contact .wrap {
    padding: 0 24px
  }

  .contact .tagline {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1.08;
    max-width: none
  }

  .contact .intro-line {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 22px
  }

  .contact .logo-big img {
    max-width: 150px
  }

  .contact .logo-big {
    margin-bottom: 22px
  }

  .contact .conect-lin {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    gap: 6px
  }

  .contact .conect-lin .li-link__icon {
    font-size: 15px
  }

  .contact .conect-lin .li-link__text {
    padding-bottom: 5px;
    border-bottom-width: 2px
  }

  .contact .contact-form input {
    min-height: 52px
  }

  .contact .contact-form input,
  .contact .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 14px
  }

  .contact .contact-form input::placeholder,
  .contact .contact-form textarea::placeholder {
    font-size: 14px
  }

  .contact .contact-form textarea {
    min-height: 108px
  }

  .contact .contact-form button {
    width: 100%;
    min-height: 52px;
    font-size: 13px
  }

  .contact-copyright p {
    margin-top: 30px;
    font-size: 13px
  }
}
