:root {
  --green: #76b82a;
  --green-deep: #5f9f16;
  --sage: #e9f0df;
  --sage-strong: #dce8cc;
  --navy: #0b2134;
  --navy-deep: #061828;
  --navy-soft: #12314a;
  --ink: #142131;
  --muted: #66717a;
  --line: #dbe0dc;
  --paper: #f7f8f4;
  --white: #fff;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --shell: 1360px;
  --gutter: clamp(24px, 5vw, 96px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 390;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(112px, 12vw, 184px);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background-color 380ms ease, box-shadow 380ms ease, color 380ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  transition: background-color 380ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(6, 24, 40, .08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
  background: var(--line);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 150px;
  align-items: center;
  gap: 40px;
  min-height: 92px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 160px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.site-nav a,
.group-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.group-link {
  justify-self: end;
  opacity: .72;
  text-align: right;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-media,
.hero-media > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media > img {
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.04);
  animation: heroDrift 14s var(--ease-in-out) infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 14, 24, .88) 0%, rgba(3, 14, 24, .61) 37%, rgba(3, 14, 24, .12) 70%),
    linear-gradient(0deg, rgba(3, 14, 24, .55) 0%, transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-height: max(760px, 100svh);
  padding-block: 150px 96px;
}

.hero-copy {
  width: min(780px, 66vw);
}

.eyebrow,
.section-marker {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .78);
}

.hero h1 {
  margin: 28px 0 30px;
  font-size: clamp(64px, 6.3vw, 106px);
  font-weight: 350;
  letter-spacing: -.055em;
  line-height: .96;
}

.hero h1 em,
.process-heading h2 em {
  font-style: italic;
  font-weight: 300;
}

.mask-line,
.reveal-mask {
  display: block;
  overflow: hidden;
}

.mask-line > span,
.reveal-mask > span,
.hero-actions.reveal-mask {
  display: block;
  transform: translateY(116%);
  transition: transform 1050ms var(--ease-out);
}

.hero.is-ready .mask-line:nth-child(1) > span {
  transition-delay: 130ms;
}

.hero.is-ready .mask-line:nth-child(2) > span {
  transition-delay: 230ms;
}

.hero.is-ready .mask-line:nth-child(3) > span {
  transition-delay: 330ms;
}

.hero.is-ready .mask-line > span,
.hero.is-ready .reveal-mask > span,
.hero.is-ready .hero-actions.reveal-mask {
  transform: translateY(0);
}

.hero.is-ready .eyebrow span {
  transition-delay: 60ms;
}

.hero.is-ready .hero-lead span {
  transition-delay: 430ms;
}

.hero.is-ready .hero-actions {
  transition-delay: 540ms;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transform: translateX(-102%);
  transition: transform 520ms var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.button b,
.text-link b {
  font-size: 20px;
  font-weight: 400;
  transition: transform 360ms var(--ease-out);
}

.button:hover b,
.button:focus-visible b,
.text-link:hover b,
.text-link:focus-visible b {
  transform: translateX(6px);
}

.button-primary {
  background: var(--green);
  color: #10200a;
}

.text-link {
  position: relative;
  justify-content: flex-start;
  min-height: 42px;
}

.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
  opacity: .45;
}

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

.text-link-light {
  color: var(--white);
}

.hero-status {
  position: absolute;
  left: 0;
  bottom: 50px;
  display: flex;
  gap: 38px;
  font-size: 11px;
}

.hero-status::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 142px;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 25%, rgba(255, 255, 255, .25) 25%);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 20px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 12px;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 2px;
  height: 7px;
  background: var(--white);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.panel-motion {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 46%;
  width: 38vw;
  height: 250px;
  pointer-events: none;
}

.panel-ghost {
  position: absolute;
  inset: 28px auto auto 0;
  width: 52%;
  height: 52%;
  border: 1px solid rgba(255, 255, 255, .34);
  transform: skewY(-8deg);
  animation: panelSeparation 10s var(--ease-in-out) infinite;
}

