:root {
  --ink: #071f2c;
  --ink-2: #123443;
  --panel: #0d2a36;
  --muted: #61717a;
  --muted-dark: #9aabb2;
  --green: #0a8a43;
  --green-dark: #066a33;
  --green-light: #57cf8c;
  --cream: #f3f3ed;
  --line: #d9dfdc;
  --white: #fff;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f8f8f4;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--white);
  padding: 10px;
  z-index: 100;
}
.skip-link:focus { left: 8px; }

.site-header {
  height: 78px;
  width: 100%;
  padding: 0 max(4vw, calc((100vw - 1480px) / 2 + 4vw));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  color: var(--white);
  background: rgba(6,27,37,.94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 700 17px/1 var(--display);
  letter-spacing: .01em;
}
.brand > span > span { color: var(--green-light); }
.brand-mark {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.desktop-nav {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.desktop-nav a, .header-cta { transition: color .2s, opacity .2s; }
.desktop-nav a:hover, .header-cta:hover { color: var(--green-light); }
.header-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(87,207,140,.42);
  background: rgba(10,138,67,.18);
  font-size: 13px;
  font-weight: 700;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 24px;
  border-top: 1.5px solid currentColor;
  margin: 6px;
}

.pilot-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  padding: 78px max(4vw, calc((100vw - 1480px) / 2 + 4vw)) 0;
  background: var(--ink);
  color: var(--white);
}
.pilot-photo {
  margin-left: calc(-1 * max(4vw, calc((100vw - 1480px) / 2 + 4vw)));
  background: linear-gradient(180deg, rgba(7,31,44,.18) 40%, rgba(7,31,44,.82)), url('assets/hero.jpg') center/cover;
  position: relative;
}
.photo-label {
  position: absolute;
  left: 9%;
  top: 36px;
  color: var(--white);
}
.photo-label span {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9fdcc9;
}
.photo-label strong { font: 600 22px var(--display); }
.sample-report {
  position: absolute;
  left: 8%;
  bottom: 50px;
  width: min(470px, 86%);
  padding: 24px 26px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 34px 70px rgba(7,31,44,.45);
}
.sr-head {
  display: flex;
  justify-content: space-between;
  font: 700 12px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.sr-head span:last-child { color: var(--muted); }
.sr-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sr-metrics strong {
  display: block;
  font: 600 27px/1 var(--display);
  letter-spacing: -.01em;
}
.sr-money { color: var(--green-dark); }
.sr-score { color: #b5791f; }
.sr-metrics strong i { font-style: normal; color: var(--muted); }
.sr-metrics small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}
.sr-basis {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.sr-scale {
  margin: 16px 0 0;
  padding: 11px 14px;
  background: rgba(10,138,67,.08);
  border-left: 3px solid var(--green);
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.sr-scale strong {
  font: 600 19px/1 var(--display);
  color: var(--green-dark);
  white-space: nowrap;
}
.sr-scale span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}
.lang-ar .sr-scale {
  direction: rtl;
  text-align: right;
  border-left: 0;
  border-right: 3px solid var(--green);
}
.sr-section {
  margin: 16px 0 4px;
  font: 700 11px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a98a0;
}
.sr-findings {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sr-findings li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  padding: 11px 0;
  color: #3a4a52;
}
.sr-findings li + li { border-top: 1px solid var(--line); }
.sr-findings b { color: var(--ink); white-space: nowrap; font-weight: 700; }
.sr-findings em { color: var(--muted); white-space: nowrap; font-style: normal; font-weight: 600; }
.sr-foot {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}
.pilot-content {
  padding: 110px 4vw 110px 8vw;
  align-self: center;
}
.kicker {
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(11px, 1vw, 15px);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 13px;
}
.kicker:before {
  content: "";
  width: 34px;
  border-top: 2px solid currentColor;
}
.kicker-light { color: var(--green-light); }
.pilot-hero h1 {
  font: 600 clamp(42px, 3.8vw, 62px)/1.05 var(--display);
  letter-spacing: -.04em;
  margin-bottom: 0;
}
.check-list, .compact-list {
  list-style: none;
  padding: 0;
  margin: 42px 0 38px;
}
.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 16px;
  color: #d5e2e7;
}
.check-list li > span:first-child {
  color: var(--green-light);
  margin-right: 13px;
  font-weight: 700;
}
.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.button-primary {
  background: var(--green);
  color: var(--white);
}
.button-primary:hover { background: #0b9c4c; }
.section {
  padding: 118px max(4vw, calc((100vw - 1480px) / 2 + 4vw));
}
.section h2, .contact h2 {
  font: 600 clamp(38px, 4.2vw, 66px)/1.08 var(--display);
  letter-spacing: -.035em;
  margin-bottom: 30px;
}
.ecosystem { background: var(--white); }
.ecosystem-copy {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4vw;
  align-items: start;
  max-width: 1060px;
}
.ecosystem-text p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 16px;
}
.ecosystem-text p:last-child { margin-bottom: 0; }
.ecosystem-text p.eco-lead {
  color: var(--ink);
  font-weight: 500;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 76px;
  background: var(--line);
  gap: 1px;
}
.ecosystem-grid article {
  background: #fbfbf8;
  min-height: 150px;
  padding: 24px;
}
.ecosystem-grid strong {
  display: block;
  font: 700 17px/1.3 var(--display);
  margin-bottom: 11px;
}
.ecosystem-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}
.disclaimer {
  max-width: 920px;
  margin: 22px 0 0;
  color: #7b898e;
  font-size: 13px;
}

.pilot-program {
  background: #0a2a37;
  color: var(--white);
}
.pilot-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 7vw;
  align-items: start;
}
.pilot-copy p:not(.kicker) {
  color: #a8bbc3;
  font-size: 17px;
  max-width: 590px;
}
.deliverables {
  background: var(--white);
  color: var(--ink);
  padding: 42px;
}
.deliverables h3 {
  margin-bottom: 22px;
  font: 600 24px var(--display);
}
.compact-list {
  margin-top: 0;
  color: var(--muted);
}
.compact-list li {
  padding: 15px 0 15px 24px;
  border-top: 1px solid rgba(7,31,44,.12);
  position: relative;
}
.compact-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.security-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 7vw;
  background: var(--cream);
  align-items: center;
}
.security-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
}
.security-copy .compact-list { margin-top: 34px; }
.security-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  background: #092632;
  border: 1px solid rgba(7,31,44,.12);
  box-shadow: 0 30px 70px rgba(7,31,44,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}
