@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600&family=Instrument+Sans:wght@400;500;600&display=swap");
:root {
  --cream: #f3efe7;
  --forest: #25483e;
  --ink: #111413;
  --muted: #505b55;
  --line: #d6d9ce;
  --sc-paper: #f3efe7;
  --sc-ink: #111413;
  --sc-font: "Instrument Sans", sans-serif;
  --sc-display: "Bricolage Grotesque", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    16px/1.6 "Instrument Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(42px, 5.6vw, 82px);
}
h2 {
  font-size: clamp(32px, 3.7vw, 54px);
}
h3 {
  font-size: 30px;
}
em {
  font-style: normal;
  color: var(--forest);
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 6px;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--forest);
  color: white;
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.brand {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--forest);
}
.brand span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.12em;
}
.edition,
.back {
  font-size: 13px;
  color: var(--muted);
}
.hub-header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 23px;
}
.lead {
  font-size: 19px;
  line-height: 1.6;
  max-width: 550px;
}
.hub-intro {
  padding-block: 75px 55px;
}
.hub-intro h1 {
  margin-bottom: 27px;
}
.orientation {
  padding-bottom: 45px;
}
.section-label {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}
.section-label > span {
  font-size: 11px;
  color: var(--forest);
}
.section-label h2 {
  font-size: 20px;
  letter-spacing: -0.02em;
}
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.audience {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 30px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.audience-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 27px;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.audience[aria-pressed="true"] {
  background: #e5e9df;
  border-color: var(--forest);
}
.audience:hover {
  border-color: var(--forest);
}
.quiet {
  font-size: 12px;
  line-height: 1.6;
}
.orientation > .quiet {
  margin-top: 14px;
}
.context {
  font-size: 14px;
  border-left: 2px solid var(--forest);
  padding-left: 16px;
  margin-top: 20px;
}
.technologies {
  padding-bottom: 85px;
}
.technology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.technology {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.technology-picture {
  overflow: hidden;
  background: #f6f6f3;
  min-width: 0;
}
.technology-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.nesa-picture img {
  object-fit: contain;
}
.technology:hover img {
  transform: scale(1.035);
}
.technology-copy {
  padding: 27px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.technology-copy h3 {
  font-size: 32px;
  color: var(--forest);
}
.technology-copy p {
  font-size: 14px;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  display: inline-block;
  padding-block: 8px;
}
.technology-copy .text-link {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 55px 65px;
  border-top: 1px solid var(--line);
}
.contact > div:nth-child(2) {
  align-self: center;
}
.contact p {
  max-width: 430px;
}
.pending {
  font-size: 13px;
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 2px solid #a7b6a6;
  background: #e8e8df;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 11px;
  color: var(--muted);
}
.nesa-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  padding-block: 55px 75px;
  min-height: 710px;
}
.nesa-page .nesa-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nesa-page .nesa-hero .hero-copy .lead {
  margin-inline: auto;
}
.hero-copy h1 {
  font-size: clamp(44px, 4.8vw, 70px);
  margin-bottom: 26px;
}
.hero-copy .lead {
  font-size: 18px;
  max-width: 400px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 15px 21px;
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  border: 1px solid var(--forest);
}
.button:hover {
  background: #17392f;
}
.sub-link {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
}
.product-composition {
  position: relative;
  min-width: 0;
  height: 520px;
  padding: 45px 35px 63px;
  isolation: isolate;
  overflow: hidden;
  background: #dedfd1;
}
.room {
  position: absolute;
  width: 100%;
  height: 115%;
  object-fit: cover;
  inset: -5% 0;
  z-index: -1;
}
.product-frame {
  height: 100%;
  background: #fbfbf8;
  border: 1px solid #d9dacd;
  box-shadow: 0 18px 45px #12251918;
  padding: 17px 20px;
  display: flex;
  flex-direction: column;
}
.product-frame img {
  width: 100%;
  height: calc(100% - 22px);
  object-fit: contain;
}
.product-frame figcaption {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--forest);
  text-align: center;
}
.view-controls {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.view-controls button,
.compact-audiences button {
  background: var(--cream);
  border: 1px solid #a8b3a4;
  padding: 8px 11px;
  color: var(--forest);
  font-size: 11px;
}
.view-controls button[aria-pressed="true"],
.compact-audiences button[aria-pressed="true"] {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}
.context-strip {
  padding-block: 26px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.5fr;
  align-items: center;
  gap: 25px;
  border-block: 1px solid var(--line);
}
.context-strip .eyebrow {
  margin: 0;
}
.compact-audiences {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.context-strip > p:last-child {
  font-size: 13px;
}
.component-act {
  margin-top: 20px;
}
.component-grid {
  height: 100%;
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding-block: 50px;
}
.component-copy p:not(.eyebrow) {
  max-width: 340px;
  margin-top: 24px;
}
.component-copy .quiet {
  font-size: 12px;
}
.component-figure {
  min-width: 0;
}
.film-frame {
  position: relative;
  aspect-ratio: 848/480;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.film-frame video,
.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.desktop-film {
  position: absolute;
  inset: 0;
}
.mobile-film {
  display: none;
}
.component-figure figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
.next-steps {
  padding-block: 80px 100px;
}
.step-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 45px;
}
.step-grid h2 {
  font-size: 37px;
}
.step-grid p {
  font-size: 14px;
  margin-top: 18px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.step > span {
  font-size: 11px;
  color: var(--forest);
}
.step h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 22px;
}
.nesa-page .contact {
  padding-block: 75px;
}
.back:hover,
.text-link:hover,
.sub-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.brand {
  display: block;
  max-width: 340px;
  width: clamp(200px, 27vw, 340px);
}
.brand img {
  width: 100%;
  height: auto;
}
.nesa-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
  object-position: left;
}
.hero-logo {
  width: 160px;
  margin-bottom: 23px;
}
.film-frame video.desktop-film {
  object-fit: contain;
}
.product-frame img,
.technology-picture.nesa-picture img {
  object-fit: cover;
}
@media (min-width: 861px) and (prefers-reduced-motion: reduce) {
  .desktop-film,
  .desktop-note {
    display: none;
  }
  .mobile-film {
    display: block;
  }
  .component-poster {
    display: none;
  }
  .component-grid {
    min-height: 0;
    padding-block: 80px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .technology {
    grid-template-columns: 37% 1fr;
  }
  .nesa-hero {
    gap: 30px;
  }
  .product-composition {
    height: 480px;
    padding: 36px 24px 62px;
  }
  .component-grid {
    gap: 35px;
  }
  .context-strip {
    grid-template-columns: 0.6fr 1fr 1.2fr;
  }
  .step-grid {
    gap: 25px;
  }
}
@media (max-width: 860px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 87px;
  }
  .edition {
    max-width: 115px;
    text-align: right;
  }
  .brand {
    font-size: 17px;
  }
  .brand span {
    font-size: 12px;
  }
  .hub-intro {
    padding-block: 45px 34px;
  }
  .hub-intro h1 {
    font-size: clamp(39px, 7.5vw, 58px);
  }
  .lead {
    font-size: 16px;
  }
  .audiences {
    gap: 10px;
  }
  .audience {
    padding: 20px;
  }
  .audience-title {
    font-size: 23px;
  }
  .audience > span:last-child {
    font-size: 13px;
  }
  .technology-grid {
    gap: 15px;
  }
  .technology {
    grid-template-columns: 1fr;
  }
  .technology-picture {
    height: 190px;
  }
  .technology-picture img {
    object-fit: contain;
  }
  .technology-copy {
    padding: 22px;
  }
  .technologies {
    padding-bottom: 50px;
  }
  .contact {
    gap: 30px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 8px;
  }
  .nesa-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 36px 40px;
    gap: 33px;
  }
  .hero-copy h1 {
    font-size: clamp(43px, 7.2vw, 65px);
  }
  .hero-copy .lead {
    font-size: 16px;
    max-width: 470px;
  }
  .product-composition {
    width: 100%;
    height: 460px;
    padding: 25px 45px 64px;
  }
  .context-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 22px;
  }
  .component-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    padding-block: 50px;
    gap: 28px;
  }
  .component-copy h2 {
    font-size: 38px;
  }
  .component-copy p:not(.eyebrow) {
    max-width: 500px;
    margin-top: 20px;
  }
  .desktop-film,
  .desktop-note,
  .component-poster {
    display: none;
  }
  .mobile-film {
    display: block;
  }
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-grid > div:first-child {
    grid-column: 1/-1;
  }
  .next-steps {
    padding-block: 40px 55px;
  }
  .step-grid h2 {
    font-size: 34px;
  }
  .nesa-page .contact {
    padding-block: 45px;
  }
  .contact h2 {
    font-size: 36px;
  }
}
@media (max-width: 520px) {
  .hub-intro h1 {
    font-size: 39px;
  }
  .audiences,
  .technology-grid,
  .contact,
  .step-grid {
    grid-template-columns: 1fr;
  }
  .audience {
    padding: 19px 20px;
  }
  .technology {
    grid-template-columns: 35% 1fr;
    min-height: 195px;
  }
  .technology-picture {
    height: auto;
  }
  .technology-copy {
    padding: 20px 17px;
  }
  .technology-copy h3 {
    font-size: 28px;
  }
  .technology-copy p {
    font-size: 13px;
  }
  .section-label {
    gap: 16px;
  }
  .section-label h2 {
    font-size: 18px;
  }
  .context {
    font-size: 13px;
  }
  .contact {
    gap: 25px;
    padding-block: 35px 40px;
  }
  .footer {
    font-size: 10px;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .product-composition {
    height: 395px;
    padding: 22px 28px 62px;
  }
  .button {
    margin-top: 23px;
  }
  .step-grid {
    gap: 30px;
  }
  .step h3 {
    margin-top: 14px;
  }
  .back {
    font-size: 11px;
  }
  .component-copy h2 {
    font-size: 35px;
  }
  .step-grid > div:first-child {
    grid-column: auto;
  }
}
.component-act {
  height: 180svh;
  margin-top: 0;
  --scene-near: 0px;
  --scene-far: 0px;
}
.component-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
  background: var(--cream);
}
.component-grid {
  min-height: 0;
  height: 100%;
  padding-block: 40px;
  align-content: center;
}
.component-depth {
  position: relative;
  padding: 18px 18px 34px 0;
  isolation: isolate;
}
.component-depth::before {
  content: "";
  position: absolute;
  inset: 0 0 54px 30px;
  background: #dce2d6;
  border: 1px solid #c8d2c4;
  transform: translateY(var(--scene-far));
  z-index: -2;
}
.component-depth::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 58%;
  right: 0;
  bottom: 0;
  background: var(--forest);
  transform: translateY(var(--scene-near));
  z-index: -1;
}
.component-depth .film-frame {
  border: 1px solid #d8ddd0;
  box-shadow: 0 16px 35px #1a30231a;
  background: #eeefec;
  transform: translateY(calc(var(--scene-far) * 0.4));
}
.component-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.component-poster {
  display: block !important;
}
.scene-ready .component-canvas {
  display: block;
}
.scene-ready .component-poster {
  visibility: hidden;
}
.component-detail {
  position: absolute;
  right: -4px;
  bottom: -5px;
  width: 25%;
  aspect-ratio: 1;
  background: #fff;
  border: 7px solid var(--cream);
  box-shadow: 0 10px 24px #192c2325;
  overflow: hidden;
  transform: translateY(var(--scene-near));
  z-index: 2;
}
.component-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1.75);
}
.component-figure figcaption {
  margin-top: 15px;
}
.component-copy .eyebrow {
  display: none;
}
.next-steps {
  padding-top: 40px;
}
.component-act.motion-off {
  height: auto;
}
.motion-off .component-sticky {
  position: relative;
  height: auto;
}
.motion-off .component-grid {
  padding-block: 55px;
}
.motion-off .component-depth::before,
.motion-off .component-depth::after,
.motion-off .component-detail,
.motion-off .film-frame {
  transform: none;
}
@media (max-width: 860px) {
  .component-act {
    height: calc(100svh + 320px);
  }
  .component-sticky {
    height: auto;
  }
  .component-grid {
    height: auto;
    gap: 22px;
    padding-block: 32px;
    grid-template-rows: auto auto;
    align-content: start;
  }
  .component-copy h2 {
    font-size: 34px;
  }
  .component-copy p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 16px;
  }
  .component-depth {
    padding: 12px 12px 23px 0;
  }
  .component-detail {
    width: 22%;
    border-width: 5px;
    right: 0;
    bottom: 0;
  }
  .component-depth::before {
    inset: 0 0 42px 20px;
  }
  .component-figure figcaption {
    margin-top: 11px;
    font-size: 10px;
  }
  .next-steps {
    padding-top: 28px;
  }
  .room[data-sc-parallax] {
    transform: none !important;
  }
  .product-frame[data-sc-parallax] {
    transform: none !important;
  }
}
@media (max-height: 500px) {
  .component-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 25px;
    padding-block: 22px;
  }
  .component-copy h2 {
    font-size: 27px;
  }
  .component-copy p:not(.eyebrow) {
    font-size: 12px;
  }
  .component-detail {
    display: none;
  }
}
.page-index {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-block: 19px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
}
.page-index a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.product-introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  padding-block: 60px 20px;
}
.product-introduction .lead {
  font-size: 17px;
  margin-top: 22px;
  max-width: 390px;
}
.product-introduction > div:last-child {
  align-self: center;
  max-width: 490px;
  font-size: 15px;
}
.visible-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  gap: 0 20px;
}
.visible-parts li {
  border-top: 1px solid var(--line);
  padding-block: 12px;
  font-size: 13px;
  color: var(--forest);
}
.product-gallery {
  padding-block: 45px 65px;
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 32px;
}
.gallery-heading > p {
  max-width: 300px;
  font-size: 15px;
}
.gallery-visual {
  position: relative;
  padding-right: 15%;
  padding-bottom: 60px;
  isolation: isolate;
}
.gallery-environment {
  overflow: hidden;
  background: #e0e3d8;
}
.gallery-environment img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gallery-object {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  border: 12px solid var(--cream);
  background: #fff;
  box-shadow: 0 18px 45px #182c2525;
}
.gallery-object img {
  width: 100%;
  height: auto;
}
.gallery-captions {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 20px;
  margin-top: 25px;
  font-size: 11px;
  color: var(--muted);
}
.practical-questions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding-block: 45px 65px;
  border-top: 1px solid var(--line);
}
.question-list article {
  padding-block: 23px;
  border-top: 1px solid var(--line);
}
.question-list article:first-child {
  padding-top: 0;
  border-top: none;
}
.question-list h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.question-list p {
  font-size: 14px;
  margin-top: 12px;
}
.conversation-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding-block: 35px 50px;
  border-top: 1px solid var(--line);
}
.conversation-topics h2 {
  font-size: 32px;
}
.conversation-topics p {
  font-size: 14px;
  max-width: 410px;
  margin-top: 16px;
}
.topic-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-buttons button {
  border: 1px solid #a8b3a4;
  background: transparent;
  color: var(--forest);
  padding: 10px 14px;
  font-size: 12px;
}
.topic-buttons button[aria-pressed="true"] {
  background: var(--forest);
  color: #fff;
}
.topic-buttons button:hover {
  border-color: var(--forest);
}
.topic-buttons button:active {
  transform: translateY(1px);
}
.conversation-topics .quiet {
  font-size: 11px;
}
.topic-summary {
  font-size: 13px;
  margin-top: 16px;
}
@media (max-width: 860px) {
  .product-introduction {
    gap: 35px;
    padding-block: 35px 15px;
  }
  .product-introduction h2 {
    font-size: 34px;
  }
  .product-gallery {
    padding-block: 30px 45px;
  }
  .practical-questions {
    gap: 35px;
  }
  .practical-questions h2 {
    font-size: 34px;
  }
  .conversation-topics {
    gap: 35px;
  }
  .gallery-object {
    border-width: 8px;
  }
  .gallery-visual {
    padding-bottom: 40px;
  }
}
@media (max-width: 520px) {
  .page-index {
    gap: 17px;
    font-size: 11px;
  }
  .product-introduction,
  .practical-questions,
  .conversation-topics {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-introduction .lead {
    font-size: 16px;
  }
  .product-introduction > div:last-child {
    font-size: 14px;
  }
  .gallery-heading {
    display: block;
    margin-bottom: 24px;
  }
  .gallery-heading h2 {
    font-size: 34px;
  }
  .gallery-heading > p {
    font-size: 14px;
    margin-top: 18px;
    max-width: 320px;
  }
  .gallery-visual {
    padding: 0;
    display: grid;
    gap: 16px;
  }
  .gallery-object {
    position: relative;
    width: 78%;
    justify-self: end;
    border: 0;
    box-shadow: none;
    margin-top: 0;
  }
  .gallery-environment[data-sc-parallax],
  .gallery-object[data-sc-parallax] {
    transform: none !important;
  }
  .gallery-captions {
    grid-template-columns: 1fr;
    gap: 9px;
    font-size: 10px;
    margin-top: 17px;
  }
  .practical-questions {
    padding-block: 35px;
  }
  .question-list h3 {
    font-size: 20px;
  }
  .conversation-topics {
    padding-block: 30px 40px;
  }
  .conversation-topics h2 {
    font-size: 28px;
  }
  .topic-buttons button {
    font-size: 11px;
  }
  .visible-parts {
    margin-top: 20px;
  }
}
@media (max-width: 520px) {
  .nesa-form {
    grid-template-columns: 1fr;
    padding: 17px;
  }
  .nesa-form .full {
    grid-column: auto;
  }
  .nesa-form .consent {
    display: flex;
  }
  .nesa-form .button {
    width: 100%;
    justify-content: space-between;
  }
  .nesa-page .contact > div:first-child p {
    font-size: 14px;
  }
}
.illustrated-desk {
  --desk-travel: 0px;
  padding-block: 35px 65px;
}
.desk-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 35px;
}
.desk-intro h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}
.desk-intro p:not(.eyebrow) {
  font-size: 15px;
  margin-top: 22px;
  max-width: 330px;
}
.discussion-board {
  min-width: 0;
}
.board-art {
  position: relative;
  height: 330px;
  isolation: isolate;
  overflow: hidden;
  background: #e8eadd;
  border: 1px solid #d5dccd;
}
.board-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#a9b7a5 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
}
.board-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.board-product {
  position: absolute;
  left: 5%;
  top: 24%;
  width: 43%;
  padding: 9px;
  background: #fcfcf7;
  box-shadow: 0 14px 25px #25483e18;
  transform: translateY(calc(var(--desk-travel) * -0.3)) rotate(-4deg);
}
.board-product img {
  width: 100%;
  height: auto;
}
.board-paper {
  position: absolute;
  right: 13%;
  top: 5%;
  width: 24%;
  height: 57%;
  transform: translateY(var(--desk-travel)) rotate(8deg);
  filter: drop-shadow(0 9px 9px #25483e15);
}
.board-conversation {
  position: absolute;
  right: 7%;
  bottom: 3%;
  width: 27%;
  height: 43%;
  transform: translateY(calc(var(--desk-travel) * -0.6)) rotate(-5deg);
}
.board-cross {
  position: absolute;
  font-size: 27px;
  font-weight: 300;
  color: #668372;
  line-height: 1;
}
.cross-one {
  left: 13%;
  top: 10%;
  transform: rotate(15deg);
}
.cross-two {
  left: 48%;
  bottom: 14%;
  transform: translateY(calc(var(--desk-travel) * 0.5)) rotate(-10deg);
}
.discussion-board figcaption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 13px;
}
.illustrated-desk .step-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-left: 18%;
}
.illustrated-desk .step {
  position: relative;
  padding: 22px 0 0 88px;
  min-height: 150px;
}
.step-art {
  position: absolute;
  left: 0;
  top: 22px;
  width: 64px;
  height: 64px;
  color: var(--forest);
}
.illustrated-desk .step h3 {
  margin-top: 0;
  font-size: 23px;
}
.illustrated-desk .step p {
  margin-top: 12px;
}
.practical-questions > h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 72px;
  margin-top: 32px;
  background:
    radial-gradient(circle at 30% 44%, #f3efe7 3px, transparent 4px),
    radial-gradient(circle at 50% 44%, #f3efe7 3px, transparent 4px),
    radial-gradient(circle at 70% 44%, #f3efe7 3px, transparent 4px), #25483e;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 48% 80%, 25% 100%, 25% 80%, 0 80%);
}
@media (max-width: 860px) {
  .desk-intro {
    gap: 30px;
  }
  .board-art {
    height: 260px;
  }
  .illustrated-desk .step-grid {
    padding-left: 0;
    gap: 30px;
  }
  .illustrated-desk .step {
    padding-left: 70px;
  }
  .step-art {
    width: 52px;
    height: 52px;
  }
  .illustrated-desk .step h3 {
    font-size: 21px;
  }
}
@media (max-width: 520px) {
  .illustrated-desk {
    padding-block: 15px 35px;
  }
  .desk-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }
  .desk-intro p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 16px;
  }
  .board-art {
    height: 220px;
  }
  .board-product {
    left: 4%;
    top: 29%;
    width: 46%;
    padding: 6px;
  }
  .board-paper {
    right: 13%;
    top: 5%;
    width: 28%;
    height: 57%;
  }
  .board-conversation {
    right: 5%;
    bottom: 2%;
    width: 31%;
    height: 42%;
  }
  .discussion-board figcaption {
    font-size: 10px;
    max-width: 290px;
  }
  .illustrated-desk .step-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .illustrated-desk .step {
    min-height: 110px;
    padding-top: 20px;
  }
  .illustrated-desk .step-grid > div:first-child {
    grid-column: auto;
  }
  .practical-questions > h2 {
    position: relative;
    padding-right: 64px;
  }
  .practical-questions > h2::after {
    position: absolute;
    right: 0;
    top: 4px;
    width: 50px;
    height: 36px;
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .component-act {
    height: auto;
  }
  .component-sticky {
    height: auto;
    position: relative;
  }
  .component-grid {
    padding-block: 40px;
  }
  .component-depth::before,
  .component-depth::after,
  .component-detail,
  .film-frame {
    transform: none !important;
  }
  .illustrated-desk {
    --desk-travel: 0px !important;
  }
}
.object-studies {
  --arrival: 0;
  --arrival-distance: 58px;
  padding-block: 25px 70px;
}
.study-heading {
  margin-bottom: 32px;
}
.study-heading h2 {
  font-size: clamp(34px, 3.6vw, 50px);
}
.study-heading > p {
  font-size: 15px;
  margin-top: 18px;
}
.study-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.object-study {
  min-width: 0;
}
.study-right {
  padding-top: 70px;
}
.study-window {
  position: relative;
  aspect-ratio: 1.35;
  overflow: clip;
  background: #e4e8dd;
  border: 1px solid #d1d9ca;
  padding: 28px 60px;
  isolation: isolate;
}
.study-right .study-window {
  background: #e9e6dc;
}
.study-image {
  height: 100%;
  background: #fff;
  border: 8px solid #fbfbf6;
  box-shadow: 0 15px 30px #25483e18;
  transform: translateX(calc(var(--arrival) * var(--arrival-distance) * -1))
    rotate(calc(var(--arrival) * -4deg));
}
.study-right .study-image {
  transform: translateX(calc(var(--arrival) * var(--arrival-distance)))
    rotate(calc(var(--arrival) * 4deg));
}
.study-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.study-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.object-study figcaption {
  padding-top: 21px;
  max-width: 400px;
}
.object-study h3 {
  font-size: 25px;
  letter-spacing: -0.025em;
}
.object-study figcaption p {
  font-size: 14px;
  margin-top: 12px;
  max-width: 350px;
}
.nesa-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.nesa-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--forest);
}
.nesa-form input,
.nesa-form select,
.nesa-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #a8b3a4;
  background: #fbfbf6;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  border-radius: 0;
}
.nesa-form textarea {
  resize: vertical;
  min-height: 92px;
}
.nesa-form input:focus,
.nesa-form select:focus,
.nesa-form textarea:focus {
  outline: 3px solid #b7c4b2;
  outline-offset: 2px;
}
.nesa-form .full {
  grid-column: 1/-1;
}
.nesa-form .consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}
.nesa-form .consent input {
  width: auto;
  margin-top: 3px;
}
.nesa-form .button {
  justify-self: start;
  margin-top: 0;
  border-radius: 0;
  cursor: pointer;
}
.nesa-form .button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-status {
  min-height: 1.6em;
  font-size: 13px;
}
.form-status[data-state="error"] {
  color: #8a3d3d;
}
.form-status[data-state="success"] {
  color: var(--forest);
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.language-switch {
  display: flex;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.language-switch a {
  padding: 7px 9px;
  color: var(--muted);
}
.language-switch a.active {
  background: var(--forest);
  color: #fff;
}
.technical-specs {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  padding-block: 68px;
  border-top: 1px solid var(--line);
}
.technical-intro > p:last-child {
  font-size: 15px;
  margin-top: 20px;
  max-width: 350px;
}
.technical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.technical-grid article {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
}
.technical-grid h3 {
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: 17px;
}
.technical-grid p {
  font-size: 13px;
  line-height: 1.65;
}
.technical-grid .technical-note {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}
.technical-grid dl {
  margin: 0;
}
.technical-grid dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-block: 9px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.technical-grid dl > div:first-child {
  border-top: 0;
  padding-top: 0;
}
.technical-grid dt {
  color: var(--muted);
}
.technical-grid dd {
  margin: 0;
  color: var(--forest);
  font-weight: 600;
  text-align: right;
}
.technical-grid .text-link {
  margin-top: 12px;
}
@media (max-width: 860px) {
  .technical-specs {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }
  .technical-intro > p:last-child {
    max-width: 520px;
  }
  .header-actions {
    gap: 13px;
  }
}
@media (max-width: 520px) {
  .hub .header {
    flex-wrap: wrap;
    gap: 8px;
    padding-block: 15px;
  }
  .hub .hub-header-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-switch a {
    padding: 6px 7px;
  }
  .technical-grid {
    grid-template-columns: 1fr;
  }
  .technical-grid article {
    padding: 20px;
  }
  .technical-specs {
    padding-block: 38px;
  }
  .technical-grid h3 {
    font-size: 22px;
  }
}
.technical-journey {
  height: 460vh;
  background: #e5e9df;
  border-block: 1px solid var(--line);
  position: relative;
}
.technical-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.technical-shell {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 48px;
  align-items: center;
}
.technical-journey .technical-intro {
  position: relative;
  z-index: 120;
  padding: 24px 18px 24px 0;
  background: #e5e9df;
}
.technical-journey .technical-intro > p:last-of-type {
  max-width: 340px;
  font-size: 15px;
  margin-top: 20px;
}
.tech-progress {
  margin-top: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--forest);
}
.tech-progress [data-tech-index] {
  font-size: 31px;
  letter-spacing: -0.05em;
  vertical-align: middle;
}
.tech-deck {
  height: 545px;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}
.tech-card {
  --tech-x: 0px;
  --tech-y: 0px;
  --tech-r: 0deg;
  --tech-scale: 1;
  --tech-z: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--tech-z);
  width: min(405px, calc(100% - 56px));
  min-height: 370px;
  padding: 31px 31px 27px;
  background: #fff;
  border: 1px solid #c7d0c4;
  box-shadow: 0 22px 46px #18352a1a;
  transform: translate3d(
      calc(-50% + var(--tech-x)),
      calc(-50% + var(--tech-y)),
      0
    )
    rotate(var(--tech-r)) scale(var(--tech-scale));
  transform-origin: center;
  will-change: transform;
  transition:
    transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.22s,
    border-color 0.22s;
}
.tech-card.is-current {
  border-color: var(--forest);
  box-shadow: 0 28px 58px #18352a28;
}
.tech-card__marker {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.tech-card__marker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(var(--tech-highlight, 0));
  transform-origin: left;
  transition: transform 0.15s linear;
}
.tech-card h3 {
  margin-top: 31px;
  font-size: clamp(29px, 2.7vw, 43px);
  color: var(--ink);
  text-wrap: balance;
}
.tech-card__value {
  display: inline-block;
  margin-top: 27px;
  padding: 8px 10px;
  background: #e5e9df;
  color: var(--forest);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}