.panel-ghost-2 {
  animation-delay: -1.15s;
  opacity: .68;
}

.panel-ghost-3 {
  animation-delay: -2.3s;
  opacity: .36;
}

.panel-route {
  position: absolute;
  top: 9px;
  left: 0;
  width: 58%;
  height: 1px;
  background: var(--green);
  transform-origin: left;
  animation: routePulse 10s var(--ease-in-out) infinite;
}

.panel-route::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(118, 184, 42, .12);
  animation: routeDot 10s var(--ease-in-out) infinite;
}

.panel-motion small {
  position: absolute;
  top: 23px;
  left: 53%;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  letter-spacing: .08em;
}

.trust-rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(230px, 26vw) 1fr;
  min-height: 102px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-label {
  display: flex;
  align-items: center;
  padding-inline: var(--gutter) 30px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-group span {
  display: grid;
  place-items: center;
  min-width: 210px;
  padding-inline: 30px;
  color: #7d8587;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.02em;
  white-space: nowrap;
}

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

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.section-marker {
  grid-column: 1 / span 2;
  padding-top: 11px;
}

.section-marker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-marker span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.display-title {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.intro .display-title {
  grid-column: 1 / span 6;
  grid-row: 2;
  padding-top: 54px;
}

.intro-copy {
  grid-column: 7 / span 4;
  grid-row: 2;
  padding-top: 64px;
}

.intro-copy p {
  margin-bottom: 24px;
  color: var(--muted);
}

.material-detail {
  grid-column: 11 / -1;
  grid-row: 2;
  height: 290px;
  margin: 0;
  overflow: hidden;
}

.material-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.route {
  grid-column: 1 / -1;
  position: relative;
  height: 54px;
  margin-top: 68px;
  border-top: 1px solid rgba(118, 184, 42, .68);
}

.route::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 45%;
  width: 18%;
  height: 54px;
  border-left: 1px solid rgba(118, 184, 42, .68);
  border-bottom: 1px solid rgba(118, 184, 42, .68);
  transform: skewX(30deg);
  transform-origin: left top;
}

.route i {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: .18;
}

.route i:nth-child(1) { left: 43%; }
.route i:nth-child(2) { left: 45%; opacity: .45; }
.route i:nth-child(3) {
  left: 47%;
  opacity: 1;
  box-shadow: 0 0 0 7px rgba(118, 184, 42, .13);
  animation: routeTravel 5.5s var(--ease-in-out) infinite;
}

.products {
  background: var(--paper);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.products-heading {
  padding-top: clamp(88px, 10vw, 150px);
}

.product {
  padding-block: clamp(100px, 11vw, 170px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.product-copy {
  grid-column: 1 / span 4;
  position: relative;
  z-index: 2;
}

.product-number {
  display: block;
  margin-bottom: -10px;
  color: #e3e7e2;
  font-size: clamp(74px, 9vw, 132px);
  font-weight: 250;
  letter-spacing: -.06em;
  line-height: .8;
}

.product-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.product-lead {
  margin-bottom: 28px;
  color: var(--ink) !important;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.25;
}

.product-copy > p:not(.product-lead) {
  color: var(--muted);
}

.spec-list {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 20px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
}

.product-visual {
  position: relative;
  grid-column: 5 / -1;
  margin: 0;
}

.image-window {
  position: relative;
  overflow: hidden;
  background: #e7e9e6;
}

.product-visual-wide .image-window {
  aspect-ratio: 1.8 / 1;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.1);
  transition: filter 700ms ease;
  will-change: transform;
}

.product-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 38%;
  height: 25%;
  border: 1px solid rgba(118, 184, 42, .68);
}

.product-visual figcaption {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.product-visual figcaption i {
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 52%, var(--line) 52%);
}

.product-grid-reversed .product-visual {
  grid-column: 1 / span 7;
  grid-row: 1;
}

.product-grid-reversed .product-copy {
  grid-column: 9 / -1;
  grid-row: 1;
}

.product-visual-tall .image-window {
  aspect-ratio: 1.38 / 1;
}

.product-visual-tall::after {
  right: auto;
  left: -18px;
}

.module-teaser {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-teaser > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 24px;
  transform-origin: center;
  transition: transform 520ms var(--ease-out);
}

.module-teaser p {
  margin: 0;
}

.module-teaser a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.module-teaser:hover > span,
.module-teaser:focus-within > span {
  transform: rotate(90deg);
}

.module-teaser:hover > .text-link::after,
.module-teaser:focus-within > .text-link::after,
.product-copy:hover > .text-link::after,
.product-copy:focus-within > .text-link::after {
  transform: scaleX(1);
}

.module-teaser:hover > .text-link b,
.module-teaser:focus-within > .text-link b,
.product-copy:hover > .text-link b,
.product-copy:focus-within > .text-link b {
  transform: translateX(6px);
}

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

.film .section-marker {
  margin-bottom: 34px;
}

.film-frame {
  position: relative;
  min-height: min(68vw, 760px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.film-frame > img,
.film-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-frame > img {
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 12s linear, filter 900ms ease;
}

.film-frame.is-playing > img {
  transform: scale(1.12) translateX(-1.5%);
  filter: saturate(.88) contrast(1.04);
}

.film-overlay {
  background: linear-gradient(90deg, rgba(3, 16, 27, .73), transparent 64%), linear-gradient(0deg, rgba(3, 16, 27, .55), transparent 52%);
}

.film-heading {
  position: absolute;
  z-index: 2;
  top: clamp(32px, 5vw, 74px);
  left: clamp(28px, 5vw, 74px);
}

.film-heading p {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.film-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 66px);
  letter-spacing: -.05em;
  line-height: 1.02;
}

.film-control {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 5vw, 74px);
  bottom: clamp(66px, 8vw, 98px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
}

.film-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  font-size: 11px;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease;
}

.film-control:hover .film-play,
.film-control:focus-visible .film-play,
.film-frame.is-playing .film-play {
  background: var(--green);
  color: var(--navy);
  transform: scale(1.08);
}

.film-control-label {
  font-size: 13px;
}

.film-timeline {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 74px);
  bottom: clamp(66px, 8vw, 98px);
  left: min(420px, 36vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.film-timeline > i {
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .33);
}

.film-timeline b {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
}

.film-frame.is-playing .film-timeline b {
  animation: filmProgress 18s linear infinite;
}

.process-story {
  position: relative;
  height: 400vh;
  background: var(--navy-deep);
  color: var(--white);
}

.process-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(38, 85, 119, .35), transparent 34%),
    var(--navy-deep);
}

