@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --bg: #0a0d0b;
  --surface: #101511;
  --surface2: #171d18;
  --text: #fffdf8;
  --muted: #c3c8c0;
  --gold: #d6aa31;
  --gold2: #f4d573;
  --line: rgba(210, 167, 53, 0.21);
  --soft: rgba(255, 255, 255, 0.12);
  --mx: -200px;
  --my: -200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Alexandria", Tahoma, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
.brand b,
.phase-number,
.flip-word {
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
}
button {
  color: inherit;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  color: #080906;
  background: var(--gold2);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 149;
  pointer-events: none;
  left: var(--mx);
  top: var(--my);
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.23;
  background: radial-gradient(
    circle,
    rgba(241, 209, 108, 0.17),
    rgba(205, 161, 44, 0.04) 38%,
    transparent 70%
  );
}
.cursor-glow:after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  opacity: 0.38;
  background-image: radial-gradient(circle, #f1d16c 0 1px, transparent 1.5px);
  background-size: 19px 19px;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #050706;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-curtain.active {
  transform: scaleY(1);
  transform-origin: top;
}
.page-curtain img {
  width: 90px;
  filter: drop-shadow(0 0 30px rgba(205, 161, 44, 0.45));
}
.page-curtain span {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 25px var(--gold);
}
.topbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 94px;
  padding: 0 clamp(20px, 4.8vw, 76px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 5, 0.94),
    rgba(4, 6, 5, 0.55) 76%,
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  background: transparent;
  cursor: pointer;
  text-align: start;
}
.brand img {
  width: 47px;
  height: 58px;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand b {
  color: #f5f1e8;
  font-size: 16px;
}
.brand small {
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
}
nav button {
  position: relative;
  padding: 10px 0;
  background: transparent;
  color: #c7c9c2;
  font-size: 12px;
  cursor: pointer;
}
nav button:after {
  content: "";
  position: absolute;
  bottom: 2px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
nav button:hover:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lang-button {
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.27);
  color: #f6f1e8;
  font-size: 11px;
  cursor: pointer;
}
.nav-cta,
.primary-button {
  color: #111307;
  background: linear-gradient(135deg, var(--gold2), var(--gold) 60%, #aa7d1a);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 45px rgba(164, 119, 16, 0.15);
  transition: 0.3s;
}
.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 3px;
  font-size: 11px;
}
.primary-button {
  min-height: 56px;
  min-width: 190px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 3px;
}
.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.07);
  box-shadow: 0 18px 55px rgba(205, 161, 44, 0.25);
}
.menu-toggle {
  display: none;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: #fff;
  transition: 0.25s;
}
.menu-toggle span:first-child {
  top: 16px;
}
.menu-toggle span:last-child {
  top: 23px;
}
.menu-toggle.open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}
.menu-toggle.open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}
.mobile-menu {
  display: none;
}
.flash {
  position: fixed;
  z-index: 180;
  top: 110px;
  inset-inline: 50%;
  transform: translateX(50%);
  width: min(620px, calc(100% - 30px));
  padding: 16px 48px 16px 18px;
  border: 1px solid;
  font-size: 12px;
  line-height: 1.7;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
[dir="ltr"] .flash {
  transform: translateX(-50%);
}
.flash.success {
  color: #c5efcb;
  background: #0c2715;
  border-color: #3b834d;
}
.flash.error {
  color: #ffd0c9;
  background: #30100c;
  border-color: #99473c;
}
.flash button {
  position: absolute;
  inset-inline-end: 13px;
  top: 10px;
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 125px clamp(24px, 8vw, 138px) 145px;
  color: #f5f1e8;
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 4, 0.99) 3%,
      rgba(3, 5, 4, 0.89) 39%,
      rgba(3, 5, 4, 0.34) 69%,
      rgba(3, 5, 4, 0.05)
    ),
    linear-gradient(0deg, rgba(3, 5, 4, 0.5), transparent),
    var(--hero-image) center/cover no-repeat,
    #050706;
}
[dir="ltr"] .hero {
  background:
    linear-gradient(
      270deg,
      rgba(3, 5, 4, 0.99) 3%,
      rgba(3, 5, 4, 0.89) 39%,
      rgba(3, 5, 4, 0.34) 69%,
      rgba(3, 5, 4, 0.05)
    ),
    linear-gradient(0deg, rgba(3, 5, 4, 0.5), transparent),
    var(--hero-image) center/cover no-repeat,
    #050706;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, var(--bg), transparent 23%);
}
.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(210, 167, 53, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 167, 53, 0.15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to left, #000, transparent 84%);
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding-top: 18px;
}
[dir="rtl"] .hero-copy {
  margin-inline-start: auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 27px;
  color: var(--gold2);
  font-size: 12px;
}
.eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}
.eyebrow b {
  font-weight: 400;
}
.hero h1 {
  margin: 0;
  font-size: clamp(55px, 6.6vw, 100px);
  line-height: 1.24;
  letter-spacing: -0.055em;
  max-width: 790px;
  font-weight: 800;
}
.hero-title-line {
  display: block;
  white-space: normal;
  perspective: 700px;
}
.hero-title-language {
  display: block;
}
.hero-title-line + .hero-title-line {
  margin-top: clamp(16px, 1.7vw, 26px);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero-word {
  display: inline-block;
  white-space: nowrap;
  transform-origin: 50% 75%;
  text-shadow:
    0 0 18px rgba(218, 174, 58, 0.2),
    0 0 42px rgba(218, 174, 58, 0.1);
  will-change: transform, opacity, filter;
}
.motion-title {
  overflow: visible;
  text-wrap: balance;
}
.motion-word {
  display: inline-block;
  white-space: nowrap;
  transform-origin: 50% 70%;
  text-shadow: 0 0 18px rgba(218, 174, 58, 0.14);
  will-change: transform, opacity, filter;
}
.about-copy h2,
.services-section .section-head h2,
.sectors-section .section-head h2,
.command-copy h2,
.gallery-section .section-head h2,
.partners-section .section-head h2,
.faq-section .section-head h2,
.form-intro h2,
.career-visual h2,
.footer-brand h2 {
  transform-origin: 50% 70%;
  text-shadow: 0 0 24px rgba(218, 174, 58, 0.1);
  will-change: transform, opacity, filter;
}
html[lang="ar"] .hero-title-en,
html[lang="en"] .hero-title-ar {
  display: none;
}
.hero-description {
  max-width: 650px;
  margin: 25px 0 0;
  color: #b4b7b0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 2;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 27px;
  margin-top: 34px;
}
.text-button {
  min-height: 52px;
  padding: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #f3eee4;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.license {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: #8f938b;
  font-size: 11px;
}
.license span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--gold2);
  border: 1px solid rgba(205, 161, 44, 0.3);
  border-radius: 50%;
}
.license b {
  font-weight: 400;
}
.radar {
  position: absolute;
  z-index: 1;
  inset-inline-end: 7vw;
  top: 21%;
  width: min(35vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(209, 165, 48, 0.13);
  border-radius: 50%;
  opacity: 0.63;
  pointer-events: none;
}
.radar:before,
.radar:after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(209, 165, 48, 0.14);
  border-radius: 50%;
}
.radar:after {
  inset: 34%;
}
.radar span {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: rgba(209, 165, 48, 0.18);
}
.radar i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0 82%,
    rgba(209, 165, 48, 0.18) 94%,
    transparent
  );
  animation: scan 7s linear infinite;
}
@keyframes scan {
  to {
    transform: rotate(360deg);
  }
}
.hero-stats {
  position: absolute;
  z-index: 4;
  bottom: 46px;
  inset-inline-start: clamp(24px, 8vw, 138px);
  display: flex;
}
.hero-stats div {
  min-width: 160px;
  padding-inline: 30px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stats div:first-child {
  padding-inline-start: 0;
  border: 0;
}
.hero-stats strong {
  color: var(--gold2);
  font-size: 24px;
}
.hero-stats span {
  color: #888c84;
  font-size: 10px;
}
.signal-strip {
  display: flex;
  overflow: hidden;
  min-height: 46px;
  align-items: center;
  color: #080906;
  background: linear-gradient(90deg, #ad811e, var(--gold2), #b68a20);
  border-block: 1px solid rgba(255, 238, 176, 0.45);
}
.signal-strip > div {
  flex: none;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-inline: 15px;
  min-width: max-content;
  animation: ticker 22s linear infinite;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.signal-strip i {
  width: 4px;
  height: 4px;
  background: #0d0e09;
  border-radius: 50%;
}
@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}
.section {
  padding: clamp(88px, 9vw, 140px) clamp(22px, 8vw, 138px);
}
.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-head {
  max-width: 740px;
}
.section-head h2,
.about-copy h2,
.form-intro h2,
.career-visual h2 {
  margin: 18px 0;
  font-size: clamp(36px, 4.7vw, 66px);
  line-height: 1.32;
  letter-spacing: -0.04em;
}
.section-head > p:last-child,
.lead,
.form-intro p:last-child,
.career-visual p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.about-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  background: linear-gradient(180deg, var(--bg), var(--surface));
}
.about-visual {
  position: relative;
  min-height: 650px;
}
.about-visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.75);
}
.experience-badge {
  position: absolute;
  bottom: -25px;
  inset-inline-start: -25px;
  width: 165px;
  aspect-ratio: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #111307;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
}
.experience-badge strong {
  font-size: 39px;
}
.experience-badge span {
  font-size: 11px;
}
.lead {
  margin: 24px 0 34px;
}
.principles {
  border-top: 1px solid var(--soft);
}
.principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--soft);
}
.principles article > span {
  color: var(--gold);
  font-size: 9px;
}
.principles h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.services-section,
.gallery-section {
  background: var(--surface);
}
.services-section .section-head {
  max-width: 920px;
}
.service-proof-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--soft);
}
.service-proof-grid article {
  min-height: 145px;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  border-inline-end: 1px solid var(--soft);
}
.service-proof-grid article:last-child {
  border: 0;
}
.service-proof-grid span {
  color: var(--gold2);
  font:
    10px/1.5 ui-monospace,
    monospace;
}
.service-proof-grid h3 {
  margin: 0 0 9px;
  color: var(--text);
  font-size: 14px;
}
.service-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}
.service-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  perspective: 900px;
}
.service-card {
  position: relative;
  min-height: 300px;
  padding: 25px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface), var(--surface2));
  transform-style: preserve-3d;
  transition: 0.25s;
}
.service-card:hover {
  border-color: rgba(210, 167, 53, 0.55);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.24);
}
.service-number {
  color: #767a72;
  font-size: 9px;
}
.service-symbol {
  margin-top: 34px;
  color: var(--gold);
  font-size: 31px;
}
.service-card h3 {
  margin: 28px 0 13px;
  font-size: 17px;
  line-height: 1.6;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}
.flip-story {
  position: relative;
  color: #11140e;
  background: #c99a26;
}
.flip-stage {
  position: relative;
  height: 100vh;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  padding: 74px clamp(22px, 5.5vw, 92px) 44px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 229, 143, 0.58),
      transparent 27%
    ),
    linear-gradient(135deg, #d9af40, #b77f12);
}
.flip-stage:after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(20, 24, 17, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 17, 0.34) 1px, transparent 1px);
  background-size: 54px 54px;
}
.flip-head {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #171a13;
}
.flip-head .kicker {
  color: #252919;
}
.flip-head > p:last-child {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
}
.flip-word {
  position: absolute;
  z-index: -1;
  top: 9%;
  inset-inline-start: -5%;
  width: max-content;
  color: rgba(255, 252, 236, 0.38);
  font-size: clamp(90px, 12vw, 210px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
  will-change: transform;
}
.flip-sweep {
  position: absolute;
  z-index: -2;
  inset: 5% -7% -8%;
  width: 114%;
  height: 103%;
  overflow: visible;
  pointer-events: none;
}
.flip-sweep-path {
  fill: none;
  stroke: rgba(255, 252, 236, 0.9);
  stroke-width: 48;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 18px 30px rgba(52, 37, 4, 0.12));
}
.flip-deck {
  position: absolute;
  z-index: 4;
  inset-inline: clamp(22px, 5.5vw, 92px);
  bottom: 7.5%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(13px, 2vw, 30px);
  align-items: end;
  perspective: 1500px;
}
.flip-card {
  position: relative;
  height: min(57vh, 540px);
  min-height: 440px;
  transform-style: preserve-3d;
  will-change: transform;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  backface-visibility: hidden;
  box-shadow: 0 32px 70px rgba(73, 49, 0, 0.2);
}
.flip-front {
  color: #fffdf6;
  background: #121712;
}
.flip-front > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88) contrast(1.02);
}
.flip-card-4 .flip-front > img {
  object-position: 73% center;
}
.flip-front-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 8, 0.12),
    rgba(7, 10, 8, 0.24) 35%,
    rgba(7, 10, 8, 0.94)
  );
}
.flip-card-top {
  position: absolute;
  z-index: 2;
  top: 21px;
  inset-inline: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.13em;
}
.flip-card-top b {
  font-weight: 500;
}
.flip-card-title {
  position: absolute;
  z-index: 2;
  bottom: 58px;
  inset-inline: 23px;
}
.flip-card-title strong {
  display: block;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(19px, 1.7vw, 29px);
  line-height: 1.35;
}
.flip-card-title p {
  margin: 10px 0 0;
  color: #d8ddd5;
  font-size: 11px;
  line-height: 1.75;
}
.flip-hint {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  inset-inline: 23px;
  display: flex;
  justify-content: space-between;
  color: #d9b750;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.flip-hint i {
  font-style: normal;
  font-size: 17px;
}
.flip-back {
  padding: 24px;
  color: #171a14;
  background: #fff9eb;
  transform: rotateY(180deg);
}
.flip-back .flip-card-top {
  color: #80601b;
}
.flip-back h3 {
  margin: 78px 0 24px;
  font-size: clamp(20px, 1.7vw, 28px);
}
.flip-back ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(22, 25, 19, 0.15);
}
.flip-back li {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(22, 25, 19, 0.13);
  font-size: 11px;
  line-height: 1.55;
}
.flip-back li span {
  color: #a5750f;
  font-weight: 800;
}
.flip-back-mark {
  position: absolute;
  bottom: 20px;
  inset-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d7a4d;
  font:
    7px/1 ui-monospace,
    monospace;
  letter-spacing: 0.13em;
}
.flip-back-mark img {
  width: 38px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0.45) sepia(1);
}
.flip-foot {
  position: absolute;
  z-index: 7;
  bottom: 28px;
  inset-inline-start: clamp(22px, 5.5vw, 92px);
  width: min(280px, 25vw);
  display: flex;
  align-items: center;
  gap: 11px;
  font:
    8px/1 ui-monospace,
    monospace;
}
.flip-foot i {
  flex: 1;
  height: 1px;
  background: rgba(23, 26, 19, 0.34);
}
.sectors-section {
  position: relative;
  isolation: isolate;
  padding: clamp(100px, 10vw, 155px) clamp(22px, 8vw, 138px);
  overflow: hidden;
  color: #f5f1e8;
  background:
    linear-gradient(90deg, rgba(8, 12, 9, 0.82), rgba(8, 12, 9, 0.38)),
    url("/assets/images/field-05-residential-night.webp") center/cover no-repeat;
}
.sector-list {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sector-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(170px, 0.7fr) 1fr;
  gap: 25px;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s;
}
.sector-list article:hover {
  padding-inline: 20px;
  background: rgba(205, 161, 44, 0.07);
}
.sector-list span {
  color: var(--gold);
  font-size: 9px;
}
.sector-list h3 {
  margin: 0;
  font-size: 20px;
}
.sector-list p {
  margin: 0;
  color: #9da099;
  font-size: 12px;
}
.sector-list i {
  position: absolute;
  inset-inline-end: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.command-section {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f5f1e8;
  background: #050706;
}
.command-section > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.command-section:after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 4, 0.86),
      rgba(3, 5, 4, 0.62) 50%,
      rgba(3, 5, 4, 0.08)
    ),
    linear-gradient(0deg, rgba(3, 5, 4, 0.45), transparent);
}
[dir="ltr"] .command-section:after {
  background:
    linear-gradient(
      270deg,
      rgba(3, 5, 4, 0.86),
      rgba(3, 5, 4, 0.62) 50%,
      rgba(3, 5, 4, 0.08)
    ),
    linear-gradient(0deg, rgba(3, 5, 4, 0.45), transparent);
}
.command-copy {
  max-width: 790px;
  padding: 100px clamp(22px, 8vw, 138px);
}
.command-copy > span {
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 0.2em;
}
.command-copy h2 {
  margin: 22px 0;
  font-size: clamp(40px, 5.2vw, 75px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}
.command-copy p {
  max-width: 620px;
  margin: 0 0 32px;
  color: #aeb1aa;
  font-size: 14px;
  line-height: 2;
}
.gallery-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  height: 310px;
  margin: 0;
  overflow: hidden;
  background: #080a09;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: 0.65s;
}
.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 3, 0.72), transparent 55%);
}
.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  inset-inline: 17px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.gallery-item figcaption span {
  color: var(--gold2);
  font-size: 9px;
}
.gallery-item figcaption b {
  font-size: 10px;
}
.partners-section {
  padding: clamp(90px, 9vw, 135px) 0;
  background: var(--bg);
}
.partners-section .section-head {
  padding-inline: clamp(22px, 8vw, 138px);
}
.partner-marquee {
  display: flex;
  width: max-content;
  margin-top: 50px;
  overflow: hidden;
  border-block: 1px solid var(--soft);
}
.partner-track {
  flex: none;
  display: flex;
  animation: marquee 40s linear infinite;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}
.partner-wordmark,
.partner-logo {
  flex: none;
  min-width: 255px;
  height: 128px;
  padding: 24px 27px;
  border-inline-end: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.partner-wordmark span {
  color: var(--gold);
  font-size: 8px;
}
.partner-wordmark b {
  font-size: 15px;
  white-space: nowrap;
}
.partner-logo {
  align-items: center;
}
.partner-logo img {
  max-width: 130px;
  max-height: 70px;
  object-fit: contain;
}
.partner-logo span {
  font-size: 9px;
  color: var(--muted);
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 130px);
  background: var(--surface);
}
.faq-list {
  border-top: 1px solid var(--soft);
}
.faq-list details {
  border-bottom: 1px solid var(--soft);
}
.faq-list summary {
  min-height: 83px;
  display: grid;
  grid-template-columns: 38px 1fr 30px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold);
  font-size: 9px;
}
.faq-list summary b {
  font-size: 14px;
  line-height: 1.6;
}
.faq-list summary i {
  color: var(--gold);
  font-style: normal;
  font-size: 20px;
  transition: 0.25s;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 0 50px 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}
.form-section,
.careers-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 900px;
}
.form-intro {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  padding: clamp(75px, 8vw, 120px) clamp(28px, 5.5vw, 85px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f5f1e8;
}
.form-intro > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-intro:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 5, 0.93), rgba(4, 6, 5, 0.8));
}
.request-form {
  padding: clamp(75px, 8vw, 120px) clamp(28px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}
.request-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.request-form label span {
  color: var(--muted);
  font-size: 10px;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--soft);
  border-radius: 0;
  outline: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 13px;
}
.request-form input,
.request-form select {
  min-height: 50px;
  padding: 0 14px;
}
.request-form textarea {
  padding: 14px;
  resize: vertical;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(205, 161, 44, 0.62);
  box-shadow: 0 0 0 3px rgba(205, 161, 44, 0.07);
}
.wide-field {
  margin-top: 22px;
}
.submit-button {
  align-self: flex-start;
  min-width: 235px;
  margin-top: 27px;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
}
.client-error {
  padding: 12px 14px;
  margin: 18px 0 0;
  color: #ffd0c9;
  background: rgba(170, 40, 30, 0.13);
  border-inline-start: 2px solid #b75145;
  font-size: 11px;
}
.careers-section {
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
}
.career-visual {
  position: relative;
  isolation: isolate;
  min-height: 920px;
  overflow: hidden;
  color: #fff;
}
.career-visual > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.career-visual:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(3, 5, 4, 0.96),
    rgba(3, 5, 4, 0.05) 75%
  );
}
.career-visual > div {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: clamp(35px, 6vw, 85px);
}
.footer {
  position: relative;
  overflow: hidden;
  padding: 110px clamp(22px, 8vw, 138px) 28px;
  color: #f4f0e7;
  background:
    radial-gradient(
      circle at 70% 50%,
      rgba(205, 161, 44, 0.1),
      transparent 30%
    ),
    #040605;
}
.footer-brand {
  max-width: 800px;
}
.footer-brand > img {
  width: 80px;
  margin-bottom: 30px;
}
.footer-brand h2 {
  margin: 0 0 35px;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.footer-details {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-details > div {
  min-height: 120px;
  padding: 27px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-details > div:first-child {
  padding-inline-start: 0;
  border: 0;
}
.footer-details span {
  color: #787c75;
  font-size: 9px;
}
.footer-details p {
  margin: 0;
}
.footer-links {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #979c94;
  font-size: 9px;
}
.footer-links a {
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold2);
}
.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  color: #686c65;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1120px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 82px;
    inset-inline: 18px;
    padding: 14px;
    border: 1px solid rgba(205, 161, 44, 0.22);
    background: rgba(5, 7, 6, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-menu button {
    min-height: 48px;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: transparent;
    color: #f4f0e7;
  }
  .mobile-menu i {
    color: var(--gold);
    font-style: normal;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-proof-grid article:nth-child(2) {
    border-inline-end: 0;
  }
  .service-proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft);
  }
}
@media (max-width: 900px) {
  .flip-stage {
    height: auto;
    min-height: 0;
    padding: 90px 22px;
  }
  .flip-head {
    align-items: flex-start;
  }
  .flip-head > p:last-child {
    max-width: 240px;
    text-align: end;
    line-height: 1.7;
  }
  .flip-word {
    top: 8%;
    font-size: 92px;
    opacity: 0.8;
  }
  .flip-sweep {
    inset: 2% -20% auto;
    width: 140%;
    height: 520px;
  }
  .flip-deck {
    position: relative;
    inset: auto;
    bottom: auto;
    margin-top: 105px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .flip-card,
  .flip-card-inner {
    height: auto;
    min-height: 0;
    transform: none !important;
  }
  .flip-face {
    position: relative;
    inset: auto;
    backface-visibility: visible;
  }
  .flip-front {
    min-height: 390px;
  }
  .flip-back {
    min-height: 360px;
    margin-top: 12px;
    transform: none;
  }
  .flip-foot {
    display: none;
  }
  .topbar {
    height: 82px;
    padding-inline: 18px;
  }
  .brand img {
    width: 40px;
    height: 49px;
  }
  .brand b {
    font-size: 14px;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 790px;
    padding: 125px 22px 170px;
    background-position: 65% center;
  }
  .hero-stats {
    inset-inline: 22px;
    bottom: 54px;
    width: calc(100% - 44px);
  }
  .hero-stats div {
    flex: 1;
    min-width: 0;
    padding-inline: 15px;
  }
  .radar {
    width: 72vw;
    inset-inline-end: -25vw;
    top: 17%;
    opacity: 0.28;
  }
  .about-section,
  .faq-section,
  .form-section,
  .careers-section {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 510px;
  }
  .about-visual > img {
    height: 500px;
  }
  .form-intro {
    min-height: 600px;
  }
  .career-visual {
    min-height: 700px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }
  .footer-details {
    grid-template-columns: 1fr;
  }
  .footer-details > div {
    min-height: 90px;
    padding: 20px 0;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 620px) {
  .service-proof-grid {
    grid-template-columns: 1fr;
  }
  .service-proof-grid article,
  .service-proof-grid article:nth-child(2) {
    min-height: 120px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--soft);
  }
  .service-proof-grid article:last-child {
    border-bottom: 0;
  }
  .flip-stage {
    padding: 78px 20px;
  }
  .flip-head {
    display: block;
  }
  .flip-head > p:last-child {
    margin-top: 14px;
    max-width: none;
    text-align: start;
  }
  .flip-word {
    top: 11%;
    font-size: 67px;
  }
  .flip-deck {
    margin-top: 95px;
    grid-template-columns: 1fr;
  }
  .flip-front {
    min-height: 410px;
  }
  .flip-back {
    min-height: 345px;
  }
  .hero {
    min-height: 780px;
    padding-inline: 20px;
    background-position: 70% center;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-stats div {
    padding-inline: 10px;
  }
  .hero-stats strong {
    font-size: 19px;
  }
  .hero-stats span {
    font-size: 8px;
    line-height: 1.5;
  }
  .section {
    padding: 82px 20px;
  }
  .section-head h2,
  .about-copy h2,
  .form-intro h2,
  .career-visual h2 {
    font-size: 36px;
  }
  .about-visual {
    min-height: 430px;
  }
  .about-visual > img {
    height: 420px;
  }
  .experience-badge {
    width: 135px;
    inset-inline-start: 0;
    bottom: -15px;
    padding: 20px;
  }
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 260px;
  }
  .gallery-item {
    height: 280px;
  }
  .sector-list article {
    grid-template-columns: 38px 1fr;
    min-height: 90px;
  }
  .sector-list p {
    grid-column: 2;
    margin-top: -24px;
  }
  .sector-list i {
    display: none;
  }
  .command-section {
    min-height: 720px;
  }
  .command-copy {
    padding-inline: 20px;
  }
  .command-copy h2 {
    font-size: 40px;
  }
  .faq-list details p {
    margin-inline: 0;
  }
  .form-intro {
    min-height: 540px;
    padding: 75px 20px;
  }
  .request-form {
    padding: 65px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .submit-button {
    width: 100%;
    align-self: stretch;
  }
  .career-visual {
    min-height: 630px;
  }
  .career-visual > div {
    padding: 35px 20px;
  }
  .footer {
    padding: 82px 20px 25px;
  }
  .footer-brand h2 {
    font-size: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 17px;
  }
  .cursor-glow {
    display: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
  .service-card:hover {
    transform: none !important;
  }
  .partner-marquee:hover .partner-track {
    animation-play-state: running;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .cursor-glow {
    display: none;
  }
  .flip-stage {
    height: auto;
    min-height: 0;
    padding-block: 90px;
  }
  .flip-deck {
    position: relative;
    inset: auto;
    bottom: auto;
    margin-top: 90px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .flip-card,
  .flip-card-inner {
    height: auto;
    min-height: 0;
    transform: none !important;
  }
  .flip-face {
    position: relative;
    backface-visibility: visible;
  }
  .flip-front {
    min-height: 390px;
  }
  .flip-back {
    min-height: 350px;
    margin-top: 12px;
    transform: none;
  }
}

/* Awwwards-grade motion layer — GSAP / ScrollTrigger / Lenis */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.site-shell {
  overflow: clip;
}
.tactical-canvas {
  position: fixed;
  inset: 0;
  z-index: 151;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-hud {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 10px;
  color: rgba(241, 209, 108, 0.68);
  font:
    8px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.13em;
  pointer-events: none;
}
.hero-hud b {
  color: rgba(230, 232, 225, 0.52);
  font-weight: 500;
}
.hero-hud-top {
  top: 126px;
  inset-inline-end: 5vw;
}
.hero-hud-side {
  top: 50%;
  inset-inline-end: 2.2vw;
  flex-direction: column;
  transform: rotate(90deg) translateX(50%);
  transform-origin: 100% 0;
}
.service-card {
  min-height: 438px;
  overflow: hidden;
}
.service-card-media {
  position: relative;
  height: 156px;
  margin: -25px -25px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02) brightness(0.96);
  transform: scale(1.02);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.45s;
}
.service-card:hover .service-card-media img {
  transform: scale(1.09);
  filter: saturate(1) contrast(1.03) brightness(1.04);
}
.service-symbol {
  position: absolute;
  z-index: 3;
  top: 129px;
  inset-inline-end: 22px;
  width: 52px;
  height: 52px;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 25px;
}
.service-card h3 {
  margin-top: 18px;
}
.story-scroll {
  position: relative;
  color: #f3f0e8;
  background: #060807;
}
.story-sticky {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  padding: 100px clamp(22px, 7vw, 118px) 55px;
  background:
    radial-gradient(circle at 75% 48%, rgba(42, 98, 71, 0.14), transparent 31%),
    linear-gradient(135deg, #060807, #0a0d0b);
}
.story-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(205, 161, 44, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 161, 44, 0.075) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 95%);
}
.story-grid:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 74% 54%,
    transparent 0 10%,
    rgba(205, 161, 44, 0.08) 10.2% 10.5%,
    transparent 10.7% 20%,
    rgba(205, 161, 44, 0.07) 20.2% 20.45%,
    transparent 20.7%
  );
}
.story-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.story-header > span {
  color: #777d75;
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}
.story-index {
  position: absolute;
  z-index: 7;
  inset-inline-start: clamp(22px, 7vw, 118px);
  bottom: 38px;
  width: min(360px, 32vw);
  display: flex;
  gap: 6px;
}
.story-index i {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  transform-origin: right;
}
.story-index i:first-child {
  background: var(--gold);
  box-shadow: 0 0 13px rgba(205, 161, 44, 0.5);
}
.story-index i:not(:first-child) {
  background:
    linear-gradient(90deg, var(--gold), var(--gold)) no-repeat,
    rgba(255, 255, 255, 0.14);
  transform: scaleX(0.08);
}
.story-phases {
  position: relative;
  height: calc(100% - 45px);
}
.story-phase {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(50px, 8vw, 135px);
  align-items: center;
}
.phase-copy {
  max-width: 640px;
}
.hud-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
  font:
    8px/1.4 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.hud-row span {
  color: var(--gold2);
}
.hud-row b {
  padding: 7px 9px;
  color: #a5ffbe;
  border: 1px solid rgba(111, 246, 151, 0.2);
  background: rgba(45, 128, 69, 0.08);
  font-weight: 500;
}
.phase-number {
  display: block;
  margin-bottom: 8px;
  color: rgba(205, 161, 44, 0.35);
  font:
    clamp(48px, 6vw, 90px) / 1 ui-monospace,
    monospace;
}
.phase-copy h2 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(39px, 5vw, 72px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}
.phase-copy > p {
  max-width: 650px;
  margin: 0;
  color: #a4aaa2;
  font-size: 14px;
  line-height: 2;
}
.phase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.phase-chips span {
  padding: 10px 13px;
  color: #b8bdb5;
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 9px;
}
.phase-visual {
  position: relative;
  min-height: 500px;
}
.command-console,
.route-map,
.hierarchy-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 161, 44, 0.2);
  background: rgba(5, 10, 7, 0.82);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.35);
}
.command-console:before,
.route-map:before,
.hierarchy-stack:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(137, 255, 172, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 255, 172, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.console-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(117, 255, 157, 0.19);
  border-radius: 50%;
}
.console-radar:before,
.console-radar:after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(117, 255, 157, 0.17);
  border-radius: 50%;
}
.console-radar:after {
  inset: 36%;
}
.console-radar span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0 76%,
    rgba(116, 255, 157, 0.19),
    transparent
  );
  animation: scan 5s linear infinite;
}
.console-radar i {
  position: absolute;
  width: 7px;
  height: 7px;
  left: 65%;
  top: 31%;
  border-radius: 50%;
  background: #8affaa;
  box-shadow: 0 0 18px #8affaa;
}
.console-metrics {
  position: absolute;
  top: 22px;
  inset-inline: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.console-metrics > div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.console-metrics strong {
  display: block;
  color: #d9ffdf;
  font:
    23px/1 ui-monospace,
    monospace;
}
.console-metrics span {
  display: block;
  margin-top: 7px;
  color: #67756b;
  font:
    7px/1 ui-monospace,
    monospace;
}
.console-log {
  position: absolute;
  bottom: 18px;
  inset-inline: 22px;
  display: grid;
  gap: 6px;
  color: #718178;
  font:
    7px/1.2 ui-monospace,
    monospace;
}
.route-map {
  padding: 24px;
}
.route-map svg {
  width: 100%;
  height: 100%;
}
.map-grid-line {
  fill: none;
  stroke: rgba(198, 215, 201, 0.08);
  stroke-width: 1;
}
.route-path {
  fill: none;
  stroke: #d7aa32;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 8px rgba(215, 170, 50, 0.6));
}
.route-points circle {
  fill: #0b100d;
  stroke: #e9c45e;
  stroke-width: 3;
}
.patrol-unit {
  position: absolute;
  top: 22%;
  inset-inline-end: 13%;
  width: 78px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #111409;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 0 40px rgba(205, 161, 44, 0.24);
}
.patrol-unit img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0.18);
}
.patrol-unit span {
  font:
    9px/1 ui-monospace,
    monospace;
}
.map-status {
  position: absolute;
  bottom: 18px;
  inset-inline: 22px;
  color: #a9ffbd;
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.hierarchy-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}
.hierarchy-card {
  position: absolute;
  width: min(390px, 75%);
  min-height: 128px;
  padding: 23px;
  border: 1px solid rgba(205, 161, 44, 0.26);
  background: linear-gradient(
    135deg,
    rgba(24, 30, 25, 0.98),
    rgba(8, 11, 9, 0.98)
  );
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.38);
}
.hierarchy-card span {
  color: var(--gold);
  font:
    8px/1 ui-monospace,
    monospace;
}
.hierarchy-card strong {
  display: block;
  margin-top: 20px;
  font-size: 20px;
}
.hierarchy-card i {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  color: #687068;
  font:
    8px/1 ui-monospace,
    monospace;
  font-style: normal;
}
.hierarchy-card.card-1 {
  transform: translateY(-135px) rotate(-2deg);
}
.hierarchy-card.card-2 {
  transform: translateY(5px) rotate(1.5deg);
}
.hierarchy-card.card-3 {
  transform: translateY(145px) rotate(-1deg);
}
.readiness-ring {
  position: absolute;
  z-index: 4;
  inset-inline-end: 5%;
  top: 8%;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(127, 255, 161, 0.35);
  border-radius: 50%;
  background: rgba(4, 10, 6, 0.86);
  box-shadow: 0 0 35px rgba(95, 255, 136, 0.1);
}
.readiness-ring:before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 4px solid transparent;
  border-top-color: #8effaa;
  border-right-color: #8effaa;
  border-radius: 50%;
  transform: rotate(35deg);
}
.readiness-ring span {
  color: #d9ffe1;
  font:
    18px/1 ui-monospace,
    monospace;
}
.readiness-ring small {
  margin-top: 4px;
  color: #70a27c;
  font:
    7px/1 ui-monospace,
    monospace;
}
.dual-marquee {
  margin-top: 50px;
  overflow: hidden;
  border-block: 1px solid var(--soft);
  direction: ltr;
}
.marquee-lane {
  width: 100%;
  overflow: hidden;
  direction: ltr;
}
.marquee-lane + .marquee-lane {
  border-top: 1px solid var(--soft);
}
.marquee-runner {
  display: flex;
  width: max-content;
  direction: ltr;
  will-change: transform;
}
.partner-track {
  flex: none;
  display: flex;
  direction: ltr;
  animation: none;
}
html[dir="rtl"] .partner-wordmark,
html[dir="rtl"] .partner-logo {
  direction: rtl;
  text-align: right;
}
html[dir="ltr"] .partner-wordmark,
html[dir="ltr"] .partner-logo {
  direction: ltr;
  text-align: left;
}
.partner-track.alternate .partner-wordmark,
.partner-track.alternate .partner-logo {
  background: linear-gradient(135deg, rgba(46, 89, 65, 0.07), transparent);
}
@media (max-width: 1120px) {
  .story-phase {
    grid-template-columns: minmax(290px, 0.85fr) minmax(420px, 1.15fr);
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .hero-hud-side {
    display: none;
  }
  .story-sticky {
    height: auto;
    min-height: 0;
    padding: 95px 22px;
    overflow: visible;
  }
  .story-header {
    margin-bottom: 35px;
  }
  .story-header > span,
  .story-index {
    display: none;
  }
  .story-phases {
    height: auto;
    display: grid;
    gap: 28px;
  }
  .story-phase {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: auto;
    padding: 34px 0 55px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .phase-visual {
    min-height: 460px;
  }
  .phase-number {
    font-size: 55px;
  }
}
@media (max-width: 620px) {
  .service-card {
    min-height: 425px;
  }
  .story-sticky {
    padding: 80px 20px;
  }
  .phase-copy h2 {
    font-size: 38px;
  }
  .phase-copy > p {
    font-size: 12px;
  }
  .phase-visual {
    min-height: 390px;
  }
  .console-metrics {
    grid-template-columns: 1fr;
    width: 130px;
  }
  .console-metrics > div {
    padding: 10px;
  }
  .console-metrics strong {
    font-size: 18px;
  }
  .console-radar {
    width: 210px;
    left: 63%;
  }
  .console-log {
    font-size: 6px;
  }
  .route-map {
    padding: 8px;
  }
  .patrol-unit {
    width: 60px;
    height: 58px;
  }
  .patrol-unit img {
    width: 26px;
    height: 26px;
  }
  .hierarchy-card {
    width: 82%;
    min-height: 105px;
    padding: 18px;
  }
  .hierarchy-card strong {
    margin-top: 14px;
    font-size: 16px;
  }
  .hierarchy-card.card-1 {
    transform: translateY(-110px) rotate(-2deg);
  }
  .hierarchy-card.card-3 {
    transform: translateY(110px) rotate(-1deg);
  }
  .tactical-canvas {
    display: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .tactical-canvas {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tactical-canvas {
    display: none;
  }
}

/* Unified Alexandria system: bold editorial headings and calm body copy. */
body *,
button,
input,
select,
textarea {
  font-family: "Alexandria", sans-serif;
}
h1,
h2,
h3,
.brand b,
.flip-card-title strong,
.phase-number,
.flip-word,
.footer-brand h2 {
  font-weight: 800;
}
p,
li,
label,
input,
select,
textarea,
.hero-description,
.lead {
  font-weight: 400;
}
