:root {
  --green: #008c38;
  --green-bright: #13db63;
  --ink: #0f0e0e;
  --muted: rgba(15, 14, 14, 0.6);
  --soft: #f7f6f4;
  --soft-2: #f1f2f2;
  --line: rgba(0, 0, 0, 0.1);
  --edge: clamp(24px, 9.375vw, 180px);
  --wide: min(1560px, calc(100vw - var(--edge) * 2));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

html.is-smooth-scroll,
html.is-smooth-scroll body {
  min-height: 100%;
  overscroll-behavior-y: none;
}

body.is-smooth-scroll [data-scroll-container] {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

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

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

button {
  font: inherit;
}

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

main {
  position: relative;
  overflow: hidden;
  background: #fff;
  transform-origin: center top;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 120px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition:
    color 360ms ease,
    background 360ms ease,
    border-color 360ms ease,
    transform 520ms var(--ease-out),
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  color: #161616;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.site-header.is-hidden {
  transform: translate3d(0, -100%, 0);
}

.brand {
  position: relative;
  width: 142px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 260ms ease;
}

.brand-logo-color {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color {
  opacity: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.1vw, 60px);
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  transition: opacity 220ms ease, transform 260ms var(--ease-out), color 220ms ease;
}

.primary-nav a:hover {
  color: var(--green);
  opacity: 1;
  transform: translate3d(0, -2px, 0);
}

.primary-nav span {
  width: 16px;
  height: 16px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-button,
.language-button,
.touch-button {
  height: 49px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}

.search-button {
  width: 40px;
  background: transparent;
  position: relative;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 29px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.language-button {
  min-width: 66px;
  padding: 0 24px;
  background: #373737;
}

.touch-button {
  min-width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-bright);
  text-transform: capitalize;
}

.touch-button span,
.footer-button span,
.strip-cta span {
  width: 12px;
  height: 12px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.site-header.is-scrolled .search-button {
  color: #111;
}

.site-header.is-scrolled .language-button {
  background: #f0f0f0;
  color: #111;
}

.hero-section {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background: #f3f2f0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.hero-top-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(102, 102, 102, 0) 15.25%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: clamp(40px, 10.5vw, 202px);
  top: 399px;
  width: min(758px, calc(100vw - 80px));
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
}

.hero-copy h1 {
  margin: 36px 0 0;
  font-size: clamp(58px, 4.69vw, 90px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-subtitle {
  margin: 13px 0 0;
  font-size: clamp(22px, 1.67vw, 32px);
  line-height: 1.2;
  color: var(--muted);
  text-transform: capitalize;
}

.hero-features {
  display: inline-flex;
  align-items: center;
  gap: 31px;
  margin-top: 65px;
  font-size: 20px;
  color: var(--ink);
}

.hero-features span + span {
  position: relative;
}

.hero-features span + span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 20px;
  background: #020202;
  transform: translateY(-50%);
}

.product-strip {
  position: relative;
  z-index: 3;
  width: var(--wide);
  height: 90px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 116px 1fr 143px;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.strip-dots,
.catalog-heading button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.strip-dots span,
.catalog-heading button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  opacity: 0.45;
}

.strip-thumbs {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.strip-thumbs button {
  width: 90px;
  height: 90px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.strip-thumbs button:hover,
.strip-thumbs button.is-active {
  opacity: 1;
  transform: translate3d(0, -2px, 0);
}

.strip-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strip-cta {
  width: 143px;
  height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  justify-self: center;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-bright);
  border-radius: 4px;
  font-size: 14px;
}

.section-block {
  position: relative;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 1398px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 40px 0 0;
  font-size: clamp(42px, 3.54vw, 68px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

.section-heading > p:not(.eyebrow) {
  margin: 28px 0 0;
  font-size: clamp(20px, 1.67vw, 32px);
  line-height: 1.2;
  color: var(--muted);
}

.intro-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
}

.media-card {
  position: relative;
  width: var(--wide);
  margin: 94px auto 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
}

.life-card {
  height: min(820px, 52.6vw);
  min-height: 520px;
}

.media-card > img,
.wide-image-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 63%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.life-card > img,
.life-card .media-caption {
  transition:
    opacity 300ms ease,
    transform 460ms var(--ease-out),
    filter 360ms ease;
}

.life-card.is-scene-next > img,
.life-card.is-scene-prev > img {
  opacity: 0;
  filter: blur(8px);
}

.life-card.is-scene-next > img {
  transform: translate3d(-34px, 0, 0) scale(1.04);
}

.life-card.is-scene-prev > img {
  transform: translate3d(34px, 0, 0) scale(1.04);
}

.life-card.is-scene-next .media-caption,
.life-card.is-scene-prev .media-caption {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.life-card.is-scene-in > img {
  animation: lifeSceneImageIn 460ms var(--ease-out) both;
}

.life-card.is-scene-in .media-caption {
  animation: lifeSceneCaptionIn 420ms 80ms var(--ease-out) both;
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 60px;
  bottom: 58px;
  width: 621px;
  color: #fff;
}

.media-caption h3 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}

.media-caption p {
  margin: 0;
  max-width: 534px;
  font-size: 24px;
  line-height: 1.2;
  opacity: 0.8;
}

.media-arrows {
  position: absolute;
  z-index: 3;
  right: 60px;
  bottom: 60px;
  display: flex;
  gap: 10px;
}

.media-arrows button {
  width: 60px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.media-arrows img {
  width: 100%;
  height: 100%;
}

.muted-band {
  background: var(--soft);
}

.feature-section {
  padding-top: 100px;
  padding-bottom: 160px;
}

.feature-grid {
  width: var(--wide);
  margin: 94px auto 0;
  display: grid;
  grid-template-columns: 608fr 284fr 608fr;
  grid-template-rows: repeat(2, 480px);
  gap: 30px;
}

.feature-card:nth-child(1) {
  grid-column: 1;
}

.feature-card:nth-child(2) {
  grid-column: 2 / 4;
}

.feature-card:nth-child(3) {
  grid-column: 1 / 3;
}

.feature-card:nth-child(4) {
  grid-column: 3;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  padding: 60px 40px;
}

.feature-card h3 {
  margin: 0;
  max-width: 520px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}

.feature-card p {
  margin: 24px 0 0;
  max-width: 470px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.2;
}

.feature-card img {
  position: absolute;
  pointer-events: none;
}

.small-card img {
  right: 28px;
  bottom: -4px;
  width: min(420px, 68%);
}

.large-card img {
  right: 32px;
  bottom: -34px;
  width: min(570px, 62%);
}

.feature-card:nth-child(3) img {
  right: 34px;
  bottom: -156px;
  width: min(500px, 45%);
}

.feature-card img.warranty-badge {
  position: absolute;
  right: 64px;
  bottom: 60px;
  width: 220px;
  height: 160px;
  object-fit: contain;
  transform: rotate(-7deg);
}

.image-proof-section {
  padding-top: 20px;
  padding-bottom: 160px;
}

.durability-section {
  padding-top: 0;
}

.wide-image-card {
  width: var(--wide);
  height: min(680px, 43.6vw);
  min-height: 440px;
  margin: 74px auto 0;
  overflow: hidden;
  border-radius: 10px;
  background: #e7e7e7;
}

.modular-section {
  padding-top: 120px;
  padding-bottom: 160px;
  background: linear-gradient(180deg, #e8ebec, #dfe2e4);
  overflow: hidden;
}

.modular-stage {
  position: relative;
  width: var(--wide);
  min-height: 560px;
  margin: 70px auto 0;
}

.modular-main-card {
  position: absolute;
  left: 50%;
  top: 36px;
  width: min(539px, 42vw);
  transform: translateX(-50%);
  text-align: center;
}

.modular-main-card img {
  width: 100%;
  height: 339px;
  object-fit: contain;
}

.modular-main-card span {
  display: block;
  margin-top: 35px;
  font-size: 14px;
  font-weight: 500;
}

.modular-main-card strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.modular-side {
  position: absolute;
  top: 100px;
  width: 332px;
  height: 209px;
  object-fit: contain;
  opacity: 0.58;
  filter: saturate(0.5);
}

.modular-left {
  left: -25px;
}

.modular-right {
  right: -28px;
}

.modular-arrow {
  position: absolute;
  top: 214px;
  width: 40px;
  height: 82px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.modular-arrow::before {
  content: "";
  position: absolute;
  inset: 24px 11px;
  border-top: 2px solid #b5b9ba;
  border-left: 2px solid #b5b9ba;
}

.modular-arrow-left {
  left: 432px;
}

.modular-arrow-left::before {
  transform: rotate(-45deg);
}

.modular-arrow-right {
  right: 389px;
}

.modular-arrow-right::before {
  transform: rotate(135deg);
}

.module-picker {
  width: min(1098px, calc(100vw - var(--edge) * 2));
  min-height: 140px;
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: 238px 1fr;
  align-items: center;
  gap: 60px;
  padding: 20px 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.45);
}

.module-picker p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.module-options {
  display: flex;
  gap: 24px;
}

.module-options button {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.module-options button.is-active {
  border-color: var(--green);
}

.module-options img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reliability-section {
  padding: 0;
  background: #fff;
}

.reliability-surface {
  position: relative;
  padding: 120px 0 100px;
  background: var(--soft);
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.exploded-wrap {
  position: relative;
  width: min(1840px, calc(100vw - 80px));
  height: min(900px, 52vw);
  min-height: 560px;
  margin: 56px auto 0;
}

.exploded-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 106.7%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.callout {
  position: absolute;
  max-width: 260px;
  color: rgba(15, 14, 14, 0.75);
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.callout::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 1px;
  height: 80px;
  background: #65a9d8;
}

.callout-1 {
  left: 6%;
  bottom: 14%;
}

.callout-2 {
  left: 23%;
  bottom: 7%;
}

.callout-3 {
  left: 32%;
  top: 9%;
}

.callout-4 {
  right: 30%;
  bottom: 13%;
}

.callout-5 {
  right: 5%;
  bottom: 2%;
}

.reliability-panel {
  width: min(1840px, calc(100vw - 80px));
  min-height: 780px;
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 120px;
  padding: 100px 140px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.reliability-panel ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reliability-panel li {
  min-height: 100px;
  display: grid;
  align-items: center;
  padding: 18px 28px 18px 86px;
  position: relative;
  border-radius: 4px;
  background: #fff;
  color: rgba(0, 0, 0, 0.72);
  font-size: 20px;
  line-height: 1.28;
}

.reliability-panel li::before {
  content: "+";
  position: absolute;
  left: 37px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  font-weight: 500;
}

.reliability-panel > img {
  justify-self: center;
  width: min(520px, 42vw);
  filter: drop-shadow(61px 23px 84px rgba(0, 0, 0, 0.1));
}

.life-moments {
  padding: 150px 0 90px;
  background: #fff;
}

.life-moments-inner {
  width: var(--wide);
  margin: 0 auto;
}

.life-moments h2,
.catalog-section h2 {
  margin: 0;
  font-size: clamp(38px, 2.92vw, 56px);
  line-height: 1.2;
  font-weight: 500;
}

.moment-rail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 70px;
  overflow: hidden;
}

.moment-rail article {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.moment-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.moment-rail article:hover img {
  transform: scale(1.045);
}

.moment-rail span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.catalog-section {
  padding-top: 54px;
  padding-bottom: 140px;
  background: #fff;
}

.catalog-section > h2 {
  width: var(--wide);
  margin: 0 auto 72px;
}

.catalog-group {
  width: var(--wide);
  margin: 0 auto 86px;
}

.catalog-heading {
  height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  padding-top: 36px;
}

.catalog-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 40px 30px;
  margin-top: 70px;
}

.product-grid-short {
  grid-template-columns: repeat(4, minmax(0, 235px));
}

.product-grid article {
  text-align: center;
}

.product-grid article > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f4f4f4;
}

.product-grid h4 {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.product-grid p {
  margin: 10px auto 0;
  max-width: 235px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.site-footer {
  background: #f8f8f8;
}

.footer-main {
  width: min(1640px, calc(100vw - 80px));
  min-height: 491px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 160px 160px 160px 1fr;
  gap: 100px;
  align-items: start;
  padding: 100px 0 72px;
}

.footer-brand {
  width: 292px;
  height: 93px;
  display: block;
  overflow: hidden;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-socials {
  grid-column: 1;
  display: flex;
  gap: 32px;
  margin-top: 50px;
}

.footer-socials a {
  width: 54px;
  height: 54px;
  display: block;
}

.footer-col {
  display: grid;
  gap: 24px;
}

.footer-col h2,
.footer-contact h2 {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.footer-col a {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
}

.footer-contact {
  justify-self: end;
  width: 350px;
  text-align: right;
}

.footer-contact h2 {
  color: #030303;
  font-size: 24px;
  line-height: 1.3;
  text-transform: capitalize;
}

.footer-contact p {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 32px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-bright);
  border-radius: 4px;
  font-size: 16px;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  padding: 0 140px;
  background: #ebebeb;
  font-size: 16px;
}

[data-reveal] {
  --reveal-y: 78px;
  --reveal-scale: 0.985;
  --parallax-layer-y: 0px;
  --supply-motion-y: 0px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-layer-y) + var(--supply-motion-y)), 0) scale(var(--reveal-scale));
  filter: blur(10px);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out),
    filter 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  --reveal-y: 0px;
  --reveal-scale: 1;
  filter: blur(0);
}

.hero-copy [data-reveal]:nth-child(2) {
  --reveal-delay: 100ms;
}

.hero-copy [data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.hero-copy [data-reveal]:nth-child(4) {
  --reveal-delay: 260ms;
}

.product-grid article:nth-child(2n),
.feature-grid article:nth-child(2n),
.moment-rail article:nth-child(2n) {
  --reveal-delay: 90ms;
}

.product-grid article:nth-child(3n),
.feature-grid article:nth-child(3n),
.moment-rail article:nth-child(3n) {
  --reveal-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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

  .esg-word,
  .esg-intro-mark {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1280px) {
  .site-header {
    padding: 0 40px;
  }

  .primary-nav {
    gap: 24px;
    font-size: 15px;
  }

  .header-actions {
    gap: 8px;
  }

  .feature-card h3 {
    font-size: 26px;
  }

  .feature-card p {
    font-size: 19px;
  }

  .footer-main {
    grid-template-columns: 300px repeat(3, 140px) 1fr;
    gap: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --edge: 24px;
    --wide: calc(100vw - 48px);
  }

  body {
    background: #fff;
  }

  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .brand {
    width: 112px;
    height: 50px;
  }

  .primary-nav {
    display: none;
  }

  .search-button {
    display: none;
  }

  .language-button {
    min-width: 54px;
    height: 42px;
    padding: 0 16px;
  }

  .touch-button {
    min-width: 128px;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-section {
    height: 760px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    top: 180px;
    width: auto;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-features {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }

  .hero-features span + span::before {
    display: none;
  }

  .product-strip {
    height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    margin-top: 24px;
  }

  .strip-dots {
    display: none;
  }

  .strip-thumbs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .strip-cta {
    justify-self: start;
  }

  .section-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .intro-section,
  .feature-section,
  .image-proof-section,
  .modular-section {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .life-card,
  .wide-image-card {
    height: 58vw;
    min-height: 320px;
    margin-top: 44px;
  }

  .media-caption {
    left: 24px;
    right: 24px;
    bottom: 26px;
    width: auto;
  }

  .media-caption h3 {
    font-size: 24px;
  }

  .media-caption p {
    font-size: 16px;
  }

  .media-arrows {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
    margin-top: 52px;
  }

  .feature-card {
    padding: 34px 28px;
  }

  .small-card img,
  .large-card img,
  .feature-card:nth-child(3) img {
    width: 58%;
    right: 16px;
    bottom: 0;
  }

  .feature-card img.warranty-badge {
    right: 30px;
    bottom: 30px;
    width: 160px;
    height: 120px;
  }

  .modular-stage {
    min-height: 430px;
  }

  .modular-main-card {
    width: 72vw;
  }

  .modular-side,
  .modular-arrow {
    display: none;
  }

  .module-picker {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
  }

  .module-options {
    overflow-x: auto;
  }

  .reliability-surface {
    padding-top: 82px;
  }

  .exploded-wrap {
    width: var(--wide);
    height: 520px;
    min-height: 520px;
    overflow: hidden;
  }

  .exploded-image {
    width: 170%;
  }

  .callout {
    display: none;
  }

  .reliability-panel {
    width: var(--wide);
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 34px 24px;
    min-height: 0;
  }

  .reliability-panel li {
    min-height: 70px;
    padding-left: 70px;
    font-size: 16px;
  }

  .reliability-panel > img {
    width: min(360px, 80vw);
  }

  .life-moments {
    padding: 84px 0 64px;
  }

  .moment-rail {
    display: flex;
    overflow-x: auto;
    padding: 0 24px 12px;
    scroll-snap-type: x mandatory;
  }

  .moment-rail article {
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .product-grid,
  .product-grid-short {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
  }

  .footer-main {
    width: var(--wide);
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
    padding: 70px 0;
  }

  .footer-brand,
  .footer-socials,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact {
    justify-self: start;
    width: auto;
    text-align: left;
  }

  .footer-bottom {
    padding: 20px 24px;
    font-size: 13px;
  }
}

@supports selector(:has(*)) {
  .site-header:has(.primary-nav [data-nav-key]:hover),
  .site-header:has(.primary-nav [data-nav-key]:focus-visible),
  .site-header:has(.nav-dropdown:hover) {
    color: #161616;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(0);
  }

  .site-header:has(.primary-nav [data-nav-key]:hover) .logo-crop-color,
  .site-header:has(.primary-nav [data-nav-key]:focus-visible) .logo-crop-color,
  .site-header:has(.nav-dropdown:hover) .logo-crop-color {
    opacity: 1;
  }

  .site-header:has(.primary-nav [data-nav-key]:hover) .logo-crop-white,
  .site-header:has(.primary-nav [data-nav-key]:focus-visible) .logo-crop-white,
  .site-header:has(.nav-dropdown:hover) .logo-crop-white {
    opacity: 0;
  }

  .site-header:has([data-nav-key="story"]:hover) .nav-dropdown,
  .site-header:has([data-nav-key="story"]:focus-visible) .nav-dropdown,
  .site-header:has([data-nav-panel="story"]:hover) .nav-dropdown {
    height: 502px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-header:has([data-nav-key="partners"]:hover) .nav-dropdown,
  .site-header:has([data-nav-key="partners"]:focus-visible) .nav-dropdown,
  .site-header:has([data-nav-panel="partners"]:hover) .nav-dropdown,
  .site-header:has([data-nav-key="support"]:hover) .nav-dropdown,
  .site-header:has([data-nav-key="support"]:focus-visible) .nav-dropdown,
  .site-header:has([data-nav-panel="support"]:hover) .nav-dropdown {
    height: 292px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-header:has([data-nav-key="products"]:hover) .nav-dropdown,
  .site-header:has([data-nav-key="products"]:focus-visible) .nav-dropdown,
  .site-header:has([data-nav-panel="products"]:hover) .nav-dropdown {
    height: 604px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-header:has([data-nav-key="story"]:hover) [data-nav-panel="story"],
  .site-header:has([data-nav-key="story"]:focus-visible) [data-nav-panel="story"],
  .site-header:has([data-nav-panel="story"]:hover) [data-nav-panel="story"],
  .site-header:has([data-nav-key="products"]:hover) [data-nav-panel="products"],
  .site-header:has([data-nav-key="products"]:focus-visible) [data-nav-panel="products"],
  .site-header:has([data-nav-panel="products"]:hover) [data-nav-panel="products"],
  .site-header:has([data-nav-key="partners"]:hover) [data-nav-panel="partners"],
  .site-header:has([data-nav-key="partners"]:focus-visible) [data-nav-panel="partners"],
  .site-header:has([data-nav-panel="partners"]:hover) [data-nav-panel="partners"],
  .site-header:has([data-nav-key="support"]:hover) [data-nav-panel="support"],
  .site-header:has([data-nav-key="support"]:focus-visible) [data-nav-panel="support"],
  .site-header:has([data-nav-panel="support"]:hover) [data-nav-panel="support"] {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header {
    height: 80px;
    padding: 0 24px;
  }

  .brand {
    width: 142px;
    height: 62px;
  }

  .primary-nav {
    display: flex;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    margin-left: 20px;
    margin-right: 16px;
    gap: 10px;
    font-size: 13px;
  }

  .header-actions {
    position: relative;
    flex: 0 0 230px;
    width: 230px;
    height: 80px;
    display: block;
    margin-left: 0;
  }

  .icon-button {
    display: none;
  }

  .lang-button,
  .contact-button {
    position: absolute;
    top: 15px;
    height: 49px;
  }

  .lang-button {
    left: 0;
    min-width: 66px;
    padding: 0 24px;
  }

  .contact-button {
    left: 78px;
    width: 152px;
    min-width: 152px;
    padding: 14px 12px 14px 22px;
    gap: 16px;
    font-size: 14px;
  }

  .nav-dropdown {
    display: block;
  }

  .hero-section {
    height: 1000px;
  }

  .hero-copy {
    left: clamp(40px, 10.5208vw, 202px);
    top: 399px;
    width: min(758px, calc(100vw - 80px));
    height: 278px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-features {
    position: absolute;
    margin: 0;
  }

  .hero-copy .eyebrow {
    left: 0;
    right: 0;
    top: -8px;
  }

  .hero-copy h1 {
    left: 0;
    right: 0;
    top: 42px;
    font-size: clamp(58px, 4.6875vw, 90px);
  }

  .hero-subtitle {
    left: 0;
    right: 0;
    top: 132px;
  }

  .hero-features {
    left: 23.35%;
    top: 247px;
    display: inline-flex;
    flex-direction: row;
    gap: 78px;
    transform: none;
  }

  .hero-features span + span::before {
    display: block;
  }

  .product-strip {
    width: var(--wide);
    height: 90px;
    display: block;
    padding: 0;
    margin-top: 40px;
  }

  .strip-dots {
    position: absolute;
    left: 2.051%;
    top: 35px;
    display: inline-flex;
  }

  .strip-thumbs {
    position: absolute;
    left: 15.064%;
    top: 0;
    width: 69.872%;
    height: 90px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .strip-thumbs button {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
  }

  .strip-cta {
    position: absolute;
    right: 2.051%;
    top: 17px;
    width: 143px;
    height: 57px;
    justify-self: auto;
    font-size: 18px;
  }

  .modular-stage {
    height: 495px;
    min-height: 495px;
    margin-top: 0;
  }

  .modular-main-card {
    width: 539px;
  }

  .modular-side,
  .modular-arrow {
    display: block;
  }

  .modular-side {
    width: 240px;
    height: auto;
    top: 112px;
  }

  .modular-left {
    left: -48px;
  }

  .modular-right {
    right: -48px;
  }

  .modular-arrow {
    top: 165px;
  }

  .modular-arrow-left {
    left: 27.7%;
  }

  .modular-arrow-right {
    right: 24.9%;
  }

  .module-picker {
    width: var(--wide);
    height: 140px;
    min-height: 0;
    grid-template-columns: 210px 1fr;
    gap: 24px;
    margin-top: 36px;
    padding: 20px 24px;
    overflow: hidden;
  }

  .module-picker p {
    font-size: 16px;
    line-height: 1.3;
  }

  .module-options {
    display: flex;
    gap: 12px;
    overflow: visible;
  }

  .module-options button {
    width: 80px;
    height: 100px;
    flex: 0 0 80px;
    padding: 8px;
  }

  .module-options img {
    width: 100%;
    height: 100%;
    max-height: 84px;
    object-fit: contain;
  }
}

/* Reliability section rebuilt from the supplied reference screens. */
.reliability-surface {
  padding: 120px 0;
  background: #f4f4f4;
  border-radius: 0;
}

.exploded-wrap {
  width: min(1366px, calc(100vw - 80px));
  height: min(620px, 45.4vw);
  min-height: 520px;
  margin: 8px auto 120px;
  overflow: visible;
}

.exploded-image {
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 1366px;
  transform: translate(-50%, -50%);
}

.callout {
  display: block;
  max-width: 230px;
  color: #111;
  font-size: clamp(13px, 1.02vw, 16px);
  line-height: 1.12;
  font-weight: 400;
  text-align: center;
}

.callout::before {
  left: 50%;
  width: 1px;
  height: 70px;
  background: repeating-linear-gradient(to bottom, #147fb6 0 6px, transparent 6px 10px);
}

.callout::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #147fb6;
  transform: translateX(-50%);
}

.callout.is-line-up::before {
  top: auto;
  bottom: calc(100% + 18px);
}

.callout.is-line-up::after {
  bottom: calc(100% + 12px);
}

.callout.is-line-down::before {
  top: calc(100% + 18px);
  bottom: auto;
}

.callout.is-line-down::after {
  top: calc(100% + 12px);
}

.callout-1 {
  left: 5.1%;
  top: 68.1%;
  width: 190px;
}

.callout-2 {
  left: 24.1%;
  top: 74.9%;
  width: 190px;
}

.callout-3 {
  left: 35.2%;
  top: 17.4%;
  width: 205px;
}

.callout-4 {
  left: 37.5%;
  top: 60.7%;
  width: 210px;
}

.callout-5 {
  left: 55%;
  top: 17.6%;
  width: 230px;
}

.callout-6 {
  left: 53.2%;
  top: 68%;
  width: 190px;
}

.callout-7 {
  left: 75.7%;
  top: 15.9%;
  width: 230px;
}

.callout-8 {
  left: 62.4%;
  top: 85.4%;
  width: 220px;
}

.callout-9 {
  left: 84%;
  top: 78.8%;
  width: 220px;
}

.reliability-panel {
  width: min(1188px, calc(100vw - 96px));
  min-height: 520px;
  height: 520px;
  margin: 0 auto;
  grid-template-columns: 314px minmax(0, 1fr);
  gap: 120px;
  align-items: center;
  padding: 58px 0;
  border-radius: 0;
  background: transparent;
}

.reliability-panel ul {
  gap: 14px;
}

.reliability-panel li {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.reliability-panel li::before {
  content: none;
}

.reliability-panel button {
  width: 314px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: #111;
  text-align: left;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 240ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    color 240ms ease;
}

.reliability-panel button::before {
  content: "+";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.reliability-panel button:hover,
.reliability-panel button.is-active {
  background: #fff;
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.reliability-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.reliability-visual img {
  position: absolute;
  width: 2200px;
  max-width: none;
  height: auto;
  will-change: transform;
  filter: drop-shadow(52px 36px 80px rgba(0, 0, 0, 0.12));
  transition:
    opacity 320ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
}

.reliability-panel.part-panel .reliability-visual img {
  transform: translate3d(-105px, -230px, 0) scale(1.02);
}

.reliability-panel.part-spacer .reliability-visual img {
  transform: translate3d(-540px, -390px, 0) scale(1.05);
}

.reliability-panel.part-metal .reliability-visual img {
  transform: translate3d(-840px, -520px, 0) scale(1.52);
}

.reliability-panel.part-contact .reliability-visual img {
  transform: translate3d(-1470px, -860px, 0) scale(1.45);
}

.reliability-panel.part-terminal .reliability-visual img {
  transform: translate3d(-1680px, -940px, 0) scale(1.36);
}

.reliability-panel.is-part-in .reliability-visual img {
  animation: reliabilityPartIn 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reliabilityPartIn {
  from {
    opacity: 0;
    filter: blur(8px) drop-shadow(52px 36px 80px rgba(0, 0, 0, 0.06));
  }
  to {
    opacity: 1;
    filter: blur(0) drop-shadow(52px 36px 80px rgba(0, 0, 0, 0.12));
  }
}

@media (min-width: 901px) {
  .site-header {
    height: 80px;
    padding: 0 clamp(120px, 9vw, 184px);
    color: #fff;
    background: rgba(22, 22, 22, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled {
    color: #161616;
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }

  .brand {
    width: 153px;
    height: 42px;
  }

  .primary-nav {
    flex: 0 0 680px;
    width: 680px;
    margin-left: auto;
    margin-right: 60px;
    justify-content: space-between;
    gap: 0;
    color: currentColor;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
  }

  .primary-nav a {
    gap: 8px;
    opacity: 0.96;
  }

  .primary-nav a::after {
    top: 29px;
  }

  .nav-caret {
    width: 9px;
    height: 9px;
    display: inline-block;
    flex: 0 0 9px;
    overflow: visible;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.9;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .primary-nav a:hover .nav-caret,
  .primary-nav a.is-active .nav-caret {
    opacity: 1;
    transform: translateY(2px) rotate(225deg);
  }

  .header-actions {
    flex: 0 0 314px;
    width: 314px;
    height: 80px;
  }

  .icon-button {
    left: 0;
    top: 24px;
    width: 32px;
    height: 32px;
    color: currentColor;
  }

  .icon-button span {
    width: 20px;
    height: 20px;
    border-width: 2.2px;
  }

  .icon-button span::after {
    width: 9px;
    height: 2.2px;
    right: -8px;
    bottom: -4px;
  }

  .lang-button,
  .contact-button {
    top: 14px;
    height: 52px;
    border-radius: 4px;
  }

  .lang-button {
    left: 66px;
    min-width: 70px;
    padding: 0 24px;
    background: rgba(46, 46, 48, 0.86);
    font-size: 14px;
    font-weight: 500;
  }

  .contact-button {
    left: 150px;
    width: 164px;
    min-width: 164px;
    justify-content: center;
    gap: 16px;
    padding: 0 18px;
    background: #009540;
    border-color: #0bbb58;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
  }

  .contact-button span {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 760px) {
  .primary-nav,
  .icon-button,
  .nav-dropdown {
    display: none;
  }
}

@media (max-width: 520px) {
  .touch-button {
    display: none;
  }

  .feature-grid {
    grid-auto-rows: 340px;
  }

  .product-grid,
  .product-grid-short {
    grid-template-columns: 1fr;
  }
}

/* Restored homepage header/footer system and Figma-aligned opening screens. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--edge);
  color: #fff;
  background: transparent;
  border-bottom: 0;
  transform: translateY(0);
  overflow: visible;
  transition:
    transform 520ms var(--ease-out),
    background 360ms ease,
    color 360ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  color: #161616;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-menu-open {
  color: #161616;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(0);
}

.brand {
  display: block;
  width: 142px;
  height: 62px;
  position: relative;
  overflow: hidden;
}

.brand-nav {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 auto;
}

.logo-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  pointer-events: none;
  max-width: none;
}

.brand-nav .logo-crop-white img {
  width: 180.11%;
  height: 236.51%;
  left: -40.05%;
  top: -68.25%;
}

.brand-nav .logo-crop-color img {
  width: 201.31%;
  height: 361.4%;
  left: -50.65%;
  top: -130.7%;
}

.brand-nav .logo-crop img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

.logo-crop-color {
  opacity: 0;
  transition: opacity 260ms ease;
}

.site-header.is-scrolled .logo-crop-color,
.site-header.is-menu-open .logo-crop-color {
  opacity: 1;
}

.site-header.is-scrolled .logo-crop-white,
.site-header.is-menu-open .logo-crop-white {
  opacity: 0;
}

.primary-nav {
  position: relative;
  left: auto;
  top: auto;
  width: min(637px, calc(100vw - var(--edge) * 2 - 496px));
  margin-left: auto;
  margin-right: clamp(22px, 2.6vw, 50px);
  flex: 0 1 637px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.2vw, 32px);
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  opacity: 0.94;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transform: translate3d(-50%, 6px, 0) scale(0.6);
  transition: opacity 220ms ease, transform 260ms var(--ease-out);
}

.primary-nav a.is-active::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.primary-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-caret {
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  transform: none;
}

.header-actions {
  position: relative;
  right: auto;
  top: auto;
  flex: 0 0 298px;
  width: 298px;
  height: 80px;
  display: block;
}

.icon-button,
.lang-button,
.contact-button {
  position: absolute;
  height: 49px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 55, 55, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .lang-button,
.site-header.is-menu-open .icon-button,
.site-header.is-menu-open .lang-button {
  background: #f3f3f3;
  color: #121212;
}

.icon-button {
  left: 0;
  top: 25px;
  width: 29px;
  height: 29px;
  border: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
}

.icon-button span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-button span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.lang-button {
  left: 66px;
  top: 15px;
  min-width: 66px;
  padding: 0 24px;
  font-size: 14px;
  cursor: pointer;
}

.contact-button {
  left: 144px;
  top: 15px;
  width: 154px;
  min-width: 154px;
  justify-content: flex-start;
  gap: 18px;
  padding: 14px 12px 14px 24px;
  background: rgba(0, 140, 56, 0.92);
  border-color: #1dd366;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  white-space: nowrap;
}

.contact-button span,
.button-arrow {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: url("assets/nav-arrow.svg") center / contain no-repeat;
  transform: rotate(180deg);
}

.contact-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  color: #000;
  transform: translate3d(0, -18px, 0);
  transition:
    height 620ms var(--ease-out),
    opacity 260ms ease,
    transform 620ms var(--ease-out);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-menu-open .nav-dropdown {
  height: var(--nav-dropdown-height, 264px);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-panel {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--nav-dropdown-height, 264px);
  max-width: 1920px;
  margin: 0 auto;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -16px, 0);
  transition: opacity 260ms ease, transform 520ms var(--ease-out);
}

.nav-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-panel-simple {
  padding: 60px 120px 60px var(--nav-simple-left, 582px);
}

.nav-panel-partners {
  padding-left: var(--nav-simple-left, 915px);
}

.nav-panel-support {
  padding-left: var(--nav-simple-left, 1067px);
}

.nav-simple-list {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.nav-feature-link {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  color: #000;
  transform: translate3d(0, 10px, 0);
  opacity: 0;
  transition: color 220ms ease, opacity 360ms ease, transform 520ms var(--ease-out);
}

.nav-panel.is-active .nav-feature-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-panel.is-active .nav-feature-link:nth-child(2) {
  transition-delay: 70ms;
}

.nav-feature-link:hover {
  color: var(--green);
}

.nav-feature-link img {
  width: 36px;
  height: 23px;
  opacity: 0;
  transform: translate3d(-16px, 0, 0);
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

.nav-feature-link:hover img,
.nav-feature-link:focus-visible img {
  opacity: 1;
  transform: translate3d(6px, 0, 0);
}

.nav-panel-products {
  --nav-products-sidebar: 432px;
  display: grid;
  grid-template-columns: var(--nav-products-sidebar) 1fr;
  height: 604px;
}

.nav-product-sidebar {
  padding: 40px 0 0 120px;
  display: grid;
  gap: 50px;
  align-content: start;
}

.nav-product-sidebar p,
.nav-product-content > p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.nav-product-sidebar div {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.nav-product-sidebar button {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: color 220ms ease, opacity 360ms ease, transform 520ms var(--ease-out);
}

.nav-panel.is-active .nav-product-sidebar button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-product-sidebar button:nth-of-type(2),
.nav-product-sidebar div:nth-child(2) button:nth-of-type(1) {
  transition-delay: 50ms;
}

.nav-product-sidebar button:nth-of-type(3),
.nav-product-sidebar div:nth-child(2) button:nth-of-type(2) {
  transition-delay: 100ms;
}

.nav-product-sidebar button:nth-of-type(4) {
  transition-delay: 150ms;
}

.nav-product-sidebar button.is-active,
.nav-product-sidebar button:hover,
.nav-product-sidebar button:focus-visible {
  color: var(--green);
}

.nav-product-sidebar img {
  width: 20px;
  height: auto;
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

.nav-product-sidebar button.is-active img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-product-sidebar button:hover img,
.nav-product-sidebar button:focus-visible img {
  opacity: 1;
  transform: translate3d(4px, 0, 0);
}

.nav-product-content {
  position: relative;
  padding: 40px 70px 86px 40px;
  background: rgba(242, 248, 244, 0.84);
  overflow: hidden;
}

.nav-product-content.has-overflow-cards {
  --nav-product-peek: 68px;
  padding-right: 0;
}

.nav-product-cards {
  --nav-product-card-basis: calc((100% - 60px) / 4);
  display: flex;
  gap: 20px;
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-product-content.has-overflow-cards .nav-product-cards {
  --nav-product-card-basis: calc((100% - var(--nav-product-peek) - 60px) / 4);
}

.nav-product-cards.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.nav-product-cards.is-draggable {
  cursor: grab;
}

.nav-product-cards::-webkit-scrollbar {
  display: none;
}

.nav-product-card {
  position: relative;
  flex: 0 0 var(--nav-product-card-basis);
  min-width: 260px;
  height: 428px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  isolation: isolate;
  scroll-snap-align: start;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 420ms ease, transform 560ms var(--ease-out);
}

.nav-panel.is-active .nav-product-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-panel.is-active .nav-product-card:nth-child(2) {
  transition-delay: 70ms;
}

.nav-panel.is-active .nav-product-card:nth-child(3) {
  transition-delay: 140ms;
}

.nav-panel.is-active .nav-product-card:nth-child(4) {
  transition-delay: 210ms;
}

.nav-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.32));
  transition: opacity 260ms ease;
}

.nav-product-card:hover::after {
  opacity: 0.72;
}

.nav-product-card.nav-product-card-light {
  color: #101010;
}

.nav-product-card.nav-product-card-light::after {
  opacity: 0;
}

.nav-product-card.nav-product-card-light:hover::after {
  opacity: 0.08;
}

.nav-product-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease, transform 680ms var(--ease-out);
}

.nav-product-card:hover > img {
  transform: scale(1.045);
}

.nav-product-card.is-switching > img {
  opacity: 0.46;
  transform: scale(1.025);
}

.nav-product-card strong {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 40px;
  width: 230px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
}

.nav-product-card span {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  width: 52px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-product-card span img {
  width: 52px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

.nav-panel.is-active .nav-product-card span img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-product-card:hover span img,
.nav-product-card:focus-visible span img {
  opacity: 1;
  transform: translate3d(6px, 0, 0);
}

.nav-product-controls {
  position: absolute;
  right: clamp(40px, 6.25vw, 120px);
  bottom: 26px;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-product-content.has-overflow-cards .nav-product-controls {
  display: flex;
}

.nav-product-control {
  width: 60px;
  height: 40px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-product-control:hover,
.nav-product-control:focus-visible {
  background: #f4f4f4;
  transform: translateY(-1px);
}

.nav-product-control:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.nav-product-control img {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.hero-copy {
  left: clamp(40px, 10.5208vw, 202px);
  top: 399px;
  width: min(758px, calc(100vw - 80px));
  height: 278px;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-subtitle,
.hero-features {
  position: absolute;
  margin: 0;
}

.hero-copy .eyebrow {
  left: 0;
  right: 0;
  top: -8px;
  font-size: 24px;
  line-height: 1;
}

.hero-copy h1 {
  left: 0;
  right: 0;
  top: 42px;
  font-size: clamp(58px, 4.6875vw, 90px);
  line-height: 1.2;
}

.hero-subtitle {
  left: 0;
  right: 0;
  top: 132px;
  font-size: clamp(22px, 1.6667vw, 32px);
  line-height: 1.2;
}

.hero-features {
  left: 23.35%;
  top: 247px;
  transform: none;
  gap: 78px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-features span + span::before {
  left: -39px;
  height: 20px;
}

.product-strip {
  width: min(1560px, calc(100vw - var(--edge) * 2));
  height: 90px;
  margin: 40px auto 0;
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.strip-dots {
  position: absolute;
  left: 2.051%;
  top: 35px;
  width: 116px;
  height: 20px;
}

.strip-dots span {
  width: 7px;
  height: 7px;
  background: #111;
  opacity: 0.45;
}

.strip-thumbs {
  position: absolute;
  left: 15.064%;
  top: 0;
  width: 69.872%;
  height: 90px;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
}

.strip-thumbs button {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  opacity: 0.16;
}

.strip-thumbs button:hover {
  opacity: 0.62;
  transform: translate3d(0, -1px, 0);
}

.strip-thumbs button.is-active {
  opacity: 1;
  transform: none;
}

.strip-cta {
  position: absolute;
  right: 2.051%;
  top: 17px;
  width: 143px;
  height: 57px;
  gap: 16px;
  justify-self: auto;
  font-size: 18px;
  line-height: 1.2;
}

.strip-cta span {
  width: 12px;
  height: 12px;
}

.intro-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.intro-section .section-heading {
  height: 286px;
}

.intro-section .section-heading .eyebrow,
.intro-section .section-heading h2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.intro-section .section-heading .eyebrow {
  top: 0;
}

.intro-section .section-heading h2 {
  top: 57px;
}

.intro-section .media-card {
  margin-top: 0;
}

.life-card {
  height: min(820px, 52.6vw);
  min-height: 520px;
}

.site-footer {
  background: #f8f8f8;
}

.footer-main {
  width: min(1640px, calc(100vw - 80px));
  min-height: 491px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 160px 160px 160px 1fr;
  gap: 100px;
  align-items: start;
  padding: 100px 0 72px;
}

.footer-brand {
  width: 292px;
  height: 93px;
  display: block;
  overflow: hidden;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-col {
  display: grid;
  gap: 24px;
}

.footer-col h2,
.footer-contact h2 {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.footer-col a {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
}

.footer-contact {
  justify-self: end;
  width: 350px;
  text-align: right;
}

.footer-contact h2 {
  color: #030303;
  font-size: 24px;
  line-height: 1.3;
  text-transform: capitalize;
}

.footer-contact p {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: transform 220ms ease, background 220ms ease;
}

.button-green {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-bright);
}

.socials {
  grid-column: 1;
  display: flex;
  gap: 32px;
  margin-top: -180px;
  align-self: end;
}

.socials a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 20px;
  font-weight: 500;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  padding: 0 140px;
  background: #ebebeb;
  font-size: 16px;
}

@media (max-width: 1280px) {
  .site-header {
    padding: 0 40px;
  }

  .footer-main {
    grid-template-columns: 300px repeat(3, 140px) 1fr;
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .brand {
    width: 112px;
    height: 50px;
  }

  .primary-nav,
  .icon-button,
  .nav-dropdown {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
    width: auto;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lang-button,
  .contact-button {
    position: relative;
    left: auto;
    top: auto;
    height: 42px;
  }

  .lang-button {
    min-width: 54px;
    padding: 0 16px;
  }

  .contact-button {
    width: 128px;
    min-width: 128px;
    padding: 0 16px;
    gap: 10px;
    font-size: 13px;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    top: 180px;
    width: auto;
    height: auto;
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-features {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .hero-copy h1 {
    margin-top: 30px;
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-subtitle {
    margin-top: 16px;
  }

  .hero-features {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }

  .hero-features span + span::before {
    display: none;
  }

  .product-strip {
    width: var(--wide);
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    margin-top: 24px;
  }

  .strip-dots {
    display: none;
  }

  .strip-thumbs {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .strip-cta {
    position: relative;
    right: auto;
    top: auto;
    justify-self: start;
    font-size: 14px;
  }

  .intro-section .section-heading {
    height: auto;
  }

  .intro-section .section-heading .eyebrow,
  .intro-section .section-heading h2 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .intro-section .section-heading h2 {
    margin-top: 40px;
  }

  .intro-section .media-card {
    margin-top: 44px;
  }

  .footer-main {
    width: var(--wide);
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
    padding: 70px 0;
  }

  .footer-brand,
  .socials,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .socials {
    margin-top: 0;
  }

  .footer-contact {
    justify-self: start;
    width: auto;
    text-align: left;
  }

  .footer-bottom {
    padding: 20px 24px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .contact-button {
    display: none;
  }
}

/* Figma precision fixes for commented product-detail sections. */
.media-arrows button {
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

.media-arrows button:hover {
  transform: translateY(-2px);
}

.feature-section .section-heading {
  height: 286px;
}

.feature-section .section-heading .eyebrow,
.feature-section .section-heading h2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.feature-section .section-heading .eyebrow {
  top: 0;
}

.feature-section .section-heading h2 {
  top: 57px;
}

.feature-grid {
  margin-top: 0;
}

.small-card img {
  left: 162px;
  top: 136px;
  right: auto;
  bottom: auto;
  width: 446px;
  height: 337px;
  object-fit: contain;
}

.large-card img {
  left: 411px;
  top: 90px;
  right: auto;
  bottom: auto;
  width: 493px;
  height: 372px;
  object-fit: contain;
}

.feature-card:nth-child(3) img {
  left: 585px;
  top: -164px;
  right: auto;
  bottom: auto;
  width: 501px;
  height: 667px;
  object-fit: contain;
}

.feature-card img.warranty-badge {
  left: 248px;
  top: 191px;
  right: auto;
  bottom: auto;
  width: 314px;
  height: 229px;
  transform: none;
}

.modular-section .section-heading {
  height: 220px;
}

.modular-section .section-heading .eyebrow,
.modular-section .section-heading h2,
.modular-section .section-heading > p:not(.eyebrow) {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.modular-section .section-heading .eyebrow {
  top: 0;
}

.modular-section .section-heading h2 {
  top: 57px;
}

.modular-section .section-heading > p:not(.eyebrow) {
  top: 154px;
}

.modular-stage {
  height: 495px;
  min-height: 495px;
  margin-top: 0;
}

.modular-main-card {
  top: 36px;
  width: 539px;
  pointer-events: none;
  transition: opacity 260ms ease, transform 360ms var(--ease-out), filter 360ms ease;
}

.modular-composite {
  position: relative;
  width: 539px;
  height: 339px;
  margin: 0 auto;
  overflow: hidden;
}

.modular-main-card .modular-base-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modular-main-card .modular-insert-image {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 18.5%;
  height: 66%;
  object-fit: contain;
  opacity: 0.94;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease-out),
    filter 420ms ease;
}

.modular-stage.insert-dimmer .modular-main-card .modular-insert-image {
  width: 19.2%;
  height: 67%;
}

.modular-stage.insert-usb .modular-main-card .modular-insert-image {
  width: 18%;
  height: 68%;
}

.modular-stage.insert-wide .modular-main-card .modular-insert-image {
  width: 24%;
  height: 52%;
}

.modular-stage.is-insert-in .modular-main-card .modular-insert-image {
  animation: moduleInsertIn 420ms var(--ease-out) both;
}

.modular-stage.is-sliding-next .modular-main-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(calc(-50% - 72px)) scale(0.96);
}

.modular-stage.is-sliding-prev .modular-main-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(calc(-50% + 72px)) scale(0.96);
}

.modular-stage.is-sliding-in .modular-main-card {
  animation: modularCardIn 420ms var(--ease-out) both;
}

.modular-side {
  top: 101px;
  opacity: 0.42;
  filter: saturate(0.35);
  transition: opacity 300ms ease, transform 420ms var(--ease-out);
}

.modular-arrow {
  top: 165px;
  z-index: 8;
  pointer-events: auto;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.modular-arrow:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}

.modular-arrow:active {
  transform: translateY(0) scale(0.96);
}

.modular-arrow::before {
  inset: 25px 10px;
  border-top: 2px solid #aeb4b6;
  border-left: 2px solid #aeb4b6;
}

.module-picker {
  width: min(1098px, calc(100vw - var(--edge) * 2));
  height: 140px;
  min-height: 0;
  margin: 36px auto 0;
  grid-template-columns: 238px 1fr;
  gap: 60px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.3);
}

.module-options {
  gap: 24px;
}

.module-options button {
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 220ms ease, transform 220ms var(--ease-out), background 220ms ease;
}

.module-options button:hover,
.module-options button.is-active {
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
}

.reliability-surface {
  padding: 120px 0 100px;
  border-radius: 0;
  background: #f2f4f4;
}

.reliability-surface .section-heading {
  height: 296px;
}

.reliability-surface .section-heading .eyebrow,
.reliability-surface .section-heading h2,
.reliability-surface .section-heading > p:not(.eyebrow) {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.reliability-surface .section-heading .eyebrow {
  top: 0;
}

.reliability-surface .section-heading h2 {
  top: 57px;
}

.reliability-surface .section-heading > p:not(.eyebrow) {
  top: 236px;
}

.exploded-wrap {
  width: 100%;
  height: 999px;
  min-height: 999px;
  margin: -80px auto 0;
  overflow: visible;
}

.exploded-image {
  left: 50%;
  top: 0;
  width: min(2048px, 106.667vw);
  max-width: none;
  transform: translateX(calc(-50% - 40px));
}

.callout {
  max-width: 316px;
  font-size: 20px;
  line-height: 1.3;
}

.callout::before {
  top: -132px;
  bottom: auto;
  height: 115px;
}

.callout-1 {
  left: calc(50% - 843px);
  top: 669px;
  bottom: auto;
  width: 290px;
}

.callout-2 {
  left: calc(50% - 511px);
  top: 716px;
  bottom: auto;
  width: 236px;
}

.callout-3 {
  left: calc(50% - 350px);
  top: 176px;
  width: 238px;
}

.callout-4 {
  left: calc(50% - 18px);
  top: 658px;
  right: auto;
  bottom: auto;
  width: 212px;
}

.callout-5 {
  left: calc(50% + 610px);
  top: 798px;
  right: auto;
  bottom: auto;
  width: 212px;
}

.reliability-panel {
  width: min(1840px, calc(100vw - 80px));
  height: 780px;
  min-height: 780px;
  margin: 0 auto;
  grid-template-columns: 440px 1fr;
  gap: 120px;
  padding: 100px 140px;
  background: rgba(255, 255, 255, 0.72);
}

.reliability-panel > img {
  justify-self: end;
  width: 509px;
  margin-right: 187px;
}

.catalog-heading button {
  width: 68px;
  height: 20px;
  gap: 4px;
}

.catalog-heading button span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.55);
}

.catalog-heading button span:nth-child(1) {
  background: linear-gradient(145deg, #f4f0e8, #d7c9a6);
}

.catalog-heading button span:nth-child(2) {
  background: linear-gradient(145deg, #3b3f40, #121515);
}

.catalog-heading button span:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #dcdcdc);
}

.life-moments {
  overflow: hidden;
}

.moment-rail {
  display: flex;
  grid-template-columns: none;
  gap: clamp(20px, 1.725vw, 33px);
  width: max-content;
  margin-top: 70px;
  overflow: visible;
  will-change: transform;
}

.moment-rail.is-auto {
  animation: momentRail 34s linear infinite;
}

.moment-rail:hover {
  animation-play-state: paused;
}

.moment-rail article {
  flex: 0 0 clamp(300px, 29.345vw, 563px);
  width: clamp(300px, 29.345vw, 563px);
  height: clamp(220px, 18.125vw, 348px);
}

@keyframes modularCardIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(calc(-50% + var(--modular-enter, 72px))) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1);
  }
}

@keyframes lifeSceneImageIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(var(--life-enter, 34px), 0, 0) scale(1.04);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}

@keyframes lifeSceneCaptionIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes moduleInsertIn {
  from {
    opacity: 0;
    filter: blur(8px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.04));
    transform: translate(calc(-50% + var(--insert-enter, 26px)), -50%) scale(0.92);
  }
  to {
    opacity: 0.94;
    filter: blur(0) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes momentRail {
  from {
    transform: translate3d(calc(-50vw + 171px), 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 50vw + 171px), 0, 0);
  }
}

@media (max-width: 900px) {
  .feature-section .section-heading,
  .modular-section .section-heading,
  .reliability-surface .section-heading {
    height: auto;
  }

  .feature-section .section-heading .eyebrow,
  .feature-section .section-heading h2,
  .modular-section .section-heading .eyebrow,
  .modular-section .section-heading h2,
  .modular-section .section-heading > p:not(.eyebrow),
  .reliability-surface .section-heading .eyebrow,
  .reliability-surface .section-heading h2,
  .reliability-surface .section-heading > p:not(.eyebrow) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .feature-section .section-heading h2,
  .modular-section .section-heading h2,
  .reliability-surface .section-heading h2 {
    margin-top: 40px;
  }

  .feature-section .section-heading > p:not(.eyebrow),
  .modular-section .section-heading > p:not(.eyebrow),
  .reliability-surface .section-heading > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .small-card img,
  .large-card img,
  .feature-card:nth-child(3) img,
  .feature-card img.warranty-badge {
    left: auto;
    top: auto;
    right: 24px;
    bottom: 20px;
    width: min(320px, 70%);
    height: auto;
  }

  .modular-stage {
    height: 430px;
    min-height: 430px;
    margin-top: 32px;
  }

  .module-picker {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
  }

  .exploded-wrap {
    width: var(--wide);
    height: 520px;
    min-height: 520px;
    margin-top: 44px;
    overflow: hidden;
  }

  .exploded-image {
    width: 170%;
    transform: translateX(-50%);
  }

  .reliability-panel {
    width: var(--wide);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .reliability-panel > img {
    justify-self: center;
    width: min(360px, 80vw);
    margin-right: 0;
  }

  .moment-rail {
    padding: 0;
  }

  .moment-rail article {
    flex-basis: 72vw;
    width: 72vw;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header {
    height: 80px;
    padding: 0 58px;
  }

  .brand {
    width: 124px;
    height: 44px;
  }

  .primary-nav {
    display: flex;
    flex: 0 0 370px;
    width: 370px;
    min-width: 0;
    margin-left: 16px;
    margin-right: 16px;
    justify-content: space-between;
    gap: 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .primary-nav a {
    gap: 6px;
  }

  .nav-caret {
    width: 7px;
    height: 7px;
    display: inline-block;
    flex: 0 0 7px;
    overflow: visible;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    opacity: 0.9;
    transform: translateY(-2px) rotate(45deg);
  }

  .header-actions {
    position: relative;
    flex: 0 0 213px;
    width: 213px;
    height: 80px;
    display: block;
    margin-left: 0;
  }

  .icon-button {
    display: inline-flex;
    left: 0;
    top: 25px;
    width: 28px;
    height: 28px;
  }

  .icon-button span {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .icon-button span::after {
    width: 8px;
    height: 2px;
    right: -7px;
    bottom: -4px;
  }

  .lang-button,
  .contact-button {
    position: absolute;
    top: 14px;
    height: 52px;
  }

  .lang-button {
    left: 46px;
    min-width: 54px;
    padding: 0 16px;
    font-size: 13px;
  }

  .contact-button {
    left: 112px;
    width: 101px;
    min-width: 101px;
    padding: 0 12px;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
  }

  .nav-dropdown {
    display: block;
  }

  .hero-section {
    height: 1000px;
  }

  .hero-copy {
    left: 36px;
    top: 268px;
    right: auto;
    width: min(758px, calc(100vw - 72px));
    height: 278px;
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-features {
    position: absolute;
    left: 0;
    right: auto;
    margin: 0;
    transform: none;
  }

  .hero-copy .eyebrow {
    top: 0;
    font-size: 24px;
  }

  .hero-copy h1 {
    top: 64px;
    font-size: clamp(58px, 8vw, 72px);
    line-height: 1.06;
  }

  .hero-subtitle {
    top: 164px;
    font-size: clamp(24px, 3.2vw, 32px);
  }

  .hero-features {
    top: 250px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 58px;
    font-size: 20px;
  }

  .hero-features span + span::before {
    display: block;
    left: -29px;
    height: 20px;
  }

  .product-strip {
    width: var(--wide);
    height: 90px;
    display: block;
    padding: 0;
    margin-top: 40px;
    overflow: hidden;
  }

  .strip-dots {
    position: absolute;
    left: 20px;
    top: 35px;
    width: 116px;
    height: 20px;
    display: inline-flex;
  }

  .strip-dots span {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.55);
  }

  .strip-dots span:nth-child(1) {
    background: linear-gradient(145deg, #f4f0e8, #d7c9a6);
  }

  .strip-dots span:nth-child(2) {
    background: linear-gradient(145deg, #3b3f40, #121515);
  }

  .strip-dots span:nth-child(3) {
    background: linear-gradient(145deg, #ffffff, #dcdcdc);
  }

  .strip-thumbs {
    position: absolute;
    left: 150px;
    right: 178px;
    top: 0;
    width: auto;
    height: 90px;
    display: flex;
    gap: 4px;
    justify-content: space-between;
    overflow: hidden;
  }

  .strip-thumbs button {
    width: calc((100% - 40px) / 11);
    height: 90px;
    flex: 0 0 calc((100% - 40px) / 11);
    min-width: 0;
  }

  .strip-cta {
    position: absolute;
    right: 20px;
    top: 17px;
    width: 143px;
    height: 57px;
    justify-self: auto;
    font-size: 18px;
  }

  .small-card img {
    left: 26.6%;
    top: 28.3%;
    right: auto;
    bottom: auto;
    width: 73.4%;
    height: auto;
  }

  .large-card img {
    left: 44.6%;
    top: 18.75%;
    right: auto;
    bottom: auto;
    width: 53.5%;
    height: auto;
  }

  .feature-card:nth-child(3) h3,
  .feature-card:nth-child(3) p {
    max-width: 54%;
  }

  .feature-card:nth-child(3) img {
    left: 63.5%;
    top: -34.2%;
    right: auto;
    bottom: auto;
    width: 54.3%;
    height: auto;
  }

  .feature-card img.warranty-badge {
    left: 40.8%;
    top: 39.8%;
    right: auto;
    bottom: auto;
    width: 51.6%;
    height: auto;
    transform: none;
  }

  .modular-stage {
    height: 495px;
    min-height: 495px;
    margin-top: 0;
  }

  .modular-main-card {
    width: 539px;
  }

  .modular-side,
  .modular-arrow {
    display: block;
  }

  .modular-side {
    width: 240px;
    top: 112px;
  }

  .modular-left {
    left: -48px;
  }

  .modular-right {
    right: -48px;
  }

  .modular-arrow {
    top: 165px;
  }

  .modular-arrow-left {
    left: 27.7%;
  }

  .modular-arrow-right {
    right: 24.9%;
  }

  .module-picker {
    width: var(--wide);
    height: 140px;
    min-height: 0;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding: 20px 24px;
    overflow: hidden;
  }

  .module-picker p {
    font-size: 16px;
    line-height: 1.3;
  }

  .module-options {
    display: flex;
    gap: 12px;
    overflow: visible;
  }

  .module-options button {
    width: 80px;
    height: 100px;
    flex: 0 0 80px;
    padding: 8px;
  }

  .module-options img {
    width: 100%;
    height: 100%;
    max-height: 84px;
    object-fit: contain;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .reliability-surface {
    padding: 92px 0 88px;
  }

  .reliability-surface .section-heading {
    position: relative;
    height: 238px;
  }

  .reliability-surface .section-heading .eyebrow,
  .reliability-surface .section-heading h2,
  .reliability-surface .section-heading > p:not(.eyebrow) {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
  }

  .reliability-surface .section-heading .eyebrow {
    top: 0;
  }

  .reliability-surface .section-heading h2 {
    top: 42px;
    font-size: 48px;
    line-height: 1.18;
  }

  .reliability-surface .section-heading > p:not(.eyebrow) {
    top: 174px;
    font-size: 22px;
  }

  .exploded-wrap {
    width: var(--wide);
    height: 374px;
    min-height: 374px;
    margin: 8px auto 72px;
    overflow: visible;
  }

  .exploded-image {
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }

  .callout {
    display: block;
    max-width: 136px;
    font-size: 10px;
    line-height: 1.16;
  }

  .callout::before {
    height: 42px;
  }

  .callout::after {
    width: 6px;
    height: 6px;
  }

  .callout.is-line-up::before {
    bottom: calc(100% + 12px);
  }

  .callout.is-line-up::after {
    bottom: calc(100% + 8px);
  }

  .callout.is-line-down::before {
    top: calc(100% + 12px);
  }

  .callout.is-line-down::after {
    top: calc(100% + 8px);
  }

  .callout-1 {
    left: 5.1%;
    top: 68.1%;
    width: 118px;
  }

  .callout-2 {
    left: 24.1%;
    top: 74.9%;
    width: 118px;
  }

  .callout-3 {
    left: 35.2%;
    top: 17.4%;
    width: 128px;
  }

  .callout-4 {
    left: 37.5%;
    top: 60.7%;
    width: 132px;
  }

  .callout-5 {
    left: 55%;
    top: 17.6%;
    width: 136px;
  }

  .callout-6 {
    left: 53.2%;
    top: 68%;
    width: 120px;
  }

  .callout-7 {
    left: 75.7%;
    top: 15.9%;
    width: 138px;
  }

  .callout-8 {
    left: 62.4%;
    top: 85.4%;
    width: 134px;
  }

  .callout-9 {
    left: 84%;
    top: 78.8%;
    width: 128px;
  }

  .reliability-panel {
    width: var(--wide);
    height: 430px;
    min-height: 430px;
    grid-template-columns: 244px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 34px 0;
  }

  .reliability-panel ul {
    gap: 10px;
  }

  .reliability-panel button {
    width: 244px;
    min-height: 58px;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 12px 14px 12px 18px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.15;
  }

  .reliability-panel button::before {
    width: 18px;
    height: 18px;
    font-size: 14px;
    border-width: 1.6px;
  }

  .reliability-visual {
    height: 430px;
  }

  .reliability-visual img {
    width: 1710px;
  }

  .reliability-panel.part-panel .reliability-visual img {
    transform: translate3d(-80px, -165px, 0) scale(1);
  }

  .reliability-panel.part-spacer .reliability-visual img {
    transform: translate3d(-418px, -306px, 0) scale(1.02);
  }

  .reliability-panel.part-metal .reliability-visual img {
    transform: translate3d(-648px, -410px, 0) scale(1.42);
  }

  .reliability-panel.part-contact .reliability-visual img {
    transform: translate3d(-1144px, -682px, 0) scale(1.34);
  }

  .reliability-panel.part-terminal .reliability-visual img {
    transform: translate3d(-1310px, -735px, 0) scale(1.28);
  }
}

@media (min-width: 901px) {
  .callout-1 {
    left: 5.1%;
    right: auto;
    top: 68.1%;
    bottom: auto;
    width: 190px;
  }

  .callout-2 {
    left: 24.1%;
    right: auto;
    top: 74.9%;
    bottom: auto;
    width: 190px;
  }

  .callout-3 {
    left: 35.2%;
    right: auto;
    top: 17.4%;
    bottom: auto;
    width: 205px;
  }

  .callout-4 {
    left: 37.5%;
    right: auto;
    top: 60.7%;
    bottom: auto;
    width: 210px;
  }

  .callout-5 {
    left: 55%;
    right: auto;
    top: 17.6%;
    bottom: auto;
    width: 230px;
  }

  .callout-6 {
    left: 53.2%;
    right: auto;
    top: 68%;
    bottom: auto;
    width: 190px;
  }

  .callout-7 {
    left: 75.7%;
    right: auto;
    top: 15.9%;
    bottom: auto;
    width: 230px;
  }

  .callout-8 {
    left: 62.4%;
    right: auto;
    top: 85.4%;
    bottom: auto;
    width: 220px;
  }

  .callout-9 {
    left: 84%;
    right: auto;
    top: 78.8%;
    bottom: auto;
    width: 220px;
  }
}

/* Final Figma alignment overrides: header, selector strip, reliability exploded view. */
.site-header {
  color: #fff;
  background: rgba(42, 42, 42, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: #161616;
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header .logo-crop-white {
  opacity: 1;
}

.site-header .logo-crop-color {
  opacity: 0;
}

.site-header.is-scrolled .logo-crop-white,
.site-header.is-menu-open .logo-crop-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-crop-color,
.site-header.is-menu-open .logo-crop-color {
  opacity: 1;
}

.primary-nav a {
  gap: 0;
}

.nav-caret {
  display: none;
}

.site-header.is-scrolled .icon-button,
.site-header.is-menu-open .icon-button {
  color: #111;
  background: transparent;
}

.site-header.is-scrolled .lang-button,
.site-header.is-menu-open .lang-button {
  color: #fff;
  background: #373737;
}

.site-header.is-scrolled .icon-button span,
.site-header.is-menu-open .icon-button span {
  filter: brightness(0);
}

.site-header.is-scrolled .primary-nav,
.site-header.is-menu-open .primary-nav {
  color: #161616;
}

.site-header.is-scrolled:not(.is-menu-open) .primary-nav a.is-current,
.site-header.is-menu-open .primary-nav a.is-active {
  color: var(--green);
}

.site-header.is-scrolled:not(.is-menu-open) .primary-nav a.is-current::after,
.site-header.is-menu-open .primary-nav a.is-active::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.site-header.is-menu-open .primary-nav a.is-current:not(.is-active) {
  color: #161616;
}

.site-header.is-menu-open .primary-nav a.is-current:not(.is-active)::after {
  opacity: 0;
  transform: translate3d(-50%, 6px, 0) scale(0.6);
}

.icon-button {
  color: #fff;
}

.lang-button {
  background: rgba(55, 55, 55, 0.84);
}

.contact-button {
  text-transform: none;
}

.product-strip {
  width: min(1560px, calc(100vw - 80px));
  height: 90px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1090px) 143px;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
}

.strip-dots {
  width: 116px;
  height: auto;
  display: inline-flex;
  justify-content: flex-start;
  gap: 4px;
  position: static;
}

.strip-dots span {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 1;
  border: 1.4px solid transparent;
  box-shadow: none;
}

.strip-dots span:nth-child(1) {
  border-color: #111;
  background: #f7f7f3;
}

.strip-dots span:nth-child(2) {
  background: #5b86b6;
}

.strip-dots span:nth-child(3) {
  background: #030303;
}

.strip-thumbs {
  position: static;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
}

.strip-thumbs button {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  opacity: 0.42;
  transform: none;
}

.strip-thumbs button.is-active,
.strip-thumbs button:hover {
  opacity: 1;
  transform: none;
}

.strip-thumbs img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.strip-cta {
  position: static;
  justify-self: end;
  width: 143px;
  height: 57px;
  border-radius: 6px;
  font-size: 14px;
  gap: 6px;
}

.reliability-section {
  background: #f4f4f4;
}

.reliability-surface {
  padding: 92px 0 108px;
  background: #f4f4f4;
}

.exploded-wrap {
  width: min(1240px, calc(100vw - 128px));
  height: 560px;
  min-height: 560px;
  margin: 18px auto 92px;
  isolation: isolate;
  overflow: visible;
}

.exploded-image {
  display: none;
}

.exploded-parts {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.exploded-part {
  position: absolute;
  left: var(--part-left);
  top: var(--part-top);
  width: var(--part-width);
  height: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  transform:
    translate(calc(-50% + var(--collapsed-x, 0px)), calc(-50% + var(--collapsed-y, 0px)))
    scale(0.72);
  transform-origin: center;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.05));
  will-change: transform, opacity;
}

.exploded-wrap.is-visible .exploded-part {
  animation: reliabilityExplodePart 1050ms cubic-bezier(0.2, 0.82, 0.16, 1) forwards;
  animation-delay: var(--part-delay, 0ms);
}

.part-panel-shell {
  --part-left: 8.8%;
  --part-top: 45%;
  --part-width: 220px;
  --collapsed-x: 470px;
  --collapsed-y: 38px;
  --part-delay: 40ms;
}

.part-spacer-insert {
  --part-left: 25.4%;
  --part-top: 54%;
  --part-width: 166px;
  --collapsed-x: 276px;
  --collapsed-y: -16px;
  --part-delay: 140ms;
}

.part-reinforced-core {
  --part-left: 35.8%;
  --part-top: 50%;
  --part-width: 112px;
  --collapsed-x: 170px;
  --collapsed-y: 4px;
  --part-delay: 230ms;
}

.part-contact-screw {
  --part-left: 43.7%;
  --part-top: 52%;
  --part-width: 78px;
  --collapsed-x: 78px;
  --collapsed-y: -8px;
  --part-delay: 320ms;
}

.part-contact-set {
  --part-left: 55%;
  --part-top: 64%;
  --part-width: 148px;
  --collapsed-x: -42px;
  --collapsed-y: -72px;
  --part-delay: 420ms;
}

.part-terminal-block {
  --part-left: 65.2%;
  --part-top: 64%;
  --part-width: 158px;
  --collapsed-x: -156px;
  --collapsed-y: -74px;
  --part-delay: 520ms;
}

.part-steel-frame {
  --part-left: 78.6%;
  --part-top: 63%;
  --part-width: 270px;
  --collapsed-x: -330px;
  --collapsed-y: -66px;
  --part-delay: 620ms;
}

.part-rear-housing {
  --part-left: 92%;
  --part-top: 76%;
  --part-width: 146px;
  --collapsed-x: -504px;
  --collapsed-y: -132px;
  --part-delay: 720ms;
}

.callout {
  display: block;
  max-width: 190px;
  color: #111;
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.18;
  font-weight: 500;
  text-align: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.exploded-wrap.is-visible .callout {
  animation: reliabilityCalloutIn 520ms ease forwards;
  animation-delay: var(--callout-delay, 880ms);
}

.callout::before {
  height: 58px;
  background: repeating-linear-gradient(to bottom, #167db5 0 5px, transparent 5px 9px);
}

.callout::after {
  width: 7px;
  height: 7px;
  background: #167db5;
}

.callout-1 {
  left: 3.4%;
  top: 73.5%;
  width: 172px;
  --callout-delay: 1060ms;
}

.callout-2 {
  left: 20.8%;
  top: 83%;
  width: 168px;
  --callout-delay: 1140ms;
}

.callout-3 {
  left: 30.2%;
  top: 18.5%;
  width: 184px;
  --callout-delay: 1220ms;
}

.callout-4 {
  left: 42.6%;
  top: 80%;
  width: 176px;
  --callout-delay: 1300ms;
}

.callout-5 {
  left: 53.7%;
  top: 20%;
  width: 190px;
  --callout-delay: 1380ms;
}

.callout-6 {
  left: 53.6%;
  top: 88%;
  width: 172px;
  --callout-delay: 1460ms;
}

.callout-7 {
  left: 72.6%;
  top: 18.5%;
  width: 190px;
  --callout-delay: 1540ms;
}

.callout-8 {
  left: 64.2%;
  top: 94%;
  width: 178px;
  --callout-delay: 1620ms;
}

.callout-9 {
  left: 83.8%;
  top: 86%;
  width: 176px;
  --callout-delay: 1700ms;
}

@keyframes reliabilityExplodePart {
  0% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--collapsed-x, 0px)), calc(-50% + var(--collapsed-y, 0px)))
      scale(0.72);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes reliabilityCalloutIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .product-strip {
    width: var(--wide);
    grid-template-columns: 120px minmax(0, 1fr) 144px;
    gap: 14px;
    padding: 0 18px;
  }

  .strip-thumbs {
    gap: 10px;
  }

  .strip-thumbs button {
    width: 56px;
    flex-basis: 56px;
  }

  .exploded-wrap {
    width: var(--wide);
    height: 520px;
    min-height: 520px;
    overflow: visible;
  }

  .part-panel-shell {
    --part-left: 11%;
    --part-width: 142px;
  }

  .part-spacer-insert {
    --part-left: 25%;
    --part-width: 108px;
  }

  .part-reinforced-core {
    --part-left: 36%;
    --part-width: 76px;
  }

  .part-contact-screw {
    --part-left: 44%;
    --part-width: 54px;
  }

  .part-contact-set {
    --part-left: 54%;
    --part-width: 98px;
  }

  .part-terminal-block {
    --part-left: 65%;
    --part-width: 104px;
  }

  .part-steel-frame {
    --part-left: 79%;
    --part-width: 178px;
  }

  .part-rear-housing {
    --part-left: 91%;
    --part-width: 98px;
  }

  .callout {
    font-size: 10px;
    max-width: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exploded-part,
  .exploded-wrap.is-visible .exploded-part {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: none;
  }

  .callout,
  .exploded-wrap.is-visible .callout {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Header corrections from Figma node 247:10244. */
@media (min-width: 901px) {
  .site-header {
    --header-edge: clamp(40px, 6.25vw, 120px);
    padding: 0;
  }

  .brand-nav {
    position: absolute;
    left: var(--header-edge);
    top: 9px;
    width: 142px;
    height: 62px;
  }

  .primary-nav {
    position: absolute;
    left: 50%;
    top: 26px;
    width: min(802px, calc(100vw - var(--header-edge) * 2 - 620px));
    height: 24px;
    margin: 0;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    color: #fff;
    font-size: clamp(14px, 0.9375vw, 18px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    transform: translateX(-50%);
  }

  .primary-nav a {
    gap: 0;
    opacity: 1;
    transform: none;
  }

  .primary-nav a:hover {
    transform: none;
  }

  .nav-caret {
    display: none;
  }

  .primary-nav a:hover .nav-caret,
  .primary-nav a.is-active .nav-caret {
    opacity: 1;
    transform: none;
  }

  .header-actions {
    position: absolute;
    right: var(--header-edge);
    top: 0;
    width: 298px;
    height: 80px;
    flex: none;
    display: block;
    margin: 0;
  }

  .icon-button {
    left: 0;
    top: 25px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .icon-button span {
    width: 16.971px;
    height: 23.869px;
    border: 0;
    border-radius: 0;
    background: url("assets/search-figma.svg") center / contain no-repeat;
    transform: rotate(-45deg);
  }

  .icon-button span::after {
    content: none;
  }

  .lang-button {
    left: 66px;
    top: 15px;
    min-width: 66px;
    height: 49px;
    padding: 0 24px;
    border: 0;
    background: #373737;
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }

  .contact-button {
    left: 144px;
    top: 15px;
    width: 154px;
    min-width: 154px;
    height: 49px;
    justify-content: center;
    gap: 6px;
    padding: 14px 24px;
    background: #008c38;
    border: 1px solid #1dd366;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-transform: none;
  }

  .contact-button span {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    background: url("assets/contact-arrow-figma.svg") center / contain no-repeat;
    transform: rotate(180deg);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .nav-caret {
    display: none;
  }

  .primary-nav a:hover .nav-caret,
  .primary-nav a.is-active .nav-caret {
    opacity: 1;
    transform: none;
  }
}

.primary-nav .nav-caret,
.primary-nav a:hover .nav-caret,
.primary-nav a.is-active .nav-caret {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  flex: 0 0 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  transform: none !important;
  background: none !important;
}

@media (min-width: 901px) {
  .primary-nav {
    width: auto;
    gap: clamp(44px, 3.9vw, 74px);
    justify-content: center;
  }

  .primary-nav a {
    gap: 0;
  }

  .primary-nav .nav-caret,
  .primary-nav a:hover .nav-caret,
  .primary-nav a.is-active .nav-caret {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    flex: 0 0 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    transform: none !important;
    background: none !important;
  }

  .nav-dropdown::before {
    background: #fff;
    border-top: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-panel-story {
    height: 502px;
    padding: 40px var(--header-edge, 120px) 60px;
    display: grid;
    grid-template-columns: minmax(640px, 971px) minmax(244px, 305px) minmax(180px, 1fr);
    column-gap: 0;
  }

  .nav-story-column,
  .nav-link-column {
    min-width: 0;
  }

  .nav-menu-heading {
    margin: 0 0 20px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
  }

  .nav-story-cards {
    width: 910px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .nav-image-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 290 / 166;
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
    background: #d9d9d9;
    isolation: isolate;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
      opacity 420ms ease,
      transform 560ms var(--ease-out),
      color 220ms ease;
  }

  .nav-panel.is-active .nav-image-card,
  .nav-panel.is-active .nav-link-column a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .nav-panel.is-active .nav-image-card:nth-child(2),
  .nav-panel.is-active .nav-link-column a:nth-of-type(2) {
    transition-delay: 70ms;
  }

  .nav-panel.is-active .nav-image-card:nth-child(3),
  .nav-panel.is-active .nav-link-column a:nth-of-type(3) {
    transition-delay: 140ms;
  }

  .nav-panel.is-active .nav-image-card:nth-child(4) {
    transition-delay: 210ms;
  }

  .nav-panel.is-active .nav-image-card:nth-child(5) {
    transition-delay: 280ms;
  }

  .nav-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.7));
    transition: opacity 260ms ease;
  }

  .nav-image-card:hover::after,
  .nav-image-card:focus-visible::after {
    opacity: 0.78;
  }

  .nav-image-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 680ms var(--ease-out);
  }

  .nav-image-card:hover img,
  .nav-image-card:focus-visible img {
    transform: scale(1.045);
  }

  .nav-image-card strong {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 20px;
    bottom: 11px;
    font-size: 20px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
  }

  .nav-link-column {
    border-left: 1px solid rgba(62, 64, 70, 0.1);
    padding-left: clamp(42px, 3.125vw, 60px);
  }

  .nav-link-column a {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    color: #282828;
    font-size: 20px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: color 220ms ease, opacity 360ms ease, transform 520ms var(--ease-out);
  }

  .nav-link-column a:hover,
  .nav-link-column a:focus-visible {
    color: var(--green);
  }

  .nav-panel-card-pair {
    height: 292px;
    padding: 40px var(--header-edge, 120px);
  }

  .nav-card-pair {
    margin-left: clamp(280px, 23.958vw, 460px);
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 370px));
    gap: 20px;
  }

  .nav-image-card-large {
    aspect-ratio: 370 / 212;
  }

  .nav-image-card-large strong {
    bottom: 12px;
  }

  .nav-panel-products {
    --nav-products-sidebar: 432px;
  }

  .nav-product-content {
    background: #f4f7f5;
  }

  .nav-product-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.03) 48%, rgba(0, 0, 0, 0.34));
  }
}

@media (min-width: 901px) {
  .product-strip {
    grid-template-columns: 116px 1090px 143px;
    column-gap: 0;
  }

  .strip-thumbs {
    width: 1090px;
    min-width: 1090px;
    display: grid;
    grid-template-columns: repeat(11, 90px);
    gap: 10px;
    overflow: visible;
  }

  .strip-thumbs button,
  .strip-thumbs img {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }
}

/* Modular DIY corrections from Figma node 247:10244. */
.modular-section {
  background: #fff;
}

.module-picker {
  border: 1px solid #fff;
  background: #f7f7f7;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.module-picker-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.module-picker-copy span:first-child {
  display: block;
}

.module-picker-arrow {
  width: 12px;
  height: 12px;
  background: url("assets/product-detail/module-picker-text-arrow.webp") center / contain no-repeat;
}

.modular-arrow {
  width: 40px;
  height: 82px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.modular-arrow::before {
  content: none;
}

.modular-arrow-left {
  background-image: url("assets/product-detail/modular-arrow-left.webp");
}

.modular-arrow-right {
  background-image: url("assets/product-detail/modular-arrow-right.webp");
}

.modular-main-card .modular-insert-image[hidden] {
  display: none;
}

.modular-main-card .modular-insert-image {
  width: auto;
  height: 88%;
  max-width: none;
  opacity: 1;
  filter: none;
}

.modular-stage.insert-narrow .modular-main-card .modular-insert-image,
.modular-stage.insert-dimmer .modular-main-card .modular-insert-image,
.modular-stage.insert-usb .modular-main-card .modular-insert-image,
.modular-stage.insert-wide .modular-main-card .modular-insert-image {
  width: auto;
  height: 88%;
}

.modular-stage.plate-1 .modular-main-card .modular-insert-image {
  left: 50%;
  top: 50%;
}

.modular-stage.plate-2 .modular-main-card .modular-insert-image {
  left: 31%;
  top: 58%;
}

.modular-stage.plate-3 .modular-main-card .modular-insert-image {
  left: 50%;
  top: 54%;
}

.product-grid article > img {
  background: #fff;
}

.module-options button {
  border: 1px solid #d9d9d9;
  background: #fff;
  transition: none;
}

.module-options button:hover,
.module-options button.is-active {
  transition: none;
}

.module-options button.is-active {
  border-color: var(--green);
  box-shadow: none;
}

.module-options button:disabled,
.module-options button.is-disabled {
  border-color: #e4e4e4;
  background: #f4f4f4;
  cursor: not-allowed;
  opacity: 0.42;
}

.module-options button:disabled:hover,
.module-options button.is-disabled:hover {
  border-color: #e4e4e4;
  background: #f4f4f4;
  transform: none;
}

.module-options button:disabled img,
.module-options button.is-disabled img {
  opacity: 0.56;
  filter: grayscale(1);
}

@media (min-width: 901px) {
  .hero-subtitle {
    margin-top: 19px;
  }

  .feature-card:nth-child(3) {
    isolation: isolate;
  }

  .feature-card:nth-child(3) img {
    left: 45.5%;
    top: -34.17%;
    right: auto;
    bottom: auto;
    width: 54.34%;
    height: auto;
    object-fit: contain;
    z-index: 0;
  }

  .feature-card:nth-child(3) > div {
    position: relative;
    z-index: 2;
  }

  .module-picker {
    width: 1098px;
    height: 140px;
    grid-template-columns: 238px 1fr;
    gap: 60px;
    padding: 20px 40px;
  }

  .module-options {
    gap: 24px;
  }

  .module-options button {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    transform: none;
    transition: none;
  }

  .module-options button:hover,
  .module-options button.is-active {
    transform: none;
    transition: none;
  }

  .module-options button.is-active {
    border-color: var(--green);
    box-shadow: none;
  }

  .module-options button:disabled,
  .module-options button.is-disabled,
  .module-options button:disabled:hover,
  .module-options button.is-disabled:hover {
    transform: none;
  }

  .module-options img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .modular-stage.plate-1 .modular-main-card .modular-insert-image {
    left: 50%;
    top: 50%;
  }

  .modular-stage.plate-2 .modular-main-card .modular-insert-image {
    left: 31%;
    top: 58%;
  }

  .modular-stage.plate-3 .modular-main-card .modular-insert-image {
    left: 50%;
    top: 54%;
  }
}

/* Final slot positions from the latest DevTools references. */
@media (min-width: 901px) {
  .modular-stage.plate-1 .modular-main-card .modular-insert-image {
    left: 51%;
    top: 51%;
  }

  .modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image {
    top: 58%;
  }

  .modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image:nth-of-type(2) {
    left: 31%;
  }

  .modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image:nth-of-type(3) {
    left: 66%;
  }
}

/* Final exploded assembly layout matched to the supplied design reference. */
.exploded-wrap {
  width: min(1840px, calc(100vw - 80px));
  height: min(900px, 52vw);
  min-height: 560px;
  margin-top: 56px;
}

.exploded-part {
  width: var(--part-width);
  filter: drop-shadow(26px 22px 34px rgba(0, 0, 0, 0.09));
}

.part-panel-shell {
  --part-left: 16.25%;
  --part-top: 43.6%;
  --part-width: 14.1%;
  --collapsed-x: 620px;
  --collapsed-y: 94px;
  --part-delay: 40ms;
}

.part-spacer-insert {
  --part-left: 29.5%;
  --part-top: 48.43%;
  --part-width: 9.95%;
  --collapsed-x: 377px;
  --collapsed-y: 50px;
  --part-delay: 130ms;
}

.part-reinforced-core {
  --part-left: 37.47%;
  --part-top: 49.09%;
  --part-width: 5.15%;
  --collapsed-x: 230px;
  --collapsed-y: 44px;
  --part-delay: 220ms;
}

.part-pressure-pin {
  --part-left: 42.05%;
  --part-top: 50.98%;
  --part-width: 2.65%;
  --collapsed-x: 146px;
  --collapsed-y: 27px;
  --part-delay: 310ms;
}

.part-contact-blade {
  --part-left: 55.2%;
  --part-top: 53.27%;
  --part-width: 1.36%;
  --collapsed-x: -96px;
  --collapsed-y: 7px;
  --part-delay: 400ms;
}

.part-pa66-contact {
  --part-left: 57.7%;
  --part-top: 55.46%;
  --part-width: 4.32%;
  --collapsed-x: -142px;
  --collapsed-y: -13px;
  --part-delay: 490ms;
}

.part-contact-set {
  --part-left: 59.23%;
  --part-top: 51.28%;
  --part-width: 4.12%;
  --collapsed-x: -170px;
  --collapsed-y: 24px;
  --part-delay: 580ms;
}

.part-terminal-block {
  --part-left: 65.4%;
  --part-top: 54.84%;
  --part-width: 7.8%;
  --collapsed-x: -283px;
  --collapsed-y: -8px;
  --part-delay: 670ms;
}

.part-steel-frame {
  --part-left: 78.33%;
  --part-top: 58.12%;
  --part-width: 14.13%;
  --collapsed-x: -521px;
  --collapsed-y: -37px;
  --part-delay: 760ms;
}

.part-rear-housing {
  --part-left: 88.83%;
  --part-top: 60.05%;
  --part-width: 6.47%;
  --collapsed-x: -714px;
  --collapsed-y: -54px;
  --part-delay: 850ms;
}

.exploded-wrap.is-visible .exploded-part {
  animation: reliabilityExplodePart 1150ms cubic-bezier(0.2, 0.82, 0.16, 1) forwards;
}

.exploded-wrap.is-visible .callout {
  animation: reliabilityCalloutIn 520ms ease forwards;
}

.callout-1 {
  left: 7.2%;
  top: 73%;
  --callout-delay: 1120ms;
}

.callout-2 {
  left: 22.9%;
  top: 82%;
  --callout-delay: 1190ms;
}

.callout-3 {
  left: 31.7%;
  top: 18%;
  --callout-delay: 1260ms;
}

.callout-4 {
  left: 36.5%;
  top: 76.8%;
  --callout-delay: 1330ms;
}

.callout-5 {
  left: 48.4%;
  top: 80.2%;
  --callout-delay: 1400ms;
}

.callout-6 {
  left: 52.7%;
  top: 86.5%;
  --callout-delay: 1470ms;
}

.callout-7 {
  left: 53.8%;
  top: 19.4%;
  --callout-delay: 1540ms;
}

.callout-8 {
  left: 60.2%;
  top: 88%;
  --callout-delay: 1610ms;
}

.callout-9 {
  left: 72.2%;
  top: 18%;
  --callout-delay: 1680ms;
}

.callout-10 {
  left: 83.4%;
  top: 86%;
  width: 176px;
  --callout-delay: 1750ms;
}

@media (max-width: 900px) {
  .exploded-wrap {
    height: 520px;
    min-height: 520px;
    overflow: visible;
  }

  .exploded-part {
    width: calc(var(--part-width) * 1.75);
  }

  .callout {
    font-size: 10px;
    max-width: 124px;
  }
}

/* Prevent the desktop navigation from colliding with the search/language/action group. */
@media (min-width: 901px) {
  .primary-nav {
    left: 50%;
    right: auto;
    width: auto;
    gap: clamp(44px, 3.9vw, 74px);
    justify-content: center;
    transform: translateX(-50%);
  }
}

/* Scroll-driven reliability sequence: wheel expands parts, then the detail card covers the scene. */
.reliability-section {
  --panel-cover-progress: 0;
  position: relative;
}

.reliability-surface {
  overflow: visible;
}

.exploded-wrap {
  --explode-pin-y: 0px;
  position: relative;
  z-index: 4;
  margin-top: 8px;
  margin-bottom: 118px;
  transform: translate3d(0, var(--explode-pin-y), 0);
  will-change: transform;
}

.exploded-wrap.is-visible .exploded-part {
  animation: none !important;
}

.exploded-part {
  opacity: 0;
  transform:
    translate(calc(-50% + var(--collapsed-x, 0px)), calc(-50% + var(--collapsed-y, 0px)))
    scale(0.72);
}

.exploded-wrap .callout,
.exploded-wrap.is-visible .callout {
  max-width: 248px;
  color: #111;
  font-size: clamp(16px, 0.96vw, 18px);
  line-height: 1.16;
  font-weight: 500;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: none !important;
}

.exploded-wrap.is-exploded-complete .callout {
  animation: reliabilityCalloutIn 520ms ease forwards !important;
  animation-delay: var(--callout-delay, 0ms);
}

.exploded-wrap .callout::before {
  height: var(--callout-line, 74px);
  background: repeating-linear-gradient(to bottom, #147fb6 0 6px, transparent 6px 10px);
}

.exploded-wrap .callout::after {
  width: 8px;
  height: 8px;
  background: #147fb6;
}

.callout-1 {
  left: 7.2%;
  top: 75.2%;
  width: 210px;
  --callout-line: 82px;
  --callout-delay: 90ms;
}

.callout-2 {
  left: 22.7%;
  top: 81.7%;
  width: 218px;
  --callout-line: 76px;
  --callout-delay: 150ms;
}

.callout-3 {
  left: 30.9%;
  top: 22.8%;
  width: 238px;
  --callout-line: 72px;
  --callout-delay: 210ms;
}

.callout-4 {
  left: 34.2%;
  top: 69.5%;
  width: 244px;
  --callout-line: 72px;
  --callout-delay: 270ms;
}

.callout-5 {
  left: 45.8%;
  top: 75.4%;
  width: 230px;
  --callout-line: 78px;
  --callout-delay: 330ms;
}

.callout-6 {
  left: 50.4%;
  top: 22.5%;
  width: 270px;
  --callout-line: 72px;
  --callout-delay: 390ms;
}

.callout-7 {
  left: 54.8%;
  top: 89.4%;
  width: 278px;
  --callout-line: 92px;
  --callout-delay: 450ms;
}

.callout-8 {
  left: 70.3%;
  top: 21.3%;
  width: 282px;
  --callout-line: 92px;
  --callout-delay: 510ms;
}

.callout-9 {
  left: 82.8%;
  top: 84.4%;
  width: 230px;
  --callout-line: 70px;
  --callout-delay: 570ms;
}

.reliability-panel {
  position: relative;
  z-index: 9;
  width: min(1840px, calc(100vw - 80px));
  min-height: 780px;
  height: auto;
  margin: -82px auto 0;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: clamp(92px, 7vw, 138px);
  padding: 136px 140px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translate3d(0, calc((1 - var(--panel-cover-progress, 0)) * 72px), 0);
  will-change: transform;
}

.reliability-panel button {
  width: 340px;
  min-height: 82px;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 18px 26px;
  border-radius: 8px;
  font-size: clamp(16px, 0.96vw, 18px);
  line-height: 1.12;
  font-weight: 500;
}

.reliability-panel button::before {
  width: 24px;
  height: 24px;
  font-size: 18px;
}

.reliability-visual {
  height: 560px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0.04), transparent 55%);
  overflow: hidden;
}

.reliability-visual img {
  position: static;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  filter: drop-shadow(42px 34px 72px rgba(0, 0, 0, 0.12));
}

.reliability-panel.part-panel .reliability-visual img {
  width: auto;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.reliability-panel.part-spacer .reliability-visual img {
  width: auto;
  height: 100%;
}

.reliability-panel.part-metal .reliability-visual img {
  width: auto;
  height: 100%;
}

.reliability-panel.part-contact .reliability-visual img {
  width: auto;
  height: 100%;
}

.reliability-panel.part-terminal .reliability-visual img {
  width: auto;
  height: 100%;
}

@media (max-width: 900px) {
  .exploded-wrap {
    transform: none;
    margin-bottom: 68px;
  }

  .exploded-wrap .callout,
  .exploded-wrap.is-visible .callout {
    font-size: 10px;
    max-width: 132px;
  }

  .reliability-panel {
    width: var(--wide);
    min-height: 0;
    margin-top: 0;
    padding: 32px 20px;
    border-radius: 10px;
    transform: none;
  }
}

/* Reliability detail card: single-product image swap, no composite panning. */
.reliability-panel .reliability-visual > img,
.reliability-panel.part-panel .reliability-visual > img,
.reliability-panel.part-spacer .reliability-visual > img,
.reliability-panel.part-metal .reliability-visual > img,
.reliability-panel.part-contact .reliability-visual > img,
.reliability-panel.part-terminal .reliability-visual > img {
  position: static !important;
  display: block;
  width: auto !important;
  height: inherit !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transform: none !important;
}

/* Brand Story page */
.brand-story-page {
  --edge: clamp(24px, 6.25vw, 120px);
  --wide: min(1680px, calc(100vw - var(--edge) * 2));
  background: #fff;
}

.brand-story-page main {
  background: #fff;
}

.brand-story-page .primary-nav a.is-current {
  color: #fff;
}

.brand-story-page .site-header.is-scrolled:not(.is-menu-open) .primary-nav a.is-current,
.brand-story-page .site-header.is-menu-open .primary-nav a.is-current.is-active {
  color: var(--green);
}

.brand-story-page .site-header.is-menu-open .primary-nav a.is-current:not(.is-active) {
  color: #161616;
}

.brand-hero {
  position: relative;
  height: min(880px, 100vh);
  min-height: 680px;
  overflow: hidden;
  background: #fff;
  color: #000;
}

.brand-hero-image,
.brand-commitment-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.brand-hero-image {
  transition: opacity 260ms ease, transform 120ms linear;
}

.brand-hero-image.is-switching {
  opacity: 0;
}

.brand-commitment-media {
  z-index: 0;
  display: block;
}

.brand-hero-shade {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
}

.brand-hero-copy {
  position: absolute;
  left: clamp(40px, 6.25vw, 120px);
  top: clamp(248px, 21.56vw, 414px);
  z-index: 2;
}

.brand-hero h1 {
  margin: 0;
  color: #000;
  font-size: clamp(64px, 5.729vw, 110px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-brand-page="story"] .brand-hero h1,
body[data-brand-page="supply"] .brand-hero h1 {
  color: #fff;
}

.brand-hero h1 span {
  display: block;
}

.brand-anchor-nav {
  position: absolute;
  z-index: 3;
  left: clamp(40px, 6.25vw, 120px);
  bottom: 0;
  height: 64px;
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 4.15vw, 80px);
  color: #fff;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.15;
}

.brand-anchor-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-start;
  white-space: nowrap;
  opacity: 0.95;
}

.brand-anchor-nav a:focus:not(:focus-visible) {
  outline: 0;
}

.brand-anchor-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 8px;
}

.brand-anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--green);
  transition: width 420ms var(--ease-out);
}

.brand-anchor-nav a.is-active::after,
.brand-anchor-nav a:hover::after {
  width: 100%;
}

.brand-tab-panel {
  background: #fff;
}

.brand-tab-panel[hidden] {
  display: none;
}

.brand-tab-panel[data-brand-panel="design"] {
  --design-edge: clamp(24px, 6.25vw, 120px);
}

.brand-values {
  position: relative;
  min-height: 992px;
  padding: 100px var(--edge);
  background: #fff;
}

.brand-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: #000;
}

.brand-section-kicker span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--green);
  border: 1px solid var(--green-bright);
  transform: rotate(45deg);
}

.brand-section-kicker p {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
}

.brand-values-grid {
  position: relative;
  min-height: 700px;
  margin-top: 76px;
}

.brand-values h2 {
  margin: 0;
  color: #000;
  font-size: clamp(60px, 4.6875vw, 90px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

.brand-values-copy {
  position: absolute;
  z-index: 2;
  right: 31px;
  top: 260px;
  width: min(658px, 40vw);
  display: grid;
  gap: 80px;
}

.brand-values-copy p {
  position: relative;
  margin: 0;
  color: #0d0d0d;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.brand-values-copy p::before {
  display: none;
}

.brand-values-image {
  position: absolute;
  left: 0;
  top: 170px;
  width: min(827px, 51.7vw);
  height: 526px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #e9ece9;
}

.brand-values-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.brand-values-quote {
  display: none;
}

@media (min-width: 901px) {
  .brand-values-quote {
    display: block;
    position: absolute;
    z-index: 1;
    top: 181px;
    right: calc(31px + min(658px, 40vw) - 234px);
    width: min(260px, 15vw);
    height: auto;
    pointer-events: none;
  }
}

.story-panel-media img.story-media-exact {
  position: absolute;
  left: 0;
  width: 100%;
}

.story-process {
  --process-progress: 0;
  position: relative;
  height: 700vh;
  background: #f8f8f8;
  overflow: visible;
  z-index: 1;
}

.story-process-sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #f8f8f8;
  z-index: 3;
}

.story-process.is-process-pinned .story-process-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  bottom: auto;
}

.story-process.is-process-ended .story-process-sticky {
  position: absolute;
  top: auto;
  left: 0;
  width: 100vw;
  bottom: 0;
}

.story-process-track {
  position: relative;
  height: 100%;
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.story-panel {
  position: relative;
  width: 100vw;
  height: 100%;
  flex: 0 0 100vw;
  display: grid;
  grid-template-columns: 50vw 50vw;
  background: #f8f8f8;
  overflow: visible;
}

.story-panel-copy {
  position: relative;
  z-index: 2;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(88px, 9.1vh, 118px) clamp(44px, 5vw, 96px) clamp(88px, 9.1vh, 118px) clamp(86px, 10vw, 192px);
  color: #000;
  background: #f8f8f8;
  transform: translateZ(0);
}

.story-panel-intro .story-panel-copy {
  justify-content: flex-start;
  padding-top: clamp(58px, 8vh, 90px);
}

.story-panel:not(.story-panel-intro):not(.story-panel-stats) .story-panel-copy {
  padding-bottom: clamp(170px, 18.7vh, 228px);
}

.story-panel-copy .brand-section-kicker {
  margin-bottom: 38px;
}

.story-panel h2 {
  margin: 0 0 124px;
  font-size: clamp(48px, 4.6875vw, 90px);
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
}

.story-panel-intro h2 {
  margin-top: 120px;
  margin-bottom: 127px;
}

.story-step {
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.story-panel h3 {
  margin: 0 0 47px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}

.story-panel p:not(.story-step) {
  max-width: 607px;
  margin: 0;
  color: #0d0d0d;
  font-size: 20px;
  line-height: 1.5;
}

.story-panel p + p:not(.story-step) {
  margin-top: 18px;
}

.story-panel-media {
  --process-media-scale: 1;
  --process-img-shift: 0px;
  display: block;
  position: relative;
  width: 50vw;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
  transform: translateZ(0);
  will-change: transform;
  z-index: 1;
  pointer-events: none;
}

.story-panel-media img {
  position: absolute;
  top: 0;
  left: -8%;
  width: 116%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--process-img-shift), 0, 0) scale(var(--process-media-scale));
  transform-origin: center;
  will-change: transform;
}

.story-panel-media img.story-media-crop-innovation {
  left: -59.14%;
  width: 165.52%;
  height: 100%;
  object-fit: initial;
  transform: translate3d(var(--process-img-shift), 0, 0) scale(var(--process-media-scale));
}

.story-panel-stats .story-panel-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(32px, 2.3vw, 44px) 0 clamp(64px, 4.5vw, 86px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: clamp(150px, 16vh, 190px) clamp(58px, 4.6vw, 88px);
}

.stats-grid strong {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000;
  font-size: clamp(56px, 3.6458vw, 70px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.stats-grid strong > span:not(.count-value) {
  margin-left: 0;
  padding-bottom: 4px;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 600;
}

.stats-grid strong .count-value {
  display: inline-block;
  min-width: 1.2ch;
  margin-left: 0;
  font-size: inherit;
  font-weight: inherit;
}

.stats-grid sub {
  bottom: 0.1em;
  font-size: 12px;
}

.stats-grid p {
  margin-top: 26px !important;
  color: #000 !important;
  font-size: clamp(22px, 1.25vw, 24px) !important;
  line-height: 1.1 !important;
}

.story-process::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: calc(var(--process-progress) * 100vw);
  height: 2px;
  z-index: 4;
  background: var(--green);
  opacity: 0.95;
  pointer-events: none;
}

.brand-history {
  position: relative;
  padding: 100px var(--edge) 120px;
  background: #fff;
  overflow: hidden;
}

.brand-history > h2 {
  margin: 86px 0 0;
  font-size: clamp(56px, 4.6875vw, 90px);
  line-height: 1;
  font-weight: 400;
}

.history-intro {
  width: min(955px, 100%);
  margin: 60px 0 0;
  color: #0d0d0d;
  font-size: 20px;
  line-height: 1.5;
}

.history-window {
  --history-cursor-x: -160px;
  --history-cursor-y: -160px;
  position: relative;
  width: 100%;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: contain;
  margin-top: 90px;
}

.history-window.is-dragging {
  cursor: grabbing;
}

.history-track {
  display: flex;
  gap: clamp(64px, 5.052vw, 97px);
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.history-card {
  width: 340px;
  flex: 0 0 340px;
  opacity: 1;
  transition: opacity 520ms var(--ease-out), transform 720ms var(--ease-out);
}

.history-card.is-active {
  opacity: 1;
}

.history-card h3 {
  margin: 0;
  min-height: 40px;
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
}

.history-line {
  position: relative;
  height: 17px;
  margin-top: 48px;
}

.history-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  background: #3e4046;
  transform: rotate(45deg);
}

.history-line::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  width: 400px;
  height: 1px;
  background: #3e4046;
}

.history-events {
  margin-top: 23px;
}

.history-events p {
  margin: 0;
  width: 380px;
  color: rgba(13, 13, 13, 0.8);
  font-size: 16px;
  line-height: 1.5;
}

.history-images {
  display: none;
}

.history-images img {
  width: 340px;
  height: 217px;
  border-radius: 10px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.history-drag-cue {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(241, 244, 244, 0.9);
  backdrop-filter: blur(6px) brightness(1.15);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--history-cursor-x), var(--history-cursor-y), 0) translate(-50%, -50%) scale(0.82);
  transition:
    opacity 420ms cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 180ms cubic-bezier(0.19, 1, 0.22, 1);
}

.history-window.is-hovering.is-cursor-ready .history-drag-cue {
  opacity: 0.86;
  transform: translate3d(var(--history-cursor-x), var(--history-cursor-y), 0) translate(-50%, -50%) scale(1);
}

.history-drag-cue span,
.history-drag-cue::before,
.history-drag-cue::after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
}

.history-drag-cue span {
  left: 50%;
  width: 30px;
  height: 2px;
  background: #123043;
  opacity: 0.64;
  transform: translate(-50%, -50%);
}

.history-drag-cue::before,
.history-drag-cue::after {
  width: 11px;
  height: 11px;
  border-top: 2px solid #123043;
  border-left: 2px solid #123043;
  opacity: 0.72;
}

.history-drag-cue::before {
  left: 42px;
  transform: translateY(-50%) rotate(-45deg);
}

.history-drag-cue::after {
  right: 42px;
  transform: translateY(-50%) rotate(135deg);
}

.history-years {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 84px;
  overflow-x: auto;
  border-bottom: 1px solid #d9d9d9;
  scrollbar-width: none;
}

.history-years::-webkit-scrollbar {
  display: none;
}

.history-years button {
  width: 66px;
  height: 40px;
  flex: 0 0 66px;
  padding: 0;
  border: 0;
  color: #000;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.history-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
  user-select: none;
  -webkit-user-drag: none;
}

.history-years button.is-active {
  color: #fff;
  background: var(--green);
  font-weight: 500;
}

.brand-commitment {
  position: relative;
  height: 1080px;
  overflow: hidden;
  background: url("assets/brand-story/commitment-figma.jpg") center / cover no-repeat #202020;
  color: #fff;
}

.brand-commitment-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.brand-commitment h2 {
  position: absolute;
  z-index: 2;
  left: clamp(40px, 6.25vw, 120px);
  bottom: 100px;
  margin: 0;
  font-size: clamp(44px, 3.6458vw, 70px);
  line-height: 1.27;
  font-weight: 500;
}

.brand-commitment h2 span {
  display: block;
}

.design-intro {
  position: relative;
  padding: clamp(76px, 5.8vw, 112px) var(--design-edge) clamp(84px, 6vw, 116px);
  background: #fff;
  overflow: hidden;
}

.design-intro-grid {
  position: relative;
  min-height: clamp(360px, 25vw, 460px);
  margin-top: clamp(56px, 4.6vw, 82px);
}

.design-intro h2,
.design-awards h2,
.design-boundaries h2,
.design-practice h2,
.design-purpose h2 {
  margin: 0;
  color: #000;
  font-size: clamp(58px, 4.6875vw, 90px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

.design-intro h2 span,
.design-awards h2 span,
.design-boundaries h2 span {
  display: block;
}

.design-intro-copy {
  position: absolute;
  right: 13px;
  bottom: 0;
  width: min(680px, 41vw);
  display: grid;
  gap: 22px;
}

.design-intro-copy p,
.design-purpose-copy p {
  margin: 0;
  color: rgba(13, 13, 13, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

.design-living-strip {
  width: calc(100% + var(--design-edge) * 2);
  margin: clamp(64px, 5.2vw, 92px) calc(var(--design-edge) * -1) 0;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  user-select: none;
}

.design-living-strip::-webkit-scrollbar {
  display: none;
}

.design-living-strip.is-dragging {
  cursor: grabbing;
}

.design-living-track {
  display: flex;
  gap: 31px;
  width: max-content;
  padding: 0 var(--design-edge);
}

.design-living-track figure {
  width: 563px;
  height: 348px;
  flex: 0 0 563px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}

.design-living-track img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 420ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.design-living-track figure:hover img {
  filter: saturate(1.05);
  transform: scale(1.055);
}

.design-awards {
  --award-logo-size: min(280px, 27vw);
  position: relative;
  padding: 100px var(--design-edge) 120px;
  background: #f7f6f4;
  border-radius: 10px;
  overflow: hidden;
}

.design-awards h2 {
  width: min(1228px, 100%);
  margin-top: 80px;
  font-size: 90px;
  line-height: 1.1;
}

.design-awards-board {
  margin-top: clamp(56px, 3.125vw, 60px);
}

.design-awards-logos {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.35vw, 30px);
  width: 100%;
  margin-left: 0;
}

.design-awards-logos img {
  width: var(--award-logo-size);
  height: var(--award-logo-size);
  margin: 0;
  flex: 0 0 var(--award-logo-size);
  object-fit: contain;
  transition: transform 420ms var(--ease-out), opacity 300ms ease;
}

.design-awards-logos img:hover {
  opacity: 0.82;
  transform: translate3d(0, -8px, 0) scale(1.04);
}

.design-awards-board p {
  margin: clamp(46px, 3vw, 58px) 0 0;
  color: #000;
  font-size: 24px;
  line-height: 1.22;
}

.design-awards-board strong {
  color: var(--green);
  font-weight: 400;
}

.design-boundaries {
  position: relative;
  padding: clamp(84px, 6vw, 118px) var(--design-edge) clamp(90px, 6vw, 120px);
  background: #fff;
}

.design-boundaries h2 {
  margin-top: 76px;
}

.design-boundary-grid {
  --boundary-collapsed: 220px;
  --boundary-gap: 18px;
  display: flex;
  gap: var(--boundary-gap);
  width: 100%;
  margin-top: clamp(64px, 5vw, 92px);
  height: clamp(560px, 39vw, 680px);
}

.design-boundary-card {
  position: relative;
  min-width: 0;
  flex: 0 0 var(--boundary-collapsed);
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
  color: #fff;
  cursor: pointer;
  transition: flex-basis 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

.design-boundary-card.is-featured,
.design-boundary-grid .design-boundary-card:hover {
  flex-basis: calc(100% - var(--boundary-collapsed) - var(--boundary-collapsed) - var(--boundary-collapsed) - var(--boundary-gap) - var(--boundary-gap) - var(--boundary-gap));
}

.design-boundary-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

.design-boundary-card.is-featured img,
.design-boundary-card:hover img {
  transform: scale(1.075);
}

.design-boundary-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 58%, rgba(0, 0, 0, 0.56));
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.design-boundary-card.is-featured::after,
.design-boundary-card:hover::after {
  opacity: 1;
}

.design-boundary-card > div {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 30px;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 320ms ease,
    transform 420ms var(--ease-out),
    left 760ms cubic-bezier(0.19, 1, 0.22, 1),
    right 760ms cubic-bezier(0.19, 1, 0.22, 1),
    bottom 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

.design-boundary-card.is-featured > div,
.design-boundary-card:hover > div {
  left: 50px;
  right: 50px;
  bottom: 54px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.design-boundary-card h3 {
  margin: 0;
  font-size: clamp(23px, 1.45vw, 28px);
  line-height: 1.2;
  font-weight: 600;
}

.design-boundary-card p {
  width: min(520px, 100%);
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.48;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 320ms ease,
    transform 420ms var(--ease-out);
}

.design-boundary-card:not(.is-featured) h3 {
  width: min(240px, 100%);
}

.design-boundary-card.is-featured p,
.design-boundary-card:hover p {
  font-size: clamp(17px, 1.05vw, 20px);
  opacity: 1;
}

.design-practice {
  --practice-purpose-overlap: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--practice-purpose-overlap) * -1);
  padding: clamp(82px, 5.2vw, 100px) var(--design-edge) clamp(88px, 5.2vw, 100px);
  background: #f7f6f4;
  border-radius: 30px;
}

.design-practice h2 {
  margin-top: 76px;
}

.design-case-tabs {
  display: flex;
  align-items: center;
  gap: 58px;
  margin-top: 55px;
  border-bottom: 2px solid #e9e9e9;
}

.design-case-tabs button {
  position: relative;
  height: 48px;
  padding: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.6);
  background: transparent;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.design-case-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 260ms ease, transform 420ms var(--ease-out);
}

.design-case-tabs button.is-active {
  color: #000;
  font-weight: 500;
}

.design-case-tabs button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.design-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 768px;
  gap: clamp(60px, 5.4vw, 104px);
  min-height: 672px;
  margin-top: 40px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.design-case-card.is-switching {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
}

.design-case-card.is-switching-backward {
  transform: translate3d(-40px, 0, 0);
}

.design-case-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 42px 28px;
}

.design-case-index {
  margin: 0 0 clamp(34px, 3vw, 48px);
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.design-case-copy h3 {
  margin: 0;
  color: #000;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 500;
}

.design-case-copy h3 span {
  display: block;
}

.design-case-copy > p:not(.design-case-index) {
  width: min(630px, 100%);
  margin: clamp(42px, 4.1vw, 68px) 0 0;
  color: rgba(13, 13, 13, 0.8);
  font-size: 20px;
  line-height: 1.5;
}

.design-case-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
}

.design-case-tags span {
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}

.design-case-tags span + span {
  padding-left: 16px;
  border-left: 1px solid var(--green);
}

.design-case-media {
  position: relative;
  width: 768px;
  height: 592px;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #e7e7e7;
}

.design-case-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), opacity 260ms ease;
}

.design-case-card:not(.is-switching) .design-case-media > img:hover {
  transform: scale(1.045);
}

.design-case-thumbs {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 20px;
  display: flex;
  gap: 12px;
  pointer-events: auto;
}

.design-case-thumbs[hidden] {
  display: none;
}

.design-case-thumbs button {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #ddd;
  cursor: pointer;
  opacity: 0.82;
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.design-case-thumbs button:hover,
.design-case-thumbs button.is-active {
  border-color: #fff;
  opacity: 1;
  transform: translate3d(0, -2px, 0);
}

.design-case-thumbs button.is-active {
  box-shadow: 0 0 0 2px var(--green);
}

.design-case-thumbs button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.design-case-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-purpose {
  position: relative;
  z-index: 0;
  padding-top: var(--practice-purpose-overlap, 40px);
  height: 930px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.design-purpose > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.03);
  will-change: transform;
}

.design-purpose-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.design-purpose .brand-section-kicker,
.design-purpose h2,
.design-purpose-copy {
  position: absolute;
  z-index: 2;
}

.design-purpose .brand-section-kicker {
  left: var(--design-edge);
  top: 180px;
  color: #fff;
}

.design-purpose h2 {
  left: var(--design-edge);
  top: 190px;
  width: min(650px, 42vw);
  color: #fff;
  font-size: clamp(58px, 4.375vw, 84px);
  line-height: 1.28;
  font-weight: 600;
  text-transform: uppercase;
}

.design-purpose-copy {
  left: calc(50% + 168px);
  top: 430px;
  width: min(672px, 35vw);
}

.design-purpose-copy p {
  color: #fff;
}

.design-view-more {
  width: fit-content;
  min-width: 0;
  height: 56px;
  margin-top: 48px;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: transparent;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 360ms var(--ease-out);
}

.design-view-more .button-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: none;
  position: relative;
  transform: none;
}

.design-view-more .button-arrow::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.design-view-more:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
  transform: translate3d(0, -2px, 0);
}

.brand-tab-panel[data-brand-panel="quality"] {
  --quality-edge: clamp(24px, 6.25vw, 120px);
  color: #000;
}

.brand-tab-panel[data-brand-panel="supply"] {
  --supply-edge: clamp(24px, 6.25vw, 120px);
  --supply-feature-edge: clamp(24px, 2.5vw, 48px);
  --supply-left-col: min(480px, 31vw);
  --supply-gap: clamp(56px, 6.25vw, 120px);
  color: #000;
}

.brand-tab-panel[data-brand-panel="commitment"] {
  --esg-edge: clamp(24px, 6.25vw, 120px);
  color: #000;
  background: #fff;
}

.esg-intro {
  --esg-intro-progress: 0;
  --esg-mark-progress: 0;
  position: relative;
  min-height: 991px;
  padding: clamp(118px, 7.14vw, 137px) var(--esg-edge) 116px;
  display: flex;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.esg-intro-inner {
  width: min(1270px, 100%);
  margin: 0 auto;
  text-align: center;
}

.esg-intro-kicker {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
}

.esg-manifesto {
  margin: clamp(78px, 5.05vw, 97px) auto 0;
  color: #000;
  font-size: clamp(48px, 3.6458vw, 70px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.esg-word {
  --esg-word-progress: 0;
  display: inline-block;
  opacity: calc(0.12 + var(--esg-word-progress) * 0.88);
  transform: translate3d(0, calc((1 - var(--esg-word-progress)) * 34px), 0);
  filter: blur(calc((1 - var(--esg-word-progress)) * 7px));
  will-change: transform, opacity, filter;
}

.esg-intro-mark {
  width: min(282px, 42vw);
  height: min(121px, 18vw);
  margin: clamp(96px, 8vw, 142px) auto 0;
  position: relative;
  overflow: hidden;
  opacity: var(--esg-mark-progress);
  transform: translate3d(0, calc((1 - var(--esg-mark-progress)) * 42px), 0) scale(calc(0.94 + var(--esg-mark-progress) * 0.06));
  transition: opacity 180ms linear, transform 180ms linear;
  will-change: transform, opacity;
}

.esg-intro-mark img {
  position: absolute;
  left: -21.06%;
  top: -52.1%;
  width: 142.82%;
  height: 331.39%;
  max-width: none;
  object-fit: fill;
}

.esg-summary {
  min-height: 272px;
  padding: 0 var(--esg-edge) 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 890px);
  gap: clamp(48px, 6.25vw, 120px);
  align-items: start;
  background: #fff;
}

.esg-summary p {
  grid-column: 2;
  margin: 0;
  color: #000;
  font-size: clamp(24px, 1.666vw, 32px);
  line-height: 1.48;
  font-weight: 400;
}

.esg-pillars {
  --esg-stack-count: 4;
  --esg-stack-top: clamp(64px, 7vh, 88px);
  --esg-stack-inline: clamp(24px, 3.02vw, 58px);
  position: relative;
  height: calc(var(--esg-stack-count) * 100vh);
  min-height: calc(var(--esg-stack-count) * 720px);
  padding: 0;
  overflow: visible;
  background: #fff;
}

.esg-stack-stage {
  --esg-stage-y: 0px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  min-height: 720px;
  transform: translate3d(0, var(--esg-stage-y), 0);
  will-change: transform;
  isolation: isolate;
}

.esg-pillar-card {
  --esg-stack-scale: 1;
  --esg-stack-y: 0px;
  --esg-stack-opacity: 1;
  position: absolute;
  left: var(--esg-stack-inline);
  right: var(--esg-stack-inline);
  top: var(--esg-stack-top);
  min-height: 0;
  height: clamp(620px, calc(100vh - 118px), 900px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1fr);
  gap: clamp(48px, 5.73vw, 110px);
  align-items: center;
  padding: clamp(56px, 7.29vw, 140px) clamp(48px, 7.5vw, 144px);
  border-radius: 30px;
  overflow: hidden;
  opacity: var(--esg-stack-opacity);
  transform: translate3d(0, var(--esg-stack-y), 0) scale(var(--esg-stack-scale));
  transform-origin: center top;
  box-shadow:
    inset 0 0 0 1px rgba(22, 52, 33, 0.06),
    0 calc(18px + var(--esg-stack-shadow, 0) * 18px) calc(40px + var(--esg-stack-shadow, 0) * 34px) rgba(0, 0, 0, calc(0.04 + var(--esg-stack-shadow, 0) * 0.04));
  will-change: transform;
}

.esg-pillar-card-warm {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.48) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #e6f0df 0%, #d6e7d4 48%, #c9dec9 100%);
}

.esg-pillar-card-blue {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.46) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #e5eff4 0%, #d6e5ee 48%, #c8dae6 100%);
}

.esg-pillar-card-green {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.48) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #e5eee7 0%, #d7e7dc 48%, #c9dccf 100%);
}

.esg-pillar-card-lilac {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.46) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #e8ebef 0%, #d9dee7 48%, #cbd2dd 100%);
}

.esg-pillar-copy {
  align-self: center;
}

.esg-pillar-copy h2 {
  max-width: 630px;
  margin: 0;
  color: #000;
  font-size: clamp(42px, 2.9167vw, 56px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.esg-pillar-copy p {
  max-width: 630px;
  margin: clamp(26px, 1.6667vw, 32px) 0 0;
  color: #000;
  font-size: clamp(24px, 1.6667vw, 32px);
  line-height: 1.5;
  font-weight: 400;
}

.esg-pillar-copy ul {
  display: grid;
  gap: 20px;
  margin: clamp(50px, 3.125vw, 60px) 0 0;
  padding: 0;
  list-style: none;
}

.esg-pillar-copy li {
  position: relative;
  padding-left: 29px;
  color: #000;
  font-size: clamp(16px, 1.0417vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

.esg-pillar-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green);
}

.esg-pillar-media {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ece8e2;
}

.esg-pillar-media img {
  width: 100%;
  height: 110%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.esg-section-label {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #000;
}

.esg-section-label span {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 1px solid var(--green-bright);
  background: var(--green);
  transform: rotate(45deg);
}

.esg-section-label p {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.esg-quality {
  --esg-quality-cursor-x: -160px;
  --esg-quality-cursor-y: -160px;
  position: relative;
  padding: 76px 0 104px var(--esg-edge);
  overflow: hidden;
  background: #fff;
}

.esg-quality h2 {
  display: grid;
  margin: 70px 0 0;
  color: #000;
  font-size: clamp(62px, 4.6875vw, 90px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
}

.esg-quality-rail {
  display: flex;
  gap: 40px;
  margin-top: 92px;
  padding: 0 var(--esg-edge) 18px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: contain;
}

.esg-quality-rail.is-dragging {
  cursor: grabbing;
}

.esg-quality-rail::-webkit-scrollbar {
  display: none;
}

.esg-quality-card {
  position: relative;
  width: min(1320px, calc(100vw - var(--esg-edge) * 2));
  height: clamp(430px, 38.125vw, 732px);
  flex: 0 0 min(1320px, calc(100vw - var(--esg-edge) * 2));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f8f8;
}

.esg-quality-card div {
  position: absolute;
  z-index: 2;
  left: clamp(32px, 3.125vw, 60px);
  top: clamp(32px, 3.125vw, 60px);
}

.esg-quality-card h3 {
  margin: 0;
  color: #000;
  font-size: clamp(28px, 1.875vw, 36px);
  line-height: 1.2;
  font-weight: 500;
}

.esg-quality-card p {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(15px, 0.9375vw, 18px);
  line-height: 1.45;
  font-weight: 400;
}

.esg-quality-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.esg-quality-media img {
  position: absolute;
  left: var(--quality-img-left, 0);
  top: var(--quality-img-top, 0);
  width: var(--quality-img-width, 100%);
  height: var(--quality-img-height, 100%);
  max-width: none;
  object-fit: var(--quality-img-fit, cover);
  mix-blend-mode: var(--quality-img-blend, normal);
  user-select: none;
  -webkit-user-drag: none;
}

.esg-quality-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 248, 248, 0.95) 0%, rgba(248, 248, 248, 0.72) 12%, rgba(248, 248, 248, 0) 36%),
    linear-gradient(180deg, rgba(248, 248, 248, 0.82) 0%, rgba(248, 248, 248, 0) 28%, rgba(248, 248, 248, 0) 76%, rgba(248, 248, 248, 0.92) 100%);
}

.esg-quality-card-materials,
.esg-quality-card-longer,
.esg-quality-card-packaging,
.esg-quality-card-recovery,
.esg-quality-card-direction,
.esg-quality-card-source,
.esg-quality-card-manufacturing {
  --quality-img-left: 0;
  --quality-img-top: 0;
  --quality-img-width: 100%;
  --quality-img-height: 100%;
  --quality-img-fit: cover;
}

.esg-quality-card-longer {
  --quality-img-blend: multiply;
}

.esg-quality-card-green-power {
  background: #f8f8f8;
}

.esg-quality-card-green-power .esg-quality-statement {
  left: clamp(32px, 3.125vw, 60px);
  top: clamp(32px, 3.125vw, 60px);
  width: min(1018px, calc(100% - clamp(32px, 3.125vw, 60px) * 2));
}

.esg-quality-card-green-power .esg-quality-statement p {
  margin: 0;
  max-width: 1018px;
  color: #000;
  font-size: clamp(28px, 2.0833vw, 40px);
  line-height: 1.5;
  font-weight: 500;
}

.esg-quality-card-green-power .esg-quality-media::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.3) 26%, rgba(255, 255, 255, 0) 55%);
}

.esg-quality-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(241, 244, 244, 0.9);
  backdrop-filter: blur(6px) brightness(1.12);
  -webkit-backdrop-filter: blur(6px) brightness(1.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--esg-quality-cursor-x), var(--esg-quality-cursor-y), 0) translate(-50%, -50%) scale(0.82);
  transition:
    opacity 360ms cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 180ms cubic-bezier(0.19, 1, 0.22, 1);
}

.esg-quality.is-hovering.is-cursor-ready .esg-quality-cursor {
  opacity: 0.86;
  transform: translate3d(var(--esg-quality-cursor-x), var(--esg-quality-cursor-y), 0) translate(-50%, -50%) scale(1);
}

.esg-quality-cursor span,
.esg-quality-cursor::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
}

.esg-quality-cursor span {
  left: 50%;
  width: 32px;
  height: 2px;
  background: #123043;
  opacity: 0.7;
  transform: translate(-50%, -50%);
}

.esg-quality-cursor::before {
  left: 37px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #123043;
  border-left: 2px solid #123043;
  opacity: 0.78;
  transform: translateY(-50%) rotate(-45deg);
  transition:
    left 180ms var(--ease-out),
    right 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.esg-quality.is-pointing-right .esg-quality-cursor::before {
  left: auto;
  right: 37px;
  transform: translateY(-50%) rotate(135deg);
}

.esg-quality-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: 100vw;
  margin-left: calc(var(--esg-edge) * -1);
  margin-top: 34px;
}

.esg-quality-dots button {
  appearance: none;
  padding: 0;
  width: 14px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    width 260ms var(--ease-out),
    background 260ms var(--ease-out);
}

.esg-quality-dots .is-active {
  width: 40px;
  background: #000;
}

.esg-report {
  padding: 76px var(--esg-edge) 160px;
  background: #fff;
}

.esg-report h2 {
  margin: 70px 0 0;
  color: #000;
  font-size: clamp(62px, 4.6875vw, 90px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.esg-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 40px;
  margin-top: 68px;
}

.esg-report-card {
  min-height: 140px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border: 0;
  border-radius: 10px;
  color: #000;
  background: #f8f8f8;
  cursor: pointer;
  text-align: left;
  transition: transform 420ms var(--ease-out), background 260ms ease, box-shadow 260ms ease;
}

.esg-report-card:hover,
.esg-report-card:focus-visible {
  background: #f2f7f4;
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  outline: none;
}

.esg-report-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.esg-report-card span {
  font-size: clamp(16px, 1.0417vw, 20px);
  line-height: 1.2;
  font-weight: 400;
}

.esg-report-card i {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  background: url("assets/brand-story/esg/download-icon.svg") center / 32px 32px no-repeat;
}

.esg-closing {
  position: relative;
  min-height: 752px;
  overflow: hidden;
  color: #fff;
  background: #0f3b33;
}

.esg-closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.esg-closing-inner {
  position: relative;
  z-index: 2;
  min-height: 752px;
  display: grid;
  grid-template-columns: 270px minmax(320px, 669px);
  gap: clamp(120px, 25vw, 480px);
  align-items: center;
  padding: 0 clamp(80px, 9.48vw, 182px);
}

.esg-closing-inner img {
  width: 270px;
  height: auto;
}

.esg-closing-inner p {
  margin: 0;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.4;
  font-weight: 400;
}

.esg-closing-inner [data-reveal] {
  --reveal-y: 28px;
  --reveal-scale: 1;
  filter: none;
}

.esg-closing:not(.is-closing-visible) .esg-closing-inner [data-reveal],
.esg-closing:not(.is-closing-visible) .esg-closing-inner [data-reveal].is-visible {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: none;
}

.esg-closing.is-closing-visible .esg-closing-inner [data-reveal],
.esg-closing.is-closing-visible .esg-closing-inner [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.esg-closing-inner [data-reveal].is-visible {
  --reveal-y: 0px;
}

.esg-closing-inner p[data-reveal] {
  --reveal-delay: 140ms;
}

.supply-intro {
  position: relative;
  min-height: 1239px;
  padding: 100px var(--supply-edge) 118px;
  background: #fff;
}

[data-supply-motion]:not([data-reveal]) {
  --supply-motion-y: 0px;
  transform: translate3d(0, var(--supply-motion-y), 0);
  will-change: transform;
}

.supply-intro-top {
  display: grid;
  grid-template-columns: var(--supply-left-col) minmax(480px, 972px);
  gap: var(--supply-gap);
  align-items: start;
}

.supply-intro-copy {
  --supply-text-fill: 0%;
  display: grid;
  gap: 26px;
  width: min(972px, 100%);
}

.supply-intro-copy p {
  margin: 0;
  color: rgba(0, 0, 0, 0.34);
  font-size: clamp(24px, 1.667vw, 32px);
  line-height: 1.5;
  font-weight: 400;
}

.supply-fill-line {
  --supply-line-fill: 0%;
  display: block;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .supply-fill-line {
    background-image: linear-gradient(
      90deg,
      #000 0%,
      #000 var(--supply-line-fill),
      rgba(0, 0, 0, 0.34) var(--supply-line-fill),
      rgba(0, 0, 0, 0.34) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.supply-overview-media {
  width: min(698px, calc(100% - var(--supply-left-col) - var(--supply-gap)));
  min-width: 520px;
  aspect-ratio: 698 / 391;
  margin: 60px 0 0 calc(var(--supply-left-col) + var(--supply-gap));
  overflow: hidden;
  border-radius: 10px;
  background: #eef0ee;
}

.supply-overview-media img,
.supply-feature-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.supply-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 120px;
}

.supply-stat {
  position: relative;
  min-height: 188px;
  padding-right: clamp(28px, 3vw, 58px);
  cursor: default;
}

.supply-stat + .supply-stat {
  padding-left: clamp(34px, 4.1vw, 78px);
}

.supply-stat + .supply-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 188px;
  background: rgba(62, 64, 70, 0.1);
}

.supply-stat strong {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000;
  font-size: clamp(48px, 3.125vw, 60px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 260ms var(--ease-out);
}

.supply-stat strong > span:not(.count-value) {
  padding-bottom: 8px;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 600;
}

.supply-stat strong > span {
  transition: color 260ms var(--ease-out);
}

.supply-stat p {
  margin: 30px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.18;
  font-weight: 400;
  transition: color 260ms var(--ease-out);
}

.supply-stat:hover strong,
.supply-stat:hover strong > span,
.supply-stat:hover p,
.supply-stat:focus-within strong,
.supply-stat:focus-within strong > span,
.supply-stat:focus-within p {
  color: var(--green);
}

.supply-feature {
  position: relative;
  padding: 0 var(--supply-feature-edge) 110px;
  background: #fff;
}

.supply-feature-final {
  padding-bottom: 150px;
}

.supply-feature-media {
  width: 100%;
  aspect-ratio: 1824 / 680;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #e6e8e5;
}

.supply-feature-copy {
  display: grid;
  grid-template-columns: minmax(300px, 48.4%) minmax(360px, 680px);
  align-items: start;
  padding: 40px clamp(90px, 6.875vw, 132px) 0;
}

.supply-feature-copy h2 {
  margin: 0;
  color: #000;
  font-size: clamp(30px, 2.083vw, 40px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.supply-feature-copy p {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(13, 13, 13, 0.8);
  font-size: clamp(17px, 1.042vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

.quality-intro {
  position: relative;
  padding: 100px var(--quality-edge) 120px;
  background: #fff;
}

.quality-intro h2,
.quality-management h2,
.quality-testing h2,
.quality-certifications h2 {
  margin: 0;
  color: #000;
  font-size: clamp(58px, 4.6875vw, 90px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

.quality-intro h2 {
  width: min(780px, 70vw);
  margin-top: 76px;
}

.quality-intro h2 span {
  display: block;
}

.quality-intro h2 span:nth-child(2) {
  margin-left: clamp(82px, 11.8vw, 226px);
}

.quality-video-frame {
  position: relative;
  width: min(1368px, 100%);
  aspect-ratio: 1368 / 770;
  margin: 90px auto 0;
  overflow: hidden;
  border-radius: 10px;
  background: #d8d1c7;
}

.quality-video-frame video {
  position: absolute;
  inset: -2% 0;
  width: 100%;
  height: 104%;
  max-width: none;
  object-fit: cover;
}

.quality-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.quality-video-mark {
  appearance: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 66px;
  height: 66px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 1;
  transition: opacity 240ms ease, transform 320ms var(--ease-out), background 240ms ease;
}

.quality-video-frame.is-playing .quality-video-mark {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.quality-video-frame.is-paused .quality-video-mark,
.quality-video-frame:not(.is-playing) .quality-video-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quality-video-frame.is-playing:hover .quality-video-mark,
.quality-video-frame.is-playing:focus-within .quality-video-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quality-video-mark:hover,
.quality-video-mark:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: 0;
}

.quality-video-mark::before,
.quality-video-mark::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: all 220ms ease;
}

.quality-video-frame.is-paused .quality-video-mark::before,
.quality-video-frame:not(.is-playing) .quality-video-mark::before {
  display: block;
  left: 26px;
  top: 20px;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.quality-video-frame.is-paused .quality-video-mark::after,
.quality-video-frame:not(.is-playing) .quality-video-mark::after {
  display: none;
}

.quality-video-frame.is-playing .quality-video-mark::before,
.quality-video-frame.is-playing .quality-video-mark::after {
  top: 20px;
  width: 7px;
  height: 26px;
  border: 0;
  border-radius: 2px;
}

.quality-video-frame.is-playing .quality-video-mark::before {
  left: 22px;
}

.quality-video-frame.is-playing .quality-video-mark::after {
  display: block;
  right: 22px;
}

.quality-management {
  position: relative;
  padding: 100px var(--quality-edge) 120px;
  background: #f7f6f4;
}

.quality-management h2 {
  margin-top: 76px;
}

.quality-management-grid {
  display: grid;
  grid-template-columns: minmax(0, 1132px) minmax(360px, 488px);
  gap: 60px;
  align-items: stretch;
  margin-top: 42px;
  width: min(1680px, 100%);
}

.quality-management-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1132 / 800;
  border-radius: 10px;
  background: #ddd;
}

.quality-management-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.quality-management-media:hover img {
  transform: scale(1.035);
}

.quality-management-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 0;
}

.quality-management-copy > p {
  width: min(488px, 100%);
  margin: 0;
  color: rgba(13, 13, 13, 0.9);
  font-size: 20px;
  line-height: 1.5;
}

.quality-cert-mini {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.quality-cert-mini img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.quality-stats {
  display: grid;
  gap: 48px;
  margin-top: auto;
  padding-top: 0;
}

.quality-stat {
  position: relative;
  transform: none;
  transition: opacity 520ms ease;
}

.quality-stat.is-visible {
  transform: none;
}

.quality-stat strong {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #000;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.quality-stat strong > span:not(.count-value) {
  padding-bottom: 9px;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
}

.quality-stat p {
  margin: 16px 0 0;
  color: rgba(13, 13, 13, 0.58);
  font-size: 22px;
  line-height: 1;
}

.quality-stat::before {
  display: none;
}

.quality-commitment {
  position: relative;
  height: 240vh;
  min-height: 1900px;
  overflow: visible;
  background: #fff;
}

.quality-commitment-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 950px;
  overflow: hidden;
  color: #fff;
  background: #fff;
  isolation: isolate;
  --quality-media-left: 52%;
  --quality-media-top: 14%;
  --quality-media-bottom: 10%;
  --quality-media-radius: 18px;
  --quality-media-opacity: 1;
  --quality-media-scale: 1.08;
  --quality-shade-alpha: 0;
  --quality-kicker-opacity: 0;
  --quality-kicker-y: 18px;
  --quality-title-opacity: 0;
  --quality-title-x: -54px;
  --quality-copy-opacity: 0;
  --quality-copy-y: 30px;
  --quality-year-opacity: 0;
  --quality-year-x: 40px;
  --quality-pin-y: 0px;
}

.quality-commitment.is-pinned .quality-commitment-stage {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  transform: translate3d(0, var(--quality-pin-y), 0);
  z-index: 3;
}

.quality-commitment.is-ended .quality-commitment-stage {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  transform: none;
  z-index: 1;
}

.quality-commitment-media {
  position: absolute;
  top: var(--quality-media-top);
  right: 0;
  bottom: var(--quality-media-bottom);
  left: var(--quality-media-left);
  overflow: hidden;
  opacity: var(--quality-media-opacity);
  border-radius: var(--quality-media-radius) 0 0 var(--quality-media-radius);
  will-change: left, top, bottom, border-radius, opacity;
}

.quality-commitment-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transform: scale(var(--quality-media-scale));
  transform-origin: right center;
  will-change: transform;
}

.quality-commitment-shade {
  position: absolute;
  top: var(--quality-media-top);
  right: 0;
  bottom: var(--quality-media-bottom);
  left: var(--quality-media-left);
  z-index: 1;
  overflow: hidden;
  border-radius: var(--quality-media-radius) 0 0 var(--quality-media-radius);
  background:
    linear-gradient(90deg, rgba(18, 48, 63, calc(var(--quality-shade-alpha) * 0.72)) 0%, rgba(18, 48, 63, calc(var(--quality-shade-alpha) * 0.48)) 42%, rgba(18, 48, 63, calc(var(--quality-shade-alpha) * 0.26)) 100%),
    rgba(15, 61, 83, calc(var(--quality-shade-alpha) * 0.34));
  pointer-events: none;
  will-change: left, top, bottom, border-radius, background;
}

.quality-commitment-shade::after {
  content: "2023";
  position: absolute;
  right: clamp(8px, 1vw, 20px);
  bottom: clamp(8px, 0.75vw, 14px);
  color: rgba(255, 255, 255, calc(var(--quality-year-opacity) * 0.1));
  font-size: clamp(190px, 17.3vw, 332px);
  line-height: 0.78;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  opacity: 1;
  transform: translate3d(var(--quality-year-x), 0, 0) skew(-8deg);
  pointer-events: none;
}

.quality-commitment.is-text-active .quality-commitment-shade::after {
  transform: translate3d(var(--quality-year-x), 0, 0) skew(-8deg);
}

.quality-commitment-content {
  position: absolute;
  z-index: 3;
  left: clamp(72px, 6.25vw, 120px);
  top: clamp(86px, 5.2vw, 112px);
  width: min(900px, 55vw);
  color: #fff;
}

.quality-commitment .brand-section-kicker {
  color: #fff;
  opacity: var(--quality-kicker-opacity);
  transform: translate3d(0, var(--quality-kicker-y), 0);
}

.quality-commitment h2 {
  width: min(710px, 100%);
  margin: clamp(116px, 7.8vw, 150px) 0 0;
  color: #fff;
  font-size: clamp(76px, 5.55vw, 107px);
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  opacity: var(--quality-title-opacity);
  transform: translate3d(var(--quality-title-x), 0, 0);
}

.quality-commitment-content > p {
  width: min(900px, 100%);
  margin: clamp(34px, 2.4vw, 46px) 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.46;
  font-weight: 400;
  opacity: var(--quality-copy-opacity);
  transform: translate3d(0, var(--quality-copy-y), 0);
}

.quality-testing {
  position: relative;
  padding: 100px var(--quality-edge) 150px;
  background: #fff;
}

.quality-test-block {
  margin-top: 76px;
}

.quality-test-block + .quality-test-block {
  margin-top: 126px;
}

.quality-test-tabs {
  display: flex;
  align-items: center;
  gap: clamp(34px, 3vw, 58px);
  margin-top: 74px;
  border-bottom: 2px solid #e8e8e8;
  overflow-x: auto;
  scrollbar-width: none;
}

.quality-test-tabs::-webkit-scrollbar {
  display: none;
}

.quality-test-tabs button {
  position: relative;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.58);
  background: transparent;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 260ms ease;
}

.quality-test-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 260ms ease, transform 420ms var(--ease-out);
}

.quality-test-tabs button.is-active {
  color: #000;
  font-weight: 500;
}

.quality-test-tabs button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.quality-test-card {
  --quality-card-exit-x: -36px;
  --quality-card-enter-x: 36px;
  display: grid;
  grid-template-columns: 630px 768px;
  gap: 160px;
  width: min(1680px, 100%);
  min-height: 740px;
  margin-top: 40px;
  padding: 40px 40px 40px 82px;
  border-radius: 10px;
  background: #f7f6f4;
  box-sizing: border-box;
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.quality-test-card.is-switching {
  opacity: 0;
  transform: translate3d(var(--quality-card-exit-x), 0, 0);
}

.quality-test-card.is-entering {
  opacity: 0;
  transform: translate3d(var(--quality-card-enter-x), 0, 0);
  transition: none;
}

.quality-test-copy {
  display: flex;
  min-height: 660px;
  max-height: 660px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.quality-test-index {
  margin: 0 0 60px;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.quality-test-copy h3 {
  margin: 0;
  color: #000;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
}

.quality-test-description {
  width: min(630px, 100%);
  margin: 50px 0 0;
  color: rgba(13, 13, 13, 0.78);
  overflow: hidden;
}

.quality-test-description > p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.quality-test-description ul {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0 0 0 26px;
  list-style: disc;
}

.quality-test-description li {
  margin: 0;
  color: rgba(13, 13, 13, 0.74);
  font-size: 18px;
  line-height: 1.45;
}

.quality-test-description strong {
  color: rgba(13, 13, 13, 0.95);
  font-weight: 400;
}

.quality-test-card figure {
  margin: 0;
  overflow: hidden;
  align-self: start;
  width: 768px;
  height: 660px;
  border-radius: 10px;
  background: #dedbd4;
}

.quality-test-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), opacity 260ms ease;
}

.quality-test-card:not(.is-switching) figure:hover img {
  transform: scale(1.045);
}

.quality-certifications {
  position: relative;
  height: 937px;
  min-height: 937px;
  overflow: hidden;
  background: #eef8ff;
  --quality-cert-edge: clamp(72px, 6.25vw, 120px);
}

.quality-certifications::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.58) 31%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.46) 47%, rgba(255, 255, 255, 0.82) 100%);
  pointer-events: none;
}

.quality-cert-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.quality-cert-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0;
}

.quality-certifications .brand-section-kicker {
  position: absolute;
  left: var(--quality-cert-edge);
  top: 80px;
}

.quality-cert-heading {
  display: block;
  margin: 0;
}

.quality-cert-heading h2 {
  position: absolute;
  left: var(--quality-cert-edge);
  top: 196px;
  width: calc(100vw - var(--quality-cert-edge) * 2);
  max-width: none;
  font-size: clamp(70px, 4.6875vw, 90px);
  line-height: 1.19;
  white-space: nowrap;
}

.quality-cert-heading p {
  position: absolute;
  top: 447px;
  left: calc(50% + 60px);
  width: min(650px, calc(50vw - 60px - var(--quality-cert-edge)));
  margin: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.quality-cert-carousel {
  position: absolute;
  left: 0;
  right: 0;
  top: 657px;
  height: 120px;
  z-index: 2;
  overflow: hidden;
  padding: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.quality-cert-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: qualityCertLoop 44s linear infinite;
}

.quality-cert-carousel:hover .quality-cert-track {
  animation-play-state: paused;
}

.quality-cert-track img {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  object-fit: contain;
  background: transparent;
}

@media (max-width: 1800px) and (min-width: 1281px) {
  .quality-cert-heading p {
    width: min(620px, calc(100vw - var(--quality-cert-edge) * 2));
  }
}

@keyframes qualityCertLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 901px) {
  .history-window,
  .history-window.is-dragging,
  .esg-quality-rail,
  .esg-quality-rail.is-dragging {
    cursor: none;
  }

  .brand-story-page .site-header {
    color: #fff;
    background: rgba(42, 42, 42, 0.32);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .brand-story-page .site-header.is-scrolled,
  .brand-story-page .site-header.is-menu-open {
    color: #161616;
    background: #fff;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand-story-page .site-header.is-menu-open {
    color: #161616;
  }
}

@media (max-width: 1280px) {
  .brand-values {
    min-height: 1120px;
  }

  .brand-values-image {
    width: 58vw;
    height: 440px;
  }

  .story-panel-copy {
    padding-left: 60px;
    padding-right: 60px;
  }

  .story-panel p:not(.story-step) {
    font-size: 17px;
  }

  .story-panel-stats .story-panel-copy {
    padding-right: 26px;
    padding-left: 56px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(136px, 14.5vh, 156px) clamp(18px, 2.2vw, 26px);
    width: 100%;
  }

  .stats-grid strong {
    gap: 6px;
    font-size: 56px;
    white-space: nowrap;
  }

  .stats-grid strong > span:not(.count-value) {
    padding-bottom: 4px;
    font-size: 20px;
  }

  .stats-grid p {
    margin-top: 24px !important;
    font-size: 22px !important;
  }

  .design-boundary-grid {
    --boundary-collapsed: clamp(150px, 14vw, 180px);
    --boundary-gap: 16px;
    height: 660px;
  }

  .design-boundary-card {
    flex-basis: var(--boundary-collapsed);
  }

  .design-boundary-card.is-featured,
  .design-boundary-grid .design-boundary-card:hover {
    flex-basis: calc(100% - var(--boundary-collapsed) - var(--boundary-collapsed) - var(--boundary-collapsed) - var(--boundary-gap) - var(--boundary-gap) - var(--boundary-gap));
  }

  .design-case-card {
    grid-template-columns: minmax(0, 1fr) 768px;
    gap: 48px;
  }

  .design-case-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-tab-panel[data-brand-panel="supply"] {
    --supply-left-col: min(400px, 31vw);
    --supply-gap: clamp(44px, 5vw, 72px);
  }

  .esg-intro {
    min-height: 900px;
  }

  .esg-summary {
    grid-template-columns: minmax(320px, 0.55fr) minmax(420px, 1fr);
  }

  .esg-pillar-card {
    height: clamp(620px, calc(100vh - 118px), 820px);
    grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1fr);
    padding: 72px clamp(46px, 6vw, 92px);
  }

  .esg-pillar-media {
    min-height: 460px;
  }

  .esg-report-grid {
    gap: 20px;
  }

  .esg-report-card {
    padding: 24px;
  }

  .esg-closing-inner {
    grid-template-columns: 220px minmax(320px, 1fr);
    gap: clamp(72px, 14vw, 180px);
    padding: 0 72px;
  }

  .esg-closing-inner img {
    width: 220px;
  }

  .supply-intro {
    min-height: 1100px;
    padding-bottom: 96px;
  }

  .supply-overview-media {
    min-width: 420px;
    margin-top: 60px;
  }

  .supply-stats {
    margin-top: 105px;
  }

  .supply-stat + .supply-stat {
    padding-left: 32px;
  }

  .supply-feature-copy {
    grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1fr);
    gap: 48px;
    padding: 36px clamp(44px, 5vw, 80px) 0;
  }
}

@media (max-width: 900px) {
  .brand-hero {
    height: 760px;
    min-height: 760px;
  }

  .brand-hero-copy {
    left: 24px;
    right: 24px;
    top: 212px;
  }

  .brand-anchor-nav {
    left: 24px;
    right: 24px;
    gap: 24px;
    overflow-x: auto;
    font-size: 13px;
    scrollbar-width: none;
  }

  .brand-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-values {
    min-height: 0;
    padding: 72px 24px 96px;
  }

  .brand-values-grid {
    min-height: 0;
    margin-top: 48px;
    display: grid;
    gap: 48px;
  }

  .brand-values h2 span:nth-child(2),
  .brand-values h2 span:nth-child(3) {
    margin-left: 72px;
  }

  .brand-values-copy,
  .brand-values-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .brand-values-copy {
    gap: 32px;
    padding-left: 28px;
  }

  .brand-values-copy p {
    font-size: 17px;
  }

  .brand-values-copy p::before {
    left: -27px;
  }

  .brand-values-image {
    height: 360px;
  }

  .story-process {
    height: auto;
  }

  .story-process-sticky {
    position: relative !important;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    transform: none !important;
  }

  .story-process-track {
    width: 100%;
    display: grid;
    transform: none !important;
  }

  .story-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    flex: none;
    overflow: visible;
  }

  .story-panel-copy {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 72px 24px 48px;
    opacity: 1;
    transform: none !important;
  }

  .story-panel h2 {
    margin-bottom: 76px;
  }

  .story-panel h3 {
    font-size: 26px;
  }

  .story-panel p:not(.story-step) {
    font-size: 16px;
  }

  .story-panel-media {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: 520px;
    clip-path: none;
    transform: none;
  }

  .story-panel-stats .story-panel-copy {
    justify-content: flex-start;
    padding: 72px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 28px;
    width: 100%;
  }

  .stats-grid strong {
    font-size: clamp(56px, 11vw, 86px);
  }

  .stats-grid strong > span:not(.count-value) {
    font-size: clamp(22px, 4.6vw, 32px);
  }

  .stats-grid p {
    margin-top: 22px !important;
    font-size: clamp(20px, 4vw, 28px) !important;
  }

  .story-process::after {
    display: none;
  }

  .brand-history {
    padding: 76px 24px 120px;
  }

  .brand-history > h2 {
    margin: 54px 0 72px;
  }

  .history-track {
    gap: 24px;
  }

  .history-card {
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
  }

  .history-card h3 {
    font-size: 32px;
  }

  .history-line::after {
    width: calc(100vw - 96px);
  }

  .history-drag-cue {
    display: none;
  }

  .history-events p {
    width: 100%;
    font-size: 15px;
  }

  .history-images {
    margin-top: 36px;
  }

  .history-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 340 / 217;
  }

  .brand-commitment {
    height: 720px;
  }

  .brand-commitment h2 {
    left: 24px;
    right: 24px;
    bottom: 72px;
  }

  .design-intro,
  .design-awards,
  .design-boundaries,
  .design-practice {
    padding: 72px 24px 88px;
    border-radius: 0;
  }

  .design-practice {
    padding-bottom: 88px;
  }

  .design-intro-grid {
    min-height: 0;
    margin-top: 48px;
    display: grid;
    gap: 48px;
  }

  .design-intro-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .design-intro-copy p,
  .design-purpose-copy p {
    font-size: 16px;
  }

  .design-living-strip {
    width: calc(100% + 48px);
    margin: 56px -24px 0;
  }

  .design-living-track {
    gap: 16px;
    padding: 0 24px;
  }

  .design-living-track figure {
    width: min(78vw, 420px);
    height: auto;
    aspect-ratio: 563 / 348;
    flex-basis: min(78vw, 420px);
  }

  .design-awards h2,
  .design-boundaries h2,
  .design-practice h2 {
    width: 100%;
    margin-top: 48px;
  }

  .design-awards-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 4vw, 26px);
  }

  .design-awards-logos img {
    width: min(180px, 26vw);
    height: min(180px, 26vw);
    margin: 28px 0 20px;
  }

  .design-awards-board p {
    font-size: 22px;
  }

  .design-boundary-grid {
    height: auto;
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .design-boundary-card,
  .design-boundary-card.is-featured,
  .design-boundary-grid:hover .design-boundary-card,
  .design-boundary-grid .design-boundary-card:hover {
    flex-basis: auto;
    height: 480px;
  }

  .design-boundary-card > div,
  .design-boundary-card.is-featured > div {
    left: 28px;
    right: 28px;
    bottom: 32px;
    opacity: 1;
    transform: none;
  }

  .design-boundary-card::after {
    opacity: 1;
  }

  .design-boundary-card h3 {
    font-size: 26px;
  }

  .design-boundary-card p {
    font-size: 16px;
    opacity: 1;
  }

  .design-case-tabs {
    gap: 28px;
    margin-top: 48px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .design-case-tabs::-webkit-scrollbar {
    display: none;
  }

  .design-case-tabs button {
    height: 44px;
    flex: 0 0 auto;
    font-size: 17px;
  }

  .design-case-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
    gap: 28px;
  }

  .design-case-copy {
    min-height: 0;
    padding: 0;
  }

  .design-case-copy h3 {
    font-size: 30px;
  }

  .design-case-copy > p:not(.design-case-index) {
    margin-top: 36px;
    font-size: 16px;
  }

  .design-case-tags {
    margin-top: 40px;
  }

  .design-case-media {
    width: 100%;
    max-width: 768px;
    min-height: 0;
    height: auto;
    aspect-ratio: 768 / 592;
  }

  .design-purpose {
    height: 780px;
  }

  .design-purpose .brand-section-kicker {
    left: 24px;
    top: 92px;
  }

  .design-purpose h2 {
    left: 24px;
    right: 24px;
    top: 162px;
    width: auto;
  }

  .design-purpose-copy {
    left: 24px;
    right: 24px;
    top: 390px;
    width: auto;
  }

  .design-view-more {
    margin-top: 52px;
  }

  .brand-tab-panel[data-brand-panel="supply"] {
    --supply-left-col: 100%;
    --supply-gap: 0px;
  }

  .brand-tab-panel[data-brand-panel="commitment"] {
    --esg-edge: 24px;
  }

  .esg-intro {
    min-height: 760px;
    padding: 96px var(--esg-edge) 92px;
  }

  .esg-intro-kicker {
    font-size: 16px;
  }

  .esg-manifesto {
    margin-top: 64px;
    font-size: clamp(36px, 7.2vw, 58px);
  }

  .esg-intro-mark {
    width: min(210px, 54vw);
    margin-top: 84px;
  }

  .esg-summary {
    min-height: 0;
    padding: 0 var(--esg-edge) 96px;
    grid-template-columns: 1fr;
  }

  .esg-summary p {
    grid-column: 1;
    font-size: 22px;
  }

  .esg-pillars {
    display: grid;
    gap: 18px;
    height: auto;
    min-height: 0;
    padding: 0 var(--esg-edge) 96px;
  }

  .esg-stack-stage {
    position: relative;
    display: grid;
    gap: 18px;
    height: auto;
    min-height: 0;
    transform: none !important;
  }

  .esg-pillar-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 24px 24px;
    border-radius: 22px;
    transform: none !important;
    box-shadow: none;
  }

  .esg-pillar-copy h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .esg-pillar-copy p {
    margin-top: 22px;
    font-size: clamp(20px, 5vw, 26px);
  }

  .esg-pillar-copy ul {
    gap: 14px;
    margin-top: 36px;
  }

  .esg-pillar-copy li {
    font-size: 15px;
  }

  .esg-pillar-copy li::before {
    width: 10px;
    height: 10px;
  }

  .esg-pillar-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 900 / 640;
    border-radius: 8px;
  }

  .esg-quality {
    padding: 72px 0 88px 24px;
  }

  .esg-quality h2,
  .esg-report h2 {
    margin-top: 42px;
    font-size: clamp(44px, 10vw, 64px);
  }

  .esg-quality-rail {
    gap: 18px;
    margin-top: 52px;
    padding-right: 24px;
  }

  .esg-quality-card {
    width: calc(100vw - 48px);
    height: auto;
    min-height: 430px;
    flex-basis: calc(100vw - 48px);
  }

  .esg-quality-dots {
    width: calc(100vw - 48px);
    margin-left: 0;
  }

  .esg-report {
    padding: 72px 24px 96px;
  }

  .esg-report-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 52px;
  }

  .esg-report-card {
    min-height: 112px;
    grid-template-columns: 48px minmax(0, 1fr) 28px;
    gap: 16px;
    padding: 22px;
  }

  .esg-report-card img {
    width: 48px;
    height: 48px;
  }

  .esg-closing,
  .esg-closing-inner {
    min-height: 620px;
  }

  .esg-closing-bg {
    object-position: center;
  }

  .esg-closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-content: center;
    padding: 88px 24px;
  }

  .esg-closing-inner img {
    width: 180px;
  }

  .esg-closing-inner p {
    font-size: 20px;
  }

  .supply-intro {
    min-height: 0;
    padding: 72px 24px 96px;
  }

  .supply-intro-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .supply-intro-copy {
    gap: 22px;
  }

  .supply-intro-copy p {
    font-size: 20px;
  }

  .supply-overview-media {
    width: 100%;
    min-width: 0;
    margin: 56px 0 0;
    aspect-ratio: 16 / 10;
  }

  .supply-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin-top: 64px;
  }

  .supply-stat,
  .supply-stat + .supply-stat {
    min-height: 0;
    padding: 0 0 42px;
  }

  .supply-stat + .supply-stat::before {
    display: none;
  }

  .supply-stat strong {
    font-size: 46px;
  }

  .supply-stat p {
    margin-top: 18px;
    font-size: 16px;
  }

  .supply-feature,
  .supply-feature-final {
    padding: 0 24px 84px;
  }

  .supply-feature-media {
    aspect-ratio: 16 / 10;
  }

  .supply-feature-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0 0;
  }

  .supply-feature-copy h2 {
    font-size: 30px;
  }

  .supply-feature-copy p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .brand-hero h1 {
    font-size: 48px;
  }

  .brand-anchor-nav {
    gap: 18px;
  }

  .brand-values h2,
  .story-panel h2,
  .brand-history > h2 {
    font-size: 46px;
  }

  .brand-values h2 span:nth-child(2),
  .brand-values h2 span:nth-child(3) {
    margin-left: 48px;
  }

  .story-panel-media {
    height: 420px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .design-intro h2,
  .design-awards h2,
  .design-boundaries h2,
  .design-practice h2,
  .design-purpose h2 {
    font-size: 44px;
  }

  .design-awards-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .design-awards-logos img {
    width: min(96px, 25vw);
    height: min(96px, 25vw);
    margin: 22px 0 16px;
  }

  .design-boundary-card,
  .design-boundary-card.is-featured,
  .design-boundary-grid:hover .design-boundary-card,
  .design-boundary-grid .design-boundary-card:hover {
    height: 390px;
  }

  .design-purpose-copy {
    top: 360px;
  }

  .supply-intro-copy p {
    font-size: 18px;
  }

  .esg-intro {
    min-height: 680px;
    padding-top: 82px;
  }

  .esg-manifesto {
    margin-top: 52px;
    font-size: 34px;
  }

  .esg-word {
    transform: translate3d(0, calc((1 - var(--esg-word-progress)) * 24px), 0);
  }

  .esg-intro-mark {
    width: 172px;
    height: 74px;
    margin-top: 64px;
  }

  .esg-summary p {
    font-size: 20px;
  }

  .esg-section-label {
    gap: 14px;
  }

  .esg-section-label p {
    font-size: 13px;
  }

  .esg-pillar-card {
    padding: 42px 18px 18px;
    border-radius: 18px;
  }

  .esg-pillar-copy h2 {
    font-size: 34px;
  }

  .esg-pillar-copy p {
    font-size: 20px;
  }

  .esg-quality-card {
    min-height: 380px;
  }

  .esg-quality-card div {
    left: 24px;
    top: 24px;
  }

  .esg-quality-card h3 {
    font-size: 25px;
  }

  .esg-quality-card p {
    font-size: 13px;
  }

  .esg-report-card span {
    font-size: 14px;
  }

  .esg-closing,
  .esg-closing-inner {
    min-height: 560px;
  }

  .supply-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .supply-stat strong {
    font-size: 42px;
  }

  .supply-feature-copy h2 {
    font-size: 28px;
  }
}

@media (max-width: 1280px) {
  .quality-management-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 48px;
  }

  .quality-management-copy > p,
  .quality-commitment-content > p {
    font-size: 17px;
  }

  .quality-cert-heading p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
  }

  .quality-cert-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 54px;
  }

  .quality-cert-heading h2 {
    font-size: 64px;
  }

  .quality-cert-mini {
    gap: 28px;
  }

  .quality-stat strong {
    font-size: 48px;
  }

  .quality-stat strong > span:not(.count-value) {
    padding-bottom: 8px;
    font-size: 22px;
  }

  .quality-stats {
    gap: 48px;
  }

  .quality-test-card {
    grid-template-columns: minmax(280px, 1fr) minmax(430px, 1fr);
    gap: 48px;
    min-height: 0;
    padding: 40px;
  }

  .quality-test-copy {
    min-height: 560px;
    max-height: none;
    overflow: visible;
  }

  .quality-test-card figure {
    width: 100%;
    height: auto;
    aspect-ratio: 768 / 660;
  }
}