.tech-card > p:last-child {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.62;
  max-width: 38ch;
}
.tech-card strong {
  color: var(--ink);
  font-weight: 700;
}
.tech-scroll-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-block: 26px;
  font-size: 13px;
}
.tech-scroll-note p {
  max-width: 560px;
}
.tech-scroll-note .text-link {
  white-space: nowrap;
}
@media (max-width: 860px) {
  .technical-journey {
    height: 500vh;
  }
  .technical-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: center;
  }
  .technical-journey .technical-intro {
    padding: 10px 0 0;
    background: transparent;
  }
  .technical-journey .technical-intro > p:last-of-type {
    font-size: 14px;
    margin-top: 12px;
  }
  .tech-progress {
    position: absolute;
    top: 24px;
    right: 20px;
    margin: 0;
  }
  .tech-progress [data-tech-index] {
    font-size: 22px;
  }
  .tech-deck {
    height: 455px;
    width: 100%;
    overflow: hidden;
  }
  .tech-card {
    width: min(440px, calc(100% - 8px));
    min-height: 315px;
    padding: 25px 23px 22px;
  }
  .tech-card h3 {
    font-size: 32px;
    margin-top: 22px;
  }
  .tech-card__value {
    margin-top: 18px;
    font-size: 15px;
  }
  .tech-card > p:last-child {
    margin-top: 13px;
    font-size: 13px;
  }
  .tech-scroll-note {
    display: block;
    padding-block: 23px;
  }
  .tech-scroll-note .text-link {
    margin-top: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .technical-journey {
    height: auto;
    background: transparent;
    border-block: 0;
  }
  .technical-stage {
    position: relative;
    height: auto;
    overflow: visible;
    padding-block: 48px;
    background: #e5e9df;
  }
  .technical-shell {
    display: block;
  }
  .technical-journey .technical-intro {
    padding: 0;
  }
  .tech-progress {
    position: static;
    margin-top: 20px;
  }
  .tech-deck {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
  }
  .tech-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
    transform: none !important;
    padding: 22px;
  }
  .tech-card h3 {
    font-size: 27px;
  }
  .tech-card__marker::after {
    transform: scaleX(1);
  }
  .tech-scroll-note {
    padding-block: 22px;
  }
}
@media (max-width: 520px) and (prefers-reduced-motion: reduce) {
  .tech-deck {
    grid-template-columns: 1fr;
  }
  .tech-card {
    padding: 21px;
  }
  .tech-card h3 {
    font-size: 28px;
  }
}
@media (max-width: 860px) {
  .object-studies {
    --arrival-distance: 22px;
    padding-bottom: 45px;
  }
  .study-pair {
    gap: 20px;
  }
  .study-window {
    padding: 18px 25px;
  }
  .study-right {
    padding-top: 45px;
  }
  .object-study h3 {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .object-studies {
    --arrival-distance: 12px;
    padding-block: 20px 40px;
  }
  .study-pair {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .study-right {
    padding-top: 0;
  }
  .study-window {
    aspect-ratio: 1.55;
    padding: 16px 32px;
  }
  .study-heading {
    margin-bottom: 24px;
  }
  .study-heading > p {
    font-size: 14px;
  }
  .object-study figcaption {
    padding-top: 15px;
  }
  .object-study figcaption p {
    font-size: 13px;
    margin-top: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .object-studies {
    --arrival: 0 !important;
  }
}
.hub-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 45px;
  padding-block: 55px 45px;
}
.hub-opening-copy h1 {
  font-size: clamp(40px, 4.6vw, 66px);
}
.hub-opening-copy .lead {
  font-size: 17px;
  max-width: 410px;
}
.hub-product-pair {
  position: relative;
  height: 320px;
  isolation: isolate;
  overflow: clip;
  background: #e0e3d8;
}
.hub-setting {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hub-pair-image {
  position: absolute;
  width: 54%;
  height: 70%;
  background: #fbfbf6;
  border: 8px solid #fbfbf6;
  box-shadow: 0 12px 25px #25483e25;
}
.hub-pair-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-pair-nesa {
  left: 8%;
  top: 7%;
  transform: rotate(-5deg);
}
.hub-pair-pro {
  right: 5%;
  bottom: 5%;
  transform: rotate(6deg);
  width: 58%;
  height: 49%;
}
.hub .section-label > span {
  display: none;
}
.hub .technologies {
  --arrival: 0;
  --arrival-distance: 42px;
  padding-top: 20px;
}
.hub .technology-grid {
  gap: 34px;
}
.hub .technology {
  grid-template-columns: 1fr;
  min-height: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}
.hub .technology-picture {
  height: 310px;
  padding: 25px 50px;
  overflow: clip;
  background: #e2e6dc;
  border: 1px solid #d1d9ca;
}
.hub .technology:nth-child(2) .technology-picture {
  background: #e9e6dc;
}
.technology-plane {
  width: 100%;
  height: 100%;
  background: #fbfbf6;
  border: 8px solid #fbfbf6;
  box-shadow: 0 14px 25px #25483e18;
  transform: translateX(calc(var(--arrival) * var(--arrival-distance) * -1))
    rotate(calc(var(--arrival) * -3deg));
}
.hub .technology:nth-child(2) .technology-plane {
  transform: translateX(calc(var(--arrival) * var(--arrival-distance)))
    rotate(calc(var(--arrival) * 3deg));
}
.hub .technology-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none;
}
.hub .technology:hover img {
  transform: none;
}
.hub .technology-copy {
  padding: 25px 0 0;
  gap: 14px;
}
.hub .technology-copy h3 {
  font-size: 37px;
}
.hub .technology-copy .nesa-logo {
  height: 15px;
  width: 118px;
}
.hub .technology-copy > p {
  max-width: 410px;
}
.hub .technology:nth-child(2) .technology-copy {
  padding-top: 54px;
}
.route-outline {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  max-width: 410px;
  font-size: 12px;
  color: var(--muted);
}
.route-outline li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.hub .technology-copy .text-link {
  border-bottom: 1px solid var(--forest);
  padding-block: 14px;
  font-size: 14px;
}
.hub .technology:focus-visible .text-link,
.hub .technology:hover .text-link {
  background: #e5e9df;
}
@media (max-width: 860px) {
  .hub-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 35px;
  }
  .hub-opening-copy h1 {
    font-size: clamp(39px, 6.5vw, 58px);
  }
  .hub-product-pair {
    height: 240px;
    max-width: 520px;
    width: 100%;
    justify-self: end;
  }
  .hub .technology-picture {
    height: 240px;
    padding: 20px 28px;
  }
  .hub .technology-grid {
    gap: 25px;
  }
  .hub .technologies {
    --arrival-distance: 18px;
  }
}
@media (max-width: 520px) {
  .hub-opening-copy .lead {
    font-size: 16px;
  }
  .hub-product-pair {
    height: 200px;
    max-width: 350px;
  }
  .hub-pair-nesa {
    width: 48%;
    height: 84%;
    left: 10%;
    top: 3%;
  }
  .hub-pair-pro {
    width: 53%;
    height: 59%;
    bottom: 6%;
  }
  .hub .technology-grid {
    gap: 40px;
  }
  .hub .technology-picture {
    height: 220px;
    padding: 18px 32px;
  }
  .hub .technology-copy,
  .hub .technology:nth-child(2) .technology-copy {
    padding-top: 20px;
  }
  .hub .technology-copy h3 {
    font-size: 32px;
  }
  .hub .technologies {
    --arrival-distance: 10px;
    padding-top: 10px;
    padding-bottom: 45px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hub .technologies {
    --arrival: 0 !important;
  }
}
