:root {
  --white: #fff;
  --off: #f6f6f4;
  --soft: #ededeb;
  --line: #dcdcd8;
  --black: #090909;
  --red: #e10600;
  --muted: #555;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1380px;
  --normal: 0.45s var(--ease);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: "Space Grotesk", sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--red);
  color: #fff;
}
.wrap {
  width: min(calc(100% - 80px), var(--container));
  margin: auto;
}
.label {
  font:
    600 10px "IBM Plex Mono",
    monospace;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
}
.red {
  color: var(--red) !important;
}
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s var(--ease);
}
.rv.show {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
#progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  z-index: 10050;
}
.cursor {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.13), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  z-index: 10000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.5s var(--ease);
}
#nav.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.07);
}
#nav > .logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10002;
}
#nav > .logo img {
  width: 124px;
  transition: 0.5s var(--ease);
}
#nav.scrolled > .logo img {
  width: 92px;
}
.navlinks {
  grid-column: 2;
  display: flex;
  gap: 40px;
  align-items: center;
}
.navlinks a {
  font:
    500 10px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: 0.25s;
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.5s;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--red);
  transform: translateY(-2px);
}
.navlinks a:hover:after,
.navlinks a.active:after {
  width: 100%;
}
.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 18px;
}
.lang {
  width: 82px;
  height: 38px;
  border: 1px solid #ccc;
  background: #fff;
  font:
    10px "IBM Plex Mono",
    monospace;
}
.lang:hover {
  background: #111;
  color: #fff;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d4d4d4;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  width: 18px;
  height: 1px;
  background: #111;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.5s var(--ease);
}
.mmenu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.mmenu a {
  font:
    700 clamp(48px, 11vw, 85px)/0.9 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  padding: 8px 0;
  transition: 0.4s var(--ease);
}
.mmenu a:hover {
  color: var(--red);
  padding-left: 15px;
}
.mmenu .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 18px;
}
.hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.82) 45%,
      rgba(255, 255, 255, 0.18)
    ),
    url("assets/site/hero-construction.webp") center/cover;
}
.hero-grid {
  position: absolute;
  inset: 0;
  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: 70px 70px;
}
.hero-ring {
  position: absolute;
  right: -100px;
  top: 50%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(225, 6, 0, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: ring 26s linear infinite;
}
.hero-ring:before {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
@keyframes ring {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.hero-kicker .line {
  width: 55px;
  height: 2px;
  background: var(--red);
}
h1 {
  font:
    800 clamp(76px, 10vw, 155px)/0.77 "Barlow Condensed",
    sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
}
.hero h1 .dim {
  display: inline-block;
  animation: floatWord 3s ease-in-out infinite;
}
@keyframes floatWord {
  50% {
    transform: translateY(-6px);
    text-shadow: 0 12px 34px rgba(225, 6, 0, 0.18);
  }
}
.hero-sub {
  max-width: 720px;
  margin-top: 32px;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}
.hero-stats {
  display: flex;
  gap: 55px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  width: max-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font:
    30px/1 "Barlow Condensed",
    sans-serif;
}
.hero-stat span {
  margin-top: 6px;
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid #111;
  background: #fff;
  font:
    600 10px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.5s var(--ease);
}
.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s var(--ease);
  z-index: 0;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:hover {
  color: #fff;
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.btn:hover:before {
  transform: scaleX(1);
}
.btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn--solid:before {
  background: #111;
}
.section {
  padding: 105px 0;
}
.off {
  background: var(--off);
}
.dark {
  background: #090909;
  color: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}
.section-head h2 {
  margin-top: 14px;
  font:
    800 clamp(58px, 7vw, 102px)/0.8 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.section-head p {
  max-width: 610px;
  color: #666;
  font-size: 14px;
  line-height: 1.85;
}
.dark .section-head p {
  color: #aaa;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.story-title {
  position: sticky;
  top: 115px;
}
.story-title h2 {
  margin-top: 15px;
  font:
    800 clamp(62px, 7vw, 108px)/0.78 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.story-title p {
  margin-top: 28px;
  max-width: 430px;
  color: #666;
  font-size: 13px;
  line-height: 1.85;
}
.story-copy p {
  color: #555;
  font-size: 14px;
  line-height: 1.95;
}
.story-copy p + p {
  margin-top: 22px;
}
.story-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 35px;
}
.story-card {
  min-height: 175px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: 0.45s var(--ease);
}
.story-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.09);
}
.story-card strong {
  font:
    58px/1 "Barlow Condensed",
    sans-serif;
}
.story-card span {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.story-card small {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 10px;
  line-height: 1.6;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.timeline-item {
  position: relative;
  padding-top: 70px;
}
.timeline-dot {
  position: absolute;
  top: 29px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--red);
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(225, 6, 0, 0.12));
}
.timeline-year {
  color: var(--red);
  font:
    10px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.timeline-item h3 {
  margin-top: 9px;
  font:
    38px/0.9 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.timeline-item p {
  margin-top: 12px;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
  max-width: 210px;
}
.lab {
  background: #f1f0ec;
  overflow: hidden;
  position: relative;
}
.lab:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.lab-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 60px;
  align-items: center;
}
.lab-copy h2 {
  margin-top: 14px;
  font:
    800 clamp(58px, 7vw, 102px)/0.8 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.lab-copy > p {
  max-width: 500px;
  margin-top: 24px;
  color: #666;
  font-size: 13px;
  line-height: 1.85;
}
.lab-instructions {
  margin-top: 25px;
  padding: 14px 16px;
  border-left: 2px solid var(--red);
  background: #fff;
  color: #555;
  font:
    9px/1.7 "IBM Plex Mono",
    monospace;
}
.module-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 14px;
}
.module-btn {
  position: relative;
  padding: 13px 10px;
  background: #fff;
  border: 1px solid var(--line);
  font:
    8px "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  overflow: hidden;
}
.module-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.module-btn:hover,
.module-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}
.module-btn.active:after {
  transform: scaleX(1);
}
.module-panel {
  margin-top: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}
.module-panel .code {
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
}
.module-panel h3 {
  margin-top: 8px;
  font:
    40px/0.85 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.module-panel p {
  margin-top: 10px;
  color: #666;
  font-size: 11px;
  line-height: 1.7;
}
.build-zone {
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  position: relative;
}
.build-zone:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(225, 6, 0, 0.014),
    0 0 0 140px rgba(225, 6, 0, 0.008);
}
.build-zone:after {
  content: "ALUSMART / SYSTEM 60";
  position: absolute;
  right: 5%;
  bottom: 6%;
  color: rgba(0, 0, 0, 0.16);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.6px;
}
.scene {
  width: 430px;
  height: 430px;
  position: relative;
  transform-style: preserve-3d;
  touch-action: none;
  cursor: grab;
  z-index: 2;
}
.scene:before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transform: rotate(45deg);
  pointer-events: none;
}
.scene.grabbing {
  cursor: grabbing;
}
.cube {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 340px;
  margin-left: -140px;
  margin-top: -170px;
  transform-style: preserve-3d;
  transition: transform 0.85s var(--ease);
  animation: cubeFloat 6s ease-in-out infinite;
}
.scene.grabbing .cube {
  animation-play-state: paused;
}
@keyframes cubeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
.façade-shell {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.cube-shadow {
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 300px;
  height: 70px;
  transform: translateX(-50%) rotateX(72deg);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.22),
    transparent 68%
  );
  filter: blur(8px);
  pointer-events: none;
}
.frame-rail {
  position: absolute;
  background: linear-gradient(
    90deg,
    #2f3031 0%,
    #8a8d90 30%,
    #d1d3d4 50%,
    #737577 74%,
    #272829 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 7px 16px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
}
.frame-top,
.frame-bottom {
  left: 0;
  width: 100%;
  height: 15px;
}
.frame-top {
  top: 0;
}
.frame-bottom {
  bottom: 0;
}
.frame-left,
.frame-right {
  top: 0;
  width: 15px;
  height: 100%;
}
.frame-left {
  left: 0;
}
.frame-right {
  right: 0;
}
.glass-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  height: calc((100% - 52px) / 3);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.38),
    rgba(88, 124, 146, 0.24) 33%,
    rgba(16, 27, 37, 0.18) 70%,
    rgba(255, 255, 255, 0.42)
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 15px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  transform-style: preserve-3d;
  overflow: hidden;
}
.glass-panel:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    110deg,
    transparent 38%,
    rgba(255, 255, 255, 0.36) 48%,
    transparent 58%
  );
  transform: translateX(-60%);
  animation: glassSweep 5.5s ease-in-out infinite;
}
.glass-panel:after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 24%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 35px 0 rgba(255, 255, 255, 0.12);
}
.glass-1 {
  top: 18px;
}
.glass-2 {
  top: 50%;
  transform: translateY(-50%) translateZ(5px);
}
.glass-3 {
  bottom: 18px;
}
@keyframes glassSweep {
  0%,
  55% {
    transform: translateX(-70%);
  }
  75%,
  100% {
    transform: translateX(70%);
  }
}
.mullion-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11px;
  background: linear-gradient(90deg, #2a2b2c, #b1b3b5 50%, #353637);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  z-index: 6;
}
.mullion-v.one {
  left: 33.333%;
  transform: translateX(-50%) translateZ(14px);
}
.mullion-v.two {
  left: 66.666%;
  transform: translateX(-50%) translateZ(14px);
}
.mullion-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(180deg, #292a2b, #a4a7aa 48%, #353637);
  z-index: 7;
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.13);
}
.mullion-h.one {
  top: 33.333%;
  transform: translateY(-50%) translateZ(18px);
}
.mullion-h.two {
  top: 66.666%;
  transform: translateY(-50%) translateZ(18px);
}
.thermal {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  background: repeating-linear-gradient(
    180deg,
    #b82620 0 7px,
    #61201f 7px 12px
  );
  transform: translateX(-50%) translateZ(20px);
  opacity: 0.85;
  z-index: 8;
}
.connector {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(225, 6, 0, 0.72);
  background: linear-gradient(145deg, #555, #191919);
  box-shadow:
    0 0 0 4px rgba(225, 6, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateZ(32px);
  z-index: 10;
}
.connector:before,
.connector:after {
  content: "";
  position: absolute;
  background: #c9c9c9;
}
.connector:before {
  width: 12px;
  height: 1px;
  left: 8px;
  top: 13px;
}
.connector:after {
  width: 1px;
  height: 12px;
  left: 13px;
  top: 8px;
}
.c1 {
  left: -14px;
  top: 34px;
}
.c2 {
  right: -14px;
  top: 34px;
}
.c3 {
  left: -14px;
  bottom: 34px;
}
.c4 {
  right: -14px;
  bottom: 34px;
}
.detail-chip {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  font:
    7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  color: #555;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.chip-top {
  left: -80px;
  top: -28px;
}
.chip-bottom {
  right: -96px;
  bottom: -28px;
}
.detail-chip b {
  color: var(--red);
  font-weight: 600;
}
.axis {
  position: absolute;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
.axis-x {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
}
.axis-y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}
.axis-z {
  width: 140px;
  height: 1px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.55), transparent);
  transform: rotate(-28deg);
  transform-origin: left center;
}
.focus-readout {
  position: absolute;
  left: 4%;
  bottom: 6%;
  font:
    7px "IBM Plex Mono",
    monospace;
  color: rgba(0, 0, 0, 0.42);
  letter-spacing: 1.2px;
  z-index: 2;
}
.focus-readout b {
  color: var(--red);
}
.lab-visual {
  background: #f1f0ec;
  overflow: hidden;
  position: relative;
}
.lab-visual-stage {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background:
    radial-gradient(circle at 50% 46%, rgba(225, 6, 0, 0.055), transparent 34%),
    linear-gradient(180deg, #f8f7f3 0%, #ecebe7 100%);
  isolation: isolate;
}
.lab-visual-grid {
  position: absolute;
  inset: 0;
  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: 52px 52px;
  mask-image: radial-gradient(circle at center, black 0 48%, transparent 88%);
  animation: labGridMove 16s linear infinite;
}
@keyframes labGridMove {
  to {
    background-position: 52px 52px;
  }
}
.lab-visual-radar {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(225, 6, 0, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(225, 6, 0, 0.012),
    0 0 0 60px rgba(225, 6, 0, 0.008);
  animation: radarPulse 4.8s ease-in-out infinite;
}
.lab-visual-radar:after {
  content: "";
  position: absolute;
  inset: 12px;
  border-top: 1px solid rgba(225, 6, 0, 0.16);
  border-radius: 50%;
  animation: radarSpin 9s linear infinite;
}
@keyframes radarPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}
.lab-visual-ring {
  position: absolute;
  border: 1px solid rgba(225, 6, 0, 0.1);
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: ringSpin 24s linear infinite;
  pointer-events: none;
}
.ring-one {
  width: 620px;
  height: 620px;
}
.ring-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  opacity: 0.8;
  animation-duration: 17s;
  animation-direction: reverse;
}
@keyframes ringSpin {
  to {
    transform: rotateX(70deg) rotateZ(360deg);
  }
}
.lab-visual-scan {
  position: absolute;
  top: -30%;
  bottom: -30%;
  width: 20%;
  left: -25%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-18deg);
  animation: stageScan 7s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}