@media (max-width: 900px) {
  .quality-intro,
  .quality-management,
  .quality-testing {
    padding: 72px 24px 96px;
  }

  .quality-intro h2,
  .quality-management h2,
  .quality-testing h2,
  .quality-certifications h2 {
    font-size: 46px;
  }

  .quality-intro h2 {
    width: 100%;
    margin-top: 48px;
  }

  .quality-intro h2 span:nth-child(2) {
    margin-left: 52px;
  }

  .quality-video-frame {
    margin-top: 56px;
    aspect-ratio: 16 / 10;
  }

  .quality-video-mark {
    width: 54px;
    height: 54px;
  }

  .quality-video-frame.is-paused .quality-video-mark::before,
  .quality-video-frame:not(.is-playing) .quality-video-mark::before {
    left: 22px;
    top: 17px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .quality-video-frame.is-playing .quality-video-mark::before,
  .quality-video-frame.is-playing .quality-video-mark::after {
    top: 17px;
    width: 6px;
    height: 20px;
  }

  .quality-video-frame.is-playing .quality-video-mark::before {
    left: 18px;
  }

  .quality-video-frame.is-playing .quality-video-mark::after {
    right: 18px;
  }

  .quality-management-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 48px;
  }

  .quality-management-copy {
    padding-left: 28px;
  }

  .quality-cert-mini {
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .quality-stats {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 62px;
    padding-top: 0;
  }

  .quality-stat p {
    font-size: 16px;
  }

  .quality-commitment {
    height: 820px;
    min-height: 820px;
    overflow: hidden;
  }

  .quality-commitment-stage {
    position: relative;
    height: 100%;
    min-height: 0;
  }

  .quality-commitment-content {
    left: 24px;
    right: 24px;
    top: 92px;
    width: auto;
  }

  .quality-commitment h2 {
    width: min(520px, 100%);
    margin-top: 72px;
    font-size: 48px;
  }

  .quality-commitment-content > p {
    width: min(620px, 100%);
    margin-top: 42px;
    font-size: 16px;
    line-height: 1.55;
  }

  .quality-commitment-shade::after {
    right: 18px;
    bottom: 26px;
    font-size: 118px;
  }

  .quality-test-block,
  .quality-test-block + .quality-test-block {
    margin-top: 72px;
  }

  .quality-test-tabs {
    gap: 28px;
    margin-top: 42px;
  }

  .quality-test-tabs button {
    height: 44px;
    font-size: 16px;
  }

  .quality-test-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
    gap: 34px;
  }

  .quality-test-copy {
    min-height: 0;
    max-height: none;
  }

  .quality-test-index {
    margin-bottom: 36px;
  }

  .quality-test-description {
    margin-top: 28px;
  }

  .quality-test-description > p {
    font-size: 16px;
  }

  .quality-test-description li {
    font-size: 15px;
    line-height: 1.38;
  }

  .quality-test-card figure {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .quality-certifications {
    height: 760px;
    min-height: 760px;
    --quality-cert-edge: 24px;
  }

  .quality-cert-content {
    height: 100%;
    padding: 0;
  }

  .quality-certifications .brand-section-kicker {
    left: 24px;
    top: 72px;
  }

  .quality-cert-heading {
    display: block;
    margin: 0;
  }

  .quality-cert-heading h2 {
    left: 24px;
    top: 150px;
    width: calc(100vw - 48px);
    white-space: normal;
  }

  .quality-cert-heading p {
    left: 24px;
    right: 24px;
    top: 330px;
    width: auto;
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
  }

  .quality-cert-carousel {
    top: 560px;
    bottom: auto;
    height: 120px;
  }

  .quality-cert-track {
    animation-duration: 32s;
    gap: 60px;
  }

  .quality-cert-track img {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }
}

@media (max-width: 520px) {
  .quality-intro h2,
  .quality-management h2,
  .quality-testing h2,
  .quality-certifications h2 {
    font-size: 40px;
  }

  .quality-intro h2 span:nth-child(2) {
    margin-left: 34px;
  }

  .quality-management-copy {
    padding-left: 20px;
  }

  .quality-cert-mini img {
    width: 44px;
    height: 44px;
  }

  .quality-stat strong {
    font-size: 48px;
  }

  .quality-commitment h2 {
    font-size: 40px;
  }

  .quality-commitment-content > p {
    font-size: 14px;
  }

  .quality-certifications {
    min-height: 700px;
  }
}

@media (min-width: 901px) {
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .brand-story-page .site-header.is-scrolled,
  .brand-story-page .site-header.is-menu-open {
    background: #fff !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 80px 0 0;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(0.85);
  -webkit-backdrop-filter: blur(18px) saturate(0.85);
  transition: opacity 260ms ease;
}

body.is-nav-open::before {
  opacity: 1;
}

@supports selector(:has(*)) {
  body:has(.site-header .primary-nav [data-nav-key]:hover)::before,
  body:has(.site-header .primary-nav [data-nav-key]:focus-visible)::before,
  body:has(.site-header .nav-dropdown:hover)::before {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  body::before {
    display: none;
  }
}

/* Footer layout refresh from Figma node 146:868. */
.site-footer {
  color: #060606;
  background: #f8f8f8;
}

.site-footer .footer-main {
  height: 620px;
  position: relative;
  padding: 0;
  max-width: 1920px;
  margin: 0 auto;
}

.site-footer .footer-utility,
.site-footer .footer-product-group {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer .footer-utility {
  left: 120px;
  top: 100px;
  gap: 20px;
}

.site-footer .footer-product-electrical {
  left: 478px;
  top: 100px;
  width: 250px;
}

.site-footer .footer-product-home {
  left: 478px;
  top: 350px;
  width: 250px;
}

.site-footer .footer-product-lighting {
  left: 801px;
  top: 100px;
  width: 260px;
}

.site-footer .footer-product-power {
  left: 1091px;
  top: 100px;
  width: 230px;
}

.site-footer .footer-product-evse {
  left: 1091px;
  top: 265px;
  width: 260px;
}

.site-footer .footer-product-energy {
  left: 1091px;
  top: 429px;
  width: 220px;
}

.site-footer .footer-product-group h2 {
  margin: 0 0 20px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.site-footer .footer-utility a,
.site-footer .footer-product-group a {
  color: #050505;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 200ms ease;
}

.site-footer .footer-product-group a + a {
  margin-top: 16px;
}

.site-footer .footer-utility a:hover,
.site-footer .footer-product-group a:hover {
  color: var(--green);
}

.site-footer .footer-contact {
  right: 120px;
  top: 93px;
  width: 350px;
  text-align: right;
}

.site-footer .footer-contact h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
}

.site-footer .footer-contact p {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
}

.site-footer .footer-contact .button {
  right: 0;
  top: 126px;
  width: 191px;
  height: 58px;
  padding: 0 24px 0 32px;
  justify-content: space-between;
  font-size: 16px;
}

.site-footer .socials {
  right: 120px;
  top: 506px;
  gap: 32px;
}

.site-footer .footer-bottom {
  height: 65px;
  padding: 0 120px;
  background: #ebebeb;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 760px) {
  .site-footer .footer-main {
    height: auto;
    display: grid;
    gap: 42px;
    padding: 76px 24px 64px;
  }

  .site-footer .footer-utility,
  .site-footer .footer-product-group,
  .site-footer .footer-contact {
    position: static;
    width: auto;
  }

  .site-footer .footer-utility {
    gap: 18px;
  }

  .site-footer .footer-product-group h2 {
    margin-bottom: 14px;
  }

  .site-footer .footer-product-group a + a {
    margin-top: 10px;
  }

  .site-footer .footer-contact,
  .site-footer .footer-contact h2,
  .site-footer .footer-contact p {
    text-align: left;
  }

  .site-footer .footer-contact .button {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 30px;
  }

  .site-footer .socials {
    position: static;
    gap: 24px;
  }

  .site-footer .footer-bottom {
    padding: 0 24px;
    min-height: 65px;
    height: auto;
    line-height: 1.4;
  }
}
