:root {
  --ink: #061016;
  --ink-2: #0c1f29;
  --ink-3: #14323e;
  --paper: #f5f2e9;
  --paper-2: #fffdf7;
  --white: #ffffff;
  --gold: #d7a453;
  --gold-2: #f2c66f;
  --teal: #42c8b9;
  --coral: #df7457;
  --steel: #7f9299;
  --line-dark: rgba(6, 16, 22, 0.13);
  --line-light: rgba(255, 253, 247, 0.16);
  --shadow-soft: 0 16px 44px rgba(6, 16, 22, 0.08);
  --shadow-lift: 0 28px 80px rgba(6, 16, 22, 0.16);
  --shadow-dark: 0 30px 100px rgba(0, 0, 0, 0.34);
  --shell: min(1220px, calc(100vw - 56px));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background:
    linear-gradient(90deg, rgba(6, 16, 22, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf7 0%, #f5f2e9 48%, #fbf8ef 100%);
  background-size: 156px 100%, 100% 100%;
  color: var(--ink);
  font-family:
    Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  letter-spacing: 0;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background:
    linear-gradient(120deg, transparent 0 37%, rgba(66, 200, 185, 0.07) 37% 38%, transparent 38%),
    linear-gradient(60deg, transparent 0 57%, rgba(215, 164, 83, 0.07) 57% 58%, transparent 58%);
  content: "";
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family:
    Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 4.18rem;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 1020px;
}

h2 {
  font-size: 2.44rem;
  line-height: 1.06;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

p,
li,
summary,
input,
textarea,
select {
  overflow-wrap: anywhere;
}

.skip-link {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  left: 18px;
  padding: 12px 16px;
  position: fixed;
  top: -72px;
  transition: top 180ms ease;
  z-index: 80;
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(6, 16, 22, 0.96), rgba(14, 36, 47, 0.91));
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  display: flex;
  gap: 18px;
  height: 70px;
  justify-content: space-between;
  left: 50%;
  padding: 0 14px 0 18px;
  position: fixed;
  top: 14px;
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    top 220ms ease;
  width: min(1280px, calc(100vw - 32px));
  z-index: 50;
  backdrop-filter: blur(18px);
}

body.is-scrolled .site-header {
  background:
    linear-gradient(135deg, rgba(6, 16, 22, 0.98), rgba(10, 28, 38, 0.96));
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.3);
  top: 10px;
}

.header-progress {
  background: linear-gradient(90deg, var(--teal), var(--gold-2), var(--coral));
  bottom: -1px;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 184px;
  text-decoration: none;
}

.brand-logo {
  aspect-ratio: 36 / 7;
  height: auto;
  width: 218px;
}

.site-nav {
  align-items: center;
  background: rgba(255, 253, 247, 0.045);
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 253, 247, 0.82);
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  padding: 4px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 36px;
  padding: 9px 11px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible,
.site-nav a:not(.nav-cta).is-active {
  background: rgba(66, 200, 185, 0.12);
  border-color: rgba(66, 200, 185, 0.28);
  color: var(--teal);
}

.nav-cta,
.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta.is-active {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: #1a1208;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 20px;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-shell {
  margin: 0 auto;
  position: relative;
  width: var(--shell);
  z-index: 1;
}

.section-band {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: flex;
  padding: 108px 0;
  position: relative;
  scroll-margin-top: 110px;
}

.section-band::after {
  background: linear-gradient(90deg, transparent, rgba(6, 16, 22, 0.14), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  max-width: 1220px;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 56px);
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.section-copy {
  max-width: 680px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: rgba(6, 16, 22, 0.7);
  font-size: 1rem;
  line-height: 1.66;
  max-width: 66ch;
}

.section-heading {
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
  column-gap: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  margin-bottom: 34px;
  padding-bottom: 28px;
  position: relative;
  row-gap: 14px;
}

.section-heading::before {
  background: linear-gradient(180deg, var(--teal), var(--gold-2));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(66, 200, 185, 0.32);
  content: "";
  height: 44px;
  left: -22px;
  position: absolute;
  top: 4px;
  width: 3px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  max-width: 700px;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  margin-bottom: 0;
}

.system .section-heading,
.problem .section-heading,
.dubai .section-heading,
.contact .section-heading {
  border-bottom-color: var(--line-light);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--gold-2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  color: #1a1208;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.button-ghost {
  background: rgba(255, 253, 247, 0.045);
  border-color: rgba(255, 253, 247, 0.24);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 253, 247, 0.09);
  border-color: rgba(255, 253, 247, 0.34);
}

.hero {
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  min-height: min(840px, 92svh);
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-video,
.hero-shade {
  display: block;
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hero-image {
  filter: saturate(0.9) contrast(1.08);
  object-fit: cover;
  object-position: center center;
  opacity: 0.28;
  z-index: 0;
}

.hero-video {
  background: rgba(5, 13, 18, 0.92);
  filter: saturate(1.04) contrast(1.08);
  left: 0;
  -webkit-mask-image: none;
  mask-image: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  right: auto;
  width: 100%;
  z-index: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.94) 0%, rgba(5, 13, 18, 0.82) 34%, rgba(5, 13, 18, 0.42) 62%, rgba(5, 13, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 13, 18, 0.08), rgba(5, 13, 18, 0.74) 88%, #050b10);
  z-index: 2;
}

.hero-video-toggle {
  background: rgba(6, 16, 22, 0.66);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  bottom: 74px;
  color: rgba(255, 253, 247, 0.86);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  z-index: 7;
  backdrop-filter: blur(12px);
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible,
.hero-video-toggle[aria-pressed="true"] {
  background: rgba(66, 200, 185, 0.18);
  border-color: rgba(66, 200, 185, 0.42);
  color: var(--white);
}

.hero::before {
  animation: protocolSweep 7s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(66, 200, 185, 0.18), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 34%;
  z-index: 3;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.052) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 247, 0.046) 1px, transparent 1px);
  background-size: 112px 112px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  opacity: 0.72;
  position: absolute;
  z-index: 3;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
  margin: 0 auto;
  min-height: min(840px, 92svh);
  padding: 142px 0 124px;
  position: relative;
  width: var(--shell);
  z-index: 5;
}

