@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'KH Teka';
  src: url('../fonts/KHTeka-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KH Teka';
  src: url('../fonts/KHTeka-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KH Teka';
  src: url('../fonts/KHTeka-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KH Teka';
  src: url('../fonts/KHTeka-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf');
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

main {
  width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
}

.hero * {
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #383838;
  display: grid;
  place-items: start;
  overflow: hidden;
}

.overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.logo-container {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container .logo-mark {
  width: 64px;
  height: 64px;
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo-container:hover .logo-mark {
  transform: scale(1.08);
}

.logo-container h2 {
  font-size: 24px;
}

.header-navigation-links ul {
  display: flex;
  list-style: none;
  gap: 100px;
}

.header-navigation-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.header-cta a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  padding: 20px 30px;
  border: 1px solid #ccc;
}

/* Mobile Menu Toggle & Navigation Drawer */
.mobile-menu-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100000;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 26px;
  position: relative;
  box-sizing: border-box;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff !important;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #ff350d !important;
}

.mobile-menu-toggle.active {
  opacity: 0 !important;
  pointer-events: none !important;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.mobile-nav-drawer.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
  height: 100vh;
  height: 100dvh;
}

.mobile-nav-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  box-sizing: border-box;
}

.mobile-nav-header .logo-container {
  color: #ffffff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-header .logo-container h2 {
  color: #ffffff !important;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mobile-nav-header .logo-container svg.logo-mark {
  color: #ffffff !important;
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  border-color: #ff350d;
  color: #ff350d;
  background-color: rgba(255, 53, 13, 0.15);
  transform: scale(1.08);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: #ff350d !important;
}

.mobile-nav-cta {
  margin-top: 1rem;
}

.mobile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff350d;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.25s ease;
}

.mobile-cta-button:hover {
  background-color: #e02d06;
}

@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-nav-drawer {
    display: none !important;
  }
}

.hero-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-info-left {
  width: 60%;
}

.hero-info-left h1 {
  font-size: clamp(3.2rem, 9.5vw, 9.6875rem);
  line-height: 0.85;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hero-line {
  display: block;
  overflow: hidden;
}

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

.hero-info-right {
  width: 20%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding-right: 20px;
}

.hero-info-right p {
  color: #ccc;
  font-size: 12px;
}

.hero-info-right-button-container {
  margin-top: 60px;
  padding-bottom: 20px;
}

.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  background: #eee;
  user-select: none;
}

.carousel>div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  flex-shrink: 0;
  will-change: transform;
}

.carousel>div>div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

.carousel img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.about-section {
  position: relative;
  width: 100%;
  z-index: 1;
}

.about-section .about-section-parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 10vw;
  aspect-ratio: 1/1.5;
  will-change: transform;
}

.about-section .about-section-parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-section .about-section-parallax-image:nth-child(1) {
  top: 15%;
  left: 7%;
}

.about-section .about-section-parallax-image:nth-child(2) {
  top: 55%;
  left: -2%;
}

.about-section .about-section-parallax-image:nth-child(3) {
  top: 95%;
  left: 6%;
}

.about-section .about-section-parallax-image:nth-child(4) {
  top: 12%;
  left: 90%;
}

.about-section .about-section-parallax-image:nth-child(5) {
  top: 50%;
  left: 82%;
}

.about-section .about-section-parallax-image:nth-child(6) {
  top: 100%;
  left: 85%;
}

.about-section .heading {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 250px;
}

.about-section .heading p {
  color: #ccc;
  letter-spacing: 1px;
}

.about-section .heading h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
}

.about-section .main-container {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

.about-section .info {
  border: 1px solid #ccc;
  padding-block: 20px;
  overflow: hidden;
  position: relative;
}

.about-section .main-container .overlay {
  background-color: transparent;
  overflow: visible;
}

.about-section .main-container .overlay .plus-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(-50%, -50%, 0);
  z-index: 20;
  background-color: white;
}

.about-section .main-container .overlay .plus-container:nth-child(1) {
  top: 100%;
  left: 0;
}

.about-section .main-container .overlay .plus-container:nth-child(2) {
  top: 0;
  left: 100%;
}