@keyframes stageScan {
  0%,
  24% {
    left: -25%;
  }
  65%,
  100% {
    left: 125%;
  }
}
.lab-visual-meta,
.lab-visual-corner {
  position: absolute;
  z-index: 8;
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
  color: rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
}
.lab-meta-left {
  left: 22px;
  top: 20px;
}
.lab-meta-right {
  right: 22px;
  top: 20px;
}
.c-tl {
  left: 22px;
  top: 50%;
}
.c-tr {
  right: 22px;
  top: 50%;
}
.c-bl {
  left: 22px;
  bottom: 20px;
}
.c-br {
  right: 22px;
  bottom: 20px;
}
.lab-visual .build-zone {
  width: 760px;
  max-width: 100%;
  min-height: 660px;
  display: grid;
  place-items: center;
  perspective: 1500px;
  position: relative;
  z-index: 5;
}
.lab-visual .build-zone:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(225, 6, 0, 0.014),
    0 0 0 140px rgba(225, 6, 0, 0.008);
  animation: zoneBreath 5s ease-in-out infinite;
}
@keyframes zoneBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}
.lab-visual .scene {
  width: 520px;
  height: 520px;
  position: relative;
  transform-style: preserve-3d;
  touch-action: none;
  cursor: grab;
  z-index: 6;
}
.lab-visual .scene:before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 0, 0, 0.055);
  transform: rotate(45deg);
  pointer-events: none;
  animation: diamondDrift 7s ease-in-out infinite;
}
@keyframes diamondDrift {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.035);
  }
}
.lab-visual .scene.grabbing {
  cursor: grabbing;
}
.lab-visual .cube {
  width: 315px;
  height: 380px;
  margin-left: -157.5px;
  margin-top: -190px;
  animation: cubeFloatPremium 5.8s ease-in-out infinite;
  filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.13));
}
@keyframes cubeFloatPremium {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -10px;
    rotate: 0.4deg;
  }
}
.lab-visual .scene:hover .cube {
  filter: drop-shadow(0 38px 55px rgba(0, 0, 0, 0.18));
}
.lab-visual .glass-panel {
  transition:
    transform 0.55s var(--ease),
    filter 0.45s ease,
    box-shadow 0.45s ease;
}
.lab-visual .scene:hover .glass-panel {
  filter: brightness(1.07) saturate(1.08);
}
.lab-visual .glass-panel:before {
  animation: glassSweepPremium 4.8s ease-in-out infinite;
}
@keyframes glassSweepPremium {
  0%,
  58% {
    transform: translateX(-75%);
  }
  76%,
  100% {
    transform: translateX(75%);
  }
}
.lab-visual .frame-rail,
.lab-visual .mullion-v,
.lab-visual .mullion-h,
.lab-visual .connector {
  transition:
    filter 0.35s ease,
    box-shadow 0.35s ease;
}
.lab-visual .frame-rail:hover,
.lab-visual .mullion-v:hover,
.lab-visual .mullion-h:hover,
.lab-visual .connector:hover {
  filter: brightness(1.18);
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.16);
}
.lab-visual .connector {
  animation: connectorGlow 3.3s ease-in-out infinite;
}
@keyframes connectorGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(225, 6, 0, 0.035),
      0 8px 16px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(225, 6, 0, 0.03),
      0 12px 23px rgba(0, 0, 0, 0.18);
  }
}
.lab-visual .detail-chip {
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.lab-visual .scene:hover .chip-top {
  transform: translate3d(-7px, -5px, 20px);
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.lab-visual .scene:hover .chip-bottom {
  transform: translate3d(7px, 5px, 20px);
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.lab-visual .focus-readout {
  display: none;
}
.lab-visual-caption {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.caption-kicker {
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.8px;
}
.lab-visual-caption strong {
  font:
    800 clamp(34px, 4vw, 58px)/0.8 "Barlow Condensed",
    sans-serif;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.lab-visual-caption strong em {
  color: var(--red);
  font-style: normal;
}
.caption-note {
  color: rgba(0, 0, 0, 0.45);
  font:
    7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.5px;
}
.leader-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 55px;
  align-items: start;
}
.dossier {
  min-height: 0;
  padding: 24px;
  background: #090909;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 6, 0, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}
.dossier:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(225, 6, 0, 0.08) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      transparent 49.8%,
      rgba(255, 255, 255, 0.035) 50%,
      transparent 50.2%
    );
}
.dossier-top,
.initials,
.dossier-name,
.dossier-role,
.dossier-foot {
  position: relative;
  z-index: 2;
}
.dossier-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.dossier-code {
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
}
.dossier-status {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #999;
  font:
    7px "IBM Plex Mono",
    monospace;
}
.leader-photo-wrap {
  position: relative;
  width: calc(100% - 34px);
  max-width: 320px;
  height: 320px;
  margin: 20px auto 0;
  border-radius: 0;
  border: 1px solid rgba(225, 6, 0, 0.35);
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
.leader-photo {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  filter: grayscale(0.02) contrast(1.08) brightness(1.02) saturate(1.03);
  background: #0b0b0b;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s ease;
}
.dossier:hover .leader-photo {
  transform: scale(1.01);
  filter: grayscale(0) contrast(1.1) brightness(1.01) saturate(1.05);
}
.leader-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(225, 6, 0, 0.08),
    transparent 35%,
    transparent 70%,
    rgba(255, 255, 255, 0.05)
  );
  mix-blend-mode: screen;
}
.leader-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.leader-photo-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: leaderScan 3.8s linear infinite;
  opacity: 0.75;
}
@keyframes leaderScan {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.leader-photo-overlay {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 13px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
}
.leader-photo-overlay .label {
  font-size: 5.5px !important;
  letter-spacing: 1px !important;
  line-height: 1;
}
.leader-photo-overlay strong {
  font:
    800 clamp(23px, 2.35vw, 34px)/0.84 "Barlow Condensed",
    sans-serif !important;
  letter-spacing: -0.55px !important;
  text-transform: uppercase;
}
.leader-photo-overlay strong .red {
  color: var(--red) !important;
}
.leader-photo-overlay small {
  font:
    5.5px "IBM Plex Mono",
    monospace !important;
  letter-spacing: 0.7px !important;
  color: #ddd;
  line-height: 1;
}
.initials {
  display: none !important;
}
.dossier-name {
  text-align: center;
  font:
    800 52px/0.82 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.dossier-role {
  text-align: center;
  margin-top: 8px;
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.4px;
}
.dossier-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 26px;
  background: #242424;
}
.dossier-stat {
  padding: 15px;
  background: #101010;
}
.dossier-stat b {
  font:
    27px "Barlow Condensed",
    sans-serif;
}
.dossier-stat span {
  display: block;
  margin-top: 5px;
  color: #777;
  font:
    7px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.leader-copy {
  width: 100%;
  max-width: none;
}
.leader-copy h2 {
  font:
    800 clamp(64px, 8vw, 120px)/0.76 "Barlow Condensed",
    sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
}
.leader-copy > p {
  margin-top: 25px;
  width: 100%;
  max-width: 820px;
  color: #555;
  font-size: 15px;
  line-height: 1.95;
}
.leader-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.leader-tab {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: #333;
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.leader-tab:hover {
  border-color: #111;
}
.leader-tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.leader-info {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.leader-info-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.leader-info-row strong {
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.leader-info-row p {
  max-width: 760px;
  color: #555;
  font-size: 13px;
  line-height: 1.85;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.principle {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 220px;
  transition: 0.5s var(--ease);
}
.principle:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.principle-num {
  color: var(--red);
  font:
    8px "IBM Plex Mono",
    monospace;
}
.principle h3 {
  margin-top: 34px;
  font:
    41px/0.85 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.principle p {
  margin-top: 12px;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
}
.quote {
  padding: 110px 0;
  background: #090909;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}
.quote h2 {
  position: relative;
  margin: 16px auto 24px;
  max-width: 980px;
  font:
    800 clamp(65px, 9vw, 135px)/0.78 "Barlow Condensed",
    sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
}
.quote p {
  position: relative;
  max-width: 620px;
  margin: auto auto 30px;
  color: #999;
  font-size: 13px;
  line-height: 1.85;
}
.quote .btn {
  position: relative;
}
footer {
  padding: 70px 0 25px;
  background: #090909;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.foot-brand {
  direction: ltr;
  text-align: left;
}
footer .foot-brand {
  display: block !important;
  min-width: 0;
  direction: ltr !important;
  text-align: left !important;
}
footer .foot-logo {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  height: auto !important;
  color: #fff !important;
  font-family: "Barlow Condensed", Arial, sans-serif !important;
  font-size: 44px !important;
  font-weight: 800 !important;
  line-height: 0.82 !important;
  letter-spacing: -2.5px !important;
  white-space: nowrap !important;
  position: relative !important;
  z-index: 20 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  text-transform: none !important;
  direction: ltr !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none;
  transition:
    transform 0.45s var(--ease),
    filter 0.45s ease;
}
footer .foot-logo-base {
  display: inline !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
footer .foot-logo-smart {
  display: inline !important;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  margin-left: 8px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.foot-logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 22px rgba(225, 6, 0, 0.16));
}
.foot-tag {
  max-width: 390px;
  margin-top: 20px;
  color: #999;
  font-size: 11px;
  line-height: 1.8;
}
.foot-grid h4 {
  margin-bottom: 20px;
  color: var(--red);
  font:
    9px "IBM Plex Mono",
    monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.foot-grid a,
.foot-grid p {
  display: block;
  margin: 9px 0;
  color: #aaa;
  font-size: 11px;
}
.foot-grid a:hover {
  color: var(--red);
}
.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #666;
  font:
    8px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
#mobile-language-float {
  display: none;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  min-width: 82px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10004;
  color: var(--black);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font:
    9px "IBM Plex Mono",
    monospace;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
#mobile-language-float:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
@media (max-width: 1100px) {
  .navlinks {
    gap: 24px;
  }
  .story-grid,
  .leader-grid,
  .lab-layout {
    gap: 50px;
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 35px;
  }
  .timeline:before {
    display: none;
  }
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leader-grid {
    grid-template-columns: 0.68fr 1.32fr;
  }
  .leader-photo-wrap {
    width: calc(100% - 24px);
    max-width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .leader-photo-overlay strong {
    font-size: 34px !important;
  }
}
@media (max-width: 850px) {
  .wrap {
    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 {
    left: 20px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  #nav > .logo img {
    width: 106px !important;
    min-width: 106px !important;
    max-width: 106px !important;
  }
  #nav.scrolled > .logo img {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
  .navlinks,
  .nav-actions .lang {
    display: none !important;
  }
  .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: 10004 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    direction: ltr !important;
  }
  #nav.scrolled .nav-actions {
    top: 32.5px !important;
  }
  .burger {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d4d4d4 !important;
    background: #fff !important;
  }
  .burger:hover {
    border-color: var(--red) !important;
  }
  .burger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }
  .burger.open span:nth-child(2) {
    opacity: 0 !important;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }
  #mobile-language-float {
    display: flex !important;
    position: fixed !important;
    top: 14px !important;
    left: 50% !important;
    right: auto !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: 10005 !important;
    font:
      9px "IBM Plex Mono",
      monospace !important;
  }
  .hero {
    padding: 135px 0 75px;
  }
  .hero-ring {
    width: 360px;
    height: 360px;
    right: -160px;
  }
  .hero h1 {
    font-size: clamp(58px, 14vw, 92px);
    letter-spacing: -2px;
  }
  .hero-sub {
    font-size: 13px;
  }
  .hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .section {
    padding: 75px 0;
  }
  .section-head,
  .story-grid,
  .leader-grid,
  .lab-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-title {
    position: static;
  }
  .story-title h2,
  .leader-copy h2,
  .lab-copy h2 {
    font-size: clamp(56px, 15vw, 92px);
  }
  .story-callout {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .build-zone {
    min-height: 470px;
  }
  .scene {
    width: 320px;
    height: 320px;
  }
  .cube {
    inset: 40px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .quote {
    padding: 85px 0;
  }
  .leader-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .dossier {
    padding: 20px !important;
  }
  .leader-photo-wrap {
    width: calc(100% - 18px) !important;
    max-width: none !important;
    height: 320px !important;
    margin: 10px auto 0 !important;
  }
  .leader-photo-overlay {
    left: 15px !important;
    right: 15px !important;
    bottom: 13px !important;
    gap: 3px !important;
  }
  .leader-photo-overlay .label {
    font-size: 5.5px !important;
  }
  .leader-photo-overlay strong {
    font-size: 30px !important;
    letter-spacing: -0.7px !important;
  }
  .leader-photo-overlay small {
    font-size: 5.5px !important;
  }
  .leader-copy {
    width: 100%;
  }
  .leader-copy > p {
    max-width: none !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
  }
  .leader-info-row {
    grid-template-columns: 155px 1fr;
    gap: 20px;
  }
  .lab-visual-stage {
    min-height: 620px;
  }
  .lab-visual .build-zone {
    min-height: 520px;
  }
  .lab-visual .scene {
    width: 390px;
    height: 390px;
  }
  .lab-visual .cube {
    width: 255px;
    height: 308px;
    margin-left: -127.5px;
    margin-top: -154px;
  }
  .lab-visual .build-zone:before {
    width: 410px;
    height: 410px;
  }
  .ring-one {
    width: 470px;
    height: 470px;
  }
  .ring-two {
    width: 350px;
    height: 350px;
  }
  .lab-visual-caption {
    left: 18px;
    bottom: 20px;
  }
  .lab-visual-caption strong {
    font-size: 48px;
  }
  .lab-visual-meta,
  .lab-visual-corner {
    font-size: 7px;
  }
  #mmenu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 33px;
    padding: 40px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition:
      opacity var(--normal),
      transform var(--normal),
      visibility var(--normal);
    row-gap: 33px;
  }
  #mmenu.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  #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%;
    }
  }
  #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: 4;
    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: 2;
    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;
    opacity: 0;
    transform: translateY(25px);
    transition:
      color var(--fast),
      padding-inline-start var(--normal),
      padding-inline-end var(--normal),
      opacity 0.65s ease,
      transform 0.65s var(--ease);
  }
  #mmenu.open a {
    opacity: 1;
    transform: none;
  }
  #mmenu.open a:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #mmenu.open a:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #mmenu.open a:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #mmenu.open a:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #mmenu.open a:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #mmenu a:hover {
    color: var(--red);
    padding-inline-start: 15px;
    transform: translateX(4px);
  }
  .dossier {
    padding: 16px !important;
  }
  .leader-photo-wrap {
    width: calc(100% - 12px) !important;
    max-width: none !important;
    height: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .leader-photo-overlay {
    left: 13px !important;
    right: 13px !important;
    bottom: 11px !important;
  }
  .leader-photo-overlay .label {
    font-size: 5px !important;
  }
  .leader-photo-overlay strong {
    font-size: 27px !important;
  }
  .leader-photo-overlay small {
    font-size: 5px !important;
  }
  .leader-copy h2 {
    font-size: 58px !important;
  }
  .leader-info-row {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
  .build-zone {
    min-height: 430px;
  }
  .scene {
    width: 290px;
    height: 290px;
  }
  .cube {
    width: 200px;
    height: 245px;
    margin-left: -100px;
    margin-top: -122.5px;
  }
  .build-zone:before {
    width: 310px;
    height: 310px;
  }
  .chip-top {
    left: -36px;
    top: -34px;
  }
  .chip-bottom {
    right: -45px;
    bottom: -34px;
  }
  .lab-visual-stage {
    min-height: 500px;
  }
  .lab-visual .build-zone {
    min-height: 410px;
  }
  .lab-visual .scene {
    width: 300px;
    height: 300px;
  }
  .lab-visual .cube {
    width: 200px;
    height: 245px;
    margin-left: -100px;
    margin-top: -122.5px;
  }
  .lab-visual .build-zone:before {
    width: 315px;
    height: 315px;
  }
  .ring-one {
    width: 340px;
    height: 340px;
  }
  .ring-two {
    width: 250px;
    height: 250px;
  }
  .lab-visual-meta,
  .lab-visual-corner {
    font-size: 6px;
    letter-spacing: 0.8px;
  }
  .lab-meta-left {
    left: 12px;
    top: 12px;
  }
  .lab-meta-right {
    right: 12px;
    top: 12px;
    max-width: 120px;
    text-align: right;
  }
  .c-tl {
    left: 12px;
  }
  .c-tr {
    right: 12px;
  }
  .c-bl {
    left: 12px;
    bottom: 12px;
  }
  .c-br {
    right: 12px;
    bottom: 12px;
  }
  .lab-visual-caption {
    left: 14px;
    bottom: 16px;
  }
  .lab-visual-caption strong {
    font-size: 34px;
  }
}
html[dir="rtl"] #nav,
html[dir="rtl"] #nav > *,
html[dir="rtl"] .navlinks,
html[dir="rtl"] .nav-actions {
  direction: ltr !important;
}
html[dir="rtl"] #nav > .logo {
  left: 40px;
  right: auto;
}
html[dir="rtl"] .story-copy,
html[dir="rtl"] .story-title p,
html[dir="rtl"] .leader-copy > p,
html[dir="rtl"] .leader-info-row p,
html[dir="rtl"] .section-head p {
  text-align: right;
}
html[dir="rtl"] footer .foot-brand {
  direction: ltr !important;
  text-align: left !important;
}
html[dir="rtl"] footer .foot-logo {
  direction: ltr !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  text-align: left !important;
}
html[dir="rtl"] footer .foot-logo,
html[dir="rtl"] footer .foot-logo-base,
html[dir="rtl"] footer .foot-logo-smart {
  font-size: 44px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
}
html[dir="rtl"] .foot-grid > div:not(.foot-brand) {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] #mobile-language-float {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor {
    display: none;
  }
  .lab-visual-grid,
  .lab-visual-radar,
  .lab-visual-ring,
  .lab-visual-scan,
  .lab-visual-stage:before,
  .lab-visual .scene:before,
  .lab-visual .cube,
  .lab-visual .glass-panel:before,
  .lab-visual .connector {
    animation: none !important;
  }
}
#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 cubic-bezier(0.16, 1, 0.3, 1),
    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 cubic-bezier(0.16, 1, 0.3, 1),
    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 cubic-bezier(0.16, 1, 0.3, 1);
}
#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);
  }
}
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);
}
@media (max-width: 850px) {
  #wa {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  #wa svg {
    width: 23px;
    height: 23px;
  }
  #wa::before {
    display: none;
  }
  html[dir="rtl"] #wa {
    right: auto;
    left: 16px;
  }
}
@media (max-width: 480px) {
  #wa {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  #wa svg {
    width: 22px;
    height: 22px;
  }
  html[dir="rtl"] #wa {
    right: auto;
    left: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #wa {
    animation: none !important;
    transition: none !important;
  }
  #wa svg {
    transition: none !important;
  }
  #wa::before {
    transition: none !important;
  }
}
/* 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;
  }
}
/* =========================================
   OUR TEAM
   Scoped only to this section
   ========================================= */

