:root {
  --ink: #11110f;
  --surface: #181815;
  --surface-raised: #20201c;
  --paper: #f1efe8;
  --muted: #aaa79d;
  --orange: #e94b24;
  --line: rgba(241, 239, 232, .14);
  --line-strong: rgba(241, 239, 232, .28);
  --sans: "Manrope", "IBM Plex Sans Arabic", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(92vw, 1440px);
  --radius: 14px;
  --header: 72px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); overflow-x: clip; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 110;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-progress {
  position: fixed;
  z-index: 90;
  inset: 50% 1.15rem auto auto;
  width: 2px;
  height: min(28vh, 220px);
  background: var(--line);
  transform: translateY(-50%);
  pointer-events: none;
}
.site-progress-line {
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
}
.site-progress-value {
  position: absolute;
  top: calc(100% + .7rem);
  right: -.2rem;
  font-family: var(--mono);
  font-size: .58rem;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 15, .88);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}
.brand b, .brand em { color: var(--orange); }
.brand b { font-weight: 700; }
.brand em { font-size: .75em; font-style: normal; letter-spacing: -.04em; }
.desktop-nav { display: flex; gap: clamp(1.4rem, 2.8vw, 3rem); font-size: .78rem; }
.desktop-nav a, .language-switcher a { transition: color 160ms ease, background-color 160ms ease; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .78rem;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "IBM Plex Sans Arabic", "Manrope", sans-serif;
  font-size: .75rem;
}
.language-switcher a {
  min-width: 34px;
  padding: .35rem .5rem;
  border-radius: 999px;
  text-align: center;
}
.language-switcher a[aria-current="page"] { background: var(--orange); color: var(--ink); font-weight: 600; }
.header-cta {
  padding: .7rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color 160ms ease, color 160ms ease, transform 140ms var(--ease-out);
}
.header-cta:active { transform: scale(.97); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 140ms var(--ease-out);
}
.menu-toggle:active { transform: scale(.94); }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}
.menu-toggle[aria-expanded=true] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded=true] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  z-index: 70;
  inset: 0;
  padding: 112px 7vw 7vw;
  background: var(--orange);
  color: var(--paper);
  flex-direction: column;
  gap: .8rem;
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 600;
  letter-spacing: -.035em;
  transform: translateY(-2%) scale(.985);
  transform-origin: top right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 240ms var(--ease-drawer);
}
.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav[data-state="open"] { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mobile-nav[data-immediate="true"],
.mobile-nav[data-immediate="true"] a { transition: none; }
.mobile-nav a {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 240ms var(--ease-out);
}
.mobile-nav a:focus-visible { outline-color: var(--ink); }
.mobile-nav[data-state="open"] a { opacity: 1; transform: translateY(0); }
.mobile-nav[data-state="open"] a:nth-child(2) { transition-delay: 35ms; }
.mobile-nav[data-state="open"] a:nth-child(3) { transition-delay: 70ms; }
.mobile-nav[data-state="open"] a:nth-child(4) { transition-delay: 105ms; }
.mobile-nav[data-state="open"] a:nth-child(5) { transition-delay: 140ms; }

.hero {
  width: var(--page);
  min-height: 100dvh;
  margin: 0 auto;
  padding: calc(var(--header) + 4rem) 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin-bottom: 1.4rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 6.3vw, 6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.hero-title-line { display: block; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-intro {
  max-width: 500px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 140ms var(--ease-out);
}
.button:active { transform: scale(.97); }
.button-primary { background: var(--orange); color: var(--ink); font-weight: 600; }
.button-primary span { transition: transform 160ms var(--ease-out); }
.button-secondary { border-color: var(--line-strong); }
.hero-visual {
  position: relative;
  min-height: min(68vh, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 15, .78));
  pointer-events: none;
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scan {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-scan span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(233, 75, 36, .75);
}
.hero-crosshair {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 58%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 239, 232, .6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-crosshair::before,
.hero-crosshair::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.hero-crosshair::before { width: 62px; height: 1px; }
.hero-crosshair::after { width: 1px; height: 62px; }
.hero-coordinate {
  position: absolute;
  z-index: 4;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--mono);
  font-size: .58rem;
  line-height: 1.55;
  color: rgba(241, 239, 232, .72);
  text-align: right;
  pointer-events: none;
}
.hero-visual figcaption {
  position: absolute;
  z-index: 4;
  inset: auto 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.hero-visual figcaption span {
  padding: .5rem .7rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(17, 17, 15, .68);
  font-family: var(--mono);
  font-size: .63rem;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.principle-band {
  width: var(--page);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle-band p { margin: 0; color: var(--muted); font-size: .86rem; }
.principle-band p::before { content: ""; display: inline-block; width: 24px; height: 1px; margin-right: .7rem; vertical-align: middle; background: var(--orange); }

.section { width: var(--page); margin: 0 auto; padding: clamp(6rem, 10vw, 10rem) 0; }
.section h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading { max-width: 900px; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading p, .sector-intro p, .assessment-copy p {
  max-width: 580px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.challenge { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.challenge-statement { position: sticky; top: calc(var(--header) + 2rem); }
.challenge-statement p { max-width: 520px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; }
.challenge-grid { display: grid; }
.challenge-feature {
  min-height: 230px;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.challenge-feature:last-child { border-bottom: 1px solid var(--line); }
.challenge-feature span, .offer > span, .offer > div > span, .sector-panel > span {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
}
.challenge-feature h3 { max-width: 520px; margin: 2.7rem 0 .8rem; font-size: clamp(1.6rem, 2.5vw, 2.5rem); line-height: 1.1; letter-spacing: -.035em; }
.challenge-feature p { max-width: 560px; margin: 0; color: var(--muted); }

.method { border-top: 1px solid var(--line); }
.method-track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.method-track::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px; background: var(--line-strong); }
.method-track .method-progress {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  padding: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}
.method-track li { position: relative; padding: 3.2rem 1rem 0 0; }
.method-track .method-progress::before { display: none; }
.method-track li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.method-track h3 { margin: 0 0 .7rem; font-size: 1.2rem; }
.method-track p { max-width: 260px; margin: 0; color: var(--muted); font-size: .9rem; }

.offers { border-top: 1px solid var(--line); }
.offer-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto; gap: 1rem; }
.offer {
  min-height: 310px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.offer-primary { grid-row: 1 / 3; min-height: 630px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(150deg, rgba(233, 75, 36, .28), transparent 50%), var(--surface-raised); }
.offer h3 { max-width: 620px; margin: 1.2rem 0; font-size: clamp(2rem, 3.4vw, 4rem); line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.offer p { max-width: 580px; margin: 0; color: var(--muted); }
.offer ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.offer li { padding: .45rem .65rem; border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; color: var(--muted); }
.offer-visual { position: relative; min-height: 360px; padding: 0; overflow: hidden; }
.offer-visual::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(17, 17, 15, .94)); }
.offer-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-visual > div { position: absolute; z-index: 2; inset: auto 1.75rem 1.75rem; }
.offer-visual h3 { margin-bottom: .7rem; font-size: clamp(1.8rem, 2.7vw, 3rem); }

.sectors { border-top: 1px solid var(--line); }
.sector-intro { max-width: 900px; margin-bottom: 4rem; }
.sector-stage { display: grid; grid-template-columns: .55fr 1.45fr; gap: 1rem; }
.sector-tabs { display: flex; flex-direction: column; gap: .55rem; }
.sector-tabs button {
  min-height: 58px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 140ms var(--ease-out);
}
.sector-tabs button:active { transform: scale(.98); }
.sector-tabs button[aria-selected=true] { border-color: var(--orange); background: var(--orange); color: var(--ink); font-weight: 600; }
.sector-panel {
  min-height: 480px;
  padding: clamp(1.7rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--surface);
  background-size: 80px 80px;
}
.sector-panel h3 { max-width: 880px; margin: 2rem 0; font-size: clamp(2.4rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.04em; text-wrap: balance; }
.sector-panel p { max-width: 660px; margin: 0; color: var(--muted); }
.sector-flow { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--orange); font-family: var(--mono); color: var(--paper); font-size: .68rem; text-transform: uppercase; }

.trust {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  border-top: 1px solid var(--line);
}
.trust-visual { position: sticky; top: calc(var(--header) + 2rem); min-height: 650px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.trust-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trust-content .section-heading { margin-bottom: 2rem; }
.trust-model { display: grid; grid-template-columns: 1fr 1fr; }
.trust-model article { min-height: 210px; padding: 1.7rem 1.7rem 1.7rem 0; border-top: 1px solid var(--line); }
.trust-model article:nth-child(odd) { padding-right: 2rem; }
.trust-model article:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--line); }
.trust-model h3 { margin: 0 0 .8rem; font-size: 1.15rem; }
.trust-model p { margin: 0; color: var(--muted); font-size: .9rem; }
.language-proof { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); box-shadow: inset 0 3px 0 var(--orange); }
.language-proof strong { display: block; font-size: 1.2rem; }
.language-proof p { margin: .6rem 0 0; color: var(--muted); }

.assessment { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; border-top: 1px solid var(--line); }
.assessment-copy { position: sticky; top: calc(var(--header) + 2rem); }
.diagnostic { min-height: 590px; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.diagnostic-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; }
progress { width: 140px; accent-color: var(--orange); }
.diagnostic fieldset { border: 0; margin: 4rem 0 2rem; padding: 0; }
.diagnostic legend { max-width: 760px; font-size: clamp(2rem, 3.8vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -.04em; text-wrap: balance; }
#question-options { display: grid; gap: .65rem; margin-top: 2.5rem; }
.diagnostic-option {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}
.diagnostic-option:active { transform: scale(.99); }
.diagnostic-option:has(input:checked) { border-color: var(--orange); background: rgba(233, 75, 36, .1); }
.diagnostic fieldset[aria-invalid="true"] .diagnostic-option { border-color: rgba(255, 154, 127, .7); }
.diagnostic-option input { accent-color: var(--orange); }
.diagnostic-actions { display: flex; justify-content: space-between; align-items: center; }
.text-button { border: 0; background: none; cursor: pointer; text-decoration: underline; transition: color 140ms ease, transform 140ms var(--ease-out); }
.text-button:active { transform: scale(.96); }
.text-button:disabled { opacity: .3; cursor: not-allowed; }
.diagnostic-result h3 { margin: 4rem 0 1rem; font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .96; letter-spacing: -.04em; color: var(--orange); text-wrap: balance; }
.diagnostic-result p { max-width: 640px; color: var(--muted); }
.diagnostic-result .button { margin-top: 1.5rem; }

.contact {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}
.contact-title h2 { max-width: 650px; }
.contact-title p { max-width: 520px; margin: 1.5rem 0; color: var(--muted); }
.contact-title > a { color: var(--orange); border-bottom: 1px solid currentColor; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field-wide, .form-status { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .66rem; text-transform: uppercase; color: var(--muted); }
.required-mark { color: var(--orange); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--paper);
  padding: .9rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder { color: #858279; opacity: 1; }
.field input:focus, .field textarea:focus { border-color: var(--orange); outline: 0; box-shadow: 0 0 0 3px rgba(233, 75, 36, .2); }
.field textarea { min-height: 130px; resize: vertical; }
.field small { display: none; color: #ff9a7f; }
.field input[aria-invalid=true] + small, .field textarea[aria-invalid=true] + small { display: block; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: .5rem; }
.privacy-note { max-width: 480px; margin: 0; color: var(--muted); font-size: .74rem; }
.form-status { padding: 1rem; border: 1px solid currentColor; border-radius: var(--radius); }
.form-status.success { color: #b9df87; }
.form-status.error { color: #ff9a7f; }
.form-status.warning { color: #f2c66d; }
.otp-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
}
.otp-kicker { font-family: var(--mono); color: var(--orange); font-size: .68rem; text-transform: uppercase; }
.otp-panel h3 { margin: .6rem 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.04em; }
.otp-panel p { margin: 0; color: var(--muted); }
.otp-panel .field { max-width: 340px; }
.otp-panel input { font-family: var(--mono); font-size: 1.35rem; letter-spacing: .28em; }
.otp-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

footer {
  width: var(--page);
  min-height: 330px;
  margin: 0 auto;
  padding: 4rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-content: end;
  border-top: 1px solid var(--line);
}
footer > div:first-child p { max-width: 500px; margin: 1.4rem 0 0; font-size: clamp(1.8rem, 3.5vw, 3.8rem); font-weight: 600; line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.footer-links { display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; justify-content: end; font-size: .84rem; }
.footer-links a:last-child { color: var(--orange); }
footer small { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }

.reveal { opacity: 1; transform: none; }
.gsap-ready .reveal, .gsap-ready .media-reveal { transition: none; }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover, .language-switcher a:hover { color: var(--orange); }
  .language-switcher a[aria-current="page"]:hover { color: var(--ink); }
  .header-cta:hover { border-color: var(--orange); color: var(--orange); }
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: #f15b34; }
  .button-primary:hover span { transform: translate(2px, -2px); }
  .button-secondary:hover { border-color: var(--paper); }
  .sector-tabs button:hover { transform: translateX(3px); color: var(--paper); }
  .sector-tabs button[aria-selected=true]:hover { color: var(--ink); }
  .diagnostic-option:hover { border-color: var(--line-strong); background: rgba(241, 239, 232, .035); }
  .diagnostic-option:has(input:checked):hover { border-color: var(--orange); background: rgba(233, 75, 36, .1); }
}

html:dir(rtl) body { font-family: "IBM Plex Sans Arabic", "Manrope", sans-serif; }
html:dir(rtl) .skip-link { right: 1rem; left: auto; }
html:dir(rtl) .mobile-nav { transform-origin: top left; }
html:dir(rtl) .site-progress { right: auto; left: 1.15rem; }
html:dir(rtl) .site-progress-value { right: auto; left: -.2rem; }
html:dir(rtl) .eyebrow,
html:dir(rtl) .hero-visual figcaption span,
html:dir(rtl) .challenge-feature span,
html:dir(rtl) .offer > span,
html:dir(rtl) .offer > div > span,
html:dir(rtl) .sector-panel > span,
html:dir(rtl) .sector-flow,
html:dir(rtl) .diagnostic-head,
html:dir(rtl) .field label,
html:dir(rtl) .otp-kicker {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
html:dir(rtl) .principle-band p::before { margin-right: 0; margin-left: .7rem; }
html:dir(rtl) .method-track li { padding-right: 0; padding-left: 1rem; }
html:dir(rtl) .method-track li::before { right: 0; left: auto; }
html:dir(rtl) .method-track .method-progress { right: 0; left: auto; transform-origin: right; }
html:dir(rtl) .hero-coordinate { right: auto; left: 1.25rem; text-align: left; direction: ltr; }
html:dir(rtl) .trust-model article { padding-right: 0; padding-left: 1.7rem; }
html:dir(rtl) .trust-model article:nth-child(odd) { padding-right: 0; padding-left: 2rem; }
html:dir(rtl) .trust-model article:nth-child(even) { padding-right: 2rem; padding-left: 0; border-right: 1px solid var(--line); border-left: 0; }
html:dir(rtl) .footer-links { align-items: flex-start; }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 5vw; }
  .desktop-nav, .header-cta { display: none; }
  .header-actions { gap: .5rem; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero h1 { font-size: clamp(3.3rem, 7.5vw, 6rem); }
  .challenge, .trust, .assessment, .contact { grid-template-columns: 1fr; }
  .challenge-statement, .trust-visual, .assessment-copy { position: static; }
  .challenge-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .challenge-feature { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); }
  .challenge-feature:last-child { border-bottom: 1px solid var(--line); }
  .challenge-feature h3 { margin-top: 2rem; }
  .trust-visual { min-height: 520px; }
}

@media (max-width: 760px) {
  :root { --page: min(90vw, 680px); --header: 66px; }
  .hero {
    height: 100dvh;
    min-height: 700px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(220px, 1fr);
    gap: 1.5rem;
    padding-top: calc(var(--header) + 2.25rem);
    padding-bottom: 1.5rem;
  }
  .eyebrow { margin-bottom: .9rem; }
  .hero h1 { max-width: 620px; font-size: clamp(2.85rem, 12.5vw, 4.6rem); }
  .hero-intro { margin-top: 1rem; }
  .hero-actions { margin-top: 1.15rem; }
  .hero-visual { min-height: 0; height: 100%; }
  .principle-band { grid-template-columns: 1fr; gap: .8rem; }
  .section { padding: 5.5rem 0; }
  .section h2 { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .challenge-grid, .method-track, .trust-model { grid-template-columns: 1fr; }
  .challenge-feature { min-height: 0; }
  .method-track { gap: 0; }
  .method-track::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .method-track .method-progress {
    top: 0;
    left: 7px;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .method-track li { padding: 0 0 2.5rem 2.5rem; }
  .method-track li::before { top: 4px; }
  html:dir(rtl) .method-track::before { right: 7px; left: auto; }
  html:dir(rtl) .method-track .method-progress { right: 7px; left: auto; transform-origin: top; }
  html:dir(rtl) .method-track li { padding: 0 2.5rem 2.5rem 0; }
  .offer-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .offer-primary { grid-row: auto; min-height: 470px; }
  .sector-stage { grid-template-columns: 1fr; }
  .sector-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .sector-panel { min-height: 520px; }
  .trust-visual { min-height: 62dvh; }
  .trust-model article, .trust-model article:nth-child(odd), .trust-model article:nth-child(even) { min-height: 0; padding: 1.5rem 0; border-left: 0; }
  html:dir(rtl) .trust-model article,
  html:dir(rtl) .trust-model article:nth-child(odd),
  html:dir(rtl) .trust-model article:nth-child(even) { padding: 1.5rem 0; border-right: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .field, .field-wide, .form-status { grid-column: 1; }
  footer { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  footer small { grid-column: 1; }
}

@media (max-width: 480px) {
  .site-progress { display: none; }
  .language-switcher { font-size: .68rem; }
  .language-switcher a { min-width: 30px; padding-inline: .4rem; }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .button { padding-inline: .9rem; gap: .8rem; }
  .hero-visual figcaption { gap: .35rem; }
  .eyebrow,
  .hero-visual figcaption span,
  .principle-band p,
  .challenge-feature span,
  .offer > span,
  .offer > div > span,
  .offer li,
  .sector-panel > span,
  .sector-flow,
  .diagnostic-head,
  .field label,
  .privacy-note,
  .footer-links,
  footer small { font-size: .875rem; }
  .sector-tabs { grid-template-columns: 1fr; }
  .sector-panel { padding: 1.35rem; }
  .diagnostic { padding: 1.25rem; min-height: 640px; }
  .diagnostic-head { gap: 1rem; }
  progress { width: 100px; }
  .diagnostic fieldset { margin-top: 3rem; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .otp-actions { align-items: stretch; flex-direction: column; }
  .otp-actions .button, .otp-actions .text-button { width: 100%; min-height: 46px; }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
}

@media (max-width: 360px) {
  .hero { gap: 1rem; padding-top: calc(var(--header) + 1.8rem); padding-bottom: 1rem; }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions { flex-wrap: wrap; gap: .5rem; }
  .hero-actions .button { width: 100%; min-height: 46px; }
  .hero-visual figcaption span { padding: .4rem .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mobile-nav, .mobile-nav a { transform: none; transition: opacity 120ms ease; }
  .reveal, .media-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
  .hero-scan, .hero-crosshair { display: none; }
  .site-progress, .method-track .method-progress { display: none; }
  .button, .header-cta, .menu-toggle, .sector-tabs button, .diagnostic-option, .text-button { transition-duration: 100ms; }
}

/* Sprints & loops */
.sprints { border-top: 1px solid var(--line); }
.sprint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sprint-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); }
.sprint-card span {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
}
.sprint-card h3 { margin: 1.5rem 0 .7rem; font-size: 1.25rem; line-height: 1.15; letter-spacing: -.02em; }
.sprint-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.sprint-loops {
  margin-top: 2.4rem;
  padding: 1.3rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  align-items: baseline;
}
.sprint-loops strong {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
}
.sprint-loops ul { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin: 0; padding: 0; list-style: none; }
.sprint-loops li { color: var(--muted); font-size: .9rem; }
.sprint-closing { margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.sprint-closing p { max-width: 640px; margin: 0; color: var(--muted); }

@media (max-width: 1060px) {
  .sprint-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .sprint-grid { grid-template-columns: 1fr; }
  .sprint-closing { flex-direction: column; align-items: stretch; }
  .sprint-closing .button { width: 100%; min-height: 46px; }
}
