:root {
  --white: #fff;
  --offwhite: #f6f6f4;
  --soft: #eeeeeb;
  --line: #ddddda;
  --black: #090909;
  --black-soft: #151515;
  --red: #e10600;
  --red-dark: #b80000;
  --red-light: #ff1a1a;
  --text: #111;
  --muted: #555;
  --muted-light: #666;
  --container: 1380px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 0.25s var(--ease);
  --normal: 0.5s var(--ease);
  --slow: 0.9s var(--ease);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  background: #fff;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--red);
  color: #fff;
}
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: var(--black);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}
.wrap {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.label {
  display: inline-block;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.red {
  color: var(--red) !important;
}
.rv {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.rv.show {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s !important;
}
.d2 {
  transition-delay: 0.2s !important;
}
.d3 {
  transition-delay: 0.3s !important;
}
.d4 {
  transition-delay: 0.4s !important;
}
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  width: min(500px, 80%);
  text-align: center;
}
.loader-logo {
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -3px;
}
.loader-logo span {
  color: var(--red);
}
.loader-sub {
  margin-top: 20px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
}
.loader-line {
  width: 100%;
  height: 2px;
  margin-top: 30px;
  overflow: hidden;
  background: #ddd;
}
.loader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  animation: loaderProgress 1.5s var(--ease) forwards;
}
@keyframes loaderProgress {
  to {
    width: 100%;
  }
}
#progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 0;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(225, 6, 0, 0.35);
  transition: width 0.05s linear;
}
#cursor-glow {
  position: fixed;
  z-index: 9998;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(225, 6, 0, 0.14),
    rgba(225, 6, 0, 0) 70%
  );
  transition: opacity 0.3s ease;
}
#mobile-language-float {
  display: none;
}
#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 92px !important;
  z-index: 10000;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 0 40px !important;
  direction: ltr !important;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    height var(--normal),
    background var(--normal),
    border-color var(--normal),
    box-shadow var(--normal);
}
#nav.scrolled {
  height: 72px !important;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}
#nav > .logo,
#nav > .logo:hover,
#nav > .logo:focus,
#nav > .logo:active {
  position: absolute !important;
  left: 40px !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: max-content !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
  transform: translateY(-50%) !important;
  transition: none !important;
  z-index: 10002 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  align-self: auto !important;
  float: none !important;
  order: initial !important;
}
#nav > .logo .brand-logo {
  display: block !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: none !important;
  scale: 1 !important;
  transition: width 0.5s var(--ease) !important;
}
#nav.scrolled > .logo .brand-logo {
  width: 92px !important;
}
#nav.scrolled > .logo .brand-logo {
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
}
#nav .navlinks {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  direction: ltr !important;
  white-space: nowrap;
}
.navlinks a {
  position: relative;
  color: #333;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  direction: ltr !important;
  transition:
    color var(--fast),
    transform var(--fast);
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--normal);
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--red);
  transform: translateY(-2px);
}
.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
}
#nav .nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  direction: ltr !important;
}
#langDesktop {
  width: 82px;
  min-width: 82px;
  max-width: 82px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--black);
  background: #fff;
  border: 1px solid #cfcfcf;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition:
    color var(--fast),
    background var(--fast),
    border-color var(--fast),
    transform var(--fast);
}
#langDesktop:hover {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}
#burger {
  display: none;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d4d4d4;
  background: #fff;
  direction: ltr !important;
}
#burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--black);
  transition:
    transform var(--fast),
    opacity var(--fast);
}
#burger:hover {
  border-color: var(--red);
}
#burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#burger.open span:nth-child(2) {
  opacity: 0;
}
#burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
#mmenu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity var(--normal),
    transform var(--normal),
    visibility var(--normal);
  overflow: hidden;
}
#mmenu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}
#mmenu .close {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: #fff;
  border: 1px solid #ddd;
  font-size: 18px;
  z-index: 5;
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
}
#mmenu .close:hover {
  background: var(--black);
  color: #fff;
  transform: rotate(90deg);
}
#mmenu a {
  position: relative;
  z-index: 4;
  padding: 8px 0;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(46px, 10vw, 85px);
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  transition:
    color var(--fast),
    padding-inline-start var(--normal),
    transform 0.4s var(--ease);
}
#mmenu a:hover {
  color: var(--red);
  padding-inline-start: 15px;
  transform: translateX(4px);
}
#mmenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 22%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 0, 0.03) 25%,
    rgba(225, 6, 0, 0.18) 50%,
    rgba(225, 6, 0, 0.03) 75%,
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
}
#mmenu.open::before {
  opacity: 1;
  animation: mobileMenuScan 3.8s var(--ease) infinite;
}
@keyframes mobileMenuScan {
  0% {
    left: -30%;
  }
  45% {
    left: 55%;
  }
  70% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 175px 0 90px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.94) 40%,
      rgba(255, 255, 255, 0.64) 68%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    url("assets/site/hero-construction.webp") center right/cover no-repeat;
  pointer-events: none;
  transform: scale(1.025);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.035) 0,
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 75px
  );
}
@keyframes heroDrift {
  to {
    transform: scale(1.045) translate3d(-1.1%, -0.6%, 0);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.hero-kicker .line {
  width: 55px;
  height: 2px;
  flex-shrink: 0;
  background: var(--red);
  box-shadow: 0 0 15px rgba(225, 6, 0, 0.3);
}
.hero h1 {
  max-width: 1080px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(70px, 10vw, 155px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.hero h1 .dim {
  display: inline-block;
  color: var(--red);
  animation: heroRedWord 3s ease-in-out infinite;
}
@keyframes heroRedWord {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    text-shadow: 0 0 0 rgba(225, 6, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0) scale(1.012);
    text-shadow: 0 12px 38px rgba(225, 6, 0, 0.2);
  }
}
.hero-sub {
  max-width: 700px;
  margin-top: 35px;
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 55px;
  width: fit-content;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}
.hero-stat:hover {
  transform: translateY(-5px);
}
.hero-stat strong {
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
}
.hero-stat span {
  margin-top: 3px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}
.hero .hero-kicker,
.hero h1,
.hero-sub,
.hero-stats,
.hero-ctas {
  animation: heroEntrance 0.9s var(--ease) both;
}
.hero h1 {
  animation-delay: 0.1s;
}
.hero-sub {
  animation-delay: 0.2s;
}
.hero-stats {
  animation-delay: 0.3s;
}
.hero-ctas {
  animation-delay: 0.4s;
}
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 25px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--black);
  overflow: hidden;
  isolation: isolate;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    color var(--normal),
    transform var(--normal),
    border-color var(--normal),
    box-shadow var(--normal);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--normal);
}
.btn:hover {
  color: #fff;
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn--solid {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.btn--solid::before {
  background: var(--black);
}
.arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn:hover .arrow {
  transform: translate(4px, -4px);
}
.intro,
.expertise,
.values,
.numbers,
.industries,
.process,
.projects,
.cta {
  position: relative;
  padding: 100px 0;
}
.intro {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 90px;
}
.expertise {
  background: var(--offwhite);
}
.values,
.projects {
  background: #fff;
}
.numbers,
.process {
  background: var(--black);
  color: #fff;
}
.industries {
  background: var(--offwhite);
}
.cta {
  background: #fff;
  text-align: center;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}
.section-head h2 {
  margin-top: 15px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.82;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.section-head p {
  max-width: 590px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.numbers .section-head h2,
.process .section-head h2 {
  color: #fff;
}
.numbers .section-head p,
.process .section-head p {
  color: #aaa;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.intro h2 {
  margin-top: 20px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.82;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.intro-copy {
  padding-top: 28px;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}
.intro-copy p + p {
  margin-top: 20px;
}
.intro-mark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.intro-mark div {
  display: flex;
  flex-direction: column;
}
.intro-mark strong {
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
}
.intro-mark span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #111;
  transform-style: preserve-3d;
  border: 1px solid transparent;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.project.wide {
  grid-column: span 2;
  min-height: 620px;
}
.project:hover {
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s var(--ease),
    filter 0.5s ease;
}
.project-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.05) 68%
  );
}
.project:hover .project-image {
  transform: scale(1.06);
  filter: saturate(1.06);
}
.project-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 4;
  padding: 8px 11px;
  background: var(--red);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  max-width: calc(100% - 50px);
}
.project-meta {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 4;
  color: #fff;
}
.project-loc {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
}
.project-meta h3 {
  margin-top: 8px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 65px);
  line-height: 0.85;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.project-scope {
  max-width: 580px;
  margin-top: 15px;
  color: #ddd;
  font-size: 12px;
  line-height: 1.6;
}
.projects-button {
  margin-top: 40px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.values-title h2 {
  margin-top: 15px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(60px, 7vw, 105px);
  line-height: 0.8;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.values-title p {
  max-width: 450px;
  margin-top: 30px;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}
.values-list {
  border-top: 1px solid var(--line);
}
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.value-item:hover {
  transform: translateX(8px);
  border-color: var(--red);
}
.value-num {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}
.value-item h3 {
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 0.9;
  text-transform: uppercase;
}
.value-item p {
  margin-top: 8px;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.number-card {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.number-card:hover {
  background: #111;
  transform: translateY(-6px);
}
.number-card strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(65px, 7vw, 100px);
  line-height: 0.75;
}
.number-card p {
  margin-top: 30px;
  color: #999;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.industry {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  overflow: hidden;
  background: #111;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s ease;
}
.industry:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.industry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.12));
}
.industry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition:
    transform 0.9s var(--ease),
    opacity 0.5s ease;
}
.industry:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}
.industry-content {
  position: relative;
  z-index: 3;
  color: #fff;
}
.industry-label {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.industry h3 {
  margin-top: 8px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  line-height: 0.82;
  text-transform: uppercase;
}
.industry p {
  max-width: 470px;
  margin-top: 12px;
  color: #ccc;
  font-size: 11px;
  line-height: 1.6;
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-top: 50px;
}
.process-line {
  position: absolute;
  top: 67px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 1.5s var(--ease);
}
.process-step {
  position: relative;
  padding-right: 20px;
  transition: transform 0.4s ease;
}
.process-step:hover {
  transform: translateY(-7px);
}
.process-num {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background: var(--black);
  color: var(--red);
  border: 1px solid var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.process-step h3 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 0.9;
  text-transform: uppercase;
}
.process-step p {
  max-width: 260px;
  margin-top: 15px;
  color: #999;
  font-size: 11px;
  line-height: 1.7;
}
.process-step:nth-of-type(5) .process-num {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.16);
}
.process-step:nth-of-type(5) h3 {
  color: var(--red);
}
.process-step:nth-of-type(5) p {
  color: #b8b8b8;
}
.story-divider {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #090909;
  color: #fff;
  isolation: isolate;
}
.story-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 22%,
    black 78%,
    transparent
  );
  opacity: 0.7;
}
.story-divider::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(225, 6, 0, 0.1),
    transparent 28%
  );
  animation: dividerPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes dividerPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
.story-divider__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}
.story-divider__rail {
  width: 92px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}