.process-sticky::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 7%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow: -34px -34px 0 -33px rgba(255, 255, 255, .08), -68px -68px 0 -67px rgba(255, 255, 255, .06);
  transform: skewY(-12deg);
  pointer-events: none;
}

.process-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 100svh;
  padding-block: 110px 58px;
}

.section-marker-dark {
  color: var(--green);
}

.process-heading {
  grid-column: 1 / span 5;
  align-self: start;
}

.process-heading .section-marker {
  margin-bottom: 32px;
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 70px);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.process-active {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .48fr);
  gap: 32px;
  align-items: end;
}

.process-media-stack {
  position: relative;
  min-height: 360px;
}

.process-media-stack > i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: transform 700ms var(--ease-out), opacity 700ms ease;
}

.process-media-stack > i:nth-child(1) { transform: translate(-30px, -30px); opacity: .38; }
.process-media-stack > i:nth-child(2) { transform: translate(-20px, -20px); opacity: .58; }
.process-media-stack > i:nth-child(3) { transform: translate(-10px, -10px); opacity: .78; }

.process-media-stack figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.process-media-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), object-position 900ms var(--ease-out);
}

.process-story[data-stage="1"] .process-media-stack img { transform: scale(1.05); object-position: 42% center; }
.process-story[data-stage="2"] .process-media-stack img { transform: scale(1.1); object-position: 58% center; }
.process-story[data-stage="3"] .process-media-stack img { transform: scale(1.04); object-position: 78% center; }