.about-section .main-container .overlay .plus-container:nth-child(3) {
  top: 100%;
  left: 100%;
}

.about-section .main-container .overlay .plus-container:nth-child(4) {
  top: 0;
  left: 0;
}

.about-section .main-container .overlay .plus-container img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.about-section .info span {
  color: #999;
  padding-inline: 20px;
}

.about-section .info h3 {
  font-size: 2rem;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 30px;
  padding-inline: 20px;
  font-family: 'Montserrat', sans-serif;
}

.about-section .info p {
  padding-inline: 20px;
  line-height: 1.6;
}

.about-section .info button {
  background: #ff350d;
  border: none;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 100px;
  margin-left: 20px;
}

.about-section .info h1 {
  font-size: clamp(3rem, 14vw, 10.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-inline: -25px;
  font-weight: 600;
  color: #ccc;
}

.mission-section {
  padding-top: 320px;
  position: relative;
  padding-inline: 40px;
  padding-bottom: 120px;
}

.mission-section h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ccc;
}

.mission-section h1 span.mission-label {
  color: #ccc;
  padding-right: 80px;
  font-size: 12px;
  vertical-align: middle;
}

.mission-word {
  display: inline-block;
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ccc;
  background: linear-gradient(to right, #000 50%, #ccc 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: background-position;
}

.expertise-section {
  min-height: 133vh;
  display: grid;
  padding-inline: 30px;
  padding-bottom: 100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  position: relative;
}

.expertise-section .overlay {
  background-color: transparent;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
}

.expertise-section .overlay .plus-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(-50%, -50%, 0);
  z-index: 20;
  background-color: white;
}

.expertise-section .overlay .plus-container:nth-child(1) {
  left: 30px;
}

.expertise-section .overlay .plus-container:nth-child(2) {
  left: calc(100% - 30px);
}

.expertise-section .overlay .plus-container:nth-child(3) {
  top: calc(100% - 100px);
  left: calc(100% - 30px);
}

.expertise-section .overlay .plus-container:nth-child(4) {
  top: calc(100% - 100px);
  left: 30px;
}

.expertise-section .overlay .plus-container:nth-child(5) {
  left: 50%;
}

.expertise-section .overlay .plus-container:nth-child(6) {
  top: calc(50% - 50px);
  left: 50%;
}

.expertise-section .overlay .plus-container:nth-child(7) {
  top: calc(100% - 100px);
  left: 50%;
}

.expertise-section .overlay .plus-container:nth-child(8) {
  top: calc(50% - 50px);
  left: calc(100% - 30px);
}

.expertise-section .overlay .plus-container:nth-child(9) {
  top: calc(50% - 50px);
  left: 30px;
}

.expertise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px;
  overflow: visible;
  min-width: 0;
  min-height: 0;
}

.expertise-card .plus-container {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 20;
  background-color: white;
}

.expertise-card .plus-container img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.expertise-card .plus-top-left {
  top: 0;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
}

.expertise-card .plus-top-right {
  top: 0;
  right: 0;
  transform: translate3d(50%, -50%, 0);
}

.expertise-card .plus-bottom-left {
  bottom: 0;
  left: 0;
  transform: translate3d(-50%, 50%, 0);
}

.expertise-card .plus-bottom-right {
  bottom: 0;
  right: 0;
  transform: translate3d(50%, 50%, 0);
}

.expertise-card-1,
.expertise-card-2 {
  border-top: 1px solid #ccc;
}

.expertise-card-1,
.expertise-card-3 {
  border-left: 1px solid #ccc !important;
}

.expertise-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expertise-card-heading-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.expertise-card-heading-left span:first-child {
  font-weight: 600;
  display: block;
  color: #ccc;
  text-transform: none;
}

.expertise-card-heading>span {
  color: #999;
  font-size: 14px;
}

.expertise-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.expertise-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-container {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  user-select: none;
}