.story-divider__rail span {
  position: absolute;
  inset: 0;
  width: 35%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(225, 6, 0, 0.45);
  animation: dividerScan 2.8s var(--ease) infinite;
}
@keyframes dividerScan {
  0% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(360%);
  }
}
.story-divider__copy {
  text-align: center;
}
.story-divider__eyebrow {
  display: block;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.story-divider__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.82;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.story-divider__title span {
  display: inline-block;
  transition:
    transform 0.5s var(--ease),
    color 0.35s ease;
}
.story-divider__title .accent {
  color: var(--red);
}
.story-divider__copy:hover .story-divider__title span {
  transform: translateY(-4px);
}
.story-divider__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  color: #7d7d7d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.story-divider__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(225, 6, 0, 0.55);
  animation: dividerDot 1.8s ease-in-out infinite;
}
@keyframes dividerDot {
  0%,
  100% {
    transform: scale(0.75);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}
.story-divider__orb {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  animation: orbSpin 10s linear infinite;
}
.story-divider__orb::before,
.story-divider__orb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 0, 0.26);
}
.story-divider__orb::after {
  inset: 27px;
  border-color: rgba(255, 255, 255, 0.12);
}
.story-divider__orb i {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
  background: var(--red);
  box-shadow: 0 0 10px rgba(225, 6, 0, 0.45);
}
@keyframes orbSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 850px) {
  .story-divider {
    min-height: 250px;
  }
  .story-divider__inner {
    width: min(calc(100% - 40px), var(--container));
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .story-divider__rail {
    width: 100%;
    max-width: 150px;
    justify-self: center;
    order: 3;
  }
  .story-divider__orb {
    width: 68px;
    height: 68px;
    justify-self: center;
  }
  .story-divider__meta {
    flex-wrap: wrap;
  }
}
.cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}
.cta h2 {
  position: relative;
  max-width: 900px;
  margin: 18px auto 25px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(65px, 9vw, 135px);
  line-height: 0.78;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.cta p {
  position: relative;
  max-width: 620px;
  margin: 0 auto 35px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.main-clients {
  position: relative;
  padding: 82px 0 76px;
  background: linear-gradient(180deg, #fff 0%, #fbfbf9 100%);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.main-clients::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  animation: sectionLine 4.5s ease-in-out infinite;
}
@keyframes sectionLine {
  0%,
  20% {
    transform: scaleX(0);
    opacity: 0;
  }
  45%,
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
.clients-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 55px;
  align-items: end;
  margin-bottom: 42px;
}
.clients-head h2 {
  margin-top: 14px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.clients-description {
  max-width: 460px;
  color: #666;
  font-size: 13px;
  line-height: 1.85;
}/* =========================================
   CLIENTS MARQUEE — 80% SCALE
   Gap stays unchanged
   ========================================= */

.clients-marquee {

  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 14px 0 27px;

  direction: ltr;

}

.clients-marquee::before,

.clients-marquee::after {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  width: 288px;

  z-index: 4;

  pointer-events: none;

}

.clients-marquee::before {

  left: 0;

  background: linear-gradient(
    90deg,
    #fff,
    rgba(255, 255, 255, 0)
  );

}

.clients-marquee::after {

  right: 0;

  background: linear-gradient(
    270deg,
    #fff,
    rgba(255, 255, 255, 0)
  );

}

.clients-track {

  display: flex;

  align-items: center;

  flex-wrap: nowrap;

  width: max-content;

  /* KEEP GAP EXACTLY THE SAME */

  gap: 18px;

  direction: ltr;

  animation: clientsMarqueeLeft 78s linear infinite;

  animation-timing-function: linear;

  animation-iteration-count: infinite;

  will-change: transform;

}

.clients-marquee:hover .clients-track {

  animation-play-state: paused;

}

@keyframes clientsMarqueeRight {

  from {

    transform: translate3d(-50%, 0, 0);

  }

  to {

    transform: translate3d(0, 0, 0);

  }

}

@keyframes clientsMarqueeLeft {

  from {

    transform: translate3d(0, 0, 0);

  }

  to {

    transform: translate3d(-50%, 0, 0);

  }

}

html[dir="ltr"] .clients-track,

body[dir="ltr"] .clients-track {

  animation-name: clientsMarqueeRight;

}

html[dir="rtl"] .clients-track,

body[dir="rtl"] .clients-track {

  animation-name: clientsMarqueeLeft;

}

.client-logo {

  position: relative;

  width: 396px;

  height: 212px;

  flex: 0 0 396px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 32px 40px;

  background: #fff;

  border: 1px solid #e5e5e1;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.045);

  overflow: hidden;

  transition:

    transform 0.45s var(--ease),

    border-color 0.3s ease,

    box-shadow 0.4s ease;

}

.client-logo::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    110deg,

    rgba(225, 6, 0, 0.08),

    transparent 45%,

    rgba(0, 0, 0, 0.025)

  );

  opacity: 0;

  transition: opacity 0.35s ease;

}

.client-logo::after {

  content: "";

  position: absolute;

  top: -45%;

  left: -55%;

  width: 35%;

  height: 150%;

  background: linear-gradient(

    90deg,

    transparent,

    rgba(255, 255, 255, 0.9),

    transparent

  );

  transform: skewX(-18deg);

}

.client-logo img {

  position: relative;

  z-index: 2;

  width: 100%;

  height: 100%;

  object-fit: contain;

  filter: none !important;

  transform: scale(1.69);

  transition: transform 0.65s var(--ease);

}

.client-logo:hover {

  transform: translateY(-14px);

  border-color: rgba(225, 6, 0, 0.45);

  box-shadow: 0 36px 76px rgba(0, 0, 0, 0.1);

}

.client-logo:hover::before {

  opacity: 1;

}

.client-logo:hover::after {

  animation: clientLogoSweep 0.75s var(--ease) forwards;

}

.client-logo:hover img {

  transform: scale(1.80);

}

@keyframes clientLogoSweep {

  from {

    left: -55%;

  }

  to {

    left: 145%;

  }

}.clients-marquee {

  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 8px 0 15px;

}

.clients-marquee::before,

.clients-marquee::after {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  width: 160px;

  z-index: 4;

  pointer-events: none;

}

.clients-marquee::before {

  left: 0;

  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));

}

.clients-marquee::after {

  right: 0;

  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));

}

.clients-marquee {

  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 8px 0 15px;

  direction: ltr;

}

.clients-track {

  display: flex;

  align-items: center;

  flex-wrap: nowrap;

  width: max-content;

  gap: 18px;

  direction: ltr;

  animation: clientsMarqueeLeft 78s linear infinite;

  animation-timing-function: linear;

  animation-iteration-count: infinite;

  will-change: transform;

}

.clients-marquee:hover .clients-track {

  animation-play-state: paused;

}

@keyframes clientsMarqueeRight {

  from {

    transform: translate3d(-50%, 0, 0);

  }

  to {

    transform: translate3d(0, 0, 0);

  }

}

@keyframes clientsMarqueeLeft {

  from {

    transform: translate3d(0, 0, 0);

  }

  to {

    transform: translate3d(-50%, 0, 0);

  }

}

html[dir="ltr"] .clients-track,

body[dir="ltr"] .clients-track {

  animation-name: clientsMarqueeRight;

}

html[dir="rtl"] .clients-track,

body[dir="rtl"] .clients-track {

  animation-name: clientsMarqueeLeft;

}

.client-logo {

  position: relative;

  width: 330px;

  height: 177px;

  flex: 0 0 330px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 18px 22px;

  background: #fff;

  border: 1px solid #e5e5e1;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);

  overflow: hidden;

  transition:

    transform 0.45s var(--ease),

    border-color 0.3s ease,

    box-shadow 0.4s ease;

}

.client-logo::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    110deg,

    rgba(225, 6, 0, 0.08),

    transparent 45%,

    rgba(0, 0, 0, 0.025)

  );

  opacity: 0;

  transition: opacity 0.35s ease;

}

.client-logo::after {

  content: "";

  position: absolute;

  top: -25%;

  left: -55%;

  width: 35%;

  height: 150%;

  background: linear-gradient(

    90deg,

    transparent,

    rgba(255, 255, 255, 0.9),

    transparent

  );

  transform: skewX(-18deg);

}

.client-logo img {

  position: relative;

  z-index: 2;

  width: 100%;

  height: 100%;

  object-fit: contain;

  filter: none !important;

  transform: scale(1.22);

  transition: transform 0.65s var(--ease);

}

.client-logo:hover {

  transform: translateY(-8px);

  border-color: rgba(225, 6, 0, 0.45);

  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.1);

}

.client-logo:hover::before {

  opacity: 1;

}

.client-logo:hover::after {

  animation: clientLogoSweep 0.75s var(--ease) forwards;

}

.client-logo:hover img {

  transform: scale(1.30);

}

@keyframes clientLogoSweep {

  from {

    left: -55%;

  }

  to {

    left: 145%;

  }

}
.trusted-certified {
  position: relative;
  padding: 88px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 6, 0, 0.035), transparent 28%),
    var(--offwhite);
}
.trusted-certified::before {
  content: "CERTIFIED";
  position: absolute;
  right: -25px;
  bottom: -50px;
  z-index: 0;
  color: rgba(0, 0, 0, 0.025);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(180px, 25vw, 390px);
  font-weight: 900;
  line-height: 0.66;
  letter-spacing: -10px;
  pointer-events: none;
}
.trust-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 55px;
  align-items: end;
  margin-bottom: 42px;
}
.trust-head h2 {
  margin-top: 14px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(62px, 7.3vw, 104px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.trust-head h2 .red {
  display: inline-block;
  animation: trustWordPulse 3.6s ease-in-out infinite;
}
@keyframes trustWordPulse {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(225, 6, 0, 0);
  }
  50% {
    transform: translateY(-4px);
    text-shadow: 0 10px 30px rgba(225, 6, 0, 0.14);
  }
}
.trust-intro {
  max-width: 500px;
  color: #666;
  font-size: 13px;
  line-height: 1.85;
}
.cert-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cert-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid #dfdfda;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
  cursor: zoom-in;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.5s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.5s ease;
}
.cert-card:hover {
  transform: translateY(-9px);
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.11);
}
.cert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border-bottom: 1px solid #e4e4df;
}
.cert-number {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.cert-issuer {
  color: #777;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.cert-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f3ef;
}
.cert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.9s var(--ease);
}
.cert-image-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(9, 9, 9, 0.84);
  border-left: 2px solid var(--red);
  backdrop-filter: blur(8px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.cert-card:hover .cert-image {
  transform: scale(1.045);
}
.cert-content {
  padding: 22px 20px 21px;
}
.cert-code {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.cert-content h3 {
  margin-top: 9px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}
.cert-content p {
  margin-top: 13px;
  color: #666;
  font-size: 10.5px;
  line-height: 1.72;
}
.cert-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e3e3de;
  color: #888;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cert-meta span:first-child {
  color: #111;
}
.trust-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #d8d8d3;
}
.trust-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-footer-copy span {
  color: #888;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.trust-footer-copy strong {
  color: #222;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.trust-footer-badge {
  min-width: 150px;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  padding: 10px 13px;
  background: #090909;
  color: #fff;
  border-left: 3px solid var(--red);
}
.trust-footer-badge span {
  grid-row: 1/3;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
}
.trust-footer-badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 0.8;
}
.trust-footer-badge small {
  color: #999;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6.5px;
  letter-spacing: 1px;
}
.material-lab {
  position: relative;
  z-index: 3;
  margin-top: 34px;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.material-lab__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 50px;
  align-items: end;
  margin-bottom: 20px;
}
.material-lab__head h3 {
  margin-top: 10px;
  font:
    800 clamp(34px, 4vw, 58px)/0.86 "Barlow Condensed",
    sans-serif;
  letter-spacing: -1.8px;
  text-transform: uppercase;
}
.material-lab__head p {
  max-width: 560px;
  color: #6a6a66;
  font-size: 12px;
  line-height: 1.8;
}
.material-lab__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.material-card {
  position: relative;
  min-height: 116px;
  padding: 0;
  border: 1px solid #d8d7d2;
  background: #fff;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}
.material-card:hover,
.material-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}
.material-card__image {
  display: block;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.62;
  filter: saturate(0.82);
  transition:
    transform 0.7s var(--ease),
    opacity 0.45s ease,
    filter 0.45s ease;
}
.material-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.86),
    rgba(8, 8, 8, 0.08) 75%
  );
}
.material-card:hover .material-card__image,
.material-card.is-active .material-card__image {
  transform: scale(1.08);
  opacity: 0.92;
  filter: saturate(1);
}
.material-card__image--anodized {
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(1.02);
}
.material-card__image--anodized::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    transparent 45%,
    rgba(0, 0, 0, 0.08)
  );
  opacity: 0.7;
}
.material-card__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 116px;
  padding: 14px;
  color: #fff;
}
.material-card__meta b {
  color: var(--red);
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
}
.material-card__meta strong {
  margin-top: 6px;
  font:
    800 13px/1 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.5px;
}
.material-card__meta small {
  margin-top: 5px;
  color: #c8c8c5;
  font:
    600 6.5px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.project-reveal {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}
project-reveal__image {
  position: absolute;
  inset: -4%;
  background-image: url("assets/site/architecture-01.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.74) contrast(1.04);
  transform: scale(1.06);
  transition:
    transform 1.8s var(--ease),
    filter 1s ease;
}
.project-reveal.is-visible .project-reveal__image {
  transform: scale(1);
  filter: saturate(0.95) contrast(1.08);
}
.project-reveal__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
  z-index: 1;
}
.project-reveal__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black 0 62%, transparent 90%);
}
.project-reveal__content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 90px;
}
.project-reveal__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.6px;
}
.project-reveal__eyebrow span {
  color: #aaa;
}
.project-reveal__eyebrow i {
  width: 44px;
  height: 1px;
  background: var(--red);
}
.project-reveal__eyebrow b {
  color: var(--red);
}
.project-reveal h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  font:
    800 clamp(42px, 7.4vw, 112px)/0.78 "Barlow Condensed",
    sans-serif;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.project-reveal h2 span {
  display: inline-block;
  transition:
    transform 0.7s var(--ease),
    opacity 0.7s ease;
}
.project-reveal h2 em {
  font-style: normal;
  color: var(--red);
  font:
    500 clamp(30px, 5vw, 78px)/1 "Space Grotesk",
    sans-serif;
}
.project-reveal__content p {
  max-width: 640px;
  margin-top: 25px;
  color: #c8c8c4;
  font-size: 13px;
  line-height: 1.9;
}
.project-reveal__meta {
  display: flex;
  gap: 26px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #aaa;
  font:
    600 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.2px;
}
.project-reveal:not(.is-visible) h2 span:nth-of-type(1) {
  transform: translateX(-20px);
  opacity: 0;
}
.project-reveal:not(.is-visible) h2 span:nth-of-type(2) {
  transform: translateY(20px);
  opacity: 0;
}
.project-reveal:not(.is-visible) h2 span:nth-of-type(3) {
  transform: translateX(20px);
  opacity: 0;
}
.project-reveal.is-visible h2 span {
  transform: none;
  opacity: 1;
}
.project-reveal.is-visible h2 span:nth-of-type(2) {
  transition-delay: 0.12s;
}
.project-reveal.is-visible h2 span:nth-of-type(3) {
  transition-delay: 0.24s;
}
footer.site {
  padding: 70px 0 25px;
  color: #fff;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.foot-brand {
  min-width: 0;
}
.foot-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: max-content !important;
  max-width: max-content !important;
  min-width: max-content !important;
  color: #fff !important;
  direction: ltr !important;
  text-align: left !important;
  white-space: nowrap !important;
  transform: none !important;
  position: relative !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: none !important;
  cursor: pointer !important;
}
.foot-logo:hover,
.foot-logo:focus,
.foot-logo:active {
  transform: none !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 !important;
}
footer.site .foot-logo span {
  display: inline-block !important;
  transform: none !important;
  position: relative !important;
  left: 0 !important;
  right: auto !important;
}
.foot-logo b {
  color: var(--red) !important;
  font-weight: 800 !important;
  margin-left: 5px !important;
}
.foot-logo-img {
  display: block;
  width: 150px;
  height: auto;
  max-width: 150px;
  object-fit: contain;
}
.foot-tag {
  max-width: 330px;
  margin-top: 20px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.8;
}
.foot-grid h4 {
  margin-bottom: 20px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.foot-grid a,
.foot-grid p {
  display: block;
  margin: 9px 0;
  color: #aaa;
  font-size: 11px;
  transition:
    color 0.25s ease,
    transform 0.3s var(--ease);
}
.foot-grid a:hover {
  color: var(--red);
  transform: translateX(5px);
}
.legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #777;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
#wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 10000;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #090909;
  border: 1px solid rgba(37, 211, 102, 0.95);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(225, 6, 0, 0.28);
  animation: alusmartWaPulse 3s infinite;
  transition:
    transform 0.45s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}
