@charset "UTF-8";
@font-face {
  font-family: "JustSans";
  src: url("./assets/JUST Sans Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "JustSans", sans-serif;
  font-weight: 400;
  background-color: #ffffff !important;
}

* {
  box-sizing: border-box;
}

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

.line {
  overflow: hidden;
  display: block;
}

.words {
  display: inline-block;
  will-change: transform;
}

.whitespace {
  display: inline;
  white-space: pre;
}

.site-nav {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
  padding: 0 32px;
}
.site-nav.is-dark {
  --nav-fg: #121212;
  --nav-bg: rgba(245, 245, 240, 0.88);
  --nav-border: rgba(18, 18, 18, 0.08);
  --nav-panel-bg: #f5f5f0;
  --nav-panel-fg: #121212;
  --nav-muted: #666;
}
.site-nav.is-light {
  --nav-fg: #f5f5f0;
  --nav-border: rgba(255, 255, 255, 0.08);
  --nav-panel-bg: #f5f5f0;
  --nav-panel-fg: #121212;
  --nav-muted: #666;
}
.site-nav__bar {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 60px;
  padding: 0 22px;
  backdrop-filter: blur(14px);
  background: rgba(18, 18, 18, 0.094);
  pointer-events: auto;
}
.site-nav__logo img {
  width: 50%;
}
.site-nav__logo-svg {
  width: 108px;
  height: auto;
  display: block;
}
.site-nav__toggle {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--nav-fg);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  pointer-events: auto;
}
.site-nav__toggle-label {
  display: inline-block;
  min-width: 52px;
  text-align: center;
}
.site-nav__toggle-icon {
  width: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-nav__toggle-icon span {
  width: 100%;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-nav.is-open .site-nav__toggle-icon span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.site-nav.is-open .site-nav__toggle-icon span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.site-nav__cta {
  justify-self: end;
  pointer-events: auto;
}
.site-nav__cta .btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: #346739;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}
.site-nav__cta .btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #f3f3f3;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
.site-nav__cta .btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__cta .btn .btn__fill .btn__text {
  color: #346739;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
.site-nav__cta .btn:hover > .btn__text {
  transform: translateY(-120%);
}
.site-nav__cta .btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.site-nav__cta .btn:focus-visible {
  outline: 2px solid #efefef;
  outline-offset: 3px;
}
.site-nav__panel {
  margin-top: 10px;
  background: rgba(18, 18, 18, 0.25);
  backdrop-filter: blur(20px);
  color: var(--nav-panel-fg);
  border: 1px solid rgba(18, 18, 18, 0.08);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.site-nav.is-open .site-nav__panel {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__panel-inner {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 48px;
  padding: 44px 54px 54px;
  min-height: 72vh;
}
.site-nav__panel-left {
  display: flex;
  align-items: flex-start;
}
.site-nav__menu-wrap {
  position: relative;
  padding-left: 72px;
  width: 100%;
}
.site-nav__active-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 65px;
  height: 65px;
  transform: translateY(18px);
  will-change: transform;
}
.site-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-nav__menu-link {
  position: relative;
  display: inline-block;
  font-size: clamp(52px, 5vw, 84px);
  line-height: 0.95;
  color: var(--nav-panel-fg);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.site-nav__menu-link:hover, .site-nav__menu-link.is-active {
  color: #fff;
  transform: translateX(20px);
}
.site-nav__panel-right {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-content: start;
}
.site-nav__contact .site-nav__eyebrow, .site-nav__meta .site-nav__eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.site-nav__contact p,
.site-nav__contact li, .site-nav__meta p,
.site-nav__meta li {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--nav-panel-fg);
}
.site-nav__contact ul, .site-nav__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__cards {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-self: end;
}
.site-nav__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-nav__card img {
  width: 100%;
  aspect-ratio: 0.9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #ececec;
}
.site-nav__card span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-panel-fg);
}
@media (max-width: 1100px) {
  .site-nav {
    padding: 0 20px;
  }
  .site-nav__bar {
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
  }
  .site-nav__toggle {
    justify-self: end;
  }
  .site-nav__cta {
    display: none;
  }
  .site-nav__panel-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px 32px;
  }
  .site-nav__panel-right {
    grid-template-columns: 1fr;
  }
  .site-nav__cards {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .site-nav__menu-wrap {
    padding-left: 44px;
  }
  .site-nav__menu-link {
    font-size: clamp(34px, 8vw, 54px);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 200vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.hero .hero__copy {
  position: relative;
  z-index: 2;
  padding: 80px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.hero .hero__copy .hero__title {
  font-family: "JustSans", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  color: #121212;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero .hero__copy p {
  margin: 0;
  padding: 0;
}
.hero .hero__copy .hero-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.hero .hero__copy .hero-btn .btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: #346739;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.hero .hero__copy .hero-btn .btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #f3f3f3;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero .hero__copy .hero-btn .btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero .hero__copy .hero-btn .btn .btn__fill .btn__text {
  color: #346739;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .hero__copy .hero-btn .btn:hover > .btn__text {
  transform: translateY(-120%);
}
.hero .hero__copy .hero-btn .btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.hero .hero__copy .hero-btn .btn:focus-visible {
  outline: 2px solid #efefef;
  outline-offset: 3px;
}
.hero .hero__copy .stats {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  position: relative;
}
.hero .hero__copy .stats span {
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
}
.hero .hero__copy .stats p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
}
.hero .hero__video-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: start;
  justify-content: flex-end;
  overflow: hidden;
  margin-bottom: 3em;
  padding: 0 60px;
}
.hero .hero__video-wrap .hero__video {
  width: 20%;
  border-radius: 6px;
  height: auto;
  transform-origin: center center;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform, width, height;
}
@media (max-width: 1024px) {
  .hero {
    align-items: flex-start;
  }
  .hero .hero__copy {
    padding: 135px 32px 60px;
  }
  .hero .hero__copy p {
    max-width: 78vw;
  }
  .hero .hero__copy .hero-btn {
    gap: 18px;
  }
  .hero .hero__video-wrap {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 100vh;
    display: block;
    overflow-x: hidden;
  }
  .hero .hero__copy {
    padding: 130px 16px 36px;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero .hero__copy .hero__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero .hero__copy p {
    width: 100%;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.18;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero .hero__copy .reveal-text,
  .hero .hero__copy .reveal-text--para {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .hero .hero__copy .reveal-text .line,
  .hero .hero__copy .reveal-text--para .line {
    display: inline;
    overflow: visible;
  }
  .hero .hero__copy .reveal-text .words,
  .hero .hero__copy .reveal-text--para .words {
    display: inline;
    white-space: normal;
    transform: none !important;
  }
  .hero .hero__copy .reveal-text .whitespace,
  .hero .hero__copy .reveal-text--para .whitespace {
    white-space: normal;
  }
  .hero .hero__copy .hero-btn {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .hero .hero__copy .hero-btn .btn {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
  }
  .hero .hero__copy .stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
  }
  .hero .hero__copy .stats span {
    font-size: 30px;
  }
  .hero .hero__copy .stats p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero .hero__video-wrap {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0 16px 48px;
    display: block;
    overflow: visible;
  }
  .hero .hero__video-wrap .hero__video {
    width: 100%;
    height: auto;
    transform: none;
    scale: 1;
  }
}

.problem {
  padding: 0 0 60px 0;
  border-top: 0.5px solid #346739;
}
.problem__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__left {
  padding-top: 40px;
}
.problem__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.problem__sub {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.problem__right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-top: 40px;
}
.problem__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #346739;
  transform: translateX(-50%);
}
.problem__card {
  background: #f7f7f7;
  padding: 28px;
  position: relative;
  will-change: transform, opacity;
}
.problem .last__card .problem__card-title {
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 40px);
}
.problem__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.problem__card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: #121212;
}
.problem__card-num {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: #346739;
}
.problem__card-rule {
  border: none;
  border-top: 1px solid #346739;
  margin: 12px 0;
  opacity: 0.4;
}
.problem__card-body {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #346739;
  line-height: 1.6;
  margin: 12px 0;
}
.problem__card-list {
  margin: 12px 0;
  padding-left: 0;
  list-style: circle;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #346739;
  line-height: 1.6;
}
.problem__card-list li {
  margin: 8px 0;
}
@media (max-width: 767px) {
  .problem {
    overflow: hidden;
    padding: 0 0 48px 0;
  }
  .problem__inner {
    width: min(100%, 100% - 32px);
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem__left {
    padding-top: 40px;
  }
  .problem__heading {
    max-width: 100%;
  }
  .problem__sub {
    max-width: 100%;
  }
  .problem__right {
    gap: 48px;
    padding-top: 0;
  }
  .problem__line {
    left: 50%;
  }
  .problem__card {
    width: 100%;
  }
}

.grow-panel {
  --panel: rgba(56, 33, 22, 0.55);
  --stroke: rgba(255, 255, 255, 0.18);
  --rule: rgba(255, 255, 255, 0.16);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  padding: 60px 0 0;
}
.grow-panel__track {
  position: relative;
}
.grow-panel__panel {
  top: 35vh;
  position: sticky;
  width: var(--panelW, 82%);
  margin: 0 auto;
  border-radius: var(--panelR, 20px);
  border: 1px solid var(--stroke);
  background: #346739;
  backdrop-filter: blur(18px);
  padding: clamp(22px, 5vw, 120px);
  overflow: hidden;
}
.grow-panel__top {
  padding-bottom: clamp(18px, 2.2vw, 26px);
}
.grow-panel__title {
  margin: 0 0 18px;
  font-size: 12px;
  color: #e4e4e4;
  font-weight: 400;
  text-transform: uppercase;
}
.grow-panel__lead {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.grow-panel__sublead {
  max-width: 65vw;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.grow-panel__rows {
  border-top: 1px dashed #fff;
}
@media (max-width: 980px) {
  .grow-panel {
    padding: 30px 0;
  }
}

.g-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px dashed #fff;
}
.g-row h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  width: 50vh;
}
.g-row:last-child {
  border: none;
  grid-template-columns: 2fr;
}
.g-row__when {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-top: 14px;
  text-transform: uppercase;
}
.g-row__when:last-child {
  font-size: 24px;
  font-style: italic;
}
.g-row__content {
  padding-top: 10px;
}
.g-row__h {
  margin: 0 0 20px 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  max-width: 560px;
}
.g-row__list {
  margin: 0;
  padding-left: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.g-row__list li {
  margin: 10px 0;
}
@media (max-width: 900px) {
  .g-row {
    grid-template-columns: 64px 1fr;
    grid-template-areas: "when when" "content content";
    gap: 14px;
  }
  .g-row__icon {
    grid-area: icon;
    width: 56px;
    height: 56px;
  }
  .g-row__when {
    grid-area: when;
    padding-top: 10px;
  }
  .g-row__content {
    grid-area: content;
    padding-top: 0;
  }
}

.services {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}
.services__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services__header {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  margin-bottom: 48px;
}
.services__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.services__sub {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
}
.services__body {
  display: flex;
  align-items: stretch;
  height: 460px;
  width: 800px;
  gap: 10px;
  border-radius: 12px;
  overflow: hidden;
}
.services__item {
  position: relative;
  flex: 0 0 56px;
  background: #346739;
  color: #fff;
  border-left: none;
  border-radius: 10px;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  overflow: hidden;
}
.services__item:first-child {
  border-left: none;
}
.services__item.active {
  flex: 1;
  background: #f7f7f7;
  cursor: default;
}
.services__item.active .services__collapsed {
  opacity: 0;
  pointer-events: none;
}
.services__item.active .services__expanded {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.25s;
}
.services__item:not(.active):hover {
  background: #346739;
}
.services__item:not(.active):hover .services__item-num,
.services__item:not(.active):hover .services__item-label {
  color: #fff;
}
.services__collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  opacity: 1;
  transition: opacity 0.15s ease;
  z-index: 2;
}
.services__item-num {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.services__item-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.services__expanded {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.services__expanded-text {
  padding: 28px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.services__item-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: #346739;
  margin: 0;
  transition: none;
  padding-top: 20px;
}
.services__item-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.services__expanded-img {
  flex: 1;
  overflow: hidden;
  background: #f0f0f0;
}
.services__expanded-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.services__item.active .services__expanded::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 11px;
  font-weight: 600;
  color: #346739;
  letter-spacing: 0.05em;
  z-index: 3;
}
@media (max-width: 1024px) {
  .services__inner {
    width: min(100%, 100% - 64px);
  }
  .services__sub {
    max-width: 100%;
  }
  .services__body {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 80px 0;
  }
  .services__inner {
    width: min(100%, 100% - 32px);
    align-items: stretch;
  }
  .services__header {
    margin-bottom: 36px;
  }
  .services__sub {
    max-width: 100%;
  }
  .services__body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-radius: 0;
    overflow: visible;
  }
  .services__item {
    flex: none;
    width: 100%;
    height: auto;
    min-height: auto;
    background: #f7f7f7;
    color: #fff;
    cursor: default;
    overflow: hidden;
  }
  .services__item:not(.active):hover {
    background: #f7f7f7;
  }
  .services__item.active {
    flex: none;
  }
  .services__collapsed {
    display: none;
  }
  .services__expanded {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    transition: none;
  }
  .services__expanded::before {
    content: attr(data-num);
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 11px;
    font-weight: 600;
    color: #346739;
    letter-spacing: 0.05em;
    z-index: 3;
  }
  .services__expanded-text {
    padding: 28px 28px 20px 28px;
  }
  .services__expanded-img {
    flex: none;
    width: 100%;
    aspect-ratio: 16/10;
  }
}

.works {
  position: relative;
}
.works__top {
  position: relative;
  z-index: 8;
  padding: 32px 0 24px;
  width: 100%;
  margin: 0;
}
.works__top-inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.works__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.works__subheading {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.works__body {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 60px;
  align-items: center;
  padding: 0 0 32px;
  box-sizing: border-box;
}
.works__col-counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding-top: 0;
}
.works__count-current {
  font-size: 28px;
  font-weight: 700;
  color: #346739;
  line-height: 1;
  margin-bottom: 4px;
}
.works__count-total {
  color: #999;
  font-size: 13px;
}
.works__col-img {
  height: min(62vh, 680px);
  align-self: center;
}
.works__img-stack {
  position: relative;
  width: 80%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e8;
}
.works__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.works__img.active {
  opacity: 1;
}
.works__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works__col-list {
  height: min(62vh, 680px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-self: center;
}
.works__list-header {
  flex-shrink: 0;
  padding: 16px 0 12px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}
.works__tag-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}
.works__list-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.works__list {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.works__item {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.works__item.active {
  opacity: 1;
}
.works__item.active .works__item-tag {
  opacity: 1;
}
.works__item.active .works__item-desc {
  max-height: 200px;
  opacity: 1;
}
.works__item-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #346739;
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.works__item-title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.2;
}
.works__item-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.works__mobile-controls {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .works__body {
    gap: 0;
    width: min(100%, 100% - 48px);
    grid-template-columns: 80px 1fr 1.6fr;
  }
  .works__img-stack {
    width: 88%;
  }
}
@media (max-width: 767px) {
  .works {
    padding-bottom: 64px;
    overflow: hidden;
  }
  .works__top {
    padding: 48px 0 28px;
  }
  .works__top-inner {
    width: min(100%, 100% - 32px);
  }
  .works__subheading {
    max-width: 100%;
  }
  .works__body {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .works__col-counter {
    display: none;
  }
  .works__col-img {
    order: 1;
    width: 100%;
    height: auto;
    overflow: visible;
    align-self: auto;
    padding: 0;
    margin-top: 28px;
  }
  .works__img-stack {
    width: 100%;
    height: auto;
    display: flex;
    gap: 16px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    will-change: transform;
  }
  .works__img {
    position: relative;
    inset: auto;
    flex: 0 0 62%;
    aspect-ratio: 3/3.8;
    opacity: 1;
    border-radius: 4px;
    overflow: hidden;
    background: #e8e8e8;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .works__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .works__img:not(.active) {
    opacity: 0.85;
    transform: scale(0.94);
  }
  .works__img.active {
    opacity: 1;
    transform: scale(1);
  }
  .works__col-list {
    order: 2;
    width: min(100%, 100% - 32px);
    height: auto;
    overflow: visible;
    align-self: center;
    margin-top: 28px;
    text-align: center;
  }
  .works__list-header {
    display: none;
  }
  .works__list-viewport {
    overflow: visible;
  }
  .works__list {
    display: block;
    transform: none !important;
    transition: none;
  }
  .works__item {
    display: none;
    padding: 0;
    border-bottom: none;
    opacity: 1;
  }
  .works__item.active {
    display: block;
  }
  .works__item-tag {
    opacity: 1;
    margin-bottom: 10px;
    text-align: center;
    font-size: 10px;
    line-height: 1.4;
  }
  .works__item-title {
    font-size: clamp(22px, 4.5vw, 28px);
    line-height: 1.08;
    margin: 0 0 12px;
    color: #121212;
    text-align: center;
  }
  .works__item-desc {
    max-height: none;
    opacity: 1;
    overflow: visible;
    font-size: 12px;
    line-height: 1.55;
    color: #555;
    text-align: center;
  }
  .works__mobile-controls {
    order: 3;
    width: min(100%, 100% - 32px);
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 74px 1fr 74px;
    align-items: center;
    gap: 18px;
  }
  .works__mobile-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #346739;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .works__mobile-count {
    text-align: center;
    font-size: 15px;
    color: #555;
    letter-spacing: 0.02em;
  }
}

.lab__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 24px 120px;
}
.lab__header {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: min(1100px, 100% - 96px);
  margin-left: auto;
  margin-right: auto;
}
.lab__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.lab__subtext {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.lab__orbit-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 40px;
  overflow: hidden;
}
.lab__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.lab__ellipse {
  fill: none;
  stroke: #346739;
  stroke-width: 1;
  stroke-dasharray: 1.5 4;
  stroke-linecap: round;
  opacity: 0.9;
}
.lab__center {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 420px;
  text-align: center;
  pointer-events: none;
}
.lab__item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.lab__item.active {
  opacity: 1;
  pointer-events: auto;
}
.lab__item-status {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #346739;
  margin-bottom: 16px;
  border: 1px solid #346739;
  padding: 8px 16px;
  border-radius: 999px;
  line-height: 1;
}
.lab__item-title {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  color: #346739;
  margin: 0 0 18px;
  line-height: 1.18;
  max-width: 420px;
}
.lab__item-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  max-width: 430px;
}
.lab__marker {
  fill: #0c0c0c;
  transform-origin: center;
}
@media (max-width: 1024px) {
  .lab__inner {
    padding: 20px 24px 90px;
  }
  .lab__header {
    width: min(100%, 100% - 48px);
  }
  .lab__heading {
    max-width: none;
  }
  .lab__subtext {
    max-width: 100%;
  }
  .lab__orbit-wrap {
    height: 360px;
    margin-top: 28px;
    overflow: hidden;
  }
  .lab__svg {
    width: 100%;
    height: 100%;
  }
  .lab__center {
    width: 340px;
  }
  .lab__item-title {
    max-width: 340px;
  }
  .lab__item-desc {
    max-width: 340px;
  }
}
@media (max-width: 767px) {
  .lab__inner {
    padding: 56px 20px 72px;
    overflow: hidden;
  }
  .lab__header {
    width: 100%;
  }
  .lab__subtext {
    max-width: 100%;
  }
  .lab__orbit-wrap {
    height: auto;
    margin-top: 36px;
    overflow: visible;
  }
  .lab__svg {
    display: none;
  }
  .lab__center {
    position: relative;
    top: auto;
    left: auto;
    translate: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    pointer-events: auto;
  }
  .lab__item {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 24px;
    background: #f7f7f7;
    border-radius: 4px;
    transition: none;
  }
  .lab__item-status {
    margin-bottom: 16px;
  }
  .lab__item-title {
    font-size: 24px;
    max-width: 100%;
    margin-bottom: 14px;
  }
  .lab__item-desc {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .lab__inner {
    padding: 48px 16px 64px;
  }
  .lab__item {
    padding: 22px;
  }
  .lab__item-title {
    font-size: 22px;
  }
  .lab__item-desc {
    font-size: 12px;
  }
}

.project-cta {
  padding: 56px 0 80px;
}
.project-cta__inner {
  width: min(1100px, 100% - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 140px;
  align-items: center;
}
.project-cta__header {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
}
.project-cta__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.project-cta__subtext {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.project-cta__image {
  width: 100%;
  aspect-ratio: 1.77/1;
  overflow: hidden;
  margin-top: 30px;
}
.project-cta__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-cta__right {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: space-around;
}
.project-cta__headline {
  margin: 0;
  max-width: 620px;
  font-size: clamp(24px, 1.5vw, 30px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #121212;
}
.project-cta__contact a,
.project-cta__contact p {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: #121212;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.project-cta__action p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid #121212;
  font-size: 24px;
  line-height: 1;
  color: #121212;
  letter-spacing: -0.02em;
}
.project-cta__action .btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: #346739;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}
.project-cta__action .btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
.project-cta__action .btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-cta__action .btn .btn__fill .btn__text {
  color: #346739;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
.project-cta__action .btn:hover > .btn__text {
  transform: translateY(-120%);
}
.project-cta__action .btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.project-cta__action .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (max-width: 1024px) {
  .project-cta__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .project-cta__title {
    margin-bottom: 48px;
  }
  .project-cta__right {
    min-height: auto;
  }
  .project-cta__contact, .project-cta__action {
    margin-top: 60px;
  }
  .project-cta__note {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .project-cta {
    padding: 48px 0 64px;
  }
  .project-cta__inner {
    width: min(100%, 100% - 32px);
  }
  .project-cta__headline {
    font-size: 32px;
  }
  .project-cta__contact a,
  .project-cta__contact p {
    font-size: 20px;
  }
  .project-cta__action p {
    font-size: 20px;
  }
  .project-cta__note {
    font-size: 16px;
    line-height: 1.3;
  }
}

.site-footer {
  padding: 30px 0;
  margin-top: 30px;
}
.site-footer__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}
.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.site-footer__logo-placeholder {
  width: 70%;
  height: 60px;
}
.site-footer__logo {
  width: 70%;
  height: auto;
}
.site-footer__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.site-footer__tagline {
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
  font-style: italic;
  margin: 0;
  line-height: 1.3;
  max-width: 420px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__nav a {
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover {
  color: #346739;
}
.site-footer__col-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 16px;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.site-footer__contact a {
  font-size: 14px;
  color: #121212;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__contact a:hover {
  color: #346739;
}
.site-footer__global {
  padding-top: 4px;
}
.site-footer__global .socials {
  display: flex;
  gap: 10px;
}
.site-footer__global .socials a {
  font-size: 14px;
  color: #121212;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.site-footer__global .socials a:hover {
  color: #346739;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #121212;
  font-style: italic;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 32px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .site-footer__nav {
    grid-column: 1/-1;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.lab-intro {
  padding: 160px 0 80px;
}
.lab-intro__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.lab-intro__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.lab-intro__para {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .lab-intro {
    padding: 120px 0 48px;
  }
  .lab-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.lab-section {
  padding: 0 0 120px;
}
.lab-section__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  gap: 60px;
  align-items: start;
}
.lab-section--left-sticky .lab-section__inner {
  grid-template-columns: 280px 1fr;
}
.lab-section--right-sticky .lab-section__inner {
  grid-template-columns: 1fr 280px;
}
.lab-section__sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lab-section__status {
  display: block;
  font-size: clamp(24px, 2vw, 48px);
  font-weight: 500;
  color: #346739;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.lab-section__status-note {
  font-size: 13px;
  line-height: 1.6;
  color: #888;
  margin: 0;
  max-width: 200px;
}
.lab-section__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .lab-section {
    padding: 0 0 80px;
  }
  .lab-section__inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .lab-section__sticky {
    position: relative;
    top: auto;
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 155, 144, 0.25);
  }
  .lab-section--right-sticky .lab-section__inner {
    display: flex;
    flex-direction: column;
  }
  .lab-section--right-sticky .lab-section__sticky {
    order: -1;
  }
  .lab-section__status {
    font-size: clamp(28px, 7vw, 40px);
  }
  .lab-section__status-note {
    max-width: none;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .lab-section__sticky {
    flex-direction: column;
    gap: 8px;
  }
}

.lab-card {
  padding: clamp(32px, 4vw, 56px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform, opacity;
}
.lab-card--dark {
  background: #346739;
}
.lab-card--dark .lab-card__stack {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
}
.lab-card--dark .lab-card__title {
  color: #fff;
}
.lab-card--dark .lab-card__body {
  color: rgba(255, 255, 255, 0.82);
}
.lab-card--dark .lab-card__callout {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.lab-card--light {
  background: #f7f7f7;
}
.lab-card--light .lab-card__stack {
  color: #888;
  border-color: rgba(102, 155, 144, 0.2);
}
.lab-card--light .lab-card__title {
  color: #346739;
}
.lab-card--light .lab-card__body {
  color: #444;
}
.lab-card--light .lab-card__callout {
  color: #333;
  border-color: rgba(102, 155, 144, 0.3);
  background: rgba(102, 155, 144, 0.06);
}
.lab-card__stack {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
.lab-card__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
.lab-card__body {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.lab-card__callout {
  font-size: 13px;
  line-height: 1.65;
  font-style: italic;
  padding: 16px 20px;
  border-left: 2px solid;
  border-radius: 0 2px 2px 0;
  margin-top: 4px;
}
.lab-card.is-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.lab-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  .lab-card {
    padding: 28px 24px;
    gap: 16px;
  }
  .lab-card__title {
    font-size: clamp(20px, 5vw, 26px);
  }
}

.svc-intro {
  padding: 160px 0 80px;
}
.svc-intro__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.svc-intro__heading {
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  text-transform: uppercase;
}
.svc-intro__para {
  max-width: 65vw;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .svc-intro {
    padding: 120px 0 48px;
  }
  .svc-intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.svc-scroll {
  position: relative;
}
.svc-scroll__pin-wrap {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.svc-scroll__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  will-change: transform;
}
@media (max-width: 900px) {
  .svc-scroll {
    height: auto !important;
  }
  .svc-scroll__pin-wrap {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .svc-scroll__track {
    flex-direction: column;
    transform: none !important;
    width: 100% !important;
  }
}

.svc-col {
  width: min(480px, 90vw);
  height: 100svh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 6vh, 100px) 56px clamp(40px, 5vh, 80px);
  border-right: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}
.svc-col--dark {
  background: #346739;
  border-right: none;
}
.svc-col--dark .svc-col__num {
  color: #f7f7f7;
}
.svc-col--dark .svc-col__divider {
  background: rgba(255, 255, 255, 0.1);
}
.svc-col--dark .svc-col__title {
  color: #fff;
}
.svc-col--dark .svc-col__desc {
  color: #f7f7f7;
}
.svc-col--dark .svc-col__note--spaced {
  color: #f7f7f7;
  border-color: #f7f7f7;
}
.svc-col__top {
  margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-col__num {
  display: block;
  font-size: clamp(52px, 5vw, 90px);
  font-weight: 500;
  color: #121212;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.svc-col__divider {
  height: 1px;
  background: rgba(18, 18, 18, 0.12);
}
.svc-col__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: none;
  padding-right: 4px;
}
.svc-col__body::-webkit-scrollbar {
  display: none;
}
.svc-col__title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  color: #121212;
  margin: 0;
  text-transform: uppercase;
}
.svc-col__sub {
  font-size: 13px;
  line-height: 1.65;
  color: #121212;
  margin: 0;
  font-style: italic;
}
.svc-col__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}
.svc-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-col__list li {
  font-size: 13px;
  color: #121212;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.svc-col__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #346739;
  font-size: 16px;
  line-height: 1.2;
}
.svc-col__note {
  font-size: 13px;
  font-style: italic;
  color: #346739;
  margin: 0;
}
.svc-col__note--spaced {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid;
}
@media (max-width: 900px) {
  .svc-col {
    width: 100%;
    height: auto;
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  }
  .svc-col--dark {
    border-bottom: none;
  }
}

.about-what {
  padding: 150px 0 110px;
  background: #ffffff;
}
.about-what__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-what__text {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 400;
  color: #121212;
  opacity: 0.5;
}

.about-signature__stage {
  height: 100vh;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  padding: 28px;
  padding-top: 90px !important;
  overflow: hidden;
}
.about-signature__left, .about-signature__right {
  min-height: 0;
}
.about-signature__left-card {
  height: 100%;
  border-radius: 4px;
  background: #346739;
  padding: 48px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-signature__eyebrow {
  margin: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4e4e4;
}
.about-signature__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-signature__title {
  margin: 0;
  text-align: center;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1;
  font-weight: 500;
  color: #e4e4e4;
  transition: all 0.35s ease;
}
.about-signature__title.is-active {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
}
.about-signature__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.about-signature__tabs span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.36);
  transition: color 0.3s ease;
}
.about-signature__tabs span.is-active {
  color: #121212;
}
.about-signature__media {
  position: relative;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #121212;
}
.about-signature__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 4px;
  z-index: 1;
  will-change: transform;
}
.about-signature__image:nth-child(1) {
  z-index: 1;
}
.about-signature__image:nth-child(2) {
  z-index: 2;
}
.about-signature__image:nth-child(3) {
  z-index: 3;
}
.about-signature__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-signature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}
.about-signature__text-box {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: min(520px, 100% - 108px);
  min-height: 180px;
  z-index: 10;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}
.about-signature__text {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.about-signature__text.is-active {
  opacity: 1;
  visibility: visible;
}
.about-signature__text span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.about-signature__text p {
  margin: 0;
  font-size: clamp(12px, 1vw, 18px);
  line-height: 1.35;
  color: #ffffff;
}

.about-fit {
  padding: 30px 0 90px 0;
}
.about-fit__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-fit__left {
  position: relative;
  align-self: stretch;
}
.about-fit__sticky {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.about-fit__sticky h2 {
  margin: 0;
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 500;
  color: #121212;
  text-transform: uppercase;
}
.about-fit__sticky span {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #346739;
}
.about-fit__list {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.about-fit__list p {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.16);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: #121212;
  will-change: transform, opacity;
}
.about-fit__list p:first-child {
  padding-top: 0;
}
.about-fit__list p:last-child {
  border-bottom: none;
}

.about-locations {
  padding: 60px 0;
  background: #333333;
  overflow: hidden;
}
.about-locations__inner {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.about-locations__eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.about-locations__title {
  position: relative;
  z-index: 4;
  margin: 0;
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 500;
  color: #f4eee8;
  text-transform: uppercase;
}
.about-locations__globe {
  position: relative;
  width: min(760px, 90vw);
  height: 460px;
  margin: 20px auto 0;
}
.about-locations__dot-globe {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.82) 1.3px, transparent 1.6px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 70%);
  opacity: 0.9;
  transform: perspective(900px) rotateX(58deg) rotateZ(-8deg);
  transform-origin: center;
}
.about-locations__pin {
  position: absolute;
  z-index: 5;
  width: 300px;
  padding: 14px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.about-locations__pin span {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #346739;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.about-locations__pin p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: #ffffff;
}
.about-locations__pin--us {
  left: -40px;
  top: 210px;
}
.about-locations__pin--uk {
  right: -60px;
  top: 230px;
}
.about-locations__pin--in {
  right: 120px;
  top: 280px;
}
.about-locations__company {
  position: relative;
  z-index: 6;
  margin: -20px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4eee8;
}

@media (max-width: 1024px) {
  .about-signature {
    height: auto;
  }
  .about-signature__stage {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
  }
  .about-signature__media {
    height: 70vh;
  }
  .about-fit__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-fit__sticky {
    position: sticky;
    top: 110px;
  }
  .about-locations__globe {
    height: auto;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .about-locations__dot-globe {
    position: relative;
    height: 320px;
  }
  .about-locations__pin {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 0;
  }
  .about-locations__company {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .about-what {
    padding: 130px 0 80px;
  }
  .about-what__inner {
    width: min(100%, 100% - 32px);
  }
  .about-signature__stage {
    padding: 16px;
  }
  .about-signature__left-card {
    padding: 34px 22px 24px;
  }
  .about-signature__tabs {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-signature__text-box {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }
  .about-fit {
    padding: 80px 0;
  }
  .about-fit__inner {
    width: min(100%, 100% - 32px);
    gap: 32px;
  }
  .about-fit__sticky {
    position: relative;
    top: auto;
  }
  .about-fit__list p {
    padding: 22px 0;
  }
  .about-locations {
    padding: 80px 0 64px;
  }
  .about-locations__inner {
    width: min(100%, 100% - 32px);
  }
  .about-locations__dot-globe {
    height: 260px;
  }
}
.works-intro {
  position: relative;
  background: #ffffff;
}
.works-intro__hero {
  min-height: 78vh;
  padding: 160px 70px 80px;
  display: flex;
  align-items: center;
  background: #ffffff;
}
.works-intro__heading {
  margin: 0;
  font-family: "JustSans", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  color: #121212;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.works-intro__pin {
  position: relative;
  min-height: 100vh;
  background: #000000;
}
.works-intro__stage {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #346739;
}
.works-intro__text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 100% - 48px);
  margin: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "JustSans", sans-serif;
  font-size: clamp(38px, 4.2vw, 72px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.works-intro__text .word {
  display: inline-block;
  opacity: 0.08;
  will-change: opacity, transform;
}
.works-intro__text .space {
  display: inline;
  white-space: pre;
}
@media (max-width: 1024px) {
  .works-intro__hero {
    padding: 140px 40px 70px;
  }
  .works-intro__heading {
    font-size: clamp(44px, 8vw, 82px);
  }
  .works-intro__text {
    font-size: clamp(34px, 6vw, 56px);
  }
}
@media (max-width: 767px) {
  .works-intro__hero {
    min-height: 72vh;
    padding: 130px 20px 60px;
  }
  .works-intro__heading {
    font-size: clamp(38px, 12vw, 64px);
    line-height: 0.98;
  }
  .works-intro__text {
    width: min(100%, 100% - 32px);
    font-size: clamp(30px, 9vw, 46px);
    line-height: 1.08;
  }
}

body.expo-page {
  --expo-white: #ffffff;
  --expo-black: #121212;
  --expo-green: #346739;
  --expo-grey: #f7f7f7;
  --expo-line: rgba(52, 103, 57, 0.25);
  --expo-muted: #666666;
  background: var(--expo-white) !important;
  color: var(--expo-black);
  font-family: "JustSans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
body.expo-page .page {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
  padding: 120px 0 0 0;
}
body.expo-page .hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 0 100px;
  padding: 0;
}
body.expo-page .hero .eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--expo-black);
  font-family: "JustSans", sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
body.expo-page .hero h1 .accent {
  color: var(--expo-green);
}
body.expo-page .hero .lede {
  margin: 0;
  padding: 0;
  color: var(--expo-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
body.expo-page .hero .lede strong {
  color: var(--expo-green);
  font-weight: 500;
}
body.expo-page .hero .test-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}
body.expo-page .hero .test-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .hero .test-meta .pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--expo-green);
  border-radius: 50%;
}
body.expo-page .hero .expo-start-btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: var(--expo-green);
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-radius: 0;
  box-shadow: none;
}
body.expo-page .hero .expo-start-btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #f3f3f3;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
body.expo-page .hero .expo-start-btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
body.expo-page .hero .expo-start-btn .btn__fill .btn__text {
  color: var(--expo-green);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
body.expo-page .hero .expo-start-btn:hover > .btn__text {
  transform: translateY(-120%);
}
body.expo-page .hero .expo-start-btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
body.expo-page .hero .expo-start-btn:focus-visible {
  outline: 2px solid var(--expo-green);
  outline-offset: 3px;
}
body.expo-page .type-picker,
body.expo-page .test,
body.expo-page .gate,
body.expo-page .result {
  display: none;
  width: 100%;
  margin-bottom: 100px;
}
body.expo-page .type-picker.active,
body.expo-page .test.active,
body.expo-page .gate.active,
body.expo-page .result.active {
  display: block;
}
body.expo-page .back-btn {
  display: inline-flex;
  align-items: center;
  margin: 0 0 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--expo-green);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
body.expo-page .back-btn:hover {
  color: var(--expo-black);
}
body.expo-page .type-picker .step-label {
  margin-bottom: 18px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .type-picker h2 {
  max-width: 760px;
  margin: 0 0 48px;
  color: var(--expo-black);
  font-family: "JustSans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .type-picker .types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
body.expo-page .type-picker .type-card {
  min-height: 120px;
  padding: 28px;
  background: var(--expo-grey);
  border: 1px solid transparent;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
body.expo-page .type-picker .type-card:hover {
  background: #ffffff;
  border-color: var(--expo-green);
  transform: translateY(-4px);
}
body.expo-page .type-picker .type-card .type-name {
  display: block;
  margin-bottom: 14px;
  color: var(--expo-black);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}
body.expo-page .type-picker .type-card .type-desc {
  display: block;
  color: var(--expo-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
body.expo-page .test .test-header {
  margin-bottom: 52px;
}
body.expo-page .test .test-header .progress-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  color: var(--expo-black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .test .test-header .progress-row .cat {
  color: var(--expo-green);
}
body.expo-page .test .test-header .progress-bar {
  position: relative;
  height: 2px;
  background: var(--expo-line);
  overflow: hidden;
}
body.expo-page .test .test-header .progress-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 16%);
  background: var(--expo-green);
  transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
body.expo-page .test .question .q-number {
  margin-bottom: 14px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .test .question .q-text {
  max-width: 850px;
  margin: 0 0 40px;
  color: var(--expo-black);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .test .question .options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 860px;
}
body.expo-page .test .question .option {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--expo-grey);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
body.expo-page .test .question .option:hover {
  background: #ffffff;
  border-color: var(--expo-green);
  transform: translateX(6px);
}
body.expo-page .test .question .option:hover .marker {
  background: var(--expo-green);
  color: #ffffff;
  border-color: var(--expo-green);
}
body.expo-page .test .question .option .marker {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--expo-green);
  color: var(--expo-green);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
body.expo-page .test .question .option .text {
  color: var(--expo-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
body.expo-page .result .verdict-eyebrow,
body.expo-page .result .section-eyebrow {
  margin-bottom: 16px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .result h2,
body.expo-page .result .section-title {
  max-width: 850px;
  margin: 0 0 28px;
  color: var(--expo-black);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .result h2 .accent,
body.expo-page .result h2 span,
body.expo-page .result .section-title .accent,
body.expo-page .result .section-title span {
  color: var(--expo-green);
}
body.expo-page .result .verdict-body {
  margin: 0 0 48px;
  color: var(--expo-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
body.expo-page .score-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 80px;
  padding: 32px;
  background: var(--expo-green);
  color: #ffffff;
}
body.expo-page .score-card .score {
  color: #ffffff;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
body.expo-page .score-card .score .max {
  color: rgba(255, 255, 255, 0.65);
  font-size: 24px;
  font-weight: 400;
}
body.expo-page .score-card .score-meta {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.expo-page .score-card .score-meta strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
body.expo-page .demo-section,
body.expo-page .services-section,
body.expo-page .outcomes-section {
  margin-bottom: 100px;
}
body.expo-page .demo-card {
  position: relative;
  margin-bottom: 16px;
  padding: 32px;
  background: var(--expo-grey);
  border-left: 1px solid var(--expo-green);
}
body.expo-page .demo-card .demo-label {
  margin-bottom: 10px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .demo-card .demo-title {
  margin-bottom: 14px;
  color: var(--expo-black);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
body.expo-page .demo-card .demo-status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid var(--expo-green);
  color: var(--expo-green);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.expo-page .demo-card .demo-status.lab {
  background: var(--expo-green);
  color: #ffffff;
}
body.expo-page .demo-card .demo-body {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--expo-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
body.expo-page .demo-card .demo-body strong {
  color: var(--expo-green);
  font-weight: 500;
}
body.expo-page .demo-card .demo-no-video {
  padding: 24px;
  background: #ffffff;
  border: 1px dashed var(--expo-green);
}
body.expo-page .demo-card .demo-no-video .no-video-label {
  margin-bottom: 8px;
  color: var(--expo-green);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .demo-card .demo-no-video .no-video-body {
  color: var(--expo-black);
  font-size: 14px;
  line-height: 1.5;
}
body.expo-page .expo-services-cta {
  margin-bottom: 100px;
  padding: 56px 0;
  border-top: 1px solid var(--expo-line);
  border-bottom: 1px solid var(--expo-line);
}
body.expo-page .expo-services-cta .section-eyebrow {
  margin-bottom: 16px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .expo-services-cta .section-title {
  max-width: 820px;
  margin: 0 0 32px;
  color: var(--expo-black);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .expo-services-cta .expo-services-btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: var(--expo-green);
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
}
body.expo-page .expo-services-cta .expo-services-btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #f3f3f3;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
body.expo-page .expo-services-cta .expo-services-btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
body.expo-page .expo-services-cta .expo-services-btn .btn__fill .btn__text {
  color: var(--expo-green);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
body.expo-page .expo-services-cta .expo-services-btn:hover > .btn__text {
  transform: translateY(-120%);
}
body.expo-page .expo-services-cta .expo-services-btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
body.expo-page .outcomes-section {
  padding: 56px;
  background: var(--expo-green);
  color: #ffffff;
}
body.expo-page .outcomes-section .section-eyebrow,
body.expo-page .outcomes-section .section-title,
body.expo-page .outcomes-section .services-intro {
  color: #ffffff;
}
body.expo-page .outcomes-section .section-title span {
  color: #ffffff;
}
body.expo-page .outcomes-section .services-intro {
  opacity: 0.85;
  margin-bottom: 0;
}
body.expo-page .outcomes-section .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.25);
}
body.expo-page .outcomes-section .outcome-card {
  padding: 28px;
  background: var(--expo-green);
}
body.expo-page .outcomes-section .outcome-card .outcome-num {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
body.expo-page .outcomes-section .outcome-card .outcome-name {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
body.expo-page .outcomes-section .outcome-card .outcome-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}
body.expo-page .audit {
  position: relative;
  margin-bottom: 30px;
  padding: 56px;
  background: #121212;
  color: #ffffff;
  overflow: hidden;
}
body.expo-page .audit::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 280px;
  height: 280px;
  background: rgba(52, 103, 57, 0.45);
  border-radius: 50%;
  filter: blur(40px);
}
body.expo-page .audit .audit-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .audit h3 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .audit p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}
body.expo-page .audit form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.expo-page .audit form .field {
  display: flex;
  flex-direction: column;
}
body.expo-page .audit form .field.full {
  grid-column: 1/-1;
}
body.expo-page .audit form label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .audit form input,
body.expo-page .audit form select {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 0;
}
body.expo-page .audit form input:focus,
body.expo-page .audit form select:focus {
  border-color: #ffffff;
}
body.expo-page .audit form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
body.expo-page .audit form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
body.expo-page .audit form select {
  cursor: pointer;
}
body.expo-page .audit form select option {
  color: #121212;
}
body.expo-page .audit form .btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: #346739;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}
body.expo-page .audit form .btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
body.expo-page .audit form .btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
body.expo-page .audit form .btn .btn__fill .btn__text {
  color: #346739;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
body.expo-page .audit form .btn:hover > .btn__text {
  transform: translateY(-120%);
}
body.expo-page .audit form .btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
body.expo-page .audit form .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
body.expo-page .audit .form-success {
  display: none;
  position: relative;
  z-index: 1;
  padding: 40px 0 0;
  text-align: left;
}
body.expo-page .audit .form-success.active {
  display: block;
}
body.expo-page .audit .form-success .check {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  background: var(--expo-green);
  border-radius: 50%;
  position: relative;
}
body.expo-page .audit .form-success .check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
}
body.expo-page .audit .form-success p {
  margin: 0;
  color: #ffffff;
  opacity: 1;
}
body.expo-page .audit .audit-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
body.expo-page .audit .audit-action-btn {
  position: relative;
  padding: 14px 30px;
  border: none;
  background: var(--expo-green);
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
}
body.expo-page .audit .audit-action-btn > .btn__text {
  position: relative;
  z-index: 1;
  color: #f3f3f3;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}
body.expo-page .audit .audit-action-btn .btn__fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 0;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
body.expo-page .audit .audit-action-btn .btn__fill .btn__text {
  color: var(--expo-green);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}
body.expo-page .audit .audit-action-btn:hover > .btn__text {
  transform: translateY(-120%);
}
body.expo-page .audit .audit-action-btn:hover .btn__fill {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
body.expo-page .audit .audit-action-btn:focus-visible {
  outline: 2px solid #efefef;
  outline-offset: 3px;
}
body.expo-page .fade-in {
  animation: expoRevealUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes expoRevealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  body.expo-page .page {
    width: min(100% - 32px, 720px);
    padding: 120px 0 0 0;
  }
  body.expo-page .hero .lede {
    max-width: 100%;
  }
  body.expo-page .type-picker .types {
    grid-template-columns: 1fr;
  }
  body.expo-page .result .verdict-body {
    max-width: 100%;
  }
  body.expo-page .services-intro {
    max-width: 100%;
  }
  body.expo-page .outcomes-section {
    padding: 32px;
  }
  body.expo-page .outcomes-section .outcomes-grid {
    grid-template-columns: 1fr;
  }
  body.expo-page .audit {
    padding: 32px;
  }
  body.expo-page .audit form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.expo-page {
    overflow-x: hidden;
    overflow-y: auto;
  }
  body.expo-page .site-nav {
    display: block !important;
  }
  body.expo-page .page {
    display: block !important;
  }
  body.expo-page .site-footer {
    display: block !important;
    padding-top: 0;
  }
  body.expo-page script {
    display: none !important;
  }
  body.expo-page .desktop-only-notice {
    display: none !important;
  }
}
body.expo-page .gate .step-label {
  margin-bottom: 18px;
  color: var(--expo-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.expo-page .gate h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--expo-black);
  font-family: "JustSans", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
body.expo-page .gate h2 .accent {
  color: var(--expo-green);
}
body.expo-page .gate .gate-lede {
  max-width: 620px;
  margin-bottom: 36px;
}
body.expo-page .gate .gate-form-wrap {
  margin-top: 0;
}
body.expo-page .gate .gate-privacy {
  max-width: 620px;
  margin-top: 24px;
  color: var(--expo-muted);
  font-size: 13px;
  font-style: italic;
}
body.expo-page .gate .form-error {
  font-size: 14px;
  color: #b22;
  margin-top: 12px;
}/*# sourceMappingURL=style.css.map */