.process-active-copy > span {
  color: var(--green);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .9;
}

.process-active-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -.04em;
  line-height: 1;
}

.process-active-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.process-steps {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 44px 0 0;
  padding: 22px 0 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .26);
}

.process-steps li {
  position: relative;
}

.process-steps li::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 50%;
  background: var(--navy-deep);
  transition: border-color 360ms ease, background-color 360ms ease, box-shadow 360ms ease;
}

.process-steps li.is-active::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(118, 184, 42, .13);
}

.process-steps button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 0 20px 0 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .42);
  text-align: left;
  cursor: pointer;
  transition: color 360ms ease;
}

.process-steps button:hover,
.process-steps button:focus-visible,
.process-steps li.is-active button {
  color: var(--white);
}

.process-steps button span {
  font-size: 11px;
}

.process-steps button strong {
  font-weight: 500;
}

.process-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}

.process-progress::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  height: 2px;
  background: rgba(255, 255, 255, .14);
}

.process-progress i {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 120ms linear;
}

.projects {
  overflow: hidden;
  background: var(--white);
}

.projects-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}

.projects .display-title {
  max-width: 14ch;
  margin-top: 46px;
}

.carousel-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 28px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.carousel-meta > span {
  color: var(--ink);
  font-size: 16px;
}

.carousel-meta p {
  margin: 0;
}

.carousel-buttons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.carousel-buttons button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.carousel-buttons button:hover,
.carousel-buttons button:focus-visible {
  border-color: var(--green);
  background: var(--sage);
  transform: translateY(-2px);
}

.project-viewport {
  padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  cursor: grab;
}

.project-viewport.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
  user-select: none;
}

.project-track {
  display: flex;
  gap: 24px;
  padding-right: var(--gutter);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 min(72vw, 1040px);
  aspect-ratio: 1.78 / 1;
  overflow: hidden;
  scroll-snap-align: start;
  background: #dfe3df;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 1s ease;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(.9) contrast(1.03);
}

.project-caption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 58px);
  bottom: clamp(20px, 4vw, 58px);
  width: min(460px, calc(100% - 40px));
  padding: clamp(22px, 3vw, 42px);
  background: rgba(6, 24, 40, .86);
  color: var(--white);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(12px);
  transition: transform 600ms var(--ease-out), background-color 600ms ease;
}

.project-card:hover .project-caption {
  background: rgba(6, 24, 40, .92);
  transform: translateY(0);
}

.project-caption > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-caption h3 {
  margin: 14px 0 16px;
  font-size: clamp(27px, 3vw, 46px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.project-caption p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
}

.project-caption a {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.project-progress {
  height: 2px;
  margin-top: 34px;
  background: var(--line);
}

.project-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--green);
  transition: width 500ms var(--ease-out);
}

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

.pillars-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  align-items: start;
  margin-bottom: 76px;
}

.pillars-heading .display-title {
  grid-column: 2;
  max-width: 16ch;
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pillar-list li {
  position: relative;
  min-height: 260px;
  padding: 26px 30px 20px 0;
  border-right: 1px solid var(--line);
}

.pillar-list li:not(:first-child) {
  padding-left: 30px;
}

.pillar-list li:last-child {
  border-right: 0;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 900ms var(--ease-out);
}

.pillar-list li.is-visible::before {
  width: 100%;
}

.pillar-list span {
  color: var(--green-deep);
  font-size: 12px;
}

.pillar-list h3 {
  margin: 32px 0 16px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.pillar-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 48%, rgba(118, 184, 42, .07), transparent 23%),
    var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 142px;
  grid-column: 1 / span 4;
  align-self: start;
}