.button-container .button-text {
  background: #ff350d;
  border: none;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-container .button-arrow-primary {
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-container .button-arrow-primary .button-arrow-inner {
  position: absolute;
  inset: 0;
  background: #ff350d;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: rotate(0deg);
  transform-origin: 0% 0%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-container .button-arrow-primary img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.button-container .button-arrow-secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
  pointer-events: none;
}

.button-container .button-arrow-secondary .button-arrow-inner {
  position: absolute;
  inset: 0;
  background: #ff350d;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: rotate(-90deg);
  transform-origin: 100% 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-container .button-arrow-secondary img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  transform: rotate(-45deg);
}

.button-container:hover .button-text {
  transform: translate3d(56px, 0, 0);
}

.button-container:hover .button-arrow-primary {
  transform: translate3d(56px, 0, 0);
}

.button-container:hover .button-arrow-primary .button-arrow-inner {
  transform: rotate(90deg);
}

.button-container:hover .button-arrow-secondary .button-arrow-inner {
  transform: rotate(0deg);
}

.key-facts-section {
  padding: 0;
  padding-top: 40px;
  background-color: #171717;
  position: relative;
}

.key-facts-section * {
  color: white;
}

.key-fact-title {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}

.key-fact-title span {
  color: #777;
}

.key-fact-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 50;
  position: relative;
  background-color: #171717;
  padding-inline: 40px;
  padding-block: 60px;
}

.key-fact-container:nth-child(5) {
  background: linear-gradient(0deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 1) 50%);
}

.key-facts-section h1 {
  font-size: 12.125rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 0.76;
  text-transform: uppercase;
  color: #ffffff;
}

.key-fact-line {
  display: block;
  overflow: hidden;
  color: #ffffff;
}

.key-fact-line-inner {
  display: block;
  will-change: transform, opacity;
  color: #ffffff;
  transform: translateY(105%);
  opacity: 0;
}

.arrow-container {
  will-change: transform, opacity;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(30px);
  opacity: 0;
}

.arrow-container img {
  width: 14rem;
  height: 14rem;
}

.key-fact-image-container {
  width: 100%;
  margin-top: -320px;
  height: 120vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.key-fact-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.key-fact-image-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 20rem;
  align-items: center;
  margin-bottom: 20px;
}

.key-fact-image-text-container button {
  padding: 30px 45px;
  font-size: 1.2rem;
}

.how-we-work-section {
  display: flex;
  padding-block: 9.75rem;
  padding-inline: 30px;
  gap: 12rem;
}

.how-we-work-left {
  max-width: 45%;
  position: sticky;
  top: 2rem;
  left: 0;
  height: fit-content;
}

.how-we-work-left span {
  color: #ccc;
  padding-left: 4px;
}

.how-we-work-left h1 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 0.9;
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.how-we-work-left h3 {
  font-size: 2rem;
  font-weight: 500;
  font-family: 'KH Teka', sans-serif;
}

.how-we-work-section .button-container {
  margin-top: 16.5rem;
  margin-bottom: 2rem;
}

.how-we-work-section .sliding-card {
  position: relative;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 2.25rem 2.25rem 1.1875rem;
  height: 20rem;
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translate3d(120px, 0, 0);
  will-change: transform, opacity;
}

.how-we-work-section .sliding-card .plus-container {
  position: absolute;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 10;
}

.how-we-work-section .sliding-card .plus-container img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.how-we-work-section .sliding-card .plus-top-left {
  top: 0;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
}

.how-we-work-section .sliding-card .plus-top-right {
  top: 0;
  right: 0;
  transform: translate3d(50%, -50%, 0);
}

.how-we-work-section .sliding-card .plus-bottom-left {
  bottom: 0;
  left: 0;
  transform: translate3d(-50%, 50%, 0);
}

.how-we-work-section .sliding-card .plus-bottom-right {
  bottom: 0;
  right: 0;
  transform: translate3d(50%, 50%, 0);
}

.how-we-work-section .sliding-card:last-child {
  border-bottom: 1px solid #ccc;
}

.sliding-card-heading {
  display: flex;
}

.sliding-card-heading .heading-stap-flag {
  color: #ccc;
  width: 20%;
}

