@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap");

@font-face {
  font-family: "Nexal Local Manrope";
  src: url("../fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Manrope";
  src: url("../fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nexal Local Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #1d9e75;
  --green-dark: #147455;
  --ink: #14231e;
  --paper: #f7faf8;
  --warm: #eadac3;
  --line: rgba(20, 35, 30, 0.14);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --heading-font: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  /* `hidden` tworzyło na body osobny kontener przewijania i wyłączało sticky. */
  overflow-x: clip;
}

.nexal-main > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.admin-bar .site-header {
  top: 32px;
}

button,
a {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-synthesis: none;
  font-kerning: normal;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.skip-link:focus {
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
  white-space: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.85rem var(--page-pad);
  border-bottom: 1px solid rgba(20, 35, 30, 0.08);
  background: rgba(247, 250, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(8rem, 12vw, 10.5rem);
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav__list {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2.6rem);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 185svh;
}

.hero-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  height: 100svh;
  padding: 8.5rem var(--page-pad) 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 35, 30, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 35, 30, 0.055) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(29, 158, 117, 0.28);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 18%;
  right: -14vw;
  width: 58vw;
  aspect-ratio: 1;
}

.hero-orbit--two {
  right: 4vw;
  bottom: 8%;
  width: 36vw;
  aspect-ratio: 1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 48rem;
  will-change: transform, opacity;
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(4rem, 7.5vw, 8.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 38rem;
  margin-top: 2rem;
  color: rgba(20, 35, 30, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 10.5rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.button--primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.button--ghost {
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62vh;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: min(47vw, 48rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #e1f6ee, #a8dfcd 52%, #65c3a5 100%);
  content: "";
}

.hero-product {
  width: min(55vw, 58rem);
  max-height: 68vh;
  object-fit: contain;
  filter: drop-shadow(0 2.5rem 2.4rem rgba(20, 35, 30, 0.18));
  transform-origin: 60% 70%;
  will-change: transform, opacity, filter;
}

.hero-manifesto {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: var(--page-pad);
  left: var(--page-pad);
  display: grid;
  color: var(--ink);
  font-size: clamp(4.8rem, 10.8vw, 12.5rem);
  font-weight: 700;
  font-family: var(--heading-font);
  letter-spacing: -0.045em;
  line-height: 0.8;
  pointer-events: none;
  transform: translateY(-46%);
  transform-origin: center;
}

.hero-manifesto__line {
  display: block;
  will-change: transform, opacity;
}

html:not(.nexal-anim-ready) .hero-manifesto {
  display: none;
}

.nexal-anim-ready .hero-manifesto__line {
  opacity: 0;
}

html:not(.nexal-anim-ready) .hero {
  min-height: 100svh;
}

.hero-manifesto__line:nth-child(2) {
  justify-self: center;
}

.hero-manifesto__line:nth-child(3) {
  justify-self: end;
}

.hero-manifesto__line--accent {
  color: var(--green);
}

.hero-product-shadow {
  position: absolute;
  bottom: 8%;
  width: 54%;
  height: 9%;
  border-radius: 50%;
  background: rgba(20, 35, 30, 0.25);
  filter: blur(28px);
}

.hero-footer {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.5rem;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-footer__line {
  height: 1px;
  background: var(--line);
}

.offer-split {
  padding: 9rem var(--page-pad) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  max-width: 92rem;
  margin: 0 auto 4rem;
}

.section-heading h2 {
  max-width: 59rem;
  font-size: clamp(2.75rem, 5vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.offer-panes {
  position: relative;
  display: flex;
  max-width: 100rem;
  height: 100svh;
  min-height: 42rem;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
  will-change: clip-path;
}

.offer-pane {
  position: relative;
  flex: 0 0 50%;
  min-height: 42rem;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  will-change: flex-basis;
}

@media (min-width: 901px) {
  .offer-pane {
    padding-top: clamp(7rem, 11vh, 8.5rem);
  }
}

.offer-pane__ghost {
  position: absolute;
  z-index: 1;
  right: -0.06em;
  bottom: -0.12em;
  color: currentColor;
  font-size: clamp(7rem, 14vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.8;
  opacity: 0.045;
  pointer-events: none;
  writing-mode: vertical-rl;
}

.offer-pane--wood {
  background: var(--ink);
  color: white;
}

.offer-pane--packing {
  background: #dff4ed;
}

.offer-pane__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-pane__copy {
  position: relative;
  z-index: 3;
}

.offer-pane__copy > p {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-pane h3 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.97;
}

.offer-pane__link {
  display: inline-block;
  margin-top: 1.7rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-pane img {
  position: absolute;
  z-index: 2;
  right: -3%;
  bottom: -3%;
  width: min(78%, 45rem);
  max-height: 65%;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.offer-pane--packing img {
  right: 2%;
  bottom: 5%;
  width: min(68%, 36rem);
}

.offer-pane:hover img,
.offer-pane:focus-visible img {
  transform: translateY(-1rem) rotate(-2deg) scale(1.035);
}

.offer-bridge {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(5.4rem, 7vw, 7.5rem);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--green);
  color: white;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 1.5rem 4rem rgba(20, 35, 30, 0.22);
  pointer-events: none;
  will-change: left, transform;
}

.offer-bridge span {
  font-size: 1.65rem;
  font-weight: 700;
}

.offer-bridge small {
  margin-top: 0.12rem;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-bridge i {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-style: normal;
}

.horizontal-story {
  position: relative;
  overflow: clip;
}

.horizontal-sticky {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

@media (min-width: 901px) {
  html:not(.nexal-anim-ready) .horizontal-sticky {
    height: auto;
    overflow: visible;
  }

  html:not(.nexal-anim-ready) .horizontal-track {
    display: block;
    width: 100%;
    height: auto;
  }

  html:not(.nexal-anim-ready) .story-intro,
  html:not(.nexal-anim-ready) .product-panel {
    width: 100%;
    height: auto;
    min-height: 100svh;
  }

  html:not(.nexal-anim-ready) .story-progress {
    display: none;
  }
}

.story-progress {
  position: absolute;
  z-index: 8;
  right: var(--page-pad);
  bottom: 1.5rem;
  left: var(--page-pad);
  height: 2px;
  overflow: hidden;
  background: rgba(20, 35, 30, 0.12);
}

.story-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--green);
}

.horizontal-story--wood .story-progress,
.horizontal-story--packing .story-progress {
  background: rgba(255, 255, 255, 0.2);
}

.horizontal-story--wood .story-progress__bar {
  background: var(--green);
}

.horizontal-story--packing .story-progress__bar {
  background: var(--ink);
}

.story-intro,
.product-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.story-intro {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  align-items: center;
  padding: 7rem var(--page-pad) 4rem;
}

.horizontal-story--wood .story-intro {
  background: var(--ink);
  color: white;
}

.horizontal-story--packing .story-intro {
  background: var(--green);
  color: white;
}

.story-intro__index {
  font-size: clamp(9rem, 23vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.7;
  opacity: 0.1;
}

.story-intro__ticker {
  position: absolute;
  z-index: 1;
  right: auto;
  bottom: 4%;
  left: -4%;
  color: rgba(29, 158, 117, 0.16);
  font-family: var(--heading-font);
  font-size: clamp(4.5rem, 9vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.82;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.story-intro__copy {
  position: relative;
  z-index: 2;
  max-width: 70rem;
}

.story-intro h2 {
  margin-top: 1.7rem;
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.story-intro__copy > p:not(.eyebrow) {
  max-width: 49rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
}

.arrow-link__icon {
  transition: transform 220ms ease;
}

.arrow-link:hover .arrow-link__icon,
.arrow-link:focus-visible .arrow-link__icon {
  transform: translate(0.25rem, -0.25rem);
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue__line {
  width: 6.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(32rem, 1.28fr);
  align-items: center;
  padding: 7rem var(--page-pad) 4rem;
  background: var(--paper);
}

.product-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.horizontal-story--wood .product-panel:nth-child(odd) {
  background: #edf2ee;
}

.horizontal-story--packing .product-panel:nth-child(even) {
  background: #e5f4ef;
}

.product-panel__meta {
  position: absolute;
  top: 7rem;
  right: var(--page-pad);
  display: flex;
  gap: 0.65rem;
  font-size: clamp(0.9rem, 0.95vw, 1.02rem);
  font-weight: 700;
}

.product-panel__copy {
  position: relative;
  z-index: 4;
  max-width: 34rem;
}

.product-panel h3 {
  margin-top: 1.35rem;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.product-panel__description {
  max-width: 31rem;
  margin-top: 1.8rem;
  color: rgba(20, 35, 30, 0.68);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.product-panel__visual {
  position: relative;
  display: grid;
  height: 72vh;
  place-items: center;
}

.product-halo {
  position: absolute;
  width: min(45vw, 46rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d9eee7;
}

.horizontal-story--wood .product-halo {
  background: #e6d6bd;
}

.product-image {
  position: relative;
  z-index: 2;
  max-width: min(55vw, 58rem);
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 2rem 1.6rem rgba(20, 35, 30, 0.18));
}

.product-image--secondary {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 1rem;
  width: min(19vw, 18rem);
  max-height: 36%;
}

.scene--boards .product-image--main {
  width: min(50vw, 54rem);
}

.scene--stretch .product-image--main,
.scene--tools .product-image--main {
  max-width: min(43vw, 43rem);
}

.scene--protective .product-image--main,
.scene--fillers .product-image--main {
  max-width: min(40vw, 40rem);
}

.material-bridge {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  min-height: 92svh;
  padding: 7rem var(--page-pad);
  overflow: hidden;
}

.material-bridge__copy {
  position: relative;
  z-index: 3;
  max-width: 72rem;
}

.material-bridge h2 {
  margin-top: 1.5rem;
  font-size: clamp(3.2rem, 6.5vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.material-bridge__visual {
  position: relative;
  display: grid;
  min-height: 60vh;
  place-items: center;
}

.material-bridge__visual img {
  position: relative;
  z-index: 2;
  width: min(33vw, 31rem);
  filter: drop-shadow(0 2rem 2rem rgba(20, 35, 30, 0.18));
  transform: rotate(7deg);
}

.material-bridge__ring {
  position: absolute;
  width: 34vw;
  max-width: 34rem;
  aspect-ratio: 1;
  border: 4rem solid #dff4ed;
  border-radius: 50%;
}

.material-bridge__ticker {
  position: absolute;
  right: -8%;
  bottom: 3%;
  left: -2%;
  color: rgba(29, 158, 117, 0.12);
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.section-pad {
  padding: 9rem var(--page-pad);
}

.benefits {
  background: var(--ink);
  color: white;
}

.benefits__intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  max-width: 96rem;
  margin: 0 auto 6rem;
}

.benefits__intro h2,
.process__heading h2 {
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 96rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit {
  min-height: 22rem;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit > span {
  color: var(--green);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
}

.benefit__icon {
  position: relative;
  width: 7.5rem;
  height: 5.5rem;
  margin-top: 2.4rem;
  color: var(--green);
}

.benefit__icon i,
.benefit__icon b {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.benefit__icon--areas i {
  top: 0.25rem;
  width: 3.25rem;
  height: 4.7rem;
  border: 2px solid currentColor;
  border-radius: 0.65rem;
}

.benefit__icon--areas i:first-child {
  left: 0.1rem;
}

.benefit__icon--areas i:nth-child(2) {
  right: 0.1rem;
}

.benefit__icon--areas b {
  top: 50%;
  left: 50%;
  width: 2.1rem;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.benefit__icon--areas b::before,
.benefit__icon--areas b::after {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.benefit__icon--areas b::before {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.benefit__icon--areas b::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.benefit__icon--b2b i {
  top: 1.35rem;
  width: 4.6rem;
  height: 2.75rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.benefit__icon--b2b i:first-child {
  left: 0.15rem;
  transform: rotate(-32deg);
}

.benefit__icon--b2b i:last-child {
  right: 0.15rem;
  transform: rotate(32deg);
}

.benefit__icon--target {
  border: 2px solid currentColor;
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
}

.benefit__icon--target::before,
.benefit__icon--target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.benefit__icon--target::before {
  width: 3.35rem;
  height: 3.35rem;
}

.benefit__icon--target::after {
  width: 1.2rem;
  height: 1.2rem;
  background: currentColor;
}

.benefit__icon--target i {
  top: -0.35rem;
  right: -1.8rem;
  width: 4rem;
  height: 2px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: right center;
}

.benefit__icon--target b {
  top: -0.15rem;
  right: -1.95rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.benefit h3 {
  margin-top: 2.2rem;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.benefit p {
  max-width: 24rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.process {
  max-width: 110rem;
  margin: 0 auto;
}

.process__heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  margin-bottom: 5rem;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 0.2fr 0.65fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 8.5rem;
  padding-right: clamp(1rem, 2vw, 2rem);
  padding-left: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.process-step__wash {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  border-left: 0.32rem solid var(--green);
  background: linear-gradient(90deg, rgba(29, 158, 117, 0.25), rgba(29, 158, 117, 0.07));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.process-steps li > :not(.process-step__wash) {
  position: relative;
  z-index: 1;
}

.process-step__number {
  display: grid;
  width: clamp(3rem, 4vw, 4rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(29, 158, 117, 0.48);
  border-radius: 50%;
  color: var(--green);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
  will-change: transform, opacity;
}

.process-steps strong {
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  will-change: transform, opacity;
}

.process-steps p {
  color: rgba(20, 35, 30, 0.62);
  line-height: 1.55;
  will-change: transform, opacity;
}

.contact-cta {
  position: relative;
  min-height: 100svh;
  padding: 8rem var(--page-pad) 6rem;
  overflow: hidden;
  background: var(--green);
  color: white;
}

.contact-cta__mark {
  position: absolute;
  right: -9%;
  bottom: -31%;
  width: min(70vw, 72rem);
  opacity: 0.1;
  pointer-events: none;
}

.contact-cta__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(34rem, 1.18fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  max-width: 105rem;
  margin: 0 auto;
}

.contact-cta__inner {
  position: relative;
  max-width: 46rem;
}

.contact-cta h2 {
  max-width: 46rem;
  margin-top: 1.6rem;
  font-size: clamp(3.5rem, 5.6vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.contact-cta__lead {
  max-width: 35rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.6;
}

.contact-cta__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-cta__details > span {
  grid-column: 1 / -1;
}

.contact-cta__details a,
.contact-cta__details > span {
  display: grid;
  gap: 0.45rem;
}

.contact-cta__details small {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase;
}

.contact-cta__details strong {
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
}

.contact-form {
  padding: clamp(2rem, 3vw, 3.25rem);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2.5rem 7rem rgba(20, 35, 30, 0.18);
}

.contact-form__heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-form__placeholder {
  max-width: 32rem;
  color: rgba(20, 35, 30, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-form form {
  display: grid;
  gap: 1.2rem;
}

.contact-form form input:not([type="checkbox"]):not([type="radio"]),
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 30, 0.2);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-form form input:not([type="checkbox"]):not([type="radio"]),
.contact-form form select {
  min-height: 3.5rem;
  padding: 0 1rem;
}

.contact-form form textarea {
  min-height: 8rem;
  padding: 1rem;
}

.contact-form form input[type="submit"],
.contact-form form button[type="submit"] {
  min-height: 4rem;
  padding: 0 1.25rem;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.contact-form__heading h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.contact-form__heading > span {
  padding-top: 0.45rem;
  color: rgba(20, 35, 30, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.2rem;
}

.contact-form label:not(.contact-form__consent) {
  display: grid;
  gap: 0.55rem;
}

.contact-form label > span {
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 30, 0.2);
  border-radius: 0;
  outline: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
  height: 3.5rem;
  padding: 0 1rem;
}

.contact-form textarea {
  min-height: 8.25rem;
  padding: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.14);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(20, 35, 30, 0.66);
  line-height: 1.5;
}

.contact-form__consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  accent-color: var(--green);
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0 1.25rem;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--green);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(10rem, 0.6fr));
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad) 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.65;
}

.site-footer__brand img {
  width: 8rem;
  padding: 0.3rem;
  border-radius: 0.2rem;
  background: white;
}

.site-footer__brand p {
  max-width: 25rem;
  margin-top: 1.5rem;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__column strong {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__column a {
  transition: color 180ms ease;
}

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

.site-footer__menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 180ms ease;
}

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

/* Applications */
.applications {
  background: var(--paper);
}

.applications__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(30rem, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.applications__intro {
  position: sticky;
  top: 8rem;
}

.applications__intro h2 {
  max-width: 11ch;
  margin-top: 2rem;
  font-size: clamp(3.4rem, 5.8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.applications__intro > p:last-child {
  max-width: 32rem;
  margin-top: 2rem;
  color: rgba(20, 35, 30, 0.65);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.applications__stack {
  display: grid;
  gap: 2rem;
  padding-bottom: 8rem;
}

.application-card {
  position: sticky;
  z-index: var(--card-order);
  top: calc(6.8rem + var(--card-offset));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.95fr);
  min-height: min(38rem, 70vh);
  overflow: hidden;
  border: 1px solid rgba(20, 35, 30, 0.16);
  background: #eaf2ee;
  box-shadow: 0 1.8rem 5rem rgba(20, 35, 30, 0.12);
  color: var(--ink);
  transform-origin: 50% 0;
}

.application-card:nth-child(even) {
  background: var(--ink);
  color: white;
}

.application-card__visual {
  position: relative;
  display: grid;
  min-height: 32rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(29, 158, 117, 0.18), transparent 42%),
    #dfeae5;
}

.application-card:nth-child(2) .application-card__visual,
.application-card:nth-child(4) .application-card__visual {
  background:
    radial-gradient(circle at 50% 52%, rgba(29, 158, 117, 0.22), transparent 42%),
    #d5e8e1;
}

.application-card__visual:not(.application-card__visual--placeholder)::before {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 158, 117, 0.22);
  border-radius: 50%;
  content: "";
  opacity: 0.45;
  transform: scale(0.84);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.application-card.is-product-visible .application-card__visual:not(.application-card__visual--placeholder)::before {
  opacity: 1;
  transform: scale(1);
}

.application-card__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 30rem;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 1.5rem rgba(20, 35, 30, 0.2));
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.application-card:hover .application-card__visual img {
  transform: translateY(-0.4rem) scale(1.035);
}

.application-card__visual--placeholder::before,
.application-card__visual--placeholder::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: rgba(29, 158, 117, 0.38);
  content: "";
}

.application-card__visual--placeholder::before {
  width: 72%;
  aspect-ratio: 1;
  right: -18%;
  bottom: -16%;
}

.application-card__visual--placeholder::after {
  width: 38%;
  aspect-ratio: 1;
  left: 12%;
  top: 16%;
}

.application-card__visual > span {
  position: absolute;
  right: -0.05em;
  bottom: -0.18em;
  color: rgba(29, 158, 117, 0.16);
  font-family: var(--heading-font);
  font-size: clamp(11rem, 22vw, 24rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.application-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
}

.application-card__copy > span {
  margin-bottom: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.application-card__copy h3 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.application-card__copy p {
  max-width: 31rem;
  margin-top: 1.4rem;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.68;
}

.application-card__copy b {
  margin-top: 2rem;
  font-size: 0.8rem;
}

/* Why NEXAL */
.why-nexal {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.why-nexal__intro {
  display: grid;
  grid-template-columns: 0.62fr 1.15fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.why-nexal__intro h2 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 6.2vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.why-nexal__intro > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.why-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  margin-top: clamp(6rem, 10vw, 11rem);
}

.why-route__line {
  position: absolute;
  top: 3.5rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.why-route__line span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
}

.why-point {
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}

.why-point__number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.why-point__icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 3.5rem 0 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.why-point__icon i,
.why-point__icon b,
.why-point__icon em {
  position: absolute;
  display: block;
  border: 2px solid var(--green);
  font-style: normal;
}

.why-point__icon--custom {
  display: grid;
  place-items: center;
  border-color: rgba(29, 158, 117, 0.5);
  overflow: hidden;
}

.why-point__icon--custom img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.why-point__icon--library {
  color: var(--green);
}

.why-point__icon--library .nexal-library-icon {
  width: 72%;
  height: 72%;
}

.why-point__icon i {
  width: 2.1rem;
  height: 1.7rem;
  left: 1.35rem;
  bottom: 1rem;
}

.why-point__icon b {
  width: 1.4rem;
  height: 1.1rem;
  top: 1rem;
  left: 1.65rem;
}

.why-point__icon em {
  width: 0.55rem;
  height: 0.55rem;
  right: 0.7rem;
  bottom: 0.6rem;
  border-radius: 50%;
  background: var(--ink);
}

.why-point__icon--structure i { transform: rotate(45deg); }
.why-point__icon--structure b { border-radius: 50%; }
.why-point__icon--protection i { border-radius: 50% 50% 45% 45%; }
.why-point__icon--protection b { width: 0.8rem; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.why-point__icon--delivery i { width: 2.7rem; }
.why-point__icon--delivery b { left: 0.8rem; border-width: 2px 0 0 2px; transform: rotate(-45deg); }

.why-point h3 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.why-point p {
  max-width: 22rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

/* Capabilities */
.capabilities {
  position: relative;
  height: 280svh;
  background: var(--green);
  color: white;
}

.capabilities__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: 1fr auto;
  gap: 3rem;
  align-items: center;
  height: 100svh;
  min-height: 46rem;
  padding: 7rem var(--page-pad) 3rem;
  overflow: hidden;
}

.capabilities__stage::before {
  position: absolute;
  width: min(60vw, 60rem);
  aspect-ratio: 1;
  right: -20vw;
  bottom: -45%;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  content: "";
}

.capabilities header {
  align-self: start;
}

.capabilities header h2 {
  max-width: 11ch;
  margin-top: 2rem;
  font-size: clamp(2.7rem, 4.5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.capabilities__words {
  position: relative;
  height: min(35vw, 31rem);
}

.capability-word {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 901px) {
  .nexal-anim-ready .capability-word {
    opacity: 0;
  }

  html:not(.nexal-anim-ready) .capabilities {
    height: auto;
  }

  html:not(.nexal-anim-ready) .capabilities__stage {
    position: relative;
    height: auto;
    min-height: auto;
  }

  html:not(.nexal-anim-ready) .capabilities__words {
    display: grid;
    height: auto;
    gap: 2.5rem;
  }

  html:not(.nexal-anim-ready) .capability-word {
    position: relative;
    inset: auto;
    opacity: 1;
  }
}

.capability-word.is-active {
  opacity: 1;
}

.capability-word strong {
  font-family: var(--heading-font);
  font-size: clamp(5rem, 11vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.capability-word p {
  max-width: 38rem;
  margin-top: 2.6rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.capability-word > span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capabilities__note {
  grid-column: 2;
  max-width: 42rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  line-height: 1.55;
}

/* FAQ */
.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq--dark {
  background: var(--ink);
  color: white;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(30rem, 1.3fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 8rem;
}

.faq__intro h2 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: clamp(3.4rem, 5.8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 2rem;
  color: rgba(20, 35, 30, 0.62);
  line-height: 1.7;
}

.faq--dark .faq__intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
}

.faq__intro .arrow-link {
  margin-top: 2rem;
}

.faq__items {
  border-top: 1px solid currentColor;
}

.faq-item {
  border-bottom: 1px solid rgba(20, 35, 30, 0.22);
}

.faq--dark .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
  font: inherit;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  gap: 2rem;
  align-items: center;
  width: 100%;
  min-height: 7rem;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.faq-item button > span {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: center;
  font-family: var(--heading-font);
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.faq-item button small {
  color: var(--green);
  font-family: Manrope, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 220ms ease, transform 350ms ease;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 350ms ease;
}

.faq-item.is-open button i {
  color: var(--green);
  transform: rotate(180deg);
}

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

.faq-item__answer {
  overflow: hidden;
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__answer > div {
  padding: 0 4.9rem 2.2rem;
}

.faq-item__answer p {
  max-width: 46rem;
  color: rgba(20, 35, 30, 0.65);
  line-height: 1.75;
}

.faq--dark .faq-item__answer p {
  color: rgba(255, 255, 255, 0.62);
}

.faq--subpage .faq__layout {
  grid-template-columns: minmax(16rem, 0.5fr) minmax(30rem, 1.5fr);
}

.faq--subpage .faq__intro h2 {
  font-size: clamp(2.8rem, 4.2vw, 5rem);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.68rem;
  }

  .product-panel {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .application-card {
    grid-template-columns: 1fr;
  }

  .application-card__visual {
    min-height: 25rem;
  }

  .why-nexal__intro {
    grid-template-columns: 0.5fr 1fr;
  }

  .why-nexal__intro > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.6rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    place-content: center;
    gap: 0.38rem;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--paper);
    box-shadow: 0 1rem 3rem rgba(20, 35, 30, 0.14);
    font-size: 0.88rem;
  }

  .site-nav__list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.9rem;
  }

  .hero {
    min-height: 150svh;
  }

  .hero-stage {
    display: flex;
    height: 100svh;
    flex-direction: column;
    padding-top: 7rem;
  }

  .hero-copy { max-width: 100%; }

  .hero h1 {
    font-size: clamp(3.05rem, 13vw, 5rem);
  }

  .hero-lead { max-width: 24rem; margin-top: 1.2rem; font-size: .95rem; }

  .hero-actions { margin-top: 1.4rem; }

  .hero-visual {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 30svh;
    margin-top: auto;
  }

  .hero-manifesto {
    top: 48%;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: calc(100% - 2rem);
    font-size: clamp(2.7rem, 12.2vw, 4.7rem);
    letter-spacing: -0.06em;
    line-height: 0.86;
  }

  .hero-manifesto__line,
  .hero-manifesto__line:nth-child(2),
  .hero-manifesto__line:nth-child(3) {
    justify-self: start;
    max-width: 100%;
  }

  .hero-visual::before {
    width: 80vw;
  }

  .hero-product {
    width: 96vw;
    max-height: 40vh;
  }

  .hero-product-shadow { bottom: 3%; width: 72%; }

  .hero-footer {
    display: none;
  }

  .section-heading,
  .benefits__intro,
  .process__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .offer-split {
    padding-top: 6rem;
  }

  .offer-panes {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4.5rem;
    height: auto;
    overflow: visible;
  }

  .offer-pane,
  .offer-panes {
    min-height: 36rem;
  }

  .offer-pane {
    flex-basis: auto !important;
  }

  .offer-bridge {
    top: 50%;
    left: 50% !important;
    width: 4.25rem;
    transform: translate(-50%, -50%) !important;
  }

  .horizontal-story {
    overflow: visible;
  }

  .horizontal-sticky {
    height: auto;
    overflow: visible;
  }

  .horizontal-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .story-progress {
    display: none;
  }

  .story-intro,
  .product-panel {
    width: 100%;
    height: auto;
    min-height: 84svh;
  }

  .story-intro {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .story-intro__index {
    position: absolute;
    top: 14%;
    right: 4%;
  }

  .story-intro h2 {
    font-size: clamp(3.4rem, 13vw, 6.5rem);
  }

  .scroll-cue {
    display: none;
  }

  .product-panel {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 7rem;
  }

  .product-panel__meta {
    top: 6.5rem;
  }

  .product-panel h3 {
    font-size: clamp(3.2rem, 12vw, 5.7rem);
  }

  .product-panel__visual {
    height: 46vh;
    min-height: 21rem;
    margin-top: 1rem;
    grid-row: 1;
  }

  .product-panel__copy {
    grid-row: 2;
  }

  .product-image,
  .scene--boards .product-image--main,
  .scene--stretch .product-image--main,
  .scene--tools .product-image--main,
  .scene--protective .product-image--main,
  .scene--fillers .product-image--main {
    width: auto;
    max-width: 88vw;
    max-height: 45vh;
  }

  .product-image--secondary {
    right: 0;
    bottom: 0;
    width: 31vw;
  }

  .product-halo {
    width: 78vw;
  }

  .material-bridge {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .material-bridge__visual {
    min-height: 42vh;
  }

  .material-bridge__visual img {
    width: min(65vw, 26rem);
  }

  .material-bridge__ring {
    width: 70vw;
    border-width: 2.5rem;
  }

  .material-bridge__ticker {
    right: -18%;
    bottom: 2%;
    left: -18%;
    overflow: hidden;
    font-size: clamp(2.8rem, 12vw, 5rem);
    letter-spacing: -0.06em;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:first-child {
    min-height: auto;
    padding: 2rem 0 3rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .benefit h3 {
    margin-top: 3rem;
  }

  .applications__layout,
  .faq__layout,
  .faq--subpage .faq__layout {
    grid-template-columns: 1fr;
  }

  .applications__intro,
  .faq__intro {
    position: relative;
    top: auto;
  }

  .applications__intro h2,
  .faq__intro h2 {
    max-width: 13ch;
  }

  .applications__stack {
    padding-bottom: 0;
  }

  .application-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .application-card__visual {
    min-height: 60vw;
    max-height: 38rem;
  }

  .application-card__copy {
    min-height: 23rem;
  }

  .why-nexal__intro {
    grid-template-columns: 1fr;
  }

  .why-nexal__intro > p:last-child {
    grid-column: auto;
    max-width: 36rem;
  }

  .why-route {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-left: 4rem;
  }

  .why-route__line {
    top: 0;
    bottom: 0;
    left: 1.15rem;
    width: 1px;
    height: auto;
  }

  .why-route__line span {
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: center top;
  }

  .why-point__number {
    position: absolute;
    top: 0;
    left: -4rem;
  }

  .why-point__icon {
    margin-top: 0;
  }

  .capabilities {
    height: auto;
  }

  .capabilities__stage {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .capabilities__words {
    display: grid;
    height: auto;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .capability-word,
  .capability-word.is-active {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 2.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
  }

  .capability-word strong {
    font-size: clamp(3.2rem, 12vw, 6rem);
  }

  .capability-word p {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  .capability-word > span {
    position: relative;
  }

  .capabilities__note {
    margin-top: 4rem;
  }

  .process-steps li {
    grid-template-columns: 3rem 1fr;
    gap: 0.7rem 1rem;
    padding: 1.6rem 1rem;
  }

  .process-steps p {
    grid-column: 2;
  }

  .contact-cta {
    min-height: auto;
  }

  .contact-cta__layout {
    grid-template-columns: 1fr;
  }

  .contact-cta__inner {
    max-width: 55rem;
  }

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

.subpage-hero {
  position: relative;
  overflow: clip;
  min-height: min(48rem, 80svh);
  padding: clamp(7.5rem, 13vw, 11rem) var(--page-pad) clamp(4.5rem, 8vw, 7rem);
  background: var(--paper);
}

.subpage-hero--dark { background: var(--ink); color: #fff; }
.subpage-hero--green { background: var(--green); color: #fff; }
.subpage-hero__grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 5rem 5rem; opacity: .58; }
.subpage-hero--dark .subpage-hero__grid, .subpage-hero--green .subpage-hero__grid { --line: rgba(255,255,255,.16); }
.subpage-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(20rem, .9fr); align-items: center; gap: clamp(2.5rem, 7vw, 8rem); max-width: 100rem; margin: 0 auto; }
.subpage-hero__copy { max-width: 43rem; }
.subpage-hero h1 { max-width: 15ch; margin: 1rem 0 1.35rem; font: 600 clamp(3.4rem, 6.4vw, 7rem)/.98 var(--heading-font); letter-spacing: -.052em; }
.subpage-hero__lead { max-width: 36rem; margin: 0; color: color-mix(in srgb, currentColor 67%, transparent); font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.6; }
.subpage-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.subpage-hero__visual { position: relative; min-height: clamp(26rem, 44vw, 44rem); display: grid; place-items: center; isolation: isolate; }
.subpage-hero__visual::after { content: ""; position: absolute; z-index: 0; width: 68%; height: 9%; bottom: 11%; left: 16%; border-radius: 50%; background: radial-gradient(ellipse, rgba(20,35,30,.28) 0%, rgba(20,35,30,.13) 43%, transparent 74%); filter: blur(1.35rem); transform: translateY(.8rem); }
.subpage-hero__halo { position: absolute; z-index: -1; width: min(39rem, 105%); aspect-ratio: 1; border-radius: 50%; background: color-mix(in srgb, var(--green) 37%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--green) 31%, transparent); }
.subpage-hero__visual img { position: relative; z-index: 1; width: min(128%, 54rem); max-width: none; max-height: 43rem; object-fit: contain; filter: drop-shadow(0 1.05rem 1.1rem rgba(20,35,30,.12)); }
.subpage-hero__visual--empty span { position: relative; z-index: 1; color: color-mix(in srgb, currentColor 9%, transparent); font: 700 clamp(16rem, 35vw, 36rem)/.7 var(--heading-font); }

.media-text { background: var(--paper); }
.media-text--dark { background: var(--ink); color: #fff; }
.media-text__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); align-items: center; gap: clamp(2rem, 8vw, 10rem); max-width: 100rem; margin: 0 auto; }
.media-text--right .media-text__visual { order: 2; }
.media-text__visual { position: relative; overflow: hidden; background: #e5f2ed; }
.media-text__visual::after { content: ""; position: absolute; inset: auto -16% -36% auto; width: 57%; aspect-ratio: 1; border: 1px solid rgba(29,158,117,.35); border-radius: 50%; pointer-events: none; }
.media-text__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-text--landscape .media-text__visual { aspect-ratio: 1.24 / 1; }
.media-text--portrait .media-text__visual { aspect-ratio: .82 / 1; max-width: 37rem; }
.media-text--square .media-text__visual { aspect-ratio: 1; }
.media-text__visual--empty { display: grid; place-items: center; }
.media-text__visual--empty span { color: rgba(29,158,117,.18); font: 700 clamp(3rem, 7vw, 7rem)/1 var(--heading-font); }
.media-text__copy { max-width: 40rem; }
.media-text h2, .spec-table h2, .info-cards h2, .cta-banner h2 { margin: .85rem 0 1.4rem; font: 600 clamp(2.4rem, 4.7vw, 5.25rem)/1.01 var(--heading-font); letter-spacing: -.045em; }
.media-text__content { color: color-mix(in srgb, currentColor 68%, transparent); font-size: 1.1rem; line-height: 1.65; }
.media-text__content > *:first-child { margin-top: 0; }
.media-text__content > *:last-child { margin-bottom: 0; }
.media-text__highlights { display: grid; gap: .7rem; margin: 1.6rem 0 1.8rem; padding: 0; list-style: none; font-weight: 600; }
.media-text__highlights li { display: flex; align-items: flex-start; gap: .75rem; }
.media-text__highlights li::before { content: "↗"; display: inline-grid; flex: 0 0 1.25rem; place-items: center; color: var(--green); }
.media-text .arrow-link { margin-top: 1.9rem; }

.spec-table { background: #e8f2ee; }
.spec-table--dark { background: var(--ink); color: #fff; }
.spec-table__intro { display: grid; grid-template-columns: minmax(14rem, .45fr) minmax(20rem, 1fr); column-gap: 4rem; max-width: 100rem; margin: 0 auto 3.4rem; }
.spec-table__intro .eyebrow { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.spec-table__intro h2 { grid-column: 2; max-width: 17ch; }
.spec-table__intro p { grid-column: 2; max-width: 44rem; margin: 0; color: color-mix(in srgb, currentColor 64%, transparent); line-height: 1.6; }
.spec-table__scroll { max-width: 100rem; margin: 0 auto; overflow-x: auto; border-top: 1px solid var(--line); }
.spec-table table { width: 100%; min-width: 35rem; border-collapse: collapse; text-align: left; }
.spec-table th, .spec-table td { padding: 1.3rem 1.15rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-table td:first-child { width: 30%; font-weight: 700; }
.spec-table td { color: color-mix(in srgb, currentColor 77%, transparent); line-height: 1.45; }
.spec-table__bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 100rem; margin: 1.4rem auto 0; }
.spec-table__bottom p { max-width: 42rem; margin: 0; color: color-mix(in srgb, currentColor 62%, transparent); line-height: 1.55; }

.info-cards { background: var(--paper); }
.info-cards--dark { background: var(--ink); color: #fff; }
.info-cards--green { background: var(--green); color: #fff; }
.info-cards__head { display: grid; grid-template-columns: minmax(12rem, .5fr) minmax(25rem, 1fr); gap: 0 3rem; max-width: 100rem; margin: 0 auto 3.75rem; }
.info-cards__head .eyebrow { grid-row: 1 / span 2; }
.info-cards__head h2 { max-width: 17ch; }
.info-cards__head > p:last-child { max-width: 40rem; margin: 0; color: color-mix(in srgb, currentColor 66%, transparent); line-height: 1.55; }
.info-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 100rem; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-card { position: relative; min-height: 21rem; padding: 1.7rem 2rem 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-card__number { color: var(--green); font: 700 .85rem/1 var(--heading-font); }
.info-card__icon { display: block; position: relative; width: 4.5rem; height: 4.5rem; margin: 2.1rem 0 2rem; color: var(--green); }
.info-card__custom-icon { display: block; width: 4.5rem; height: 4.5rem; margin: 2.1rem 0 2rem; object-fit: contain; object-position: left center; }
.info-card__library-icon { display: grid; color: var(--green); place-items: center; }
.info-cards--dark .info-card__library-icon,
.info-cards--green .info-card__library-icon { color: var(--paper); }
.info-card__library-icon .nexal-library-icon { width: 86%; height: 86%; }
.info-card__icon::before, .info-card__icon::after { content: ""; position: absolute; border: 2px solid currentColor; }
.info-card__icon--measure::before { inset: .2rem 2.65rem .2rem .25rem; border-radius: .65rem; box-shadow: 2.4rem 0 0 -2px var(--paper), 2.4rem 0 0 0 currentColor; }
.info-cards--dark .info-card__icon--measure::before { box-shadow: 2.4rem 0 0 -2px var(--ink), 2.4rem 0 0 0 currentColor; }.info-cards--green .info-card__icon--measure::before { box-shadow: 2.4rem 0 0 -2px var(--green), 2.4rem 0 0 0 currentColor; }
.info-card__icon--layers::before { width: 3.65rem; height: 2.55rem; top: 1rem; left: .4rem; border-radius: 50%; transform: rotate(34deg); }.info-card__icon--layers::after { width: 1.2rem; height: 1.2rem; top: .25rem; left: 1.75rem; border-radius: 50%; }
.info-card__icon--truck::before { width: 3.4rem; height: 2rem; top: 1rem; left: .35rem; border-radius: .25rem .25rem .8rem .8rem; }.info-card__icon--truck::after { width: .65rem; height: .65rem; top: 2.7rem; left: .9rem; border-radius: 50%; box-shadow: 1.6rem 0 0 -2px var(--paper), 1.6rem 0 0 0 currentColor; }
.info-cards--dark .info-card__icon--truck::after { box-shadow: 1.6rem 0 0 -2px var(--ink), 1.6rem 0 0 0 currentColor; }.info-cards--green .info-card__icon--truck::after { box-shadow: 1.6rem 0 0 -2px var(--green), 1.6rem 0 0 0 currentColor; }
.info-card h3 { margin: 0 0 .9rem; font: 600 clamp(1.45rem, 2.25vw, 2.3rem)/1.1 var(--heading-font); letter-spacing: -.028em; }.info-card p { max-width: 21rem; margin: 0; color: color-mix(in srgb, currentColor 66%, transparent); line-height: 1.55; }

.cta-banner { padding: 0 var(--page-pad); background: var(--paper); }.cta-banner--dark { background: var(--ink); color: #fff; }.cta-banner--green { background: var(--green); color: #fff; }
.cta-banner__inner { display: grid; grid-template-columns: minmax(18rem, 1fr) auto; align-items: center; gap: 3rem; max-width: 100rem; margin: 0 auto; padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4.5rem); background: color-mix(in srgb, currentColor 7%, transparent); }
.cta-banner h2 { max-width: 18ch; margin-bottom: .8rem; }.cta-banner__inner > div > p:last-child { max-width: 42rem; margin: 0; color: color-mix(in srgb, currentColor 71%, transparent); line-height: 1.55; }.cta-banner__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; }.cta-banner .arrow-link { color: currentColor; }.cta-banner--light .button--light { background: var(--ink); color: #fff; }

@media (max-width: 782px) {
	.subpage-hero { min-height: auto; padding-top: 7.6rem; }.subpage-hero__inner, .media-text__inner { grid-template-columns: 1fr; gap: 2.5rem; }.subpage-hero__visual { min-height: 24rem; order: -1; }.subpage-hero__visual img { width: min(125%, 34rem); max-height: 32rem; }.subpage-hero h1 { font-size: clamp(3rem, 13vw, 4.5rem); letter-spacing: -.046em; }.subpage-hero__actions, .cta-banner__actions { align-items: stretch; flex-direction: column; }.subpage-hero__actions .button { width: 100%; }
	.media-text--right .media-text__visual { order: -1; }.media-text--portrait .media-text__visual { max-width: none; }.spec-table__intro, .info-cards__head { display: block; }.spec-table__intro .eyebrow, .info-cards__head .eyebrow { margin-bottom: 1rem; }.spec-table__intro h2, .info-cards__head h2 { margin-top: 0; }.spec-table__bottom { align-items: flex-start; flex-direction: column; }.info-cards__grid { grid-template-columns: 1fr; }.info-card { min-height: 0; }.info-card__icon, .info-card__custom-icon { margin: 1.6rem 0; }.cta-banner { padding: 0; }.cta-banner__inner { grid-template-columns: 1fr; gap: 2rem; }.cta-banner h2 { font-size: clamp(2.5rem, 11.5vw, 4rem); }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 560px) {
  .contact-form__grid,
  .contact-cta__details {
    grid-template-columns: 1fr;
  }

  .contact-cta__details > span,
  .contact-form__wide {
    grid-column: 1;
  }

  .contact-form__heading {
    flex-direction: column;
    gap: 0.4rem;
  }

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

  @media (max-height: 780px) {
    .hero-stage {
      padding-top: 5.25rem;
    }

    .hero h1 {
      font-size: clamp(2.85rem, 12.5vw, 3.4rem);
    }

    .hero-lead {
      margin-top: 0.9rem;
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .hero-actions {
      gap: 0.65rem;
      margin-top: 1rem;
    }

    .hero-visual {
      min-height: 25svh;
    }

    .hero-product {
      max-height: 34svh;
    }
  }

  .button {
    width: 100%;
  }

  .application-card__copy {
    min-height: 20rem;
  }

  .faq-item button {
    grid-template-columns: 1fr 2.5rem;
    gap: 1rem;
    min-height: 6rem;
  }

  .faq-item button > span {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .faq-item__answer > div {
    padding-right: 0;
    padding-left: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.7rem;
  }

  .offer-pane,
  .offer-panes {
    min-height: 32rem;
  }

  .offer-pane h3 {
    font-size: 3.3rem;
  }

  .offer-pane img {
    width: 90%;
  }

  .offer-pane--packing img {
    width: 78%;
  }

  .story-intro,
  .product-panel {
    min-height: 92svh;
  }

  .section-pad {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

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

  * {
    scroll-behavior: auto !important;
  }

  .faq-item__answer,
  .application-card__visual img {
    transition: none !important;
  }
}

/* Pełnoekranowa nawigacja NEXAL — jeden czytelny panel na desktopie i mobile. */
.site-nav__list { margin: clamp(1rem, 3vw, 3rem) auto 0; }
.site-header { display: flex; gap: .75rem; }
.site-header .brand { margin-right: auto; }
.site-header .menu-toggle { display: inline-flex; width: auto; min-width: 7.4rem; height: 2.9rem; align-items: center; justify-content: center; gap: .52rem; padding: 0 .95rem; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); }
.site-header .menu-toggle .menu-toggle__label { display: inline !important; width: auto !important; height: auto !important; background: transparent !important; font: 700 .73rem/1 Manrope, Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.site-header .menu-toggle .menu-toggle__line { display: block; width: 1rem; height: 1px; background: currentColor; transition: transform 240ms ease; }
.site-header .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(3) { transform: translateY(2.5px) rotate(45deg); }
.site-header .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(4) { transform: translateY(-2.5px) rotate(-45deg); }
.site-header .header-cta { margin-left: .15rem; }

.site-nav { position: fixed; z-index: 49; top: 5.25rem; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 2rem; padding: clamp(2.2rem, 5vw, 5rem) var(--page-pad) max(2rem, env(safe-area-inset-bottom)); background: var(--ink); color: var(--paper); font-size: 1rem; opacity: 0; overflow-y: auto; pointer-events: none; transform: translateY(-1.4rem); transition: opacity 260ms ease, transform 360ms cubic-bezier(.22,1,.36,1), visibility 260ms ease; visibility: hidden; }
.site-nav::before { width: min(100%, 100rem); margin: 0 auto; color: rgba(255,255,255,.52); content: "Nawigacja"; font: 700 .75rem/1 Manrope, Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.site-nav__list { display: flex; width: min(100%, 100rem); flex-direction: column; align-items: stretch; gap: 0; margin: auto; padding: 0; }
.site-nav__list > li { position: relative; border-top: 1px solid rgba(255,255,255,.18); }
.site-nav__list > li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.site-nav__list > li > a { display: flex; align-items: center; width: 100%; padding: clamp(1rem, 2vw, 1.5rem) 0; font-family: var(--heading-font); font-size: clamp(2.25rem, 5.9vw, 6rem); font-weight: 600; letter-spacing: -.06em; line-height: .96; transition: color 200ms ease, padding 260ms ease; }
.site-nav__list > li > a::after, .site-nav .menu-item-has-children > a::before { display: none; }
.site-nav__list > li > a:hover, .site-nav__list > li > a:focus-visible { padding-left: .35rem; color: #8ee0c5; }
.site-nav .sub-menu { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); width: 100%; gap: .55rem; margin: 0 0 1.4rem; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; list-style: none; opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
.site-nav .sub-menu::before { display: none; }
.site-nav .sub-menu li { border: 1px solid rgba(255,255,255,.17); border-radius: .7rem; }
.site-nav .sub-menu li + li { border-top: 1px solid rgba(255,255,255,.17); }
.site-nav .sub-menu a { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 5.2rem; padding: 1.1rem 1.2rem; color: #fff; font-family: var(--heading-font); font-size: clamp(1.1rem, 1.7vw, 1.5rem); font-weight: 600; letter-spacing: -.03em; transition: background 220ms ease, color 220ms ease, transform 220ms ease; }
.site-nav .sub-menu a::before { content: "↗"; font: 500 1rem/1 Manrope, Arial, sans-serif; }
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover, .site-nav .sub-menu a:focus-visible { background: var(--green); color: #fff; transform: translateY(-.15rem); }
.site-nav__cta { display: flex !important; align-items: center; justify-content: space-between; width: min(100%, 100rem); margin: 0 auto; padding: 1.2rem 1.4rem !important; border-radius: 999px; background: var(--green); color: #fff; font-weight: 700; }
.site-nav__cta::after { display: none !important; }
.admin-bar .site-nav { top: calc(5.25rem + 32px); }

.subpage-hero__product { position: relative; z-index: 1; display: grid; place-items: center; width: 100%; transform: scale(var(--product-scale, 1.5)); transform-origin: center; }
.subpage-hero__product img { width: min(128%, 54rem); max-width: none; }

@media (max-width: 900px) {
  .site-header .menu-toggle { min-width: 2.9rem; width: 2.9rem; padding: 0; }
  .site-header .menu-toggle .menu-toggle__label { display: none !important; }
  .site-nav { top: 4.6rem; padding-top: clamp(2rem, 9vw, 4rem); }
  .admin-bar .site-nav { top: calc(4.6rem + 46px); }
  .site-nav::before { margin-bottom: 1rem; }
  .site-nav__list { margin: 0 auto auto; }
  .site-nav__list > li > a { padding: 1.1rem 0; font-size: clamp(2.1rem, 11vw, 3.6rem); letter-spacing: -.055em; }
  .site-nav .sub-menu { grid-template-columns: 1fr; margin-bottom: 1rem; }
  .site-nav .sub-menu a { min-height: 4.25rem; font-size: 1.12rem; }
  body.menu-open { overflow: hidden; }
  .subpage-hero__product { transform: scale(var(--product-scale-mobile, 1.28)); }
  .subpage-hero__product img { width: min(125%, 34rem); max-height: 32rem; }
}

/* Klasyczna nawigacja: główne strony w nagłówku, podstrony w rozwinięciu. */
h1, h2, h3, .hero h1, .subpage-hero h1, .media-text h2, .spec-table h2, .info-cards h2, .cta-banner h2, .info-card h3, .faq-item button {
  letter-spacing: -.02em !important;
  line-height: 1.04 !important;
}

@media (min-width: 901px) {
  .site-header { display: grid; grid-template-columns: 190px 1fr auto; gap: 0; }
  .site-header .brand { margin-right: 0; }
  .site-header .menu-toggle { display: none; }
  .site-header .header-cta { margin-left: 0; }
  .site-nav { position: static; display: flex; align-items: center; justify-content: center; min-width: 0; padding: 0; background: transparent; color: var(--ink); opacity: 1; overflow: visible; pointer-events: auto; transform: none; transition: none; visibility: visible; }
  .site-nav::before { display: none; }
  .site-nav__list { display: flex; width: auto; flex-direction: row; align-items: center; justify-content: center; gap: clamp(1.4rem, 2.7vw, 3.5rem); margin: 0; padding: 0; }
  .site-nav__list > li { position: relative; border: 0; }
  .site-nav__list > li:last-child { border: 0; }
  .site-nav__list > li > a { display: inline-flex; width: auto; padding: .9rem 0; font-family: Manrope, Arial, sans-serif; font-size: clamp(.86rem, .95vw, 1rem); font-weight: 700; letter-spacing: -.015em; line-height: 1.2; }
  .site-nav__list > li > a::after { display: block; }
  .site-nav .menu-item-has-children > a { padding-right: 1.35rem; }
  .site-nav .menu-item-has-children > a::before { position: absolute; top: 50%; right: 0; display: block; width: .45rem; height: .45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: translateY(-70%) rotate(45deg); transition: transform 180ms ease; }
  .site-nav .menu-item-has-children:hover > a::before, .site-nav .menu-item-has-children:focus-within > a::before { transform: translateY(-28%) rotate(225deg); }
  .site-nav .sub-menu { position: absolute; z-index: 60; top: 100%; left: 50%; display: grid; width: min(24rem, 38vw); grid-template-columns: 1fr; gap: .15rem; margin: 0; padding: .7rem; border: 1px solid rgba(20,35,30,.13); border-radius: 1rem; background: rgba(247,250,248,.99); box-shadow: 0 1.1rem 2.8rem rgba(20,35,30,.15); list-style: none; opacity: 0; pointer-events: none; transform: translate(-50%, -.45rem); transform-origin: top center; transition: opacity 180ms ease, transform 220ms cubic-bezier(.22,1,.36,1), visibility 180ms ease; visibility: hidden; }
  .site-nav .menu-item-has-children:hover > .sub-menu, .site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); visibility: visible; }
  .site-nav .sub-menu li, .site-nav .sub-menu li + li { border: 0; }
  .site-nav .sub-menu a { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 3.9rem; padding: .85rem 1rem; border-radius: .65rem; color: var(--ink); font-family: var(--heading-font); font-size: 1.12rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
  .site-nav .sub-menu a::before { display: block; color: var(--green); content: "↗"; font: 600 1rem/1 Manrope, Arial, sans-serif; }
  .site-nav .sub-menu a::after { display: none; }
  .site-nav .sub-menu a:hover, .site-nav .sub-menu a:focus-visible { padding-left: 1.25rem; background: #e6f3ed; color: var(--green-dark); transform: none; }
  .site-nav__cta { display: none !important; }
}

@media (max-width: 900px) {
  .site-header { display: grid; grid-template-columns: 1fr auto; gap: .8rem; }
  .site-header .brand { margin-right: 0; }
  .site-header .menu-toggle { display: grid; }
  .site-nav { position: absolute; z-index: 60; top: calc(100% + .5rem); right: 1rem; bottom: auto; left: 1rem; display: flex; gap: 0; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); color: var(--ink); box-shadow: 0 1rem 3rem rgba(20,35,30,.14); opacity: 0; overflow: visible; pointer-events: none; transform: translateY(-.5rem); transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease; visibility: hidden; }
  .site-nav::before { display: none; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
  .site-nav__list { display: flex; width: 100%; flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .site-nav__list > li, .site-nav__list > li:last-child { border: 0; border-bottom: 1px solid rgba(20,35,30,.12); }
  .site-nav__list > li > a { width: 100%; padding: 1rem .3rem; font-family: var(--heading-font); font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
  .site-nav .menu-item-has-children > a::before { display: none; }
  .site-nav .sub-menu { position: static; display: grid; width: 100%; gap: 0; margin: 0 0 .8rem; padding: 0 0 0 1rem; border: 0; border-left: 1px solid rgba(29,158,117,.45); border-radius: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
  .site-nav .sub-menu li, .site-nav .sub-menu li + li { border: 0; }
  .site-nav .sub-menu a { display: flex; align-items: center; gap: .45rem; min-height: 2.8rem; padding: .65rem 0; color: var(--ink); font-family: Manrope, Arial, sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
  .site-nav .sub-menu a::before { display: block; color: var(--green); content: "↗"; }
  .site-nav .sub-menu a::after { display: none; }
  .site-nav__cta { display: none !important; }
  .admin-bar .site-nav { top: calc(100% + .5rem); }
  body.menu-open { overflow: inherit; }
}

/* Dropdown oferty — pewny obszar hover i mocniejsza stylistyka NEXAL. */
@media (min-width: 901px) {
  .site-nav__list > .menu-item-has-children::after { position: absolute; z-index: 58; top: 100%; right: -1.25rem; left: -1.25rem; height: 1.25rem; content: ""; }
  .site-nav .sub-menu { top: calc(100% + .9rem); width: min(31rem, 44vw); gap: .3rem; padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: .85rem; background: var(--ink); box-shadow: 0 1.4rem 3.6rem rgba(20,35,30,.24); transform: translate(-50%, -.6rem) scale(.985); }
  .site-nav .sub-menu::before { display: block; padding: .25rem .35rem .8rem; border-bottom: 1px solid rgba(255,255,255,.16); color: #8ee0c5; content: "Wybierz kategorię"; font: 700 .72rem/1 Manrope, Arial, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
  .site-nav .menu-item-has-children:hover > .sub-menu, .site-nav .menu-item-has-children:focus-within > .sub-menu, .site-nav .menu-item-has-children.is-submenu-open > .sub-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); visibility: visible; }
  .site-nav .sub-menu a { min-height: 4.5rem; padding: 1rem 1.1rem; border: 1px solid transparent; border-radius: .55rem; color: #fff; font-size: clamp(1.18rem, 1.45vw, 1.45rem); line-height: 1.12; }
  .site-nav .sub-menu a::before { order: 2; color: #8ee0c5; font-size: 1.1rem; transition: color 180ms ease, transform 180ms ease; }
  .site-nav .sub-menu a:hover, .site-nav .sub-menu a:focus-visible { padding-left: 1.25rem; border-color: rgba(255,255,255,.16); background: var(--green); color: #fff; }
  .site-nav .sub-menu a:hover::before, .site-nav .sub-menu a:focus-visible::before { color: #fff; transform: translate(.15rem,-.15rem); }
}

/* Nawigacja — większy panel kategorii na desktopie i pełnoekranowe menu mobilne. */
@media (min-width: 901px) {
  .site-nav__list { gap: clamp(1.4rem, 2.6vw, 3.1rem); }
  .site-nav__list > li { position: relative; }
  .site-nav a { display: inline-flex; align-items: center; gap: .45rem; padding: .68rem 0; }
  .site-nav .menu-item-has-children > a { padding-right: 1.3rem; }
  .site-nav .menu-item-has-children > a::before { position: absolute; top: 50%; right: 0; width: .45rem; height: .45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: translateY(-70%) rotate(45deg); transition: transform 220ms ease; }
  .site-nav .menu-item-has-children:hover > a::before, .site-nav .menu-item-has-children:focus-within > a::before { transform: translateY(-28%) rotate(225deg); }
  .site-nav .sub-menu { position: absolute; z-index: 4; top: calc(100% + 1.1rem); left: 50%; display: grid; width: min(26rem, 42vw); gap: .2rem; margin: 0; padding: .75rem; border: 1px solid rgba(20,35,30,.13); border-radius: 1.15rem; background: rgba(247,250,248,.98); box-shadow: 0 1.4rem 3.4rem rgba(20,35,30,.14); list-style: none; opacity: 0; pointer-events: none; transform: translate(-50%, -.7rem) scale(.97); transform-origin: top center; transition: opacity 220ms ease, transform 260ms cubic-bezier(.22,1,.36,1), visibility 220ms ease; visibility: hidden; }
  .site-nav .sub-menu::before { position: absolute; top: -.35rem; left: 50%; width: .7rem; height: .7rem; border-top: 1px solid rgba(20,35,30,.13); border-left: 1px solid rgba(20,35,30,.13); background: rgba(247,250,248,.98); content: ""; transform: translateX(-50%) rotate(45deg); }
  .site-nav .menu-item-has-children:hover > .sub-menu, .site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); visibility: visible; }
  .site-nav .sub-menu li + li { border-top: 1px solid rgba(20,35,30,.1); }
  .site-nav .sub-menu a { display: flex; justify-content: flex-start; width: 100%; padding: 1.05rem 1rem; border-radius: .7rem; font-family: var(--heading-font); font-size: clamp(1rem, 1.25vw, 1.2rem); font-weight: 600; letter-spacing: -.025em; transition: padding 220ms ease, background 220ms ease, color 220ms ease; }
  .site-nav .sub-menu a::before { color: var(--green); content: "↗"; font: 600 1rem/1 Manrope, Arial, sans-serif; opacity: 0; transform: translateX(-.45rem); transition: opacity 220ms ease, transform 220ms ease; }
  .site-nav .sub-menu a::after { display: none; }
  .site-nav .sub-menu a:hover, .site-nav .sub-menu a:focus-visible { padding-left: 1.35rem; background: #e6f3ed; color: var(--green-dark); }
  .site-nav .sub-menu a:hover::before, .site-nav .sub-menu a:focus-visible::before { opacity: 1; transform: translateX(0); }
  .site-nav__cta { display: none !important; }
}

@media (max-width: 900px) {
  .menu-toggle span:not(.sr-only) { transition: transform 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(2.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-2.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 49; top: 4.6rem; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 2rem; padding: clamp(2rem, 8vw, 4rem) var(--page-pad) max(2rem, env(safe-area-inset-bottom)); background: rgba(247,250,248,.98); font-size: 1.1rem; opacity: 0; overflow-y: auto; pointer-events: none; transform: translateY(-1rem); transition: opacity 240ms ease, transform 320ms cubic-bezier(.22,1,.36,1), visibility 240ms ease; visibility: hidden; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
  .site-nav__list { display: flex; width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list > li { border-bottom: 1px solid rgba(20,35,30,.13); }
  .site-nav__list > li > a { width: 100%; padding: 1.1rem 0; font-family: var(--heading-font); font-size: clamp(1.65rem, 8vw, 2.45rem); font-weight: 600; letter-spacing: -.045em; }
  .site-nav .menu-item-has-children > a { padding-right: 1.5rem; }
  .site-nav .menu-item-has-children > a::before { position: absolute; top: 50%; right: .45rem; width: .7rem; height: .7rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: translateY(-70%) rotate(45deg); }
  .site-nav .sub-menu { position: static; display: grid; width: 100%; gap: 0; margin: 0 0 .55rem; padding: 0 0 .4rem 1.2rem; border: 0; border-left: 1px solid rgba(29,158,117,.5); border-radius: 0; background: transparent; box-shadow: none; list-style: none; opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
  .site-nav .sub-menu::before { display: none; }
  .site-nav .sub-menu li + li { border-top: 0; }
  .site-nav .sub-menu a { display: flex; align-items: center; gap: .55rem; width: 100%; padding: .8rem 0; font-family: Manrope, Arial, sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -.015em; }
  .site-nav .sub-menu a::before { color: var(--green); content: "↗"; font: 600 1rem/1 Manrope, Arial, sans-serif; }
  .site-nav .sub-menu a::after, .site-nav__cta::after { display: none; }
  .site-nav__cta { display: flex !important; align-items: center; justify-content: space-between; width: 100%; padding: 1.2rem 1.4rem !important; border-radius: 999px; background: var(--green); color: #fff; font-weight: 700; }
  body.menu-open { overflow: hidden; }
  .admin-bar .site-nav { top: calc(4.6rem + 46px); }
}

/* Strona 404 */
.nexal-404__section { position: relative; display: grid; min-height: min(78vh, 58rem); padding: clamp(7.5rem, 12vw, 12rem) var(--page-pad) clamp(5rem, 9vw, 8rem); overflow: hidden; background: var(--paper); isolation: isolate; }
.nexal-404__grid { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 5rem 5rem; opacity: .62; }
.nexal-404__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .98fr) minmax(19rem, .82fr); align-items: center; gap: clamp(3rem, 9vw, 11rem); width: min(100%, 100rem); margin: auto; }
.nexal-404__copy { max-width: 46rem; }
.nexal-404__copy h1 { max-width: 11ch; margin-top: 1.5rem; font-size: clamp(3.5rem, 7.4vw, 8.2rem); font-weight: 600; letter-spacing: -.065em; line-height: .92; }
.nexal-404__lead { max-width: 39rem; margin-top: 2rem; color: rgba(20,35,30,.7); font-size: clamp(1.02rem, 1.35vw, 1.25rem); line-height: 1.62; }
.nexal-404__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.3rem; }
.nexal-404__visual { position: relative; display: grid; min-height: clamp(20rem, 39vw, 38rem); place-items: center; isolation: isolate; }
.nexal-404__number { position: relative; z-index: 2; color: var(--ink); font: 600 clamp(8rem, 21vw, 21rem)/.72 var(--heading-font); letter-spacing: -.13em; }
.nexal-404__number::first-letter { color: var(--green); }
.nexal-404__mark { position: absolute; z-index: 1; right: 7%; bottom: 9%; color: rgba(29,158,117,.13); font: 700 clamp(12rem, 30vw, 28rem)/.7 var(--heading-font); letter-spacing: -.13em; }
.nexal-404__ring { position: absolute; z-index: -1; border: 1px solid rgba(29,158,117,.34); border-radius: 50%; }
.nexal-404__ring--one { width: 90%; aspect-ratio: 1; background: radial-gradient(circle at 38% 40%, rgba(29,158,117,.24), rgba(29,158,117,.06) 50%, transparent 71%); }
.nexal-404__ring--two { width: 124%; aspect-ratio: 1; transform: translate(12%, -8%); }

@media (max-width: 900px) {
  .nexal-404__section { min-height: calc(100svh - 4.6rem); padding-top: 7.5rem; }
  .nexal-404__inner { grid-template-columns: 1fr; gap: 2rem; }
  .nexal-404__copy h1 { max-width: 10ch; font-size: clamp(3.1rem, 13vw, 5.1rem); }
  .nexal-404__lead { margin-top: 1.4rem; }
  .nexal-404__actions { flex-direction: column; }
  .nexal-404__actions .button { width: 100%; }
  .nexal-404__visual { min-height: 15rem; order: -1; }
  .nexal-404__number { font-size: clamp(8rem, 42vw, 13rem); }
  .nexal-404__mark { right: 2%; bottom: 0; font-size: clamp(11rem, 56vw, 17rem); }
}