#wa svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  transition:
    transform 0.4s var(--ease),
    width 0.3s ease,
    height 0.3s ease;
}
#wa::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  opacity: 0.95;
}
#wa::before {
  content: "CHAT ON WHATSAPP";
  position: absolute;
  right: calc(100%+14px);
  top: 50%;
  min-width: max-content;
  padding: 10px 14px;
  color: #fff;
  background: #090909;
  border-left: 2px solid var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px) scale(0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.4s var(--ease);
}
#wa:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateY(-6px) scale(1.06);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(37, 211, 102, 0.18);
  animation: none;
}
#wa:hover svg {
  transform: rotate(-8deg) scale(1.08);
}
#wa:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}
#wa:hover::after {
  border-color: #fff;
}
@keyframes alusmartWaPulse {
  0% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(225, 6, 0, 0.28);
  }
  60% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 12px rgba(225, 6, 0, 0);
  }
  100% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(225, 6, 0, 0);
  }
}
#certLightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
#certLightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#certLightboxImage {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
#certLightboxClose {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
#certLightboxClose:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg);
}
.façade-showcase {
  position: relative;
  padding: 110px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(225, 6, 0, 0.07), transparent 24%),
    linear-gradient(180deg, #f7f7f4 0%, #fff 48%, #f2f2ef 100%);
}
.façade-showcase::before {
  content: "03D";
  position: absolute;
  right: -30px;
  top: 30px;
  color: rgba(0, 0, 0, 0.035);
  font:
    900 clamp(180px, 28vw, 430px)/0.65 "Barlow Condensed",
    sans-serif;
  letter-spacing: -14px;
  pointer-events: none;
}
.façade-showcase-head,
.drawing-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 70px;
  align-items: end;
}
.façade-showcase-head h2,
.drawing-head h2 {
  margin-top: 16px;
  color: var(--black);
  font:
    800 clamp(70px, 8vw, 125px)/0.76 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.façade-showcase-head h2 .red,
.drawing-head h2 .red {
  display: inline-block;
}
.façade-showcase-copy,
.drawing-intro {
  max-width: 520px;
  color: #666;
  font-size: 13px;
  line-height: 1.9;
}
.façade-stage {
  position: relative;
  height: min(66vw, 730px);
  min-height: 560px;
  margin-top: 48px;
  overflow: hidden;
  perspective: 1500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #fff 0%, #f3f3ef 56%, #e8e8e4 100%);
  background-size:
    55px 55px,
    55px 55px,
    auto;
  border: 1px solid #deded9;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
}
.façade-stage-grid {
  position: absolute;
  transform: translateY(var(--stage-shift, 0));
  transition: transform 0.2s linear;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 47%,
      rgba(225, 6, 0, 0.09) 49%,
      transparent 51%
    ),
    linear-gradient(
      75deg,
      transparent 47%,
      rgba(0, 0, 0, 0.055) 49%,
      transparent 51%
    );
  opacity: 0.7;
}
.façade-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(225, 6, 0, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(10deg);
  pointer-events: none;
}
.façade-orbit--1 {
  width: 70%;
  height: 52%;
}
.façade-orbit--2 {
  width: 52%;
  height: 76%;
  border-color: rgba(0, 0, 0, 0.08);
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-22deg);
}
.facade-system {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(44vw, 540px);
  aspect-ratio: 1/1.15;
  transform: translate(-50%, -50%) rotateX(10deg) rotateY(-20deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
}
.facade-shadow {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 0;
  height: 14%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.22), transparent 68%);
  filter: blur(16px);
  transform: rotateX(75deg) translateZ(-90px);
}
.facade-glass {
  position: absolute;
  inset: 8%;
  border: 12px solid rgba(24, 31, 36, 0.72);
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(177, 214, 225, 0.32) 32%,
      rgba(35, 65, 74, 0.2) 70%,
      rgba(255, 255, 255, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0.05)
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.09);
  transform-style: preserve-3d;
  backdrop-filter: blur(3px);
}
.facade-glass--back {
  transform: translateZ(-34px) translateX(20px);
  opacity: 0.58;
}
.facade-glass--front {
  transform: translateZ(0);
}
.facade-frame {
  position: absolute;
  z-index: 3;
  background: linear-gradient(135deg, #161616 0%, #4a4a47 48%, #0a0a0a 100%);
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.14),
    10px 14px 20px rgba(0, 0, 0, 0.13);
}
.facade-frame--left {
  left: 6%;
  top: 6%;
  width: 20px;
  height: 88%;
  transform: translateZ(20px);
}
.facade-frame--right {
  right: 5%;
  top: 6%;
  width: 20px;
  height: 88%;
  transform: translateZ(20px);
}
.facade-frame--top {
  left: 6%;
  right: 5%;
  top: 6%;
  height: 20px;
  transform: translateZ(20px);
}
.facade-frame--bottom {
  left: 6%;
  right: 5%;
  bottom: 6%;
  height: 20px;
  transform: translateZ(20px);
}
.facade-frame--mid {
  left: 7%;
  right: 6%;
  top: 51%;
  height: 12px;
  transform: translateZ(28px);
}
.facade-joint {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.09);
}
.facade-joint--1 {
  left: 10%;
  top: 48%;
}
.facade-joint--2 {
  right: 9%;
  top: 48%;
}
.facade-joint--3 {
  left: 48%;
  top: 10%;
}
.facade-joint--4 {
  left: 48%;
  bottom: 9%;
}
.facade-chip {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--red);
  font:
    700 10px "IBM Plex Mono",
    monospace;
  box-shadow: 0 14px 25px rgba(225, 6, 0, 0.28);
  transform: translateZ(55px);
}
.facade-chip--one {
  right: 2%;
  top: 28%;
}
.facade-chip--two {
  left: 1%;
  bottom: 26%;
  background: var(--black);
}
.facade-label {
  position: absolute;
  z-index: 6;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.88);
  border-left: 2px solid var(--red);
  color: #222;
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}
.facade-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--red);
  opacity: 0.55;
}
.facade-label--al {
  left: 7%;
  top: 26%;
}
.facade-label--al::after {
  left: 100%;
}
.facade-label--glass {
  right: 6%;
  top: 63%;
}
.facade-label--glass::after {
  right: 100%;
}
.facade-label--detail {
  left: 11%;
  bottom: 17%;
}
.facade-label--detail::after {
  left: 100%;
}
.façade-stage-meter {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7b7b76;
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
}
.façade-stage-meter i {
  width: 55px;
  height: 1px;
  background: var(--red);
}
.façade-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  margin-top: 18px;
  border-top: 1px solid #dcdcd7;
  border-bottom: 1px solid #dcdcd7;
}
.façade-spec,
.façade-spec-cta {
  min-height: 122px;
  padding: 23px 24px;
  border-right: 1px solid #dcdcd7;
}
.façade-spec-no {
  display: block;
  color: var(--red);
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.façade-spec strong {
  display: block;
  margin-top: 12px;
  font:
    800 30px/0.8 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.façade-spec > span:last-child {
  display: block;
  margin-top: 9px;
  color: #777;
  font-size: 10px;
  line-height: 1.5;
}
.façade-spec-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-right: 0;
  color: #444;
  font:
    700 9px "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.façade-spec-cta .btn {
  width: 52px;
  min-height: 52px;
  padding: 0;
}
.drawing-story {
  position: relative;
  overflow: hidden;
  padding: 125px 0 110px;
  color: #fff;
  background: #090909;
}
.drawing-story::before {
  content: "DRAW / BUILD";
  position: absolute;
  right: -35px;
  top: 40px;
  color: rgba(255, 255, 255, 0.025);
  font:
    900 clamp(150px, 24vw, 380px)/0.62 "Barlow Condensed",
    sans-serif;
  letter-spacing: -12px;
  pointer-events: none;
}
.drawing-noise {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.09) 0.6px,
    transparent 0.6px
  );
  background-size: 8px 8px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  pointer-events: none;
}
.drawing-head h2 {
  color: #fff;
}
.drawing-intro {
  color: #999;
}
.drawing-board {
  position: relative;
  height: 650px;
  margin-top: 50px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}