.sec-console {
  width: 100%;
  max-width: 440px;
  background: #0c2a35;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.sec-console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sec-console-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font: 600 15px var(--display);
}
.sec-console-title svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green-light);
  stroke-width: 2.2;
}
.sec-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-light);
}
.sec-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(87,207,140,.4);
  animation: secPulse 2.4s ease-in-out infinite;
}
@keyframes secPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87,207,140,.4); }
  50% { box-shadow: 0 0 0 6px rgba(87,207,140,0); }
}
.sec-console-meta {
  margin: 0;
  padding: 13px 18px;
  font-size: 12px;
  color: #9fb2ba;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sec-log-label {
  margin: 0;
  padding: 14px 18px 4px;
  font: 700 10px/1 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b8f97;
}
.sec-log {
  list-style: none;
  margin: 0;
  padding: 4px 18px 18px;
}
.sec-log li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  font-size: 13px;
  color: #d3e0e4;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sec-log li:first-child { border-top: 0; }
.sec-log li:before {
  content: "✓";
  color: var(--green-light);
  font-weight: 700;
}
.sec-log li.deny:before { content: "⦸"; color: #e3a93f; }
.sec-log li.deny .ev { color: #ecd09a; }
.sec-log .t {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: #7b8f97;
}
.sec-log .ev { flex: 1; }
.lang-ar .sec-console { direction: rtl; }
.lang-ar .sec-log { direction: ltr; text-align: right; }
.lang-ar .sec-log .ev { direction: rtl; }
.lang-ar .sec-console-title span,
.lang-ar .sec-status span,
.lang-ar .sec-console-meta,
.lang-ar .sec-log-label,
.lang-ar .sec-log .ev {
  font-family: "Tajawal", sans-serif;
}
.lang-ar .sec-log-label { letter-spacing: 0; }
@media (prefers-reduced-motion: reduce) {
  .sec-status i { animation: none; }
}
.map-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,38,50,.56), rgba(9,38,50,.1)), url('assets/command-center-v2.png') center/cover;
  opacity: .72;
}
.secure-grid {
  position: absolute;
  inset: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.secure-grid span {
  border: 1px solid rgba(87,214,177,.25);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.shield-card {
  position: absolute;
  left: 42px;
  top: 56px;
  width: min(360px, calc(100% - 84px));
  padding: 28px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.shield-card svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 2;
  margin-bottom: 38px;
}
.shield-card strong {
  display: block;
  font: 700 22px/1.25 var(--display);
  margin-bottom: 10px;
}
.shield-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.audit-trail {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: min(300px, calc(100% - 84px));
  padding: 22px;
  background: rgba(7,31,44,.78);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 14px 12px;
  align-items: center;
  backdrop-filter: blur(14px);
}
.audit-trail i {
  width: 8px;
  height: 8px;
  background: var(--green-light);
}
.audit-trail span {
  font-size: 12px;
  color: #d1dde1;
}

.process {
  background: var(--white);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 7vw;
  align-items: end;
}
.process-head > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 5px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1px;
  margin-top: 76px;
  background: var(--line);
  border: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.steps article, .intelligence-layer {
  background: #fbfbf8;
  padding: 32px;
}
.steps span {
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: .12em;
}
.steps h3 {
  margin: 52px 0 16px;
  font: 600 21px/1.25 var(--display);
}
.steps p, .intelligence-layer p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}
.intelligence-layer {
  background: var(--ink);
  color: var(--white);
}
.intelligence-layer h3 {
  font: 600 30px/1.16 var(--display);
  letter-spacing: -.025em;
}
.cap-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 34px;
}
.cap-list article {
  background: #0d2a36;
  padding: 18px;
}
.cap-list strong {
  display: block;
  font: 700 15px/1.3 var(--display);
  margin-bottom: 7px;
}
.cap-list span {
  display: block;
  color: #9fb2ba;
  font-size: 14px;
}