.faq-intro .display-title {
  max-width: 9ch;
  margin-top: 52px;
  font-size: clamp(50px, 4.6vw, 70px);
}

.faq-intro > p {
  max-width: 34ch;
  margin: 34px 0 0;
  color: var(--muted);
}

.faq-contact-link {
  margin-top: 30px;
}

.faq-accordion {
  --faq-node-y: 52px;
  position: relative;
  grid-column: 6 / -1;
  padding-left: 44px;
  border-top: 1px solid var(--line);
}

.faq-route {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1px;
  pointer-events: none;
}

.faq-route::before {
  content: "";
  position: absolute;
  inset: 52px 0;
  background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
}

.faq-route > i {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(95, 159, 22, .28);
  transform: translate(-50%, calc(var(--faq-node-y) - 50%));
  transition: transform 620ms var(--ease-out), opacity 260ms ease;
}

.faq-accordion.is-idle .faq-route > i {
  opacity: .28;
}

.faq-route > i::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(118, 184, 42, .34);
  border-radius: inherit;
  animation: faqNodeBreathe 2.8s ease-in-out infinite;
}

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.faq-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 62px;
  width: calc(100% - 62px);
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms var(--ease-out);
}

.faq-item.is-open::after {
  transform: scaleX(1);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 106px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: none;
}

.faq-question:focus-visible .faq-question-text {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.faq-number {
  align-self: start;
  padding-top: 7px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
}

.faq-question-text {
  max-width: 31ch;
  font-family: "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 430;
  letter-spacing: -.035em;
  line-height: 1.2;
  transition: color 300ms ease, transform 420ms var(--ease-out);
}

.faq-question:hover .faq-question-text,
.faq-question:focus-visible .faq-question-text,
.faq-item.is-open .faq-question-text {
  color: var(--navy);
}

.faq-item.is-open .faq-question-text {
  transform: translateX(4px);
}

.faq-toggle {
  position: relative;
  justify-self: end;
  width: 34px;
  height: 34px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 420ms var(--ease-out), background-color 300ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  color: var(--green-deep);
}

.faq-item.is-open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(180deg) scaleX(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 460ms var(--ease-out), opacity 260ms ease;
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  max-width: 64ch;
  margin: 0;
  padding: 0 76px 38px 62px;
  color: var(--muted);
  transform: translateY(-7px);
  transition: transform 460ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  transform: translateY(0);
}

.no-js .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.no-js .faq-answer p {
  transform: none;
}

.contact-cta {
  padding-block: clamp(92px, 9vw, 138px);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .48), transparent 58%),
    var(--sage-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-grid h2 {
  grid-column: 1 / span 5;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 70px);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.contact-grid > p {
  grid-column: 7 / span 3;
  margin: 0;
  color: #53604f;
}

.contact-actions {
  grid-column: 10 / -1;
  justify-content: flex-end;
}

.site-footer {
  padding-block: 84px 32px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: 64px;
}

.footer-brand img {
  width: 164px;
  margin-bottom: 26px;
}

.footer-brand p {
  max-width: 34ch;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  font-style: normal;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 240ms ease;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
}

.footer-bottom a {
  margin: 0;
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms ease, transform 850ms var(--ease-out);
}

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

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -.4%, 0); }
}

@keyframes panelSeparation {
  0%, 18% { transform: translate3d(0, 0, 0) skewY(-8deg); opacity: 0; }
  30% { opacity: .62; }
  67% { opacity: .34; }
  82%, 100% { transform: translate3d(210px, 38px, 0) skewY(-8deg); opacity: 0; }
}