.drawing-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 50px 50px;
}
.drawing-dim {
  position: absolute;
  color: #777;
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.5px;
}
.drawing-dim--top {
  left: 12%;
  right: 12%;
  top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.drawing-dim--top::before,
.drawing-dim--top::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
}
.drawing-dim--top::before {
  left: 0;
}
.drawing-dim--top::after {
  right: 0;
}
.drawing-dim--top span {
  position: relative;
  top: -13px;
  padding: 0 8px;
  background: #0d0d0d;
}
.drawing-dim--side {
  top: 22%;
  bottom: 22%;
  left: 70px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 9px;
}
.drawing-blueprint {
  position: absolute;
  left: 18%;
  top: 19%;
  width: 48%;
  height: 62%;
  transform: rotate(-4deg);
  opacity: 0.92;
}
.bp-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.bp-frame--outer {
  inset: 0;
}
.bp-frame--inner {
  inset: 10%;
  border-color: rgba(225, 6, 0, 0.72);
}
.bp-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.36);
}
.bp-line--a {
  left: 25%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.bp-line--b {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.bp-line--c {
  left: 75%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.bp-line--d {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}
.bp-joint {
  position: absolute;
  left: 49%;
  top: 47%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--red);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(225, 6, 0, 0.07);
}
.bp-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.bp-marker b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--red);
  color: var(--red);
}
.bp-marker--a {
  left: 8%;
  top: 18%;
}
.bp-marker--b {
  right: 8%;
  bottom: 16%;
}
.drawing-build {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 34%;
  height: 58%;
  transform-style: preserve-3d;
  perspective: 900px;
}
.drawing-build::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: skewY(-8deg) rotateY(-25deg);
}
.drawing-build div {
  position: absolute;
  width: 8px;
  background: linear-gradient(180deg, #fff, #666);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  transform: rotateY(-35deg);
}
.drawing-build div:nth-child(1) {
  left: 15%;
  top: 6%;
  height: 88%;
}
.drawing-build div:nth-child(2) {
  left: 42%;
  top: 3%;
  height: 92%;
}
.drawing-build div:nth-child(3) {
  left: 69%;
  top: 8%;
  height: 86%;
}
.drawing-build div:nth-child(4) {
  left: 11%;
  top: 49%;
  width: 76%;
  height: 7px;
}
.drawing-stage-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: end;
}
.drawing-stage-copy > span {
  color: var(--red);
  font:
    700 10px "IBM Plex Mono",
    monospace;
}
.drawing-stage-copy strong {
  font:
    800 clamp(40px, 5vw, 80px)/0.78 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.drawing-stage-copy p {
  grid-column: 2;
  margin-top: 8px;
  max-width: 450px;
  color: #999;
  font-size: 11px;
}
.drawing-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.drawing-step {
  position: relative;
  min-height: 105px;
  padding: 22px 18px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    background 0.35s ease,
    transform 0.35s var(--ease);
}
.drawing-step:last-child {
  border-right: 0;
}
.drawing-step:hover,
.drawing-step.is-active {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}
.drawing-step span {
  display: block;
  color: var(--red);
  font:
    700 8px "IBM Plex Mono",
    monospace;
}
.drawing-step strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font:
    700 24px "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.drawing-step i {
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.45s var(--ease);
}
.drawing-step.is-active i {
  width: calc(100% - 36px);
}
.story-gallery {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  background: #111;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.story-gallery__track {
  position: relative;
  width: 100%;
  height: 620px;
}
.story-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 0.75s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-photo.is-active {
  opacity: 1;
  transform: scale(1);
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.82) 100%
  );
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) contrast(1.05);
  transition:
    filter 1s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-photo.is-active img {
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.015);
}
.story-photo figcaption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}
.story-photo figcaption span {
  font:
    700 9px "IBM Plex Mono",
    monospace;
  color: #ff2a2a;
  letter-spacing: 1.6px;
}
.story-photo figcaption strong {
  font:
    700 clamp(40px, 6vw, 82px) "Barlow Condensed",
    sans-serif;
  line-height: 0.84;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.story-gallery.story-change::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 0, 0.1),
    transparent
  );
  animation: storyChange 0.55s ease;
}
@keyframes storyChange {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.story-gallery__scan {
  position: absolute;
  left: -20%;
  top: 0;
  width: 18%;
  height: 100%;
  z-index: 4;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: skewX(-15deg);
  pointer-events: none;
  animation: storySweep 5.5s ease-in-out infinite;
}
@keyframes storySweep {
  0%,
  72% {
    left: -22%;
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  94%,
  100% {
    left: 120%;
    opacity: 0;
  }
}
.story-gallery__meta {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.story-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 850px) {
  .story-gallery {
    min-height: 420px;
  }
  .story-gallery__track {
    height: 420px;
  }
  .story-photo figcaption {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }
  .story-photo figcaption strong {
    font-size: clamp(34px, 11vw, 60px);
  }
  .story-gallery__meta {
    left: 16px;
    right: 16px;
    top: 16px;
    font-size: 7px;
  }
  .story-cta {
    justify-content: flex-start;
  }
}
.drawing-board {
  --draw-accent: var(--red);
  --draw-opacity: 1;
}
.drawing-blueprint,
.drawing-build {
  transition:
    transform 0.8s var(--ease),
    opacity 0.6s ease,
    filter 0.6s ease;
}
.drawing-blueprint::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.8s var(--ease);
}
.drawing-build::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    top 0.8s var(--ease);
}
.drawing-board.stage-01 .drawing-blueprint {
  transform: rotate(-4deg) translate3d(0, 0, 0) scale(0.94);
}
.drawing-board.stage-01 .drawing-build {
  opacity: 0.16;
  transform: translate3d(26px, 0, 0) scale(0.92);
  filter: blur(0.3px);
}
.drawing-board.stage-01 .drawing-blueprint::after {
  opacity: 0.35;
}
.drawing-board.stage-01 .bp-frame--inner {
  border-color: rgba(225, 6, 0, 0.42);
}
.drawing-board.stage-01 .bp-joint {
  transform: translate(-50%, -50%) scale(0.8);
}
.drawing-board.stage-02 .drawing-blueprint {
  transform: rotate(0deg) translate3d(-3%, 0, 0) scale(1);
}
.drawing-board.stage-02 .drawing-build {
  opacity: 0.34;
  transform: translate3d(4%, 0, 0) scale(0.98) rotateY(-10deg);
}
.drawing-board.stage-02 .drawing-blueprint::after {
  opacity: 0.75;
  transform: scale(1.03);
}
.drawing-board.stage-02 .bp-line--a,
.drawing-board.stage-02 .bp-line--b,
.drawing-board.stage-02 .bp-line--c {
  background: rgba(225, 6, 0, 0.48);
}
.drawing-board.stage-02 .bp-line--d {
  background: rgba(255, 255, 255, 0.58);
}
.drawing-board.stage-02 .bp-joint {
  box-shadow:
    0 0 0 14px rgba(225, 6, 0, 0.09),
    0 0 28px rgba(225, 6, 0, 0.14);
}
.drawing-board.stage-03 .drawing-blueprint {
  transform: rotate(3deg) translate3d(-14%, 4%, 0) scale(0.9);
}
.drawing-board.stage-03 .drawing-build {
  opacity: 0.8;
  transform: translate3d(2%, 0, 0) scale(1.02) rotateY(-18deg);
}
.drawing-board.stage-03 .drawing-blueprint::after {
  opacity: 0.95;
  transform: translateX(8%) scale(0.96);
}
.drawing-board.stage-03 .drawing-build div:nth-child(1),
.drawing-board.stage-03 .drawing-build div:nth-child(2),
.drawing-board.stage-03 .drawing-build div:nth-child(3) {
  animation: drawFabPulse 1.5s var(--ease) infinite alternate;
}
.drawing-board.stage-03 .drawing-build::after {
  opacity: 0.9;
  top: 43%;
}
.drawing-board.stage-04 .drawing-blueprint {
  transform: rotate(0deg) translate3d(-18%, 2%, 0) scale(0.74);
  opacity: 0.22;
}
.drawing-board.stage-04 .drawing-build {
  opacity: 1;
  transform: translate3d(-4%, 0, 0) scale(1.12) rotateY(-22deg);
}
.drawing-board.stage-04 .drawing-build::before {
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: 0 0 40px rgba(225, 6, 0, 0.06);
}
.drawing-board.stage-04 .drawing-build div {
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.14);
}
.drawing-board.stage-04 .bp-marker--a,
.drawing-board.stage-04 .bp-marker--b {
  opacity: 0.45;
}
@keyframes drawFabPulse {
  from {
    filter: brightness(0.85);
    transform: translateY(0) rotateY(-35deg);
  }
  to {
    filter: brightness(1.25);
    transform: translateY(-3px) rotateY(-35deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .drawing-board.stage-03 .drawing-build div {
    animation: none !important;
  }
}
.façade-stage {
  isolation: isolate;
}
.facade-system {
  width: min(48vw, 610px);
  aspect-ratio: 1/1.08;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.12));
  will-change: transform;
}
.facade-system::before {
  content: "";
  position: absolute;
  inset: -8%;
  border: 1px solid rgba(225, 6, 0, 0.14);
  transform: translateZ(-75px) rotateX(4deg) rotateY(-6deg);
  box-shadow: inset 0 0 60px rgba(225, 6, 0, 0.035);
  pointer-events: none;
}
.facade-system::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 11%;
  bottom: 11%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateZ(-120px) skewX(-3deg);
  pointer-events: none;
}
.facade-depth-plane {
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  transform-style: preserve-3d;
}
.facade-depth-plane--rear {
  transform: translate3d(26px, -18px, -96px) rotateY(10deg);
  opacity: 0.65;
}
.facade-glass--mid {
  inset: 9%;
  transform: translateZ(-16px) translateX(10px);
  opacity: 0.36;
  border-width: 7px;
}
.facade-glass--front {
  inset: 8%;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.9),
    rgba(181, 215, 224, 0.28) 32%,
    rgba(29, 53, 62, 0.15) 62%,
    rgba(255, 255, 255, 0.68)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset -32px -22px 55px rgba(0, 0, 0, 0.07),
    0 22px 50px rgba(0, 0, 0, 0.12);
}
.facade-glass--front::before,
.facade-glass--front::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.facade-glass--front::before {
  inset: 4%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.facade-glass--front::after {
  left: 8%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  transform: skewX(-22deg);
  animation: glassSweep 5.2s ease-in-out infinite;
}
.facade-mullion {
  position: absolute;
  z-index: 4;
  background: linear-gradient(90deg, #0b0b0b, #61615c 45%, #0a0a0a);
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.12),
    5px 8px 18px rgba(0, 0, 0, 0.12);
  transform: translateZ(38px);
}
.facade-mullion--v1 {
  left: 34%;
  top: 9%;
  width: 10px;
  height: 82%;
  transform: translateZ(42px) rotateY(-2deg);
}
.facade-mullion--v2 {
  left: 66%;
  top: 9%;
  width: 10px;
  height: 82%;
  transform: translateZ(42px) rotateY(2deg);
}
.facade-mullion--h1 {
  left: 8%;
  right: 8%;
  top: 34%;
  height: 8px;
  transform: translateZ(43px);
}
.facade-mullion--h2 {
  left: 8%;
  right: 8%;
  top: 67%;
  height: 8px;
  transform: translateZ(43px);
}
.facade-cap {
  position: absolute;
  z-index: 5;
  width: 24px;
  height: 86%;
  top: 7%;
  background: linear-gradient(90deg, #101010, #767670 44%, #171717);
  box-shadow: 9px 10px 18px rgba(0, 0, 0, 0.12);
  transform: translateZ(55px);
}
.facade-cap--left {
  left: 3%;
  transform: translateZ(55px) rotateY(8deg);
}
.facade-cap--right {
  right: 2%;
  transform: translateZ(55px) rotateY(-8deg);
}
.facade-fastener {
  position: absolute;
  z-index: 7;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4f4ef;
  border: 2px solid #777;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  transform: translateZ(68px);
}
.facade-fastener--1 {
  left: 32%;
  top: 10%;
}
.facade-fastener--2 {
  right: 31%;
  top: 10%;
}
.facade-fastener--3 {
  left: 32%;
  bottom: 10%;
}
.facade-fastener--4 {
  right: 31%;
  bottom: 10%;
}
.facade-detail {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.3px;
  transform: translateZ(86px);
}
.facade-detail span {
  padding: 7px 9px;
  background: #101010;
  border-left: 2px solid var(--red);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}
.facade-detail i {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--red);
}
.facade-detail--glass {
  right: -1%;
  top: 37%;
}
.facade-detail--glass i {
  order: -1;
}
.facade-detail--joint {
  left: -4%;
  top: 60%;
}
.facade-detail--joint i {
  width: 28px;
}
.facade-scan {
  position: absolute;
  z-index: 9;
  left: 8%;
  right: 8%;
  top: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.55);
  transform: translateZ(90px);
  opacity: 0.75;
  animation: facadeScan 4.8s ease-in-out infinite;
}
.facade-chip--one,
.facade-chip--two {
  transform: translateZ(95px);
  width: 48px;
  height: 48px;
}
.facade-chip--one {
  right: -1%;
  top: 19%;
}
.facade-chip--two {
  left: -3%;
  bottom: 18%;
}
@keyframes glassSweep {
  0%,
  55% {
    transform: translateX(-130%) skewX(-22deg);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  85%,
  100% {
    transform: translateX(260%) skewX(-22deg);
    opacity: 0;
  }
}
@keyframes facadeScan {
  0%,
  18% {
    top: 9%;
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  55% {
    top: 82%;
    opacity: 0.8;
  }
  70%,
  100% {
    top: 82%;
    opacity: 0;
  }
}
@keyframes facadeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}
.facade-system > * {
  will-change: transform;
}
.hero-ctas {
  direction: ltr;
}
.hero-profile-btn {
  margin-left: 0;
}
.drawing-board.drawing-change .drawing-blueprint {
  animation: blueprintPulse 0.7s var(--ease);
}
.drawing-board.drawing-change .drawing-build {
  animation: buildShift 0.7s var(--ease);
}
@keyframes blueprintPulse {
  0% {
    opacity: 0.55;
    transform: translateX(-12px) rotate(-5deg);
  }
  100% {
    opacity: 0.92;
    transform: translateX(0) rotate(-4deg);
  }
}
@keyframes buildShift {
  0% {
    opacity: 0.35;
    transform: translateX(14px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .façade-showcase-head,
  .drawing-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .façade-stage {
    height: 590px;
    min-height: 0;
  }
  .facade-system {
    width: min(62vw, 520px);
  }
  .façade-specs {
    grid-template-columns: 1fr 1fr;
  }
  .façade-spec:nth-child(2) {
    border-right: 0;
  }
  .façade-spec:nth-child(3) {
    border-top: 1px solid #dcdcd7;
  }
  .façade-spec-cta {
    border-top: 1px solid #dcdcd7;
  }
  .drawing-board {
    height: 560px;
  }
  .drawing-blueprint {
    left: 12%;
    width: 55%;
  }
  .drawing-build {
    right: 4%;
    width: 40%;
  }
}
@media (max-width: 850px) {
  .material-lab__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .material-lab__grid {
    grid-template-columns: 1fr 1fr;
  }
  .material-card {
    min-height: 104px;
  }
  .material-card__meta {
    min-height: 104px;
    padding: 12px;
  }
  .project-reveal__content {
    padding-bottom: 62px;
  }
  .project-reveal h2 {
    gap: 9px;
    line-height: 0.82;
  }
  .project-reveal__meta {
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-ctas {
    align-items: stretch;
    direction: ltr;
  }
  .hero-ctas {
    gap: 12px;
  }
  .hero-profile-btn {
    margin-left: 0;
  }
  .facade-system {
    width: min(84vw, 440px);
  }
  .facade-detail {
    font-size: 6px;
  }
  .facade-detail--glass {
    right: -5%;
  }
  .facade-detail--joint {
    left: -6%;
  }
  .facade-chip--one,
  .facade-chip--two {
    width: 42px;
    height: 42px;
  }
  .facade-scan {
    display: none;
  }
  .façade-showcase {
    padding: 75px 0 70px;
  }
  .façade-showcase-head h2,
  .drawing-head h2 {
    font-size: clamp(58px, 15vw, 92px);
  }
  .façade-stage {
    height: 520px;
    margin-top: 30px;
  }
  .facade-system {
    width: min(78vw, 430px);
  }
  .facade-label {
    font-size: 7px;
  }
  .facade-label::after {
    width: 35px;
  }
  .façade-specs {
    grid-template-columns: 1fr;
  }
  .façade-spec,
  .façade-spec-cta {
    border-right: 0 !important;
    border-top: 1px solid #dcdcd7;
  }
  .façade-spec:first-child {
    border-top: 0;
  }
  .façade-stage-meter {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }
  .drawing-story {
    padding: 80px 0 70px;
  }
  .drawing-board {
    height: 500px;
    margin-top: 30px;
  }
  .drawing-blueprint {
    left: 8%;
    top: 22%;
    width: 58%;
    height: 52%;
  }
  .drawing-build {
    right: 2%;
    top: 23%;
    width: 42%;
    height: 52%;
  }
  .drawing-stage-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .drawing-stage-copy strong {
    font-size: clamp(36px, 11vw, 62px);
  }
  .drawing-steps {
    grid-template-columns: 1fr 1fr;
  }
  .drawing-step:nth-child(2) {
    border-right: 0;
  }
  .drawing-step:nth-child(3),
  .drawing-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .facade-system {
    transition: none !important;
  }
  .façade-orbit {
    display: none;
  }
}
.facade-controls {
  position: absolute;
  z-index: 20;
  left: 28px;
  top: 24px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 55%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.facade-control {
  position: relative;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d6d6d1;
  background: #fff;
  color: #555;
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.1px;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.facade-control::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.facade-control > * {
  position: relative;
  z-index: 1;
}
.facade-control {
  isolation: isolate;
}
.facade-control:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 10px 20px rgba(225, 6, 0, 0.14);
  color: #fff;
}
.facade-control:hover::before,
.facade-control.is-active::before {
  transform: scaleX(1);
}
.facade-control.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.facade-control:active {
  transform: scale(0.96);
}
.facade-system.is-explode .facade-glass--back {
  transform: translate3d(-38px, -28px, -90px) rotateY(5deg);
}
.facade-system.is-explode .facade-glass--mid {
  transform: translate3d(26px, -8px, -34px) rotateY(-4deg);
}
.facade-system.is-explode .facade-glass--front {
  transform: translate3d(0, 14px, 12px);
}
.facade-system.is-explode .facade-mullion--v1 {
  transform: translate3d(-34px, 0, 88px) rotateY(-6deg);
}
.facade-system.is-explode .facade-mullion--v2 {
  transform: translate3d(34px, 0, 88px) rotateY(6deg);
}
.facade-system.is-explode .facade-mullion--h1 {
  transform: translate3d(0, -28px, 92px);
}
.facade-system.is-explode .facade-mullion--h2 {
  transform: translate3d(0, 28px, 92px);
}
.facade-system.is-explode .facade-cap--left {
  transform: translate3d(-24px, 0, 112px) rotateY(12deg);
}
.facade-system.is-explode .facade-cap--right {
  transform: translate3d(24px, 0, 112px) rotateY(-12deg);
}
.facade-system.is-explode .facade-frame--left {
  transform: translate3d(-30px, 0, 42px);
}
.facade-system.is-explode .facade-frame--right {
  transform: translate3d(30px, 0, 42px);
}
.facade-system.is-explode .facade-frame--top {
  transform: translate3d(0, -24px, 42px);
}
.facade-system.is-explode .facade-frame--bottom {
  transform: translate3d(0, 24px, 42px);
}
.facade-system.is-explode .facade-joint {
  animation: jointPulse 1.3s ease-in-out infinite;
}
.facade-system.is-focus {
  filter: drop-shadow(0 40px 52px rgba(0, 0, 0, 0.18));
}
.facade-system.is-focus .facade-glass--front {
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.48),
    inset -32px -22px 55px rgba(0, 0, 0, 0.06),
    0 28px 75px rgba(225, 6, 0, 0.14);
}
.facade-system.is-spin {
  animation: facadeSpin 0.14s linear infinite alternate;
}
.facade-system.is-spin .facade-scan {
  animation-duration: 1.8s;
}
.facade-system.is-spin .facade-joint {
  animation: jointPulse 0.7s ease-in-out infinite;
}
.façade-stage:has(.facade-control.is-active[data-facade-mode="explode"])
  .facade-label {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(225, 6, 0, 0.11);
}
.façade-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 255, 255, 0.32),
    transparent 20%
  );
  mix-blend-mode: screen;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
@keyframes jointPulse {
  0%,
  100% {
    scale: 1;
    box-shadow:
      0 0 0 5px rgba(225, 6, 0, 0.07),
      0 0 0 rgba(225, 6, 0, 0);
  }
  50% {
    scale: 1.35;
    box-shadow:
      0 0 0 11px rgba(225, 6, 0, 0.03),
      0 0 22px rgba(225, 6, 0, 0.35);
  }
}
@keyframes facadeSpin {
  from {
    rotate: -0.7deg;
  }
  to {
    rotate: 0.7deg;
  }
}
@keyframes facadeClick {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  45% {
    transform: translate3d(0, -8px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.facade-system.bump {
  animation: facadeClick 0.48s var(--ease);
}
.facade-orbit {
  animation: orbitFloat 8s ease-in-out infinite;
}
.facade-orbit--2 {
  animation-duration: 11s;
  animation-direction: reverse;
}
@keyframes orbitFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(10deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(17deg) scale(1.035);
  }
}
@media (max-width: 850px) {
  .facade-controls {
    left: 18px;
    top: 18px;
    max-width: calc(100% - 36px);
  }
  .facade-control {
    min-height: 30px;
    padding: 0 10px;
    font-size: 7px;
  }
  .facade-system.is-explode .facade-mullion--v1 {
    transform: translate3d(-18px, 0, 70px);
  }
  .facade-system.is-explode .facade-mullion--v2 {
    transform: translate3d(18px, 0, 70px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .facade-system.is-spin,
  .facade-orbit,
  .facade-system.bump,
  .facade-system.is-explode .facade-joint {
    animation: none !important;
  }
  .facade-stage::after {
    display: none;
  }
}
html[dir="rtl"] body {
  direction: rtl;
}
html[dir="rtl"] #nav,
html[dir="rtl"] #nav > *,
html[dir="rtl"] #nav .navlinks,
html[dir="rtl"] #nav .nav-actions {
  direction: ltr !important;
}
html[dir="rtl"] #nav > .logo {
  left: 40px !important;
  right: auto !important;
  transform: translateY(-50%) !important;
}
html[dir="rtl"] #nav.scrolled > .logo .brand-logo {
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
}
html[dir="rtl"] .section-head p,
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .intro-copy,
html[dir="rtl"] .values-title p,
html[dir="rtl"] .industry-content,
html[dir="rtl"] .project-meta,
html[dir="rtl"] .process-step p,
html[dir="rtl"] .clients-description,
html[dir="rtl"] .trust-intro,
html[dir="rtl"] .cert-content,
html[dir="rtl"] .foot-tag {
  text-align: right;
}
html[dir="rtl"] .expertise-card,
html[dir="rtl"] .value-item {
  text-align: right;
}
html[dir="rtl"] .value-item:hover {
  transform: translateX(-8px);
}
html[dir="rtl"] .hero-kicker {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
html[dir="rtl"] #mmenu .close {
  right: auto;
  left: 30px;
}
html[dir="rtl"] #mmenu a:hover {
  padding-inline-start: 0;
  padding-inline-end: 15px;
  transform: translateX(-4px);
}
html[dir="rtl"] #wa {
  right: auto;
  left: 28px;
}
html[dir="rtl"] #wa::before {
  right: auto;
  left: calc(100%+14px);
  border-left: 0;
  border-right: 2px solid var(--red);
  transform: translateY(-50%) translateX(-12px) scale(0.96);
}
html[dir="rtl"] #wa:hover::before {
  transform: translateY(-50%) translateX(0) scale(1);
}
html[dir="rtl"] footer.site .foot-brand,
html[dir="rtl"] footer.site .foot-logo {
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] footer.site .foot-tag {
  text-align: right;
  direction: rtl;
}
#certifications {
  scroll-margin-top: 90px;
}
@media (max-width: 1100px) {
  #nav {
    padding: 0 25px !important;
  }
  .navlinks {
    gap: 20px;
  }
  .intro-grid,
  .values-grid {
    gap: 50px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-brand {
    grid-column: span 2;
  }
  .clients-head,
  .trust-head {
    gap: 35px;
  }
  .client-logo {
    width: 190px;
    height: 105px;
    flex-basis: 190px;
  }
  .cert-grid {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .wrap,
  .hero-inner {
    width: min(calc(100% - 40px), var(--container));
  }
  #nav {
    height: 72px !important;
    display: block !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  #nav.scrolled {
    height: 65px !important;
  }
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active {
    left: 20px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  #nav > .logo .brand-logo {
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
  }
  #nav.scrolled > .logo .brand-logo {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
  .navlinks,
  #langDesktop {
    display: none !important;
  }
  #nav .nav-actions {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #burger {
    display: flex;
  }
  #mobile-language-float {
    display: flex !important;
    position: fixed !important;
    top: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10002 !important;
    color: var(--black) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(0, 0, 0, 0.16) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: "IBM Plex Mono", monospace !important;
    font-size: 9px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
  }
  #mobile-language-float:hover {
    color: #fff !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
  }
  #mobile-language-float:active {
    transform: translateX(-50%) scale(0.96) !important;
  }
  #mmenu {
    padding: 30px;
  }
  #mmenu .close {
    top: 20px;
    right: 20px;
  }
  #mmenu a {
    font-size: clamp(44px, 11vw, 72px);
  }
  .hero {
    min-height: auto;
    padding: 140px 0 65px;
  }
  .hero-media {
    opacity: 0.2;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 255, 255, 0.65)
      ),
      url("assets/site/hero-construction.webp") center/cover no-repeat;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 62px);
    letter-spacing: -1.5px;
  }
  .hero-sub {
    font-size: 13px;
    margin-top: 25px;
  }
  .hero-stats {
    gap: 30px;
    width: 100%;
    justify-content: space-between;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .intro,
  .expertise,
  .values,
  .numbers,
  .industries,
  .process,
  .projects,
  .cta {
    padding: 65px 0;
  }
  .intro-grid,
  .values-grid,
  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro h2,
  .section-head h2,
  .values-title h2 {
    font-size: clamp(55px, 16vw, 90px);
  }
  .intro-copy {
    padding-top: 0;
  }
  .section-head {
    margin-bottom: 35px;
  }
  .section-head p {
    font-size: 13px;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-card {
    min-height: 200px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry {
    min-height: 360px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 20px;
  }
  .process-line {
    display: none;
  }
  .process-step {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .process-num {
    margin-bottom: 20px;
  }
  .process-step h3 {
    font-size: 38px;
  }
  .cta h2 {
    font-size: clamp(60px, 17vw, 100px);
    letter-spacing: -2px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .foot-brand {
    grid-column: auto;
  }
  .legal {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
    align-items: flex-start;
  }
  .clients-head,
  .trust-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .clients-head h2,
  .trust-head h2 {
    font-size: clamp(56px, 14vw, 86px);
  }
  .clients-track {
    gap: 12px;
    animation-duration: 54s;
  }
  .client-logo {
    width: 170px;
    height: 94px;
    flex-basis: 170px;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 90px;
  }
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cert-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  }
  .cert-top {
    grid-column: 1/-1;
  }
  .cert-image-wrap {
    aspect-ratio: auto;
    min-height: 300px;
  }
  .cert-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .trust-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .trust-footer-badge {
    width: fit-content;
    max-width: 100%;
  }
  #wa {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  #wa svg {
    width: 23px;
    height: 23px;
  }
  #wa::before {
    display: none;
  }
  #certifications {
    scroll-margin-top: 75px;
  }
}
@media (max-width: 480px) {
  .wrap,
  .hero-inner {
    width: calc(100% - 30px);
  }
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active {
    left: 15px !important;
    right: auto !important;
  }
  #nav > .logo .brand-logo {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
  }
  #nav.scrolled > .logo .brand-logo {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }
  #mobile-language-float {
    top: 11px !important;
    width: 76px !important;
    min-width: 76px !important;
    height: 36px !important;
    font-size: 8px !important;
  }
  .hero {
    padding-top: 125px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-kicker .label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-kicker .line {
    width: 35px;
  }
  .hero-stats {
    gap: 15px;
  }
  .hero-stat strong {
    font-size: 24px;
  }
  .intro,
  .expertise,
  .values,
  .numbers,
  .industries,
  .process,
  .projects,
  .cta {
    padding: 55px 0;
  }
  .intro h2,
  .section-head h2,
  .values-title h2 {
    font-size: 58px;
  }
  .industry {
    min-height: 320px;
    padding: 22px;
  }
  .industry h3 {
    font-size: 42px;
  }
  .number-card {
    padding: 22px;
    min-height: 170px;
  }
  .number-card strong {
    font-size: 60px;
  }
  .number-card p {
    margin-top: 20px;
    font-size: 7px;
  }
  .value-item {
    grid-template-columns: 40px 1fr;
  }
  .value-item h3 {
    font-size: 25px;
  }
  .cta {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .cta h2 {
    font-size: 62px;
  }
  .foot-logo-img {
    width: 120px;
    max-width: 120px;
  }
  .foot-tag {
    max-width: 100%;
    font-size: 10px;
  }
  .client-logo {
    width: 145px;
    height: 82px;
    flex-basis: 145px;
    padding: 12px 15px;
  }
  .clients-track {
    gap: 9px;
    animation-duration: 48s;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 55px;
  }
  .trusted-certified {
    padding: 54px 0 55px;
  }
  .cert-card {
    display: block;
  }
  .cert-image-wrap {
    aspect-ratio: 4/3;
    min-height: 0;
  }
  .cert-content h3 {
    font-size: 27px;
  }
  .cert-content p {
    font-size: 10px;
  }
  .cert-meta {
    font-size: 6.5px;
  }
  .trust-footer-copy strong {
    font-size: 8px;
    line-height: 1.5;
  }
  .foot-grid {
    gap: 30px;
  }
  #wa {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  #wa svg {
    width: 22px;
    height: 22px;
  }
}
@media (hover: none) {
  .expertise-card:hover,
  .industry:hover,
  .number-card:hover,
  .process-step:hover,
  .hero-stat:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #cursor-glow {
    display: none;
  }
  .clients-track {
    animation: none !important;
  }
  .hero h1 .dim,
  .trust-head h2 .red,
  #wa {
    animation: none !important;
  }
}
html {
  scrollbar-gutter: stable;
}
body {
  overflow-x: hidden;
}
#nav {
  isolation: isolate;
}
#nav > .logo {
  position: fixed !important;
  left: 40px !important;
  right: auto !important;
  top: 46px !important;
  width: max-content !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  transform: translateY(-50%) !important;
  transition: none !important;
  z-index: 10003 !important;
}
#nav > .logo:hover,
#nav > .logo:focus,
#nav > .logo:active,
#nav.scrolled > .logo:hover,
#nav.scrolled > .logo:focus,
#nav.scrolled > .logo:active {
  left: 40px !important;
  right: auto !important;
  transform: translateY(-50%) !important;
}
#nav > .logo .brand-logo {
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: none !important;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
#nav.scrolled > .logo {
  top: 36px !important;
}
#nav.scrolled > .logo .brand-logo {
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
}
#nav .nav-actions {
  position: relative;
  z-index: 10004;
}
#burger {
  position: relative;
}
#mmenu {
  overscroll-behavior: none;
}
body.menu-open {
  overflow: hidden;
}
html[dir="rtl"] #nav > .logo,
html[dir="rtl"] #nav > .logo:hover,
html[dir="rtl"] #nav > .logo:focus,
html[dir="rtl"] #nav > .logo:active {
  left: 40px !important;
  right: auto !important;
  direction: ltr !important;
  transform: translateY(-50%) !important;
}
@media (max-width: 1100px) and (min-width: 851px) {
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active,
  html[dir="rtl"] #nav > .logo {
    left: 25px !important;
  }
  #nav > .logo .brand-logo {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
  }
  #nav.scrolled > .logo .brand-logo {
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
  }
}
@media (max-width: 850px) {
  #nav {
    height: 72px !important;
    min-height: 72px !important;
    display: block !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  #nav.scrolled {
    height: 65px !important;
    min-height: 65px !important;
  }
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active,
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav > .logo,
  html[dir="rtl"] #nav.scrolled > .logo {
    position: fixed !important;
    left: 20px !important;
    right: auto !important;
    top: 36px !important;
    width: max-content !important;
    min-width: 0 !important;
    max-width: none !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: isolate !important;
    z-index: 10003 !important;
  }
  #nav.scrolled > .logo {
    top: 32.5px !important;
  }
  #nav > .logo .brand-logo,
  html[dir="rtl"] #nav > .logo .brand-logo {
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
    height: auto !important;
    transform: none !important;
  }
  #nav.scrolled > .logo .brand-logo,
  html[dir="rtl"] #nav.scrolled > .logo .brand-logo {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
  #nav .nav-actions {
    position: fixed !important;
    top: 36px !important;
    right: 20px !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10004 !important;
    direction: ltr !important;
  }
  #nav.scrolled .nav-actions {
    top: 32.5px !important;
  }
  #burger {
    position: relative !important;
    inset: auto !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
  }
  #mobile-language-float {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 14px !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 10005 !important;
  }
  #mmenu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    transform: translate3d(0, -20px, 0) !important;
  }
  #mmenu.open {
    transform: translate3d(0, 0, 0) !important;
  }
  #mmenu .close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
  }
  html[dir="rtl"] #mmenu .close {
    right: auto !important;
    left: 20px !important;
  }
}
@media (max-width: 480px) {
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active,
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav > .logo,
  html[dir="rtl"] #nav.scrolled > .logo {
    left: 15px !important;
  }
  #nav > .logo .brand-logo {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
  }
  #nav.scrolled > .logo .brand-logo {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }
  #nav .nav-actions {
    right: 15px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  #nav > .logo .brand-logo {
    transition: none !important;
  }
}
footer.site .foot-grid {
  direction: ltr !important;
}
footer.site .foot-brand {
  grid-column: 1 !important;
  direction: ltr !important;
  text-align: left !important;
  justify-self: start !important;
  align-self: start !important;
  min-width: 0 !important;
}
footer.site .foot-logo {
  position: relative !important;
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  display: inline-flex !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
  margin: 0 !important;
  transform: none !important;
  transition: none !important;
}
footer.site .foot-logo:hover,
footer.site .foot-logo:focus,
footer.site .foot-logo:active {
  transform: none !important;
  left: 0 !important;
  right: auto !important;
}
html[dir="rtl"] footer.site .foot-grid > .foot-brand {
  grid-column: 1 !important;
  direction: ltr !important;
  text-align: left !important;
}
html[dir="rtl"] footer.site .foot-grid > div:not(.foot-brand) {
  direction: rtl !important;
  text-align: right !important;
}
@media (max-width: 1100px) {
  footer.site .foot-brand {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 850px) {
  footer.site .foot-grid {
    direction: ltr !important;
  }
  footer.site .foot-brand {
    grid-column: 1 !important;
  }
}
.webgl-façade {
  position: relative;
  overflow: hidden;
  padding: 118px 0 82px;
  background: #f4f4f0;
  color: #0a0a0a;
  isolation: isolate;
}
.webgl-façade__grid {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.webgl-façade__scan {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 28%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 0, 0.65),
    transparent
  );
  opacity: 0.6;
  animation: webglScan 7s linear infinite;
  pointer-events: none;
}
@keyframes webglScan {
  0% {
    transform: translateX(-18%);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(18%);
    opacity: 0;
  }
}
.webgl-façade__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.webgl-façade__head h2 {
  margin-top: 16px;
  color: #090909;
  font:
    800 clamp(70px, 8vw, 125px)/0.76 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.webgl-façade__intro {
  max-width: 520px;
  color: #666;
  font-size: 13px;
  line-height: 1.9;
}
.webgl-façade__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 18px 28px;
  align-items: stretch;
}
.webgl-façade__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
}
.webgl-façade__rail-item {
  padding: 18px 14px;
  border: 1px solid #dddcd7;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.webgl-façade__rail-item:hover,
.webgl-façade__rail-item.is-active {
  transform: translateX(6px);
  border-color: rgba(225, 6, 0, 0.48);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}
.webgl-façade__rail-item.is-on {
  border-left: 3px solid var(--red);
}
.webgl-façade__rail-item b {
  display: block;
  color: var(--red);
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.3px;
}
.webgl-façade__rail-item span {
  display: block;
  margin-top: 7px;
  color: #111;
  font:
    700 12px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.webgl-façade__rail-item small {
  display: block;
  margin-top: 5px;
  color: #888;
  font:
    600 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.webgl-façade__viewer {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 680px;
  border: 1px solid #d7d6d2;
  background: radial-gradient(
    circle at 50% 40%,
    #fff 0,
    #f2f2ee 38%,
    #e9e9e4 100%
  );
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}
.webgl-façade__viewer.is-dragging {
  cursor: grabbing;
}
#webglFacadeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#webglFacadeCanvas {
  opacity: 1;
  visibility: visible;
  min-width: 100%;
  min-height: 100%;
}
.webgl-façade__viewer.webgl-fallback::before {
  content: "3D FAÇADE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.08);
  font:
    800 clamp(72px, 11vw, 180px)/0.8 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
}
.webgl-façade__viewer::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  pointer-events: none;
  z-index: 1;
}
.webgl-façade__viewer::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 11%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.18),
    transparent
  );
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.03);
  pointer-events: none;
  z-index: 1;
}
.webgl-façade__viewer .webgl-ambient-sweep {
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 35%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 60%
  );
  transform: translateX(-75%) rotate(-8deg);
  mix-blend-mode: screen;
  animation: webglAmbientSweep 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.webgl-façade__viewer .webgl-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 44%,
    transparent 40%,
    rgba(0, 0, 0, 0.07) 100%
  );
}
.webgl-façade__viewer .webgl-corner {
  position: absolute;
  z-index: 4;
  width: 70px;
  height: 70px;
  pointer-events: none;
  border-color: rgba(225, 6, 0, 0.22);
  border-style: solid;
}
.webgl-façade__viewer .webgl-corner--tl {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}
.webgl-façade__viewer .webgl-corner--tr {
  top: 16px;
  right: 16px;
  border-width: 1px 1px 0 0;
}
.webgl-façade__viewer .webgl-corner--bl {
  bottom: 16px;
  left: 16px;
  border-width: 0 0 1px 1px;
}
.webgl-façade__viewer .webgl-corner--br {
  bottom: 16px;
  right: 16px;
  border-width: 0 1px 1px 0;
}
.webgl-façade__rail-item {
  position: relative;
  overflow: hidden;
}
.webgl-façade__rail-item::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.82),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
}
.webgl-façade__rail-item:hover::after,
.webgl-façade__rail-item.is-active::after {
  opacity: 0.55;
  animation: webglRailSweep 0.9s var(--ease);
}
@keyframes webglAmbientSweep {
  0%,
  35% {
    transform: translateX(-75%) rotate(-8deg);
    opacity: 0;
  }
  48% {
    opacity: 0.85;
  }
  68%,
  100% {
    transform: translateX(75%) rotate(-8deg);
    opacity: 0;
  }
}
@keyframes webglRailSweep {
  from {
    left: -35%;
  }
  to {
    left: 135%;
  }
}
.webgl-façade__hud {
  position: absolute;
  z-index: 6;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7c7c77;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
  pointer-events: none;
}
.webgl-façade__hud i {
  display: block;
  width: 26px;
  height: 1px;
  background: rgba(225, 6, 0, 0.7);
}
.webgl-façade__hud--tl {
  left: 20px;
}
.webgl-façade__hud--tr {
  right: 20px;
  flex-direction: row-reverse;
}
.webgl-façade__crosshair {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(225, 6, 0, 0.22);
  z-index: 2;
  pointer-events: none;
}
.webgl-façade__crosshair::before,
.webgl-façade__crosshair::after {
  content: "";
  position: absolute;
  background: rgba(225, 6, 0, 0.3);
}
.webgl-façade__crosshair::before {
  left: 50%;
  top: -8px;
  width: 1px;
  height: 34px;
  transform: translateX(-50%);
}
.webgl-façade__crosshair::after {
  top: 50%;
  left: -8px;
  width: 34px;
  height: 1px;
  transform: translateY(-50%);
}
.webgl-façade__label {
  position: absolute;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.86);
  border-left: 2px solid var(--red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transform: translateZ(0);
  transition:
    opacity 0.3s ease,
    transform 0.35s var(--ease);
}
.webgl-façade__label strong {
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  color: #161616;
}
.webgl-façade__label span {
  font:
    600 7px "IBM Plex Mono",
    monospace;
  color: #8a8a84;
  letter-spacing: 0.8px;
}
.webgl-façade__label--glass {
  right: 7%;
  top: 34%;
}
.webgl-façade__label--frame {
  left: 6%;
  top: 24%;
}
.webgl-façade__label--joint {
  left: 8%;
  bottom: 18%;
}
.webgl-façade__focus {
  position: absolute;
  z-index: 8;
  right: 24px;
  bottom: 28px;
  width: min(330px, 44%);
  padding: 16px 18px 16px 20px;
  background: rgba(10, 10, 10, 0.92);
  border-left: 3px solid var(--red);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.webgl-façade__focus.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.webgl-façade__focus-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--red);
  margin-bottom: 11px;
}
.webgl-façade__focus small {
  display: block;
  color: #a1a1a1;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
}
.webgl-façade__focus strong {
  display: block;
  margin-top: 6px;
  font:
    800 25px/0.9 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.webgl-façade__focus p {
  margin-top: 10px;
  color: #b9b9b6;
  font-size: 10px;
  line-height: 1.65;
}
.webgl-façade__focus button {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  opacity: 0.7;
}
.webgl-façade__focus button:hover {
  opacity: 1;
  color: var(--red);
}
.webgl-façade__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 7;
  color: #83837e;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.3px;
  white-space: nowrap;
  pointer-events: none;
}
.webgl-façade__controls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.webgl-control {
  position: relative;
  min-width: 118px;
  height: 48px;
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 8px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid #d5d4cf;
  background: #fff;
  color: #252525;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}
.webgl-control::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: -1;
}
.webgl-control span {
  grid-row: 1/3;
  color: var(--red);
  font:
    700 8px "IBM Plex Mono",
    monospace;
}
.webgl-control b {
  font:
    700 8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.webgl-control i {
  width: 100%;
  height: 1px;
  background: #deddd8;
  display: block;
  transition: background 0.3s ease;
}
.webgl-control:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.webgl-control:hover::before,
.webgl-control.is-active::before {
  transform: scaleX(1);
}
.webgl-control:hover,
.webgl-control.is-active {
  color: #fff;
  border-color: var(--red);
}
.webgl-control:hover span,
.webgl-control.is-active span {
  color: #fff;
}
.webgl-control:hover i,
.webgl-control.is-active i {
  background: rgba(255, 255, 255, 0.55);
}
.webgl-control:active {
  transform: scale(0.97);
}
.webgl-façade__specbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid #d5d4cf;
  border-bottom: 1px solid #d5d4cf;
}
.webgl-façade__specbar > div {
  padding: 20px 24px;
  border-right: 1px solid #d5d4cf;
}
.webgl-façade__specbar span {
  display: block;
  color: #888;
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.2px;
}
.webgl-façade__specbar strong {
  display: inline-block;
  margin-top: 7px;
  color: #111;
  font:
    800 27px/1 "Barlow Condensed",
    sans-serif;
}
.webgl-façade__specbar small {
  margin-left: 7px;
  color: #8b8b86;
  font:
    600 7px "IBM Plex Mono",
    monospace;
}
.webgl-façade__specbar .btn {
  margin: 16px;
}
@media (max-width: 1050px) {
  .webgl-façade__layout {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
  }
  .webgl-façade__viewer {
    min-height: 620px;
  }
  .webgl-control {
    min-width: 105px;
  }
  .webgl-façade__head {
    gap: 40px;
  }
}
@media (max-width: 850px) {
  .webgl-façade {
    padding: 78px 0 70px;
  }
  .webgl-façade__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }
  .webgl-façade__head h2 {
    font-size: clamp(58px, 15vw, 92px);
  }
  .webgl-façade__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .webgl-façade__rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 0;
  }
  .webgl-façade__rail-item {
    padding: 13px 11px;
  }
  .webgl-façade__rail-item:hover,
  .webgl-façade__rail-item.is-active {
    transform: translateY(-2px);
  }
  .webgl-façade__viewer {
    grid-column: 1;
    grid-row: 2;
    min-height: 600px;
    margin-top: 8px;
  }
  .webgl-façade__controls {
    grid-column: 1;
    grid-row: 3;
  }
  .webgl-façade__label--frame {
    left: 3%;
    top: 20%;
  }
  .webgl-façade__label--glass {
    right: 3%;
    top: 31%;
  }
  .webgl-façade__label--joint {
    left: 4%;
    bottom: 20%;
  }
  .webgl-façade__focus {
    right: 14px;
    bottom: 28px;
    width: min(300px, 72%);
  }
  .webgl-façade__hint {
    font-size: 6px;
  }
  .webgl-control {
    min-width: calc(50% - 6px);
  }
  .webgl-façade__specbar {
    grid-template-columns: 1fr 1fr;
  }
  .webgl-façade__specbar > div:nth-child(2) {
    border-right: 0;
  }
  .webgl-façade__specbar > div:nth-child(3) {
    border-top: 1px solid #d5d4cf;
  }
  .webgl-façade__specbar .btn {
    margin: 12px;
    grid-column: 1/-1;
  }
  .webgl-façade__scan {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .webgl-façade__scan {
    animation: none;
  }
  .webgl-control,
  .webgl-façade__rail-item {
    transition: none;
  }
  .webgl-façade__focus {
    transition: none;
  }
}
html,
body,
#nav,
#nav > .logo,
#nav > .logo .brand-logo {
  --logo-scale-width: 124px;
}
#nav > .logo,
#nav > .logo:hover,
#nav > .logo:focus,
#nav > .logo:active,
#nav.scrolled > .logo,
#nav.scrolled > .logo:hover,
#nav.scrolled > .logo:focus,
#nav.scrolled > .logo:active,
html[dir="rtl"] #nav > .logo,
html[dir="rtl"] #nav > .logo:hover,
html[dir="rtl"] #nav > .logo:focus,
html[dir="rtl"] #nav > .logo:active,
html[dir="rtl"] #nav.scrolled > .logo,
html[dir="rtl"] #nav.scrolled > .logo:hover,
html[dir="rtl"] #nav.scrolled > .logo:focus,
html[dir="rtl"] #nav.scrolled > .logo:active {
  position: fixed !important;
  left: 40px !important;
  right: auto !important;
  top: 46px !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: isolate !important;
  transform: translateY(-50%) !important;
  transition: none !important;
  z-index: 10003 !important;
}
#nav.scrolled > .logo,
#nav.scrolled > .logo:hover,
#nav.scrolled > .logo:focus,
#nav.scrolled > .logo:active,
html[dir="rtl"] #nav.scrolled > .logo {
  top: 36px !important;
}
#nav > .logo .brand-logo,
#nav > .logo:hover .brand-logo,
#nav > .logo:focus .brand-logo,
#nav > .logo:active .brand-logo,
html[dir="rtl"] #nav > .logo .brand-logo {
  display: block !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 124px !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: none !important;
  scale: 1 !important;
  transition:
    width 0.5s var(--ease),
    min-width 0.5s var(--ease),
    max-width 0.5s var(--ease) !important;
}
#nav.scrolled > .logo .brand-logo,
#nav.scrolled > .logo:hover .brand-logo,
#nav.scrolled > .logo:focus .brand-logo,
#nav.scrolled > .logo:active .brand-logo,
html[dir="rtl"] #nav.scrolled > .logo .brand-logo {
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  flex-basis: 92px !important;
}
@media (max-width: 850px) {
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active,
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav > .logo,
  html[dir="rtl"] #nav.scrolled > .logo {
    left: 20px !important;
    right: auto !important;
    top: 36px !important;
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
  }
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav.scrolled > .logo {
    top: 32.5px !important;
  }
  #nav > .logo .brand-logo,
  #nav > .logo:hover .brand-logo,
  #nav > .logo:focus .brand-logo,
  #nav > .logo:active .brand-logo,
  html[dir="rtl"] #nav > .logo .brand-logo {
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
    flex-basis: 106px !important;
  }
  #nav.scrolled > .logo .brand-logo,
  #nav.scrolled > .logo:hover .brand-logo,
  #nav.scrolled > .logo:focus .brand-logo,
  #nav.scrolled > .logo:active .brand-logo,
  html[dir="rtl"] #nav.scrolled > .logo .brand-logo {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    flex-basis: 82px !important;
  }
}
@media (max-width: 480px) {
  #nav > .logo,
  #nav > .logo:hover,
  #nav > .logo:focus,
  #nav > .logo:active,
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav > .logo,
  html[dir="rtl"] #nav.scrolled > .logo {
    left: 15px !important;
    right: auto !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
  }
  #nav > .logo .brand-logo,
  html[dir="rtl"] #nav > .logo .brand-logo {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    flex-basis: 100px !important;
  }
  #nav.scrolled > .logo,
  #nav.scrolled > .logo:hover,
  #nav.scrolled > .logo:focus,
  #nav.scrolled > .logo:active,
  html[dir="rtl"] #nav.scrolled > .logo {
    top: 32.5px !important;
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }
  #nav.scrolled > .logo .brand-logo,
  #nav.scrolled > .logo:hover .brand-logo,
  #nav.scrolled > .logo:focus .brand-logo,
  #nav.scrolled > .logo:active .brand-logo,
  html[dir="rtl"] #nav.scrolled > .logo .brand-logo {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    flex-basis: 76px !important;
  }
}
footer.site .foot-logo {
  display: inline-flex !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: max-content !important;
  align-items: baseline !important;
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  font-style: normal !important;
  line-height: 1 !important;
  letter-spacing: -1.8px !important;
  direction: ltr !important;
  text-align: left !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: none !important;
}
footer.site .foot-logo b {
  color: var(--red) !important;
  font-weight: 800 !important;
}
footer.site .foot-logo:hover {
  transform: none !important;
}
html[dir="rtl"] footer.site .foot-logo,
html[dir="rtl"] footer.site .foot-brand {
  direction: ltr !important;
  text-align: left !important;
}
@media (max-width: 600px) {
  footer.site .foot-logo {
    font-size: 36px !important;
  }
}
@media (max-width: 850px) {
  #nav .nav-actions {
    position: fixed !important;
    top: 36px !important;
    right: 20px !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 10003 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    direction: ltr !important;
  }
  #nav.scrolled .nav-actions {
    top: 32.5px !important;
  }
  #burger {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 10004 !important;
  }
  #nav,
  #nav.scrolled {
    z-index: 10000 !important;
  }
  #mmenu {
    z-index: 9999 !important;
  }
}
@media (max-width: 480px) {
  #nav .nav-actions {
    top: 33px !important;
    right: 15px !important;
  }
  #nav.scrolled .nav-actions {
    top: 32.5px !important;
  }
}
.capability-ribbon {
  position: relative;
  overflow: hidden;
  background: #090909;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.capability-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(225, 6, 0, 0.1),
    transparent 20%,
    transparent 80%,
    rgba(225, 6, 0, 0.05)
  );
  pointer-events: none;
}
.capability-ribbon__track {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  min-height: 112px;
  align-items: stretch;
}
.capability-ribbon__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.capability-ribbon__intro span,
.capability-ribbon__item strong {
  font:
    700 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.6px;
  color: var(--red);
}
.capability-ribbon__intro b {
  margin-top: 6px;
  font:
    800 26px/0.9 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}