.sliding-card-heading p {
  flex-grow: 1;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.sliding-card-heading .heading-stap-number {
  font-family: 'Space Mono', monospace;
  color: #ccc;
}

.how-we-work-section .sliding-card h2 {
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .header-navigation-links ul {
    gap: 40px;
  }

  .hero-info-left {
    width: 65%;
  }

  .hero-info-right {
    width: 30%;
    padding-right: 30px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 40px;
  }

  header {
    padding: 20px 24px;
  }

  .header-navigation-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .header-cta {
    display: none !important;
  }

  .hero-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-inline: 24px;
    margin-top: auto;
  }

  .hero-info-left,
  .hero-info-right {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-info-right-button-container {
    margin-top: 32px;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 16px 20px;
  }

  .logo-container {
    font-size: 18px;
  }

  .header-cta a {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-info {
    padding-inline: 20px;
    gap: 2rem;
  }

  .hero-info-left h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
    line-height: 0.9;
  }

  .hero-info-right p {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .carousel {
    padding: 20px 0;
  }

  .carousel>div>div {
    padding: 0 30px;
  }

  .carousel img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .carousel {
    padding: 16px 0;
  }

  .carousel>div>div {
    padding: 0 20px;
  }

  .carousel img {
    height: 26px;
  }
}

@media (max-width: 1024px) {
  .about-section .heading {
    margin-top: 140px;
    padding-inline: 30px;
  }

  .about-section .about-section-parallax-image {
    width: 8vw;
  }

  .about-section .main-container {
    margin-top: 70px;
    width: calc(100% - 60px);
  }
}

@media (max-width: 768px) {
  .about-section .heading {
    margin-top: 80px;
    padding-inline: 20px;
  }

  .about-section .about-section-parallax-image {
    display: none;
  }

  .about-section .main-container {
    margin-top: 50px;
    width: calc(100% - 40px);
  }

  .about-section .info h3 {
    font-size: 1.6rem;
    padding-inline: 16px;
  }

  .about-section .info p {
    padding-inline: 16px;
  }

  .about-section .info button {
    margin-left: 16px;
    margin-bottom: 60px;
  }

  .about-section .info h1 {
    margin-inline: 0;
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .about-section .heading {
    margin-top: 60px;
  }

  .about-section .info span {
    padding-inline: 16px;
    font-size: 0.85rem;
  }

  .about-section .info h3 {
    font-size: 1.35rem;
  }

  .about-section .info button {
    padding: 14px 22px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .mission-section {
    padding-top: 140px;
    padding-inline: 24px;
    padding-bottom: 80px;
  }

  .mission-section h1,
  .mission-word {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .mission-section h1 span.mission-label {
    display: block;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .mission-section {
    padding-top: 80px;
    padding-inline: 20px;
    padding-bottom: 60px;
  }

  .mission-section h1,
  .mission-word {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
  }
}

@media (max-width: 850px) {
  .expertise-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-inline: 20px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .expertise-section .overlay {
    display: none;
  }

  .expertise-card {
    min-height: 420px;
    border: 1px solid #ccc !important;
    border-top: none !important;
  }

  .expertise-card .plus-container {
    display: flex;
  }

  .expertise-card-1 {
    border-top: 1px solid #ccc !important;
  }
}

@media (max-width: 480px) {
  .expertise-section {
    padding-inline: 16px;
  }

  .expertise-card {
    padding: 24px;
    min-height: 380px;
  }

  .expertise-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 900px) {
  .key-fact-image-container {
    margin-top: 0;
    height: 70vh;
  }

  .key-fact-image-text-container {
    gap: 3rem;
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 24px;
    bottom: 40px;
  }

  .key-fact-image-text-container h1 {
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    line-height: 1.05;
  }
}

@media (max-width: 768px) {
  .key-fact-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 20px;
    padding-block: 60px;
    gap: 1.5rem;
  }


  .key-fact-container>h1:last-of-type {
    order: 1;
    font-size: clamp(5rem, 22vw, 8.5rem);
    line-height: 0.9;
    color: #ffffff;
  }


  .key-fact-container .arrow-container {
    order: 2;
    margin-block: 0.5rem;
  }

  .key-fact-container .arrow-container img {
    width: 4.5rem;
    height: 4.5rem;
    transform: rotate(90deg);
  }


  .key-fact-container>h1:first-of-type {
    order: 3;
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.5px;
    color: #ccc;
  }

  .key-fact-image-container {
    margin-top: 0;
    height: 65vh;
  }
}

@media (max-width: 480px) {
  .key-fact-container {
    padding-inline: 16px;
    padding-block: 45px;
    gap: 1.25rem;
  }

  .key-fact-container>h1:last-of-type {
    font-size: clamp(4.2rem, 24vw, 6.5rem);
  }

  .key-fact-container .arrow-container img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .key-fact-container>h1:first-of-type {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .key-fact-image-container {
    margin-top: 0;
    height: 55vh;
  }

  .key-fact-image-text-container {
    padding-inline: 20px;
    bottom: 24px;
    gap: 2rem;
  }

  .key-fact-image-text-container h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .key-fact-image-text-container button {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .how-we-work-section {
    flex-direction: column;
    padding-inline: 24px;
    padding-top: 4rem;
    gap: 3rem;
  }

  .how-we-work-left {
    position: relative;
    top: 0 !important;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
  }

  .how-we-work-left h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.0;
    margin-top: 1rem;
  }

  .how-we-work-left h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.45;
  }

  .how-we-work-section .button-container {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  .how-we-work-section .sliding-card {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 16rem;
  }
}

@media (max-width: 480px) {
  .how-we-work-section {
    padding-inline: 16px;
    padding-top: 3rem;
    gap: 2.5rem;
  }

  .how-we-work-left h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .how-we-work-left h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .how-we-work-section .button-container {
    margin-top: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .how-we-work-section .sliding-card {
    padding: 1.5rem 1.25rem;
    min-height: 15rem;
  }
}

.site-footer {
  background-color: #cccccc;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 5rem 4rem 3rem;
}

.footer-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-contact-tag {
  color: #ff350d;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-coords {
  color: #666666;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-headline {
  margin-bottom: 3.5rem;
}

.footer-headline h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 7.8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-sweep-word {
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 33.33%, #ff350d 33.33%, #ff350d 66.66%, #ffffff 66.66%, #ffffff 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-action-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 4.8vw, 2.8rem);
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  max-width: 100%;
  flex-wrap: wrap;
}

.footer-email:hover {
  color: #ff350d;
}

.footer-email .email-arrow {
  color: #ff350d;
  transition: transform 0.3s ease;
}

.footer-email:hover .email-arrow {
  transform: translate(4px, -4px);
}

.footer-content-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-nav-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: #aaa;
  min-width: 28px;
}

.footer-nav-list a {
  color: #ffffff;
  font-family: 'KH Teka', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
  opacity: 0.8;
}

.footer-specs-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.specs-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.specs-value {
  color: #ffffff;
  font-family: 'KH Teka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.social-links a {
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff350d;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal {
  display: flex;
  align-items: center;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #333333;
}

.footer-legal .sep {
  margin: 0 0.6rem;
  color: #666666;
}

.top-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.top-btn:hover {
  color: #333333;
}

@media (max-width: 992px) {
  .site-footer {
    padding: 4rem 2rem 2.5rem;
  }

  .footer-content-matrix {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 550px) {
  .site-footer {
    padding: 3rem 1.25rem 2rem;
  }

  .footer-top-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-headline h2 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    letter-spacing: -1px;
  }

  .footer-email {
    font-size: clamp(1rem, 5.5vw, 1.6rem);
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   SHARED MULTI-PAGE BASE STYLES
   ========================================================================== */

.header-navigation-links a.active {
  color: #ff350d !important;
}

.page-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.page-hero .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #ff350d;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-header-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

/* ==========================================================================
   PAGE NAVIGATION TRANSITION OVERLAY SYSTEM (6-COLUMN SEQUENTIAL FLIP)
   ========================================================================== */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 200000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  contain: layout paint style;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.page-transition-overlay.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.transition-cols-container {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  contain: layout paint;
  transform: translateZ(0);
  will-change: transform;
}

.transition-col {
  background: #09090b;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scaleY(1) translateZ(0);
  transform-origin: top center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  contain: strict;
}

.transition-col:last-child {
  border-right: none;
}

.transition-col .col-accent {
  display: none;
}

.transition-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(35px) scale(0.94) translateZ(0);
  padding-inline: 20px;
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint style;
}

.transition-mono {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #ff350d;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.transition-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   OVER ONS PAGE BESPOKE SECTION STYLES (LIGHT ARCHITECTURAL THEME)
   ========================================================================== */
.about-hero {
  padding-bottom: 60px;
  background: #f4f4f7 !important;
}

.about-hero h1 .hero-line-inner {
  color: #09090b !important;
}

.about-hero .hero-info-right p {
  color: #3f3f46 !important;
}

.about-quick-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.quick-nav-pill {
  padding: 8px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: #52525b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-nav-pill span {
  color: #ff350d;
  font-weight: 700;
}

.quick-nav-pill:hover,
.quick-nav-pill.active {
  background: #ff350d;
  color: #ffffff;
  border-color: #ff350d;
  box-shadow: 0 4px 15px rgba(255, 53, 13, 0.3);
}

.quick-nav-pill.active span,
.quick-nav-pill:hover span {
  color: #ffffff;
}

/* Mission Section */
.about-mission-section {
  padding: 100px 5vw;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-mission-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: #09090b;
  margin-top: 16px;
}

.about-mission-right .lead-p {
  font-size: 1.2rem;
  color: #18181b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-mission-right p {
  color: #52525b;
  line-height: 1.7;
}

/* Showreel Terminal Section */
.showreel-section {
  padding: 80px 5vw 100px;
  background: #f4f4f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.showreel-frame {
  background: #0d0d12;
  border: 1px solid rgba(255, 53, 13, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 53, 13, 0.1);
}

.showreel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #16161d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showreel-dots {
  display: flex;
  gap: 8px;
}

.showreel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.showreel-dots .dot.red {
  background: #ff5f56;
}

.showreel-dots .dot.yellow {
  background: #ffbd2e;
}

.showreel-dots .dot.green {
  background: #27c93f;
}

.showreel-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: #a1a1aa;
  letter-spacing: 0.05em;
}

.showreel-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: #27c93f;
  background: rgba(39, 201, 63, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(39, 201, 63, 0.2);
  font-weight: 700;
}

.showreel-body {
  position: relative;
  padding: 40px;
  background: radial-gradient(circle at 50% 50%, #15151b 0%, #0c0c0f 100%);
}

.terminal-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.showreel-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}

.showreel-code-block {
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #e4e4e7;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.showreel-code-block .code-line {
  display: block;
}

.showreel-code-block .code-line.indent {
  padding-left: 20px;
}

.showreel-code-block .code-line.indent2 {
  padding-left: 40px;
}

.code-keyword {
  color: #ff350d;
  font-weight: 700;
}

.code-str {
  color: #a5d6ff;
}

.code-comment {
  color: #71717a;
  font-style: italic;
}

.code-func {
  color: #79c0ff;
}

.code-var {
  color: #d2a8ff;
}

.code-bool {
  color: #ff7b72;
}

.code-num {
  color: #79c0ff;
}

.code-return {
  color: #ff350d;
}

.showreel-play-box {
  text-align: center;
  position: relative;
}

.showreel-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff350d;
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 53, 13, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.showreel-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(255, 53, 13, 0.9);
}

.play-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(255, 53, 13, 0.5);
  animation: pulseRing 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -60%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -60%) scale(1.5);
    opacity: 0;
  }
}

.showreel-play-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-top: 16px;
  font-weight: 700;
}

.showreel-footer {
  display: flex;
  justify-content: space-around;
  padding: 16px 24px;
  background: #141418;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.showreel-stat {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: #71717a;
}

.showreel-stat strong {
  color: #ffffff;
  margin-left: 6px;
}

/* Dual Matrix Section */
.about-matrix-section {
  padding: 100px 5vw;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-matrix-section .section-header-block h2 {
  color: #09090b;
}

.matrix-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.matrix-tab-btn {
  padding: 10px 20px;
  background: #f4f4f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: #52525b;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.matrix-tab-btn.active,
.matrix-tab-btn:hover {
  background: #09090b;
  color: #ffffff;
  border-color: #09090b;
  box-shadow: 0 4px 15px rgba(9, 9, 11, 0.2);
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.matrix-card {
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card {
  background: #f8f8fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.problem-card .matrix-card-header h3 {
  color: #09090b;
}

.problem-card .matrix-card-header p {
  color: #52525b;
}

.problem-card .matrix-list strong {
  color: #09090b;
}

.problem-card .matrix-list p {
  color: #71717a;
}

.solution-card {
  border: 1px solid rgba(255, 53, 13, 0.4);
  background: linear-gradient(145deg, #0d0d12 0%, #171114 100%);
  box-shadow: 0 10px 40px rgba(255, 53, 13, 0.12);
}

.solution-card .matrix-card-header h3 {
  color: #ffffff;
}

.solution-card .matrix-card-header p {
  color: #a1a1aa;
}

.solution-card .matrix-list strong {
  color: #ffffff;
}

.solution-card .matrix-list p {
  color: #a1a1aa;
}

.matrix-card:hover {
  transform: translateY(-4px);
}

.matrix-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.matrix-badge.red {
  color: #ef4444;
}

.matrix-badge.orange {
  color: #ff350d;
}

.matrix-card-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.matrix-card-header p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.matrix-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matrix-list li {
  display: flex;
  gap: 16px;
  align-items: start;
}

.matrix-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.matrix-icon.cross {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.matrix-icon.check {
  background: rgba(255, 53, 13, 0.15);
  color: #ff350d;
  border: 1px solid rgba(255, 53, 13, 0.4);
}

.matrix-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.matrix-list p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Architects Section */
.about-architects-section {
  padding: 100px 5vw;
  background: #f4f4f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-architects-section .section-header-block h2 {
  color: #09090b;
}

.about-architects-section .section-intro {
  color: #52525b;
}

.architects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.architect-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.architect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 53, 13, 0.4);
}

.architect-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.architect-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.architect-card:hover .architect-image-wrap img {
  transform: scale(1.05);
}

.architect-role-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #ff350d;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 53, 13, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.architect-info {
  padding: 24px;
}

.architect-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #09090b;
  margin: 0 0 4px 0;
}

.architect-specs {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: #ff350d;
  margin-bottom: 12px;
}

.architect-info p {
  color: #52525b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.architect-dossier-btn {
  width: 100%;
  padding: 12px 18px;
  background: #09090b;
  border: 1px solid #09090b;
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.architect-dossier-btn:hover {
  background: #ff350d;
  border-color: #ff350d;
  box-shadow: 0 4px 20px rgba(255, 53, 13, 0.4);
}

/* Architect Slide-Out Drawer */
.architect-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.architect-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.architect-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(320px, 90vw, 520px);
  height: 100vh;
  z-index: 100001;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.architect-drawer-backdrop.open .architect-drawer {
  transform: translateX(0);
}

.drawer-close-btn {
  background: #f4f4f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #09090b;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.drawer-close-btn:hover {
  color: #ffffff;
  border-color: #ff350d;
  background: #ff350d;
}

/* Metrics Section */
.about-metrics-section {
  padding: 100px 5vw;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.metrics-banner {
  text-align: center;
  margin-bottom: 60px;
}

.metrics-banner h2 {
  color: #09090b;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  background: #f8f8fa;
  border-radius: 16px;
  padding: 36px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.metric-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #09090b;
  letter-spacing: -0.03em;
}

.metric-plus,
.metric-symbol {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ff350d;
}

.metric-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 8px;
}

.metric-card p {
  color: #71717a;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Accordion Section */
.manifesto-section {
  padding: 100px 5vw;
  background: #f4f4f7;
}

.manifesto-section .section-header-block h2 {
  color: #09090b;
}

.manifesto-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.accordion-item.active {
  border-color: #ff350d;
  box-shadow: 0 4px 20px rgba(255, 53, 13, 0.15);
}

.accordion-header {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  color: #09090b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.accordion-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: #ff350d;
  font-weight: 700;
  margin-right: 20px;
}

.accordion-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #09090b;
  flex-grow: 1;
}

.accordion-icon {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  color: #ff350d;
  font-weight: 700;
}

.accordion-body {
  padding: 0 30px 24px 70px;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body p {
  color: #3f3f46;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

  .about-mission-container,
  .showreel-content-wrapper,
  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .architects-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .architects-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    padding-left: 30px;
  }
}