.our-team-section {
  position: relative;
  overflow: hidden;
}

.our-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

/* =========================================
   OUR TEAM — PREMIUM SECTION
   ========================================= */

.our-team-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* =========================================
   INTRO / STATEMENT
   ========================================= */

.our-team-intro {
  max-width: 1180px;
  margin-bottom: 70px;
}

.our-team-statement {
  margin-top: 14px;

  font:
    800 clamp(58px, 7vw, 102px) / 0.8 "Barlow Condensed",
    sans-serif;

  letter-spacing: -4px;
  text-transform: uppercase;
}


/* =========================================
   MAIN GRID
   ========================================= */

.our-team-grid {
  display: grid;

  /*
    Large visual + content
    matching Leadership proportions
  */
  grid-template-columns: 1.12fr 0.88fr;

  align-items: center;

  gap: clamp(50px, 6vw, 95px);
}


/* =========================================
   IMAGE FRAME
   ========================================= */

.our-team-visual {
  position: relative;
  min-width: 0;
}

.our-team-frame {
  position: relative;

  width: 100%;

  padding: 14px 14px 34px;

  background: #090909;

  color: #fff;

  border: 1px solid rgba(225, 6, 0, 0.32);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.14);

  overflow: hidden;

  isolation: isolate;

  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.45s ease;
}