@keyframes routePulse {
  0%, 12% { transform: scaleX(.08); opacity: 0; }
  30%, 72% { transform: scaleX(1); opacity: 1; }
  88%, 100% { transform: scaleX(1); opacity: 0; }
}

@keyframes routeDot {
  0%, 14% { transform: translateX(0); opacity: 0; }
  26% { opacity: 1; }
  74% { transform: translateX(22vw); opacity: 1; }
  90%, 100% { transform: translateX(22vw); opacity: 0; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(10px); opacity: 1; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes routeTravel {
  0%, 100% { transform: translateX(-18px); opacity: .2; }
  50% { transform: translateX(26px); opacity: 1; }
}

@keyframes filmProgress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes faqNodeBreathe {
  0%, 100% { opacity: .18; transform: scale(.72); }
  50% { opacity: .72; transform: scale(1); }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 160px 1fr;
  }

  .group-link {
    display: none;
  }

  .hero-copy {
    width: min(780px, 76vw);
  }

  .panel-motion {
    left: 52%;
  }

  .intro .display-title {
    grid-column: 1 / span 7;
  }

  .intro-copy {
    grid-column: 8 / -1;
  }

  .material-detail {
    display: none;
  }

  .product-copy {
    grid-column: 1 / span 5;
  }

  .product-visual {
    grid-column: 6 / -1;
  }

  .product-grid-reversed .product-copy {
    grid-column: 8 / -1;
  }

  .process-layout {
    padding-top: 120px;
  }

  .process-heading {
    grid-column: 1 / span 5;
  }

  .process-active {
    grid-column: 6 / -1;
  }

  .contact-grid h2 {
    grid-column: 1 / span 6;
  }

  .contact-grid > p {
    grid-column: 7 / -1;
  }

  .contact-actions {
    grid-column: 7 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  :root {
    --gutter: 24px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 98px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    min-height: 78px;
  }

  .site-header.is-open {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand {
    width: 142px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 15px 10px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 340ms var(--ease-out);
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    min-height: 100svh;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 16px;
    padding: 100px var(--gutter) 60px;
    background: var(--white);
    color: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition: visibility 0s linear 420ms, opacity 420ms ease, transform 420ms var(--ease-out);
  }

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

  .site-nav a {
    font-size: clamp(32px, 9vw, 52px);
    font-weight: 400;
    letter-spacing: -.04em;
  }

  .hero {
    min-height: 840px;
  }

  .hero-media > img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 14, 24, .88), rgba(3, 14, 24, .34)), linear-gradient(0deg, rgba(3, 14, 24, .62), transparent 60%);
  }

  .hero-inner {
    align-content: end;
    min-height: 840px;
    padding-block: 130px 120px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 78px);
  }

  .panel-motion {
    top: 30%;
    left: 34%;
    width: 80vw;
    opacity: .72;
  }

  .hero-status,
  .scroll-cue span {
    display: none;
  }

  .scroll-cue {
    right: 24px;
    left: auto;
    transform: none;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .trust-label {
    min-height: 54px;
    padding-inline: var(--gutter);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .marquee {
    min-height: 78px;
  }

  .marquee-group span {
    min-width: 170px;
  }

  .intro-grid,
  .product-grid,
  .contact-grid {
    display: block;
  }

  .intro .display-title,
  .intro-copy {
    padding-top: 48px;
  }

  .intro-copy {
    max-width: 640px;
  }

  .route {
    margin-top: 60px;
  }

  .product {
    padding-block: 100px;
  }

  .product-copy {
    max-width: 620px;
    margin-bottom: 54px;
  }

  .product-grid-reversed {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-grid-reversed .product-copy {
    margin: 0 0 54px;
  }

  .product-visual-tall .image-window,
  .product-visual-wide .image-window {
    aspect-ratio: 1.38 / 1;
  }

  .module-teaser {
    grid-template-columns: 36px 1fr;
    gap: 0;
    padding-block: 18px;
  }

  .module-teaser a {
    grid-column: 2;
    margin-top: 8px;
  }

  .film-frame {
    min-height: 620px;
  }

  .film-timeline {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .film-control {
    bottom: 72px;
  }

  .process-story {
    height: auto;
  }

  .process-sticky {
    position: relative;
    min-height: auto;
  }

  .process-layout {
    display: block;
    min-height: auto;
    padding-block: 110px;
  }

  .process-heading {
    margin-bottom: 78px;
  }

  .process-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-media-stack {
    min-height: 56vw;
  }

  .process-active-copy {
    max-width: 560px;
  }

  .process-steps {
    margin-top: 74px;
  }

  .process-steps button strong {
    font-size: 12px;
  }

  .process-progress {
    margin-top: 36px;
  }

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

  .carousel-meta {
    justify-self: start;
  }

  .carousel-buttons {
    justify-content: flex-start;
  }

  .project-card {
    flex-basis: 84vw;
    min-height: 580px;
    aspect-ratio: auto;
  }

  .project-caption {
    left: 18px;
    bottom: 18px;
  }

  .pillars-heading {
    display: block;
  }

  .pillars-heading .display-title {
    margin-top: 46px;
  }

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

  .pillar-list li:nth-child(2) {
    border-right: 0;
  }

  .pillar-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .faq-layout {
    display: block;
  }

  .faq-intro {
    position: relative;
    top: auto;
    max-width: 680px;
    margin-bottom: 74px;
  }

  .faq-intro .display-title {
    max-width: 10ch;
    margin-top: 46px;
  }

  .faq-accordion {
    padding-left: 30px;
  }

  .faq-route {
    left: 3px;
  }

  .faq-question {
    grid-template-columns: 36px minmax(0, 1fr) 34px;
    gap: 14px;
  }

  .faq-answer p {
    padding-right: 52px;
    padding-left: 50px;
  }

  .faq-item::after {
    left: 50px;
    width: calc(100% - 50px);
  }

  .contact-grid h2,
  .contact-grid > p,
  .contact-actions {
    margin-bottom: 0;
  }

  .contact-grid > p {
    max-width: 620px;
    margin-top: 34px;
  }

  .contact-actions {
    margin-top: 38px;
    justify-content: flex-start;
  }

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

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

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(46px, 13.2vw, 66px);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link,
  .contact-actions .text-link {
    align-self: flex-start;
  }

  .display-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .product-number {
    font-size: 84px;
  }

  .process-heading h2 {
    font-size: 42px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    padding: 0;
  }

  .process-steps::before,
  .process-steps li::before {
    display: none;
  }

  .process-steps li {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 12px;
  }

  .project-card {
    flex-basis: calc(100vw - 42px);
    min-height: 540px;
  }

  .project-caption {
    width: calc(100% - 36px);
  }

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

  .pillar-list li,
  .pillar-list li:not(:first-child) {
    min-height: 220px;
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .faq-intro {
    margin-bottom: 58px;
  }

  .faq-intro .display-title {
    font-size: clamp(42px, 12vw, 56px);
  }

  .faq-accordion {
    padding-left: 24px;
  }

  .faq-route {
    left: 2px;
  }

  .faq-route::before {
    inset-block: 43px;
  }

  .faq-question {
    grid-template-columns: 29px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 88px;
    padding-block: 22px;
  }

  .faq-number {
    padding-top: 5px;
  }

  .faq-question-text {
    font-size: 19px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 0 36px 30px 39px;
    font-size: 15px;
  }

  .faq-item::after {
    left: 39px;
    width: calc(100% - 39px);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .mask-line > span,
  .reveal-mask > span,
  .hero-actions.reveal-mask {
    transform: none;
  }

  .process-story {
    height: auto;
  }

  .process-sticky {
    position: relative;
    min-height: 900px;
  }

  .faq-route > i {
    transition: none;
  }

  .faq-route > i::before {
    animation: none;
  }
}