.contact {
  padding: 96px max(4vw, calc((100vw - 1480px) / 2 + 4vw));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6vw;
  align-items: end;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-copy { max-width: 780px; }
.contact-form {
  width: min(520px, 40vw);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}
.lead-form label { display: block; }
.lead-form label span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}
.lead-form input {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 0 16px;
  outline: none;
  border-radius: 0;
  backdrop-filter: blur(14px);
}
.lead-form input::placeholder { color: rgba(255,255,255,.62); }
.lead-form input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(87,207,140,.18);
}
.lead-form .button { margin-top: 26px; }
.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--green-light);
  font-size: 12px;
}
.form-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

footer {
  padding: 66px max(4vw, calc((100vw - 1480px) / 2 + 4vw));
  background: #061b25;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.3fr auto;
  align-items: center;
  gap: 34px;
  border-top: 1px solid #25404b;
}
footer p {
  color: #93a8b0;
  font-size: 18px;
  margin: 0;
}
footer nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 17px;
  color: #c2cfd4;
}
footer small {
  color: #7c939c;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.pilot-hero .reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .desktop-nav, .header-cta { display: none; }
  .header-end { gap: 10px; }
  .menu-button { display: block; }
  .site-header.menu-open {
    height: auto;
    min-height: 78px;
    align-items: start;
    padding-top: 20px;
    background: rgba(6,27,37,.98);
    grid-template-rows: 42px auto;
  }
  .site-header.menu-open .desktop-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    padding: 24px 0 30px;
    gap: 20px;
  }
  .site-header.menu-open .menu-button {
    grid-column: 3;
    grid-row: 1;
  }
  .pilot-hero,
  .ecosystem-copy,
  .pilot-shell,
  .security-section,
  .process-head,
  .process-layout,
  .contact {
    grid-template-columns: 1fr;
  }
  .ecosystem-copy { gap: 0; }
  .ecosystem-copy h2 { grid-row: auto; margin-bottom: 18px; }
  .pilot-content { padding-left: 6vw; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { width: min(620px, 100%); }
  footer { grid-template-columns: 1fr 1fr; }
  footer nav, footer small { justify-self: end; }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }
  .site-header.menu-open {
    min-height: 68px;
    padding-top: 18px;
  }
  .pilot-hero {
    display: block;
    min-height: 0;
    padding: 68px 0 0;
  }
  .pilot-photo {
    height: auto;
    padding-top: 340px;
    margin: 0;
    background-position: center top;
  }
  .sample-report {
    position: static;
    width: auto;
    margin: 0 16px 6px;
    padding: 20px 20px;
  }
  .sr-metrics strong { font-size: 23px; }
  .pilot-content {
    padding: 74px 20px 78px;
  }
  .pilot-hero h1 { font-size: 38px; }
  .section {
    padding: 82px 20px;
  }
  .section h2, .contact h2 { font-size: 37px; }
  .ecosystem-grid, .steps {
    display: block;
  }
  .ecosystem-grid article,
  .steps article {
    border-bottom: 1px solid var(--line);
  }
  .deliverables { padding: 28px 22px; }
  .security-visual {
    min-height: 520px;
  }
  .secure-grid { inset: 22px; }
  .shield-card {
    left: 22px;
    top: 28px;
    width: calc(100% - 44px);
  }
  .audit-trail {
    left: 22px;
    right: auto;
    bottom: 22px;
    width: calc(100% - 44px);
  }
  .contact {
    padding: 82px 20px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .lead-form .button {
    margin-top: 0;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 20px;
  }
  footer nav, footer small { justify-self: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lang-toggle {
  font-family: "Tajawal", var(--body);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.lang-toggle:hover { color: var(--green-light); border-color: var(--green-light); }

.lang-ar body { font-family: "Tajawal", sans-serif; }
.lang-ar .pilot-content,
.lang-ar .ecosystem-copy,
.lang-ar .pilot-copy,
.lang-ar .deliverables,
.lang-ar .security-copy,
.lang-ar .process-head,
.lang-ar .steps article,
.lang-ar .intelligence-layer,
.lang-ar .contact-copy,
.lang-ar .lead-form,
.lang-ar .photo-label,
.lang-ar .sample-report,
.lang-ar .ecosystem-grid article,
.lang-ar .cap-list article,
.lang-ar .shield-card,
.lang-ar footer p,
.lang-ar footer nav {
  direction: rtl;
  text-align: right;
}
.lang-ar .pilot-hero h1,
.lang-ar .section h2,
.lang-ar .contact h2,
.lang-ar .deliverables h3,
.lang-ar .steps h3,
.lang-ar .intelligence-layer h3,
.lang-ar .cap-list strong,
.lang-ar .ecosystem-grid strong,
.lang-ar .shield-card strong,
.lang-ar .photo-label strong,
.lang-ar .sr-head,
.lang-ar .sr-section,
.lang-ar .kicker {
  font-family: "Tajawal", sans-serif;
}
.lang-ar .kicker,
.lang-ar .sr-head,
.lang-ar .sr-section,
.lang-ar .photo-label span {
  letter-spacing: 0;
}
.lang-ar .check-list li > span:first-child {
  margin-right: 0;
  margin-left: 13px;
}