.our-team-frame:hover {
  transform: translateY(-6px);

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

  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.18);
}


/* =========================================
   ENGINEERING GRID
   ========================================= */

.our-team-frame::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(225, 6, 0, 0.07) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      transparent 49.8%,
      rgba(255, 255, 255, 0.028) 50%,
      transparent 50.2%
    );

  pointer-events: none;
}


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

.our-team-image-wrap {
  position: relative;

  z-index: 2;

  width: 100%;

  /*
    Bigger image
  */
  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.10);
}

.our-team-image {
  width: 100%;
  height: 100%;

  display: block;

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

  filter:
    grayscale(0.02)
    contrast(1.07)
    brightness(1.02)
    saturate(1.03);

  transform: scale(1.015);

  transition:
    transform 1s var(--ease),
    filter 0.7s ease;
}

.our-team-frame:hover .our-team-image {
  transform: scale(1.045);

  filter:
    grayscale(0)
    contrast(1.10)
    brightness(1.02)
    saturate(1.06);
}


/* =========================================
   IMAGE LIGHT OVERLAY
   ========================================= */

.our-team-image-wrap::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 3;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(225, 6, 0, 0.08),
      transparent 32%,
      transparent 72%,
      rgba(255, 255, 255, 0.055)
    );

  mix-blend-mode: screen;
}