.capability-ribbon__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.35s ease,
    transform 0.35s var(--ease);
}
.capability-ribbon__item:last-child {
  border-right: 0;
}
.capability-ribbon__item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.capability-ribbon__item:hover {
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-2px);
}
.capability-ribbon__item:hover::after {
  transform: scaleX(1);
}
.capability-ribbon__item span {
  margin-top: 8px;
  font:
    800 22px/0.92 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.capability-ribbon__item small {
  margin-top: 6px;
  color: #888;
  font:
    600 7px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.project-reveal__content {
  transform: translateY(12px);
  transition: transform 1s var(--ease);
}
.project-reveal.is-visible .project-reveal__content {
  transform: none;
}
.project-reveal__meta span {
  transition: color 0.3s ease;
}
.project-reveal:hover .project-reveal__meta span:first-child {
  color: #fff;
}
.webgl-façade__head h2 {
  max-width: 820px;
  text-wrap: balance;
}
.webgl-façade__viewer {
  will-change: transform, box-shadow;
}
.webgl-façade__viewer:hover {
  box-shadow: 0 42px 95px rgba(0, 0, 0, 0.15);
}
.webgl-control {
  letter-spacing: 0.15em;
}
.webgl-control:focus-visible,
.webgl-façade__rail-item:focus-visible,
.hero-ctas .btn:focus-visible,
.trust-footer-story:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.material-card {
  cursor: pointer;
}
.material-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.material-card__image {
  background-color: #e8e8e4;
}
.hero-ctas .btn {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .capability-ribbon__track {
    grid-template-columns: 1fr 1fr;
  }
  .capability-ribbon__intro {
    grid-column: 1/-1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .capability-ribbon__item:nth-child(3) {
    border-right: 0;
  }
  .capability-ribbon__item:nth-child(4),
  .capability-ribbon__item:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 850px) {
  .capability-ribbon__item {
    padding: 17px 16px;
  }
  .capability-ribbon__item::after {
    left: 16px;
    right: 16px;
  }
  .hero-ctas .btn {
    white-space: normal;
  }
  .project-reveal__content {
    transform: none;
  }
  .webgl-façade__viewer:hover {
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .capability-ribbon__item,
  .capability-ribbon__item::after,
  .project-reveal__content {
    transition: none !important;
  }
}
.drawing-board {
  position: relative;
  isolation: isolate;
  --stage-color: #e10600;
}
.drawing-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 46%, rgba(225, 6, 0, 0.09), transparent 30%),
    linear-gradient(
      90deg,
      transparent 49.85%,
      rgba(225, 6, 0, 0.075) 50%,
      transparent 50.15%
    );
  opacity: 0.8;
}
.drawing-blueprint,
.drawing-build {
  z-index: 3;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
  transform-style: preserve-3d;
}
.drawing-stage-copy {
  z-index: 8;
}
.drawing-stage-copy strong {
  display: block;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 0.6s ease;
}
.drawing-stage-copy p {
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawing-step {
  overflow: hidden;
}
.drawing-step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawing-step.is-active::after {
  transform: scaleX(1);
}
.drawing-board.stage-01 .drawing-blueprint {
  transform: translate3d(0, -2%, 0) rotate(-7deg) scale(0.88);
  opacity: 1;
  filter: none;
}
.drawing-board.stage-01 .drawing-build {
  transform: translate3d(38%, 8%, 0) scale(0.68) rotateY(-8deg);
  opacity: 0.08;
  filter: blur(1px);
}
.drawing-board.stage-01 .drawing-grid {
  opacity: 0.72;
}
.drawing-board.stage-01 .bp-frame--outer {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.72);
}
.drawing-board.stage-01 .bp-frame--inner {
  border-style: dashed;
  border-color: rgba(225, 6, 0, 0.9);
  transform: scale(0.92);
}
.drawing-board.stage-01 .bp-line {
  opacity: 0.3;
}
.drawing-board.stage-01 .bp-joint {
  transform: translate(-50%, -50%) scale(0.62);
  box-shadow: none;
}
.drawing-board.stage-01 .drawing-stage-copy strong {
  letter-spacing: 0.02em;
  transform: translateX(0);
}
.drawing-board.stage-02 .drawing-blueprint {
  transform: translate3d(-5%, 0, 0) rotate(0) scale(1.04);
  opacity: 1;
  filter: none;
}
.drawing-board.stage-02 .drawing-build {
  transform: translate3d(12%, 0, 0) scale(0.84) rotateY(-7deg);
  opacity: 0.24;
  filter: none;
}
.drawing-board.stage-02 .drawing-grid {
  opacity: 1;
}
.drawing-board.stage-02 .bp-frame--outer {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.9);
}
.drawing-board.stage-02 .bp-frame--inner {
  border-style: solid;
  border-color: rgba(225, 6, 0, 0.92);
  transform: scale(1);
}
.drawing-board.stage-02 .bp-line {
  opacity: 0.82;
}
.drawing-board.stage-02 .bp-line--a,
.drawing-board.stage-02 .bp-line--b,
.drawing-board.stage-02 .bp-line--c {
  box-shadow: 0 0 13px rgba(225, 6, 0, 0.18);
}
.drawing-board.stage-02 .bp-joint {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 0 0 15px rgba(225, 6, 0, 0.08),
    0 0 30px rgba(225, 6, 0, 0.17);
}
.drawing-board.stage-02 .drawing-stage-copy strong {
  transform: translateX(8px);
}
.drawing-board.stage-03 .drawing-blueprint {
  transform: translate3d(-18%, 5%, 0) rotate(3deg) scale(0.84);
  opacity: 0.52;
  filter: blur(0.2px);
}
.drawing-board.stage-03 .drawing-build {
  transform: translate3d(2%, 0, 0) scale(1.05) rotateY(-18deg);
  opacity: 1;
  filter: none;
}
.drawing-board.stage-03 .drawing-build::before {
  transform: translateZ(-40px) skewY(-8deg) rotateY(-25deg);
  border-color: rgba(255, 255, 255, 0.23);
  box-shadow: 0 0 40px rgba(225, 6, 0, 0.08);
}
.drawing-board.stage-03 .drawing-build div:nth-child(1) {
  transform: translate3d(-12px, -3px, 26px) rotateY(-35deg);
  opacity: 0.95;
}
.drawing-board.stage-03 .drawing-build div:nth-child(2) {
  transform: translate3d(0, 2px, 52px) rotateY(-35deg);
  opacity: 0.95;
}
.drawing-board.stage-03 .drawing-build div:nth-child(3) {
  transform: translate3d(12px, -2px, 78px) rotateY(-35deg);
  opacity: 0.95;
}
.drawing-board.stage-03 .drawing-build div:nth-child(4) {
  transform: translate3d(0, 0, 92px) rotateY(-35deg);
  opacity: 0.95;
}
.drawing-board.stage-03 .drawing-build::after {
  top: 43%;
  opacity: 1;
  height: 2px;
  box-shadow: 0 0 15px rgba(225, 6, 0, 0.36);
}
.drawing-board.stage-03 .drawing-stage-copy strong {
  transform: translateX(16px);
}
.drawing-board.stage-04 .drawing-blueprint {
  transform: translate3d(-26%, 1%, 0) rotate(0) scale(0.66);
  opacity: 0.12;
  filter: blur(0.3px);
}
.drawing-board.stage-04 .drawing-build {
  transform: translate3d(-2%, 0, 0) scale(1.18) rotateY(-24deg);
  opacity: 1;
  filter: none;
}
.drawing-board.stage-04 .drawing-build::before {
  transform: translateZ(-65px) skewY(-8deg) rotateY(-24deg);
  border-color: rgba(225, 6, 0, 0.36);
  box-shadow: 0 0 60px rgba(225, 6, 0, 0.1);
}
.drawing-board.stage-04 .drawing-build div:nth-child(1) {
  transform: translateZ(22px) rotateY(-24deg);
}
.drawing-board.stage-04 .drawing-build div:nth-child(2) {
  transform: translateZ(28px) rotateY(-24deg);
}
.drawing-board.stage-04 .drawing-build div:nth-child(3) {
  transform: translateZ(34px) rotateY(-24deg);
}
.drawing-board.stage-04 .drawing-build div:nth-child(4) {
  transform: translateZ(46px) rotateY(-24deg);
}
.drawing-board.stage-04 .drawing-build div {
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.16);
}
.drawing-board.stage-04 .bp-marker--a,
.drawing-board.stage-04 .bp-marker--b {
  opacity: 0.2;
}
.drawing-board.stage-04 .drawing-stage-copy strong {
  transform: translateX(24px);
  letter-spacing: 0.04em;
}
.drawing-board.drawing-change::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 6, 0, 0.08),
    transparent
  );
  animation: drawingStageFlash 0.68s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes drawingStageFlash {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .drawing-board.drawing-change::after {
    animation: none;
  }
  .drawing-blueprint,
  .drawing-build,
  .drawing-stage-copy strong,
  .drawing-stage-copy p {
    transition: none !important;
  }
}
.drawing-story {
  background: #f1f0ec;
  color: #111;
}
.drawing-story::before {
  color: rgba(0, 0, 0, 0.035);
}
.drawing-noise {
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.08) 0.6px,
    transparent 0.6px
  );
  opacity: 0.28;
}
.drawing-head h2 {
  color: #090909;
}
.drawing-intro {
  color: #5f5f5b;
}
.drawing-head .label {
  color: var(--red);
}
.story-gallery {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}
.drawing-steps {
  border-top-color: rgba(0, 0, 0, 0.14);
}
.drawing-step {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.drawing-step:hover,
.drawing-step.is-active {
  background: rgba(0, 0, 0, 0.035);
}
.drawing-step strong {
  color: #111;
}
.drawing-step span {
  color: var(--red);
}
.drawing-step i {
  background: var(--red);
}
@media (max-width: 850px) {
  .drawing-step {
    border-right-color: rgba(0, 0, 0, 0.12);
  }
  .drawing-step:nth-child(3),
  .drawing-step:nth-child(4) {
    border-top-color: rgba(0, 0, 0, 0.12);
  }
}
/* ALU-SMART-SHARED-FOOTER-WA */
/* Footer PDF — compact homepage text link on every page */
.foot-cr {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #aaa !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.foot-cr span {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  font: inherit !important;
  color: inherit !important;
  text-transform: none !important;
}
.foot-cr a,
footer a[href*="company-profile.pdf"],
footer.site-footer a[href*="company-profile.pdf"] {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: #aaa !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
  text-transform: none !important;
  white-space: normal !important;
  transform: none !important;
  align-self: flex-start !important;
}
.foot-cr a:hover,
footer a[href*="company-profile.pdf"]:hover,
footer.site-footer a[href*="company-profile.pdf"]:hover {
  color: var(--red, #e10600) !important;
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}
.foot-cr a::before,
.foot-cr a::after,
footer a[href*="company-profile.pdf"]::before,
footer a[href*="company-profile.pdf"]::after,
footer.site-footer a[href*="company-profile.pdf"]::before,
footer.site-footer a[href*="company-profile.pdf"]::after {
  content: none !important;
  display: none !important;
}

/* WhatsApp FAB + hover label — homepage placement on every page */
@keyframes alusmartWaPulse {
  0% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(225, 6, 0, 0.28);
  }
  70% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 14px rgba(225, 6, 0, 0);
  }
  100% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(225, 6, 0, 0);
  }
}
a#wa {
  position: fixed !important;
  right: 28px !important;
  left: auto !important;
  bottom: 28px !important;
  z-index: 10000 !important;
  box-sizing: border-box !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  contain: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #090909 !important;
  border: 1px solid rgba(37, 211, 102, 0.95) !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(225, 6, 0, 0.28) !important;
  animation: alusmartWaPulse 3s infinite !important;
  text-decoration: none !important;
  isolation: isolate !important;
}
a#wa svg {
  width: 25px !important;
  height: 25px !important;
  fill: #fff !important;
  flex: none !important;
  display: block !important;
}
a#wa::after {
  content: "" !important;
  position: absolute !important;
  right: -2px !important;
  left: auto !important;
  top: -2px !important;
  bottom: auto !important;
  width: 10px !important;
  height: 10px !important;
  border: 0 !important;
  border-top: 2px solid var(--red, #e10600) !important;
  border-right: 2px solid var(--red, #e10600) !important;
  opacity: 0.95 !important;
  background: none !important;
  display: block !important;
}
a#wa::before {
  content: "CHAT ON WHATSAPP" !important;
  position: absolute !important;
  right: calc(100% + 14px) !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  display: block !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  color: #fff !important;
  background: #090909 !important;
  border: 0 !important;
  border-left: 2px solid var(--red, #e10600) !important;
  border-right: 0 !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-50%) translateX(12px) scale(0.96) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18) !important;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 2 !important;
}
a#wa:hover {
  background: #25d366 !important;
  border-color: #25d366 !important;
  transform: translateY(-6px) scale(1.06) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(37, 211, 102, 0.18) !important;
  animation: none !important;
}
a#wa:hover svg {
  transform: rotate(-8deg) scale(1.08) !important;
}
a#wa:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-50%) translateX(0) scale(1) !important;
}
a#wa:hover::after {
  border-color: #fff !important;
}
html[dir="rtl"] a#wa {
  right: auto !important;
  left: 28px !important;
}
html[dir="rtl"] a#wa::after {
  right: auto !important;
  left: -2px !important;
  border-right: 0 !important;
  border-left: 2px solid var(--red, #e10600) !important;
}
html[dir="rtl"] a#wa::before {
  right: auto !important;
  left: calc(100% + 14px) !important;
  border-left: 0 !important;
  border-right: 2px solid var(--red, #e10600) !important;
  transform: translateY(-50%) translateX(-12px) scale(0.96) !important;
}
html[dir="rtl"] a#wa:hover::before {
  transform: translateY(-50%) translateX(0) scale(1) !important;
}
@media (max-width: 850px) {
  a#wa {
    right: 16px !important;
    left: auto !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }
  a#wa svg {
    width: 23px !important;
    height: 23px !important;
  }
  a#wa::before {
    display: none !important;
  }
  html[dir="rtl"] a#wa {
    right: auto !important;
    left: 16px !important;
  }
}
@media (max-width: 480px) {
  a#wa {
    right: 16px !important;
    left: auto !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
  }
  html[dir="rtl"] a#wa {
    right: auto !important;
    left: 16px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  a#wa {
    animation: none !important;
  }
}