.hero-copy {
  max-width: 980px;
  padding-top: 12px;
}

.hero-lead {
  color: rgba(255, 253, 247, 0.8);
  font-size: 1.04rem;
  line-height: 1.62;
  margin-bottom: 28px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 720px;
}

.hero-proof-grid span {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.075), rgba(255, 253, 247, 0.035));
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.82rem;
  line-height: 1.35;
  min-height: 70px;
  padding: 12px;
}

.hero-proof-grid b {
  color: var(--teal);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 7px;
}

.hero-command,
.system-visual,
.factory-visual,
.creative-media,
.signal-board,
.engine-grid article,
.growth-lab {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(255, 253, 247, 0.035)),
    rgba(5, 17, 24, 0.74);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  color: var(--white);
  position: relative;
  backdrop-filter: blur(18px);
}

[data-tilt] {
  transform:
    perspective(1000px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

[data-tilt]::before {
  background:
    linear-gradient(135deg, transparent, rgba(66, 200, 185, 0.12) 38%, rgba(242, 198, 111, 0.08) 56%, transparent);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease;
}

[data-tilt]:hover {
  box-shadow: var(--shadow-lift);
}

[data-tilt]:hover::before {
  opacity: 1;
}

.hero-command {
  overflow: hidden;
  padding: 22px;
  transform: translateY(8px);
}

.command-header span {
  color: var(--teal);
  display: block;
  font-size: 0.74rem;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.command-header strong {
  display: block;
  font-size: 1.42rem;
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 12px;
}

.protocol-orbit {
  aspect-ratio: 1;
  display: grid;
  margin: 2px auto 18px;
  max-width: 232px;
  place-items: center;
  position: relative;
  width: 82%;
}

.orbit-ring,
.orbit-line,
.orbit-node,
.orbit-core {
  position: absolute;
}

.orbit-ring {
  border: 1px solid rgba(255, 253, 247, 0.15);
  border-radius: 50%;
  inset: 12%;
}

.orbit-ring-a {
  animation: orbitSpin 14s linear infinite;
  border-color: rgba(66, 200, 185, 0.34);
}

.orbit-ring-b {
  animation: orbitSpin 18s linear infinite reverse;
  border-color: rgba(242, 198, 111, 0.24);
  inset: 24%;
  transform: rotate(58deg) scaleY(0.62);
}

.orbit-line {
  background: linear-gradient(90deg, transparent, rgba(66, 200, 185, 0.44), transparent);
  height: 1px;
  left: 13%;
  right: 13%;
  top: 50%;
}

.orbit-line-a {
  transform: rotate(28deg);
}

.orbit-line-b {
  transform: rotate(-36deg);
}

.orbit-node {
  animation: nodePulse 3.2s ease-in-out infinite;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(66, 200, 185, 0.5);
  height: 9px;
  width: 9px;
}

.node-growth {
  left: 13%;
  top: 38%;
}

.node-ai {
  right: 22%;
  top: 17%;
}

.node-software {
  bottom: 18%;
  right: 15%;
}

.node-scale {
  bottom: 27%;
  left: 24%;
}

.orbit-core {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(242, 198, 111, 0.18), rgba(66, 200, 185, 0.08)),
    rgba(3, 8, 12, 0.92);
  border: 1px solid rgba(242, 198, 111, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(66, 200, 185, 0.22),
    inset 0 0 30px rgba(255, 253, 247, 0.06);
  display: flex;
  flex-direction: column;
  height: 104px;
  justify-content: center;
  text-align: center;
  width: 104px;
}

.orbit-core b {
  color: var(--white);
  font-size: 2.3rem;
  line-height: 0.9;
}

.orbit-core small {
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.62rem;
  font-weight: 850;
  margin-top: 8px;
  max-width: 68px;
  text-transform: uppercase;
}

.phase-rail {
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: var(--radius);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 12px;
  overflow: hidden;
}

.phase-rail span {
  animation: phaseGlow 4.8s ease-in-out infinite;
  background: rgba(255, 253, 247, 0.045);
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.62rem;
  font-weight: 850;
  min-height: 34px;
  padding: 10px 6px;
  text-align: center;
  text-transform: uppercase;
}

.phase-rail span:nth-child(2) {
  animation-delay: 250ms;
}

.phase-rail span:nth-child(3) {
  animation-delay: 500ms;
}

.phase-rail span:nth-child(4) {
  animation-delay: 750ms;
}

.phase-rail span:nth-child(5) {
  animation-delay: 1000ms;
}

.route-choice {
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  display: block;
  padding: 16px 0;
  position: relative;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.route-choice::before {
  background: linear-gradient(90deg, var(--teal), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  width: 62%;
}

.route-choice:hover,
.route-choice:focus-visible {
  color: var(--teal);
  transform: translateX(4px);
}

.route-choice:hover::before,
.route-choice:focus-visible::before {
  opacity: 0.9;
}

.route-choice span {
  color: var(--gold-2);
  display: block;
  font-size: 0.74rem;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.route-choice b {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.route-choice small {
  color: rgba(255, 253, 247, 0.68);
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-ribbon {
  background: rgba(5, 11, 16, 0.92);
  border-top: 1px solid var(--line-light);
  bottom: 0;
  color: rgba(255, 253, 247, 0.86);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  z-index: 6;
  backdrop-filter: blur(16px);
}

.hero-ribbon span {
  align-items: center;
  border-right: 1px solid var(--line-light);
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 54px;
  padding: 0 18px;
}

.hero-ribbon span::before {
  animation: signalPulse 3s ease-in-out infinite;
  background: linear-gradient(135deg, var(--teal), var(--gold-2));
  content: "";
  flex: 0 0 auto;
  height: 8px;
  margin-right: 12px;
  width: 8px;
}

.system,
.problem,
.dubai,
.contact {
  background:
    linear-gradient(135deg, rgba(66, 200, 185, 0.12), transparent 36%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  color: var(--white);
}

.system.section-band::after,
.problem.section-band::after,
.dubai.section-band::after,
.contact.section-band::after {
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.15), transparent);
}

.system .section-copy > p:not(.eyebrow),
.problem .section-copy > p:not(.eyebrow),
.dubai .section-copy > p:not(.eyebrow),
.contact-copy p {
  color: rgba(255, 253, 247, 0.74);
}

.units,
.factory,
.governance,
.faq,
.programs {
  background:
    linear-gradient(180deg, rgba(6, 16, 22, 0.025), transparent 26%),
    var(--paper-2);
}

.growth,
.method,
.industries,
.creative {
  background:
    linear-gradient(180deg, rgba(66, 200, 185, 0.08), transparent 30%),
    var(--paper);
}

.system-layout,
.problem-layout,
.creative-layout,
.dubai-layout,
.method-layout,
.industries-layout,
.faq-layout,
.contact-layout,
.factory-layout {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.system-layout {
  align-items: center;
}

.system-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.system-proof span,
.dubai-grid span,
.output-list span {
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 12px 14px;
  text-transform: uppercase;
}

.system-proof span,
.dubai-grid span {
  border-color: rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.86);
}

.system-visual {
  min-height: 468px;
  overflow: hidden;
  padding: 24px;
}

.system-visual::after {
  animation: scanLine 5.8s ease-in-out infinite;
  background: linear-gradient(180deg, transparent, rgba(66, 200, 185, 0.22), transparent);
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  right: 0;
  top: -120px;
}

.system-topline,
.system-canvas {
  position: relative;
  z-index: 1;
}

.system-topline {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.system-topline span,
.factory-topbar span,
.board-header span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.system-topline strong,
.factory-topbar strong,
.board-header b {
  color: rgba(255, 253, 247, 0.9);
  font-size: 0.92rem;
}

.system-canvas {
  min-height: 398px;
}

.signal-dot {
  animation: signalPulse 3.6s ease-in-out infinite;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(66, 200, 185, 0.1);
  height: 10px;
  position: absolute;
  width: 10px;
}

.signal-a {
  left: 10%;
  top: 28%;
}

.signal-b {
  right: 12%;
  top: 20%;
}

.signal-c {
  bottom: 24%;
  left: 18%;
}

.signal-d {
  bottom: 33%;
  right: 18%;
}

.assembly-line {
  background: rgba(255, 253, 247, 0.12);
  height: 1px;
  left: 18%;
  position: absolute;
  right: 18%;
  top: 48%;
}

.line-one {
  transform: rotate(22deg);
}

.line-two {
  transform: rotate(-20deg);
}

.line-three {
  top: 61%;
}

.assembly-line span {
  animation: dataMove 3.6s linear infinite;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  display: block;
  height: 100%;
  width: 42%;
}

.system-core {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(242, 198, 111, 0.18), rgba(66, 200, 185, 0.08)),
    rgba(3, 8, 12, 0.92);
  border: 1px solid rgba(242, 198, 111, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 132px;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 43%;
  transform: translate(-50%, -50%);
  width: 132px;
}

.system-core span {
  color: var(--white);
  font-size: 4.2rem;
  font-weight: 850;
  line-height: 0.9;
}

.system-core small {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-card,
.scale-panel,
.system-terminal {
  background: rgba(6, 16, 22, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  position: absolute;
  backdrop-filter: blur(12px);
}

.signal-card {
  min-width: 160px;
  padding: 14px;
}

.signal-card b {
  display: block;
  margin-bottom: 6px;
}

.signal-card small {
  color: rgba(255, 253, 247, 0.66);
}

.card-growth {
  left: 2%;
  top: 8%;
}

.card-factory {
  bottom: 24%;
  right: 0;
}

.scale-panel {
  bottom: 0;
  display: grid;
  gap: 10px;
  left: 50%;
  padding: 16px;
  transform: translateX(-50%);
  width: min(330px, 82%);
}

.scale-panel > span,
.system-terminal span {
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.scale-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 42px;
}

.scale-row i {
  background: rgba(255, 253, 247, 0.12);
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.scale-row i::before {
  animation: barBuild 4s ease-in-out infinite;
  background: linear-gradient(90deg, var(--teal), var(--gold-2));
  content: "";
  display: block;
  height: 100%;
  width: 78%;
}

.scale-row:nth-child(3) i::before {
  width: 64%;
}

.scale-row:nth-child(4) i::before {
  width: 91%;
}

.scale-row b {
  color: var(--gold-2);
  font-size: 0.82rem;
}

.system-terminal {
  bottom: 90px;
  display: grid;
  gap: 7px;
  left: 0;
  padding: 12px;
  width: 210px;
}

.unit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.unit-card,
.capability-card,
.factory-services article,
.governance-grid article,
.program-card,
.industry-card,
.method-track li,
.faq-list details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 253, 247, 0.92)),
    var(--paper-2);
  border: 1px solid rgba(6, 16, 22, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.unit-card:hover,
.capability-card:hover,
.factory-services article:hover,
.governance-grid article:hover,
.program-card:hover,
.industry-card:hover,
.method-track li:hover {
  border-color: rgba(6, 16, 22, 0.22);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.unit-card::before,
.program-card::before,
.governance-grid article::before {
  background: linear-gradient(90deg, var(--teal), var(--gold-2));
  content: "";
  height: 3px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.unit-card:hover::before,
.program-card:hover::before,
.governance-grid article:hover::before {
  transform: scaleX(1);
}

.unit-card {
  align-content: start;
  display: grid;
  gap: 14px;
  min-height: 356px;
  padding: 28px;
}

.unit-growth {
  background:
    linear-gradient(135deg, rgba(66, 200, 185, 0.14), transparent 48%),
    var(--paper-2);
}

.unit-factory {
  background:
    linear-gradient(135deg, rgba(223, 116, 87, 0.16), transparent 48%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  color: var(--white);
}

.unit-label,
.service-tag,
.program-card span,
.engine-grid article > p:first-child,
.problem-grid span,
.capability-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  margin-bottom: 0;
  text-transform: uppercase;
}

.unit-card h3 {
  font-size: 1.86rem;
  line-height: 1.06;
  margin: 10px 0 6px;
}

.unit-card p:not(.unit-label),
.unit-card ul,
.capability-card p,
.factory-services p,
.program-card p,
.governance-grid li,
.faq-list p,
.method-track p,
.industry-card p {
  color: rgba(6, 16, 22, 0.68);
  line-height: 1.56;
}

.unit-factory p:not(.unit-label),
.unit-factory ul {
  color: rgba(255, 253, 247, 0.72);
}

.unit-card ul {
  border-top: 1px solid currentColor;
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 4px 0 14px;
  padding: 18px 0 0;
}

.unit-card li {
  padding-left: 16px;
  position: relative;
}

.unit-card li::before {
  background: var(--teal);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 6px;
}

.unit-card a,
.program-card a {
  align-self: end;
  border-top: 1px solid rgba(6, 16, 22, 0.13);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  padding-top: 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.unit-factory a {
  border-color: rgba(255, 253, 247, 0.18);
  color: var(--white);
}

.unit-card a:hover,
.unit-card a:focus-visible,
.program-card a:hover,
.program-card a:focus-visible {
  color: var(--coral);
}

.problem-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid article {
  background: rgba(255, 253, 247, 0.055);
  border: 1px solid rgba(255, 253, 247, 0.15);
  border-radius: var(--radius);
  min-height: 168px;
  padding: 22px;
}

.problem-grid h3 {
  color: var(--white);
}

.problem-grid p {
  color: rgba(255, 253, 247, 0.7);
  margin-bottom: 0;
}

.capability-grid,
.factory-services,
.governance-grid,
.program-panel,
.industry-cloud {
  display: grid;
  gap: 16px;
}

.capability-grid,
.program-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card,
.factory-services article,
.governance-grid article,
.program-card,
.industry-card {
  padding: 24px;
}

.capability-card {
  min-height: 206px;
}

.capability-card::after,
.program-card::after,
.factory-services article::after,
.industry-card::after {
  animation: signalPulse 3.2s ease-in-out infinite;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(66, 200, 185, 0.11);
  content: "";
  height: 8px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 8px;
}

.capability-card span {
  display: block;
  margin-bottom: 28px;
}

.growth-lab {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  margin-top: 20px;
  padding: 16px;
}

.signal-board {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.board-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.score-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 90px 34px;
}

.score-row span {
  color: rgba(255, 253, 247, 0.74);
  font-size: 0.86rem;
}

.score-row i {
  background: rgba(255, 253, 247, 0.12);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.score-row i::before {
  animation: barBuild 3.8s ease-in-out infinite;
  background: linear-gradient(90deg, var(--teal), var(--gold-2));
  content: "";
  display: block;
  height: 100%;
  width: 78%;
}

.score-row:nth-child(3) i::before {
  width: 68%;
}

.score-row:nth-child(4) i::before {
  width: 58%;
}

.score-row:nth-child(5) i::before {
  width: 84%;
}

.score-row b {
  color: var(--gold-2);
  font-size: 0.82rem;
}

.engine-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.engine-grid article {
  min-height: 250px;
  padding: 28px;
}

.engine-grid h3 {
  color: var(--white);
  font-size: 1.76rem;
  line-height: 1.04;
}

.engine-grid article > p:last-child {
  color: rgba(255, 253, 247, 0.7);
}

.creative-layout,
.factory-layout,
.dubai-layout,
.method-layout,
.industries-layout,
.faq-layout,
.contact-layout {
  align-items: start;
}

.creative-media {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.creative-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.78;
  position: absolute;
  width: 100%;
}

.creative-stack {
  bottom: 20px;
  display: grid;
  gap: 9px;
  left: 20px;
  max-width: 220px;
  position: absolute;
  z-index: 1;
}

.creative-stack span {
  animation: floatNode 4s ease-in-out infinite;
  background: rgba(6, 16, 22, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 12px 14px;
}

.creative-stack span:nth-child(2) {
  animation-delay: 350ms;
  margin-left: 22px;
}

.creative-stack span:nth-child(3) {
  animation-delay: 700ms;
  margin-left: 44px;
}

.creative-stack span:nth-child(4) {
  animation-delay: 1050ms;
  margin-left: 66px;
}

.output-list,
.dubai-grid {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.output-list span {
  border-color: var(--line-dark);
}

.factory-layout {
  grid-template-areas:
    "copy visual"
    "services visual";
}

.factory-layout .section-copy {
  grid-area: copy;
}

.factory-visual {
  grid-area: visual;
  min-height: 460px;
  overflow: hidden;
  padding: 24px;
}

.factory-services {
  grid-area: services;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.factory-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}

.factory-flow {
  display: grid;
  gap: 14px;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}

.factory-flow span {
  align-items: center;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  display: flex;
  font-weight: 850;
  min-height: 48px;
  padding: 0 16px;
}

.factory-packets span {
  animation: packetMove 4.5s linear infinite;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold-2), transparent);
  display: block;
  height: 3px;
  left: 28px;
  opacity: 0.9;
  position: absolute;
  top: 108px;
  width: 120px;
}

.factory-packets span:nth-child(2) {
  animation-delay: 1.3s;
  top: 154px;
}

.factory-packets span:nth-child(3) {
  animation-delay: 2.5s;
  top: 198px;
}

.factory-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.factory-metrics span {
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  min-height: 74px;
  padding: 12px;
}

.factory-metrics b {
  color: var(--gold-2);
}

.program-tabs {
  background: rgba(6, 16, 22, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 20px;
  max-width: 660px;
  padding: 8px;
}

.program-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(6, 16, 22, 0.68);
  cursor: pointer;
  font-weight: 850;
  min-height: 50px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.program-tab:hover,
.program-tab:focus-visible {
  transform: translateY(-1px);
}

.program-tab.is-active {
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(6, 16, 22, 0.16);
  color: var(--white);
}

.program-panel[hidden] {
  display: none;
}

.program-panel {
  align-items: stretch;
}

.program-card {
  align-content: start;
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 26px;
}

.program-card h3 {
  font-size: 1.16rem;
  line-height: 1.18;
  margin: 22px 0 0;
}

.program-card a {
  margin-top: auto;
}

.method-layout {
  align-items: start;
}

.method-track {
  counter-reset: method;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-track li {
  display: grid;
  gap: 18px;
  grid-template-columns: 54px minmax(128px, 0.32fr) minmax(0, 1fr);
  min-height: 104px;
  padding: 18px;
}

.method-track span {
  align-items: center;
  background: rgba(215, 164, 83, 0.13);
  border: 1px solid rgba(215, 164, 83, 0.28);
  border-radius: var(--radius);
  color: var(--gold);
  display: inline-flex;
  font-weight: 850;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.method-track h3,
.method-track p {
  margin-bottom: 0;
}

.governance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.governance-grid article {
  padding: 28px;
}

.governance-grid h3 {
  font-size: 1.28rem;
  margin-bottom: 20px;
}

.governance-grid ul {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
}

.governance-grid li {
  border-top: 1px solid var(--line-dark);
  padding: 13px 0 13px 22px;
  position: relative;
}

.governance-grid li:last-child {
  padding-bottom: 0;
}

.governance-grid li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 21px;
  width: 6px;
}

.industry-cloud {
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-card {
  min-height: 136px;
  padding: 20px;
}

.industry-card::before {
  background: linear-gradient(180deg, var(--teal), var(--gold-2));
  box-shadow: 0 0 18px rgba(66, 200, 185, 0.26);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 3px;
}

.industry-card span {
  color: var(--teal);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 18px;
}

.faq-list details {
  margin-bottom: 10px;
}

.faq-list details:last-child {
  margin-bottom: 0;
}

.faq-list details:hover {
  border-color: rgba(6, 16, 22, 0.22);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.14;
  list-style: none;
  padding: 22px 52px 22px 20px;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.6rem;
  position: absolute;
  right: 20px;
  top: 18px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(255, 253, 247, 0.04)),
    rgba(6, 18, 25, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  color: var(--white);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
}

.contact-form label {
  color: rgba(255, 253, 247, 0.78);
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 253, 247, 0.06);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 46px;
  padding: 12px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 247, 0.46);
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(242, 198, 111, 0.12);
  outline: none;
}

.form-note {
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.86rem;
  margin: 0;
}

.form-note.is-ready {
  color: var(--teal);
}

.site-footer {
  background: #04090d;
  color: rgba(255, 253, 247, 0.72);
  padding: 28px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  width: var(--shell);
}

.footer-inner p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.is-visible,
.is-active-view .reveal {
  opacity: 1;
  transform: translateY(0);
}

[data-view].is-active-view {
  animation: viewEnter 420ms ease both;
}

@keyframes viewEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes protocolSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }

  50% {
    opacity: 1;
    transform: translateX(18%);
  }
}

@keyframes phaseGlow {
  0%,
  100% {
    background: rgba(255, 253, 247, 0.045);
    color: rgba(255, 253, 247, 0.62);
  }

  50% {
    background: rgba(66, 200, 185, 0.12);
    color: rgba(255, 253, 247, 0.92);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes dataMove {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes barBuild {
  0%,
  100% {
    transform: scaleX(0.62);
    transform-origin: left center;
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes scanLine {
  0%,
  100% {
    top: -120px;
  }

  50% {
    top: 100%;
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes packetMove {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(330%);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-shell,
  .section-heading,
  .system-layout,
  .problem-layout,
  .creative-layout,
  .dubai-layout,
  .method-layout,
  .industries-layout,
  .faq-layout,
  .contact-layout,
  .factory-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-command {
    max-width: 720px;
    transform: none;
  }

  .factory-layout {
    grid-template-areas:
      "copy"
      "visual"
      "services";
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid,
  .program-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-lab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 68px;
    top: 10px;
    width: calc(100vw - 24px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 176px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(6, 16, 22, 0.98);
    border: 1px solid rgba(255, 253, 247, 0.14);
    box-shadow: var(--shadow-dark);
    display: none;
    flex-direction: column;
    gap: 6px;
    left: -1px;
    padding: 16px;
    position: absolute;
    right: -1px;
    top: calc(100% + 10px);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    font-size: 1rem;
    min-height: 0;
    padding: 14px 12px;
    width: 100%;
  }

  .hero-shell {
    padding-top: 112px;
  }

  .hero-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  body {
    background-size: 124px 100%, 100% 100%;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-video {
    left: 0;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.72;
    right: auto;
    width: 100%;
  }

  .hero-video-toggle {
    bottom: 18px;
    left: 12px;
    right: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 104px 0 32px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof-grid,
  .unit-grid,
  .problem-grid,
  .capability-grid,
  .program-panel,
  .factory-services,
  .governance-grid,
  .industry-cloud,
  .engine-grid,
  .factory-metrics,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .phase-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .phase-rail span {
    font-size: 0.55rem;
    padding: 9px 4px;
  }

  .section-band {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 24px;
    padding-bottom: 24px;
    padding-left: 14px;
  }

  .section-heading::before {
    left: 0;
    top: -2px;
  }

  .unit-card,
  .capability-card,
  .factory-services article,
  .governance-grid article,
  .program-card,
  .industry-card,
  .contact-form {
    padding: 22px;
  }

  .unit-card {
    min-height: 0;
  }

  .system-visual {
    min-height: 520px;
    padding: 18px;
  }

  .system-canvas {
    min-height: 450px;
  }

  .system-core {
    height: 116px;
    width: 116px;
  }

  .system-core span {
    font-size: 3.4rem;
  }

  .signal-card {
    min-width: 0;
    width: 46%;
  }

  .card-growth {
    left: 0;
    top: 4%;
  }

  .card-factory {
    right: 0;
    top: 53%;
  }

  .scale-panel {
    width: 86%;
  }

  .system-terminal {
    bottom: 92px;
    left: 0;
    width: 190px;
  }

  .method-track li {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .method-track p {
    grid-column: 2;
  }

  .creative-stack {
    left: 14px;
    max-width: 178px;
  }

  .creative-stack span {
    font-size: 0.76rem;
    padding: 10px 12px;
  }

  .hero-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V21 final expert polish */
:root {
  --shadow-soft: 0 14px 38px rgba(6, 16, 22, 0.075);
  --shadow-lift: 0 24px 66px rgba(6, 16, 22, 0.145);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.32);
}

body {
  background:
    linear-gradient(90deg, rgba(6, 16, 22, 0.01) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8 0%, #f5f2e9 46%, #fbf8ef 100%);
}

h1 {
  max-width: 1080px;
}

.site-header {
  overflow: hidden;
}

.site-header::before {
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.13), transparent);
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.brand-logo {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta {
  box-shadow: 0 10px 26px rgba(242, 198, 111, 0.18);
}

.hero-shell {
  gap: 56px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  background: linear-gradient(180deg, var(--teal), var(--gold-2));
  border-radius: 999px;
  content: "";
  height: 118px;
  left: -24px;
  opacity: 0.82;
  position: absolute;
  top: 4px;
  width: 3px;
}

.hero-lead {
  font-size: 1.06rem;
}

.hero-proof-grid span {
  backdrop-filter: blur(12px);
}

.hero-command,
.system-visual,
.factory-visual,
.creative-media,
.growth-lab {
  outline: 1px solid rgba(255, 253, 247, 0.045);
  outline-offset: -7px;
}

[data-tilt]::before {
  border-radius: inherit;
}

.protocol-orbit {
  filter: drop-shadow(0 18px 38px rgba(66, 200, 185, 0.12));
}

.orbit-ring-a {
  animation-name: orbitSpinPrimary;
}

.orbit-ring-b {
  animation-name: orbitSpinSecondary;
}

.phase-rail span {
  line-height: 1.1;
}

.route-choice {
  isolation: isolate;
}

.route-choice b,
.route-choice small {
  position: relative;
  z-index: 1;
}

.section-band {
  min-height: 640px;
}

.units,
.programs,
.governance,
.faq,
.factory,
.growth,
.method,
.industries,
.creative {
  min-height: auto;
}

.section-heading::before {
  left: -18px;
}

.unit-card,
.capability-card,
.factory-services article,
.governance-grid article,
.program-card,
.industry-card,
.method-track li,
.faq-list details {
  isolation: isolate;
}

.unit-card::after,
.capability-card::before,
.factory-services article::before,
.industry-card::after {
  background:
    linear-gradient(135deg, rgba(66, 200, 185, 0.1), transparent 52%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease;
  z-index: -1;
}

.unit-card:hover::after,
.capability-card:hover::before,
.factory-services article:hover::before,
.industry-card:hover::after {
  opacity: 1;
}

.unit-card h3,
.engine-grid h3 {
  text-wrap: balance;
}

.unit-card ul {
  border-color: rgba(6, 16, 22, 0.16);
}

.unit-factory ul {
  border-color: rgba(255, 253, 247, 0.2);
}

.problem-grid article {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.problem-grid article:hover {
  background: rgba(255, 253, 247, 0.075);
  border-color: rgba(255, 253, 247, 0.26);
  transform: translateY(-2px);
}

.score-row,
.scale-row {
  min-width: 0;
}

.score-row span,
.scale-panel > span,
.system-terminal span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creative-media::after {
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 16, 22, 0.42)),
    linear-gradient(90deg, rgba(66, 200, 185, 0.12), transparent 44%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.program-card {
  grid-template-rows: auto auto 1fr auto;
}

.program-card h3 {
  min-height: 2.75em;
}

.governance-grid article {
  min-height: 252px;
}

.industry-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.faq-list summary {
  transition: color 180ms ease;
}

.faq-list details:hover summary {
  color: var(--teal);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  background: linear-gradient(90deg, var(--teal), var(--gold-2), transparent);
  content: "";
  height: 3px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  caret-color: var(--gold-2);
}

@keyframes orbitSpinPrimary {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinSecondary {
  to {
    transform: rotate(418deg) scaleY(0.62);
  }
}

@media (max-width: 1120px) {
  .hero-copy::before {
    left: -16px;
  }

  .section-band {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero-copy::before {
    height: 76px;
    left: 0;
    top: -8px;
  }

  .hero-copy {
    padding-left: 14px;
  }

  .hero-proof-grid span {
    min-height: 0;
  }

  .program-card h3 {
    min-height: auto;
  }

  .governance-grid article {
    min-height: 0;
  }
}