/* =========================================
   IMAGE SHINE
   ========================================= */

.our-team-image-shine {
  position: absolute;
  inset: 0;

  z-index: 4;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 36%,
      rgba(255, 255, 255, 0.15) 49%,
      transparent 62%
    );

  transform: translateX(-125%);

  transition:
    transform 1.1s var(--ease);
}

.our-team-frame:hover .our-team-image-shine {
  transform: translateX(125%);
}


/* =========================================
   PREMIUM SCAN
   ========================================= */

.our-team-scan {
  position: absolute;

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

  height: 1px;

  z-index: 5;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red),
      transparent
    );

  opacity: 0.7;

  animation:
    ourTeamScan 4.8s linear infinite;

  pointer-events: none;
}

@keyframes ourTeamScan {

  0% {
    top: 0;
    opacity: 0;
  }

  12% {
    opacity: 0.75;
  }

  82% {
    opacity: 0.75;
  }

  100% {
    top: 100%;
    opacity: 0;
  }

}


/* =========================================
   CORNER MARKERS
   ========================================= */

.our-team-corner {
  position: absolute;

  z-index: 7;

  width: 26px;
  height: 26px;

  pointer-events: none;
}

.our-team-corner span {
  position: absolute;

  background: var(--red);
}

.our-team-corner span:first-child {
  width: 20px;
  height: 1px;
}