/* =========================================
   HERO — SECOND IMAGE LAYER
   TOP TO WHITE DIVIDER
   ========================================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* =========================================
   BASE HERO BACKGROUND
   ========================================= */

.hero-media {
  position: absolute;
  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;
}

/* =========================================
   SECOND IMAGE LAYER
   Starts exactly from the top
   and ends at the white divider area
   ========================================= */

.hero-image-layer {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  /*
    Image height relative to Hero.
    This is the area before the white divider.
  */
  height: 72%;

  z-index: 1;

  overflow: hidden;

  pointer-events: none;
  user-select: none;
}

/* =========================================
   ACTUAL IMAGE
   ========================================= */

.hero-image-layer img {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: block;

  /*
    Fill the complete image area
  */
  object-fit: cover;
  object-position: center center;

  /*
    Image visibility
  */
  opacity: 0.9;

  /*
    No blur
  */
  filter: none;

  transform: none;

  pointer-events: none;
  user-select: none;
}

/* =========================================
   VERY LIGHT EDGE TRANSITION
   ========================================= */

.hero-image-layer::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 35px;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.08)
    );

  pointer-events: none;
}

/* =========================================
   HERO CONTENT
   ========================================= */

.hero-inner {
  position: relative;

  z-index: 2;
}

/* =========================================
   DESKTOP
   ========================================= */

@media (min-width: 1025px) {

  .hero-image-layer {
    top: 0;
    left: 0;
    right: 0;

    /*
      Ends exactly before the divider area
    */
    height: 72%;
  }

  .hero-image-layer img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 0.9;

    filter: none;

    transform: none;
  }
}

/* =========================================
   TABLET
   ========================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  .hero-image-layer {
    top: 0;
    left: 0;
    right: 0;

    height: 70%;
  }

  .hero-image-layer img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 0.9;

    filter: none;

    transform: none;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

  .hero-image-layer {
    top: 0;
    left: 0;
    right: 0;

    /*
      Image starts from the phone's top
      and stops before the divider.
    */
    height: 63%;

    overflow: hidden;
  }

  .hero-image-layer img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 0.9;

    filter: none;

    transform: none;
  }
}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 480px) {

  .hero-image-layer {
    top: 0;
    left: 0;
    right: 0;

    height: 60%;
  }

  .hero-image-layer img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 0.9;

    filter: none;

    transform: none;
  }
}

/* =========================================
   RTL / LTR — IMAGE REMAINS IDENTICAL
   ========================================= */

html[dir="rtl"] .hero-image-layer,
body[dir="rtl"] .hero-image-layer,
html[dir="ltr"] .hero-image-layer,
body[dir="ltr"] .hero-image-layer {
  left: 0;
  right: 0;
  direction: ltr;
}

/* =========================================
   PREVENT HORIZONTAL OVERFLOW
   ========================================= */

html,
body {
  overflow-x: hidden;
}