.our-team-corner span:last-child {
  width: 1px;
  height: 20px;
}

.our-team-corner-tl {
  top: 7px;
  left: 7px;
}

.our-team-corner-tr {
  top: 7px;
  right: 7px;
}

.our-team-corner-bl {
  bottom: 7px;
  left: 7px;
}

.our-team-corner-br {
  bottom: 7px;
  right: 7px;
}

.our-team-corner-tr span:first-child,
.our-team-corner-br span:first-child {
  right: 0;
}

.our-team-corner-tr span:last-child,
.our-team-corner-br span:last-child {
  right: 0;
}

.our-team-corner-bl span:first-child,
.our-team-corner-br span:first-child {
  bottom: 0;
}

.our-team-corner-bl span:last-child,
.our-team-corner-br span:last-child {
  bottom: 0;
}


/* =========================================
   IMAGE FOOTER META
   ========================================= */

.our-team-index {
  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 16px;

  padding-top: 14px;

  color: #777;

  font:
    8px "IBM Plex Mono",
    monospace;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.our-team-index span:first-child {
  color: var(--red);
}


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

.our-team-content {
  width: 100%;
  max-width: 650px;
}

.our-team-content h2 {
  margin-top: 14px;

  font:
    800 clamp(64px, 8vw, 120px) / 0.76 "Barlow Condensed",
    sans-serif;

  letter-spacing: -4px;

  text-transform: uppercase;
}

.our-team-description {
  width: 100%;

  max-width: 620px;

  margin-top: 28px;

  color: #555;

  font-size: 15px;

  line-height: 1.95;
}


/* =========================================
   RTL
   ========================================= */

html[dir="rtl"] .our-team-grid,
body[dir="rtl"] .our-team-grid {
  direction: rtl;
}

html[dir="rtl"] .our-team-content,
body[dir="rtl"] .our-team-content {
  text-align: right;
}

html[dir="rtl"] .our-team-index,
body[dir="rtl"] .our-team-index {
  direction: ltr;
}


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

@media (max-width: 1100px) {

  .our-team-grid {
    grid-template-columns: 1fr 0.9fr;

    gap: 50px;
  }

  .our-team-intro {
    margin-bottom: 55px;
  }

}


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

@media (max-width: 850px) {

  .our-team-intro {
    margin-bottom: 42px;
  }

  .our-team-statement {
    font-size: clamp(56px, 15vw, 92px);

    letter-spacing: -3px;
  }

  .our-team-grid {
    display: flex;

    flex-direction: column;

    gap: 36px;
  }

  .our-team-visual {
    order: 1;

    width: 100%;
  }

  .our-team-content {
    order: 2;

    max-width: none;

    width: 100%;
  }

  .our-team-frame {
    padding: 10px 10px 28px;
  }

  .our-team-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .our-team-content h2 {
    font-size: clamp(56px, 15vw, 92px);

    letter-spacing: -3px;
  }

  .our-team-description {
    max-width: none;

    font-size: 13px;

    line-height: 1.85;
  }

}


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

@media (max-width: 480px) {

  .our-team-statement {
    font-size: clamp(48px, 14vw, 72px);

    letter-spacing: -2px;
  }

  .our-team-frame {
    padding: 8px 8px 24px;
  }

  .our-team-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .our-team-content h2 {
    font-size: clamp(48px, 14vw, 72px);

    letter-spacing: -2px;
  }

  .our-team-description {
    font-size: 12.5px;
  }

  .our-team-index {
    gap: 8px;

    font-size: 7px;

    letter-spacing: 1px;
  }

}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

  .our-team-frame,
  .our-team-image,
  .our-team-image-shine {
    transition: none;
  }

  .our-team-frame:hover {
    transform: none;
  }

  .our-team-frame:hover .our-team-image {
    transform: none;
  }

  .our-team-frame:hover .our-team-image-shine {
    transform: none;
  }

  .our-team-scan {
    animation: none;
  }

}