/* Da7_Tech. One dark theme, one blue accent, one type family per script.
   Radius rule: surfaces 24px, the two cobalt sheets 36px (28px on phones), every interactive control is a pill. */

:root {
  --bg: #07090d;
  --surface: #0d1016;
  --surface-2: #121620;
  --line: rgba(168, 186, 222, .1);
  --line-2: rgba(168, 186, 222, .18);
  --text: #edf1f7;
  --text-2: #a9b2c1;
  --text-3: #7a8392;
  --blue: #3b82f6;
  --blue-soft: #79a7ff;
  --blue-deep: #1d4ed8;
  --field: #07112b;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 68px;
  --pad: clamp(20px, 4vw, 48px);
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --arabic: 'IBM Plex Sans Arabic', 'Geist', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
html[data-lang="ar"] { font-family: var(--arabic); }
body { margin: 0; min-height: 100vh; overflow-x: clip; font-size: 17px; line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: rgba(59, 130, 246, .38); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-soft); outline-offset: 3px; border-radius: 6px; }

html[data-lang="en"] .i18n[lang="ar"],
html[data-lang="ar"] .i18n[lang="en"] { display: none; }

.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.wrap { width: 100%; max-width: 1312px; margin-inline: auto; padding-inline: var(--pad); }
.ico { width: 18px; height: 18px; flex: none; }
.ico--sm { width: 15px; height: 15px; }
[dir="rtl"] .ico--dir { transform: scaleX(-1); }

/* Film grain: fixed and non-interactive so it never repaints with scroll. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip:focus { transform: none; }
.sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 40px; pointer-events: none; }

/* ---------- controls ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--text);
  color: #07090d;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background-color .25s ease, transform .25s var(--ease);
}
.btn .ico { transition: transform .35s var(--ease); }
.btn:hover { background: #fff; }
.btn:hover .ico { transform: translateX(3px); }
[dir="rtl"] .btn:hover .ico { transform: scaleX(-1) translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--sm { height: 38px; padding: 0 18px; font-size: 14px; }

.tlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.tlink::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transform-origin: left;
  transition: opacity .25s ease;
}
.tlink:hover::after { opacity: 1; }
.tlink .ico { transition: transform .35s var(--ease); }
.tlink--arrow::after { inset-inline-end: 26px; }
.tlink:hover .ico--dir { transform: translateX(3px); }
[dir="rtl"] .tlink:hover .ico--dir { transform: scaleX(-1) translateX(3px); }

/* ---------- navigation ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 70;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.is-stuck, body.menu-open .nav {
  background: rgba(7, 9, 13, .78);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}
.nav__in { height: 100%; display: flex; align-items: center; gap: 40px; }
.word { font-weight: 600; font-size: 17px; letter-spacing: -.025em; font-family: var(--sans); }
.nav__links { display: flex; gap: 30px; margin-inline-start: auto; }
.nav__links a { position: relative; padding-block: 6px; font-size: 14px; color: var(--text-2); transition: color .2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 1px;
  background: var(--blue-soft);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.nav__links a.is-active::after { transform: scaleX(1); }
/* Splits links within this page from links to the other pages. */
.nav__sep { align-self: center; width: 1px; height: 14px; background: var(--line-2); }
.nav.is-hero .nav__sep { background: rgba(245, 248, 255, .3); }
.nav__end { display: flex; align-items: center; gap: 18px; }
.lang {
  border: 0;
  background: none;
  padding: 8px 2px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s ease;
}
.lang:hover { color: var(--text); }
.lang__to[lang="ar"] { font-family: var(--arabic); }
.lang__to[lang="en"] { font-family: var(--sans); }
html[data-lang="ar"] .lang__to[data-to="ar"],
html[data-lang="en"] .lang__to[data-to="en"] { display: none; }
.menu-btn {
  display: none;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: none;
  font-size: 14px;
  cursor: pointer;
}
.menu-btn [data-when="open"] { display: none; }
.menu-btn[aria-expanded="true"] [data-when="open"] { display: inline; }
.menu-btn[aria-expanded="true"] [data-when="closed"] { display: none; }

/* Over the cobalt hero the bar reads light-on-blue; past it, the usual dark glass. */
.nav.is-hero .nav__links a, .nav.is-hero .lang { color: rgba(245, 248, 255, .82); }
.nav.is-hero .nav__links a:hover, .nav.is-hero .lang:hover { color: #f5f8ff; }
.nav.is-hero .nav__links a::after { background: #f5f8ff; }
.nav.is-hero .nav__cta { background: #f5f8ff; color: #0f2780; }
.nav.is-hero .menu-btn { border-color: rgba(245, 248, 255, .42); color: #f5f8ff; }
.nav.is-hero :focus-visible { outline-color: #f5f8ff; }
.nav.is-hero.is-stuck { background: rgba(7, 17, 43, .82); border-bottom-color: rgba(245, 248, 255, .16); }
body.menu-open .nav.is-hero { background: rgba(7, 9, 13, .78); border-bottom-color: var(--line); }
body.menu-open .nav.is-hero .lang { color: var(--text-2); }
body.menu-open .nav.is-hero .menu-btn { border-color: var(--line-2); color: var(--text); }
body.menu-open .nav.is-hero :focus-visible { outline-color: var(--blue-soft); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding-top: calc(var(--nav-h) + 28px);
  padding-bottom: max(28px, env(safe-area-inset-bottom));
  background: var(--bg);
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu__in { min-height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.menu__nav { display: flex; flex-direction: column; }
.menu__nav a {
  padding-block: 10px;
  font-size: clamp(30px, 8.4vw, 44px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .6s var(--ease), color .2s ease;
}
html[data-lang="ar"] .menu__nav a { letter-spacing: 0; font-weight: 600; line-height: 1.45; padding-block: 6px; }
.menu.is-open .menu__nav a { opacity: 1; transform: none; }
.menu.is-open .menu__nav a:nth-child(2) { transition-delay: .04s; }
.menu.is-open .menu__nav a:nth-child(3) { transition-delay: .08s; }
.menu.is-open .menu__nav a:nth-child(4) { transition-delay: .12s; }
.menu.is-open .menu__nav a:nth-child(5) { transition-delay: .16s; }
.menu.is-open .menu__nav a:nth-child(6) { transition-delay: .2s; }
.menu.is-open .menu__nav a:nth-child(n+7) { transition-delay: .24s; }
.menu__sep { height: 1px; margin-block: 16px; background: var(--line); }
.menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--text-2); font-size: 15px; }
.menu__foot .lang { font-size: 15px; }
body.menu-open { overflow: hidden; }

/* WordPress admin bar (logged-in owner only): keep the fixed bar, the menu and anchor stops below it.
   Under 601px WordPress lets its bar scroll away, which would leave a gap above the fixed bar, so it is pinned. */
.admin-bar .nav, .admin-bar .menu { top: 32px; }
html:has(> body.admin-bar) { scroll-padding-top: calc(var(--nav-h) + 44px); }
@media screen and (max-width: 782px) {
  .admin-bar .nav, .admin-bar .menu { top: 46px; }
  html:has(> body.admin-bar) { scroll-padding-top: calc(var(--nav-h) + 58px); }
}
@media screen and (max-width: 600px) {
  .admin-bar #wpadminbar { position: fixed; }
}

/* ---------- hero ---------- */
/* The one colour field on the page: a still cobalt sheet that carries the statement and the proof. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(640px, 100svh, 1000px);
  padding-top: calc(var(--nav-h) + clamp(56px, 10vh, 96px));
  color: #f5f8ff;
  background:
    radial-gradient(110% 85% at 100% 0%, rgba(120, 160, 255, .22), rgba(120, 160, 255, 0) 58%),
    radial-gradient(80% 70% at 0% 100%, rgba(6, 16, 60, .45), rgba(6, 16, 60, 0) 70%),
    var(--field);
  border-radius: 0 0 36px 36px;
}
[dir="rtl"] .hero {
  background:
    radial-gradient(110% 85% at 0% 0%, rgba(120, 160, 255, .22), rgba(120, 160, 255, 0) 58%),
    radial-gradient(80% 70% at 100% 100%, rgba(6, 16, 60, .45), rgba(6, 16, 60, 0) 70%),
    var(--field);
}
.hero ::selection { background: rgba(245, 248, 255, .92); color: var(--field); }
.hero :focus-visible { outline-color: #f5f8ff; }
.hero__in { flex: 1; display: flex; flex-direction: column; }
.hero__title {
  max-width: 18.6em;
  font-size: clamp(40px, 1rem + 3.55vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.hero__title em { font-style: normal; }
html[data-lang="ar"] .hero__title { font-size: clamp(36px, 1rem + 3.3vw, 60px); font-weight: 600; letter-spacing: 0; line-height: 1.34; max-width: 17em; }
.hero__row {
  margin-top: clamp(32px, 4.4vw, 60px);
  margin-bottom: clamp(48px, 7vh, 88px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
}
.hero__role { grid-column: 1 / 5; max-width: 22ch; padding-top: .3em; font-size: 15px; line-height: 1.55; color: rgba(245, 248, 255, .78); }
.hero__side { grid-column: 7 / -1; display: flex; flex-direction: column; gap: 32px; }
.hero__lead { max-width: 34rem; font-size: clamp(17px, .9rem + .35vw, 19px); line-height: 1.6; color: rgba(245, 248, 255, .86); text-wrap: pretty; }
html[data-lang="ar"] .hero__lead { line-height: 1.85; }
.hero__cta { display: flex; align-items: center; gap: 28px; }
.hero .tlink { color: #f5f8ff; }
.btn--on-blue { background: #f5f8ff; color: #0f2780; }
.btn--on-blue:hover { background: #fff; }

/* Words rise out of a blur on load (the only load-time motion on the page). */
.js .hero [data-in] { opacity: 0; transform: translateY(14px); filter: blur(6px); }
.js .hero__title .w { display: inline-block; opacity: 0; transform: translateY(.32em); filter: blur(10px); }
.is-ready .hero [data-in],
.is-ready .hero__title .w { opacity: 1; transform: none; filter: none; transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease); }
.is-ready .hero__title .w { transition-delay: calc(var(--i, 0) * 42ms + 120ms); }
.is-ready .hero__role { transition-delay: 460ms; }
.is-ready .hero__lead { transition-delay: 520ms; }
.is-ready .hero__cta { transition-delay: 640ms; }

/* ---------- facts (inside the hero field) ---------- */
.facts {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 248, 255, .22);
}
.fact { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 14px; padding: 32px 32px clamp(36px, 5vh, 52px); }
.fact:first-child { padding-inline-start: 0; }
.fact + .fact { border-inline-start: 1px solid rgba(245, 248, 255, .22); }
.fact dd {
  font-size: clamp(56px, 2rem + 4.4vw, 104px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.042em;
  font-variant-numeric: tabular-nums;
}
.fact dd i { font-style: normal; font-size: .52em; vertical-align: .62em; margin-inline-start: .06em; color: rgba(245, 248, 255, .6); letter-spacing: 0; }
html[data-lang="ar"] .fact dd { font-family: var(--sans); }
html[data-lang="ar"] .fact dd .i18n[lang="ar"] { font-family: var(--arabic); font-weight: 600; letter-spacing: 0; }
.fact dt { max-width: 25ch; font-size: 15px; line-height: 1.5; color: rgba(245, 248, 255, .76); }
.is-ready .hero .fact:nth-child(1) { transition-delay: 760ms; }
.is-ready .hero .fact:nth-child(2) { transition-delay: 840ms; }
.is-ready .hero .fact:nth-child(3) { transition-delay: 920ms; }
.fact:first-child dd { text-align: start; }
[dir="rtl"] .fact dd[dir="ltr"] { text-align: right; }

/* ---------- sections ---------- */
.section { position: relative; padding-block: clamp(104px, 12vw, 184px) 0; }
.head { max-width: 50rem; }
.h2 {
  font-size: clamp(34px, 1.1rem + 2.6vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.h2 em { font-style: normal; }
html[data-lang="ar"] .h2 { font-size: clamp(30px, 1rem + 2.2vw, 48px); font-weight: 600; letter-spacing: 0; line-height: 1.4; }
.lead { margin-top: 24px; max-width: 38rem; font-size: clamp(17px, .95rem + .3vw, 19px); line-height: 1.6; color: var(--text-2); text-wrap: pretty; }
html[data-lang="ar"] .lead { line-height: 1.85; }

.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- evaluation ---------- */
.creds { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 32px; }
.creds li { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.creds .ico { width: 16px; height: 16px; color: var(--blue-soft); }

.pkg {
  margin-top: clamp(52px, 6.5vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 7vw, 112px);
  padding: clamp(28px, 4.6vw, 64px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .034), rgba(255, 255, 255, .008) 70%), var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 40px 80px -40px rgba(0, 0, 0, .6);
}
.pkg__intro { display: flex; flex-direction: column; gap: 20px; }
.pkg__title { font-size: clamp(24px, 1rem + 1vw, 32px); font-weight: 500; line-height: 1.2; letter-spacing: -.025em; text-wrap: balance; }
html[data-lang="ar"] .pkg__title { font-weight: 600; letter-spacing: 0; line-height: 1.55; }
.pkg__intro > p { color: var(--text-2); text-wrap: pretty; }
html[data-lang="ar"] .pkg__intro > p { line-height: 1.85; }
.pkg__intro > .pkg__caption { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-3); }

/* The four stages as one path: the line draws and each stage lights in order when the panel is reached. */
.flow { position: relative; display: flex; flex-direction: column; gap: 34px; padding-inline-start: 40px; }
.flow::before, .flow::after {
  content: "";
  position: absolute;
  inset-inline-start: 7px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--line-2);
}
.flow::after { background: linear-gradient(var(--blue-soft), var(--blue)); transform-origin: top; transform: scaleY(1); }
.js .flow::after { transform: scaleY(0); transition: transform 1.6s var(--ease) .1s; }
.js .flow.is-run::after { transform: scaleY(1); }
.flow__step { position: relative; }
.flow__step::before {
  content: "";
  position: absolute;
  inset-inline-start: -40px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--blue-soft);
  background: var(--bg);
  box-shadow: inset 0 0 0 3px var(--bg), inset 0 0 0 8px var(--blue-soft);
}
.js .flow__step::before { border-color: var(--line-2); box-shadow: inset 0 0 0 3px var(--bg), inset 0 0 0 8px transparent; transition: border-color .5s ease, box-shadow .5s ease; }
.js .flow__step > * { opacity: .45; transition: opacity .6s ease; }
.js .flow.is-run .flow__step::before { border-color: var(--blue-soft); box-shadow: inset 0 0 0 3px var(--bg), inset 0 0 0 8px var(--blue-soft); }
.js .flow.is-run .flow__step > * { opacity: 1; }
.js .flow.is-run .flow__step:nth-child(1)::before, .js .flow.is-run .flow__step:nth-child(1) > * { transition-delay: .15s; }
.js .flow.is-run .flow__step:nth-child(2)::before, .js .flow.is-run .flow__step:nth-child(2) > * { transition-delay: .55s; }
.js .flow.is-run .flow__step:nth-child(3)::before, .js .flow.is-run .flow__step:nth-child(3) > * { transition-delay: .95s; }
.js .flow.is-run .flow__step:nth-child(4)::before, .js .flow.is-run .flow__step:nth-child(4) > * { transition-delay: 1.35s; }
.flow__step h4 { font-size: 19px; font-weight: 500; letter-spacing: -.015em; line-height: 1.35; }
html[data-lang="ar"] .flow__step h4 { font-weight: 600; letter-spacing: 0; }
.flow__step p { margin-top: 6px; color: var(--text-2); font-size: 16px; }

/* ---------- expertise index ---------- */
.ix { margin-top: clamp(52px, 6.5vw, 88px); border-top: 1px solid var(--line); }
.ix__item { border-bottom: 1px solid var(--line); }
.ix__btn, .ix__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 27rem) 46px;
  gap: 16px clamp(24px, 4vw, 64px);
}
.ix__btn {
  width: 100%;
  align-items: center;
  padding: clamp(24px, 2.8vw, 38px) 0;
  border: 0;
  background: none;
  text-align: start;
  cursor: pointer;
}
.ix__label {
  font-size: clamp(34px, 1rem + 3.6vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--text-3);
  transition: color .35s ease;
}
html[data-lang="ar"] .ix__label { font-size: clamp(30px, 1rem + 2.8vw, 56px); font-weight: 600; letter-spacing: 0; line-height: 1.35; }
.ix__btn:hover .ix__label, .ix__item.is-open .ix__label { color: var(--text); }
.ix__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-size: 16px; font-weight: 400; color: var(--text-2); }
.ix__primary {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(59, 130, 246, .14);
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 500;
}
.ix__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-2);
  transition: transform .5s var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
}
.ix__btn:hover .ix__icon { border-color: var(--text-3); color: var(--text); }
.ix__item.is-open .ix__icon { transform: rotate(45deg); background: var(--text); border-color: var(--text); color: var(--bg); }
.ix__panel { display: grid; grid-template-rows: 1fr; }
.js .ix__panel { grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.js .ix__item.is-open .ix__panel { grid-template-rows: 1fr; }
.ix__clip { overflow: hidden; min-height: 0; }
.ix__body p {
  grid-column: 2 / 4;
  padding-bottom: clamp(28px, 3.2vw, 44px);
  font-size: clamp(18px, 1rem + .4vw, 22px);
  line-height: 1.5;
  letter-spacing: -.012em;
  color: var(--text);
  text-wrap: pretty;
}
html[data-lang="ar"] .ix__body p { letter-spacing: 0; line-height: 1.8; }
.js .ix__body p { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .6s var(--ease); }
.js .ix__item.is-open .ix__body p { opacity: 1; transform: none; transition-delay: .12s; }

/* ---------- background ---------- */
.bgx { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 7vw, 112px); align-items: start; }
.bgx__head { position: sticky; top: calc(var(--nav-h) + 48px); }
.bgx .h2 { font-size: clamp(32px, 1rem + 2.1vw, 48px); }
html[data-lang="ar"] .bgx .h2 { font-size: clamp(28px, 1rem + 1.8vw, 42px); }
.bgx__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.bgx__item { padding: 34px 0 44px; border-bottom: 1px solid var(--line); }
.bgx__item:nth-child(odd) { padding-inline-end: clamp(20px, 3vw, 40px); }
.bgx__item:nth-child(even) { padding-inline-start: clamp(20px, 3vw, 40px); border-inline-start: 1px solid var(--line); }
.bgx__item h3 { font-size: 20px; font-weight: 500; letter-spacing: -.02em; line-height: 1.3; text-wrap: balance; }
html[data-lang="ar"] .bgx__item h3 { font-weight: 600; letter-spacing: 0; }
.bgx__item p { margin-top: 12px; color: var(--text-2); text-wrap: pretty; }
html[data-lang="ar"] .bgx__item p { line-height: 1.85; }

/* ---------- experiments ---------- */
.labs { margin-top: clamp(52px, 6.5vw, 88px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.lab {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
  padding: clamp(26px, 3.2vw, 44px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.lab::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.lab h3 { margin-top: auto; padding-top: 56px; font-size: clamp(22px, 1rem + .7vw, 28px); font-weight: 500; line-height: 1.2; letter-spacing: -.025em; text-wrap: balance; }
html[data-lang="ar"] .lab h3 { font-weight: 600; letter-spacing: 0; line-height: 1.5; }
.lab p:not(.lab__tag) { max-width: 44ch; color: var(--text-2); text-wrap: pretty; }
html[data-lang="ar"] .lab p:not(.lab__tag) { line-height: 1.85; }
.lab__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(7, 9, 13, .5);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.lab__tag .ico { width: 15px; height: 15px; }
/* Public work: an open grid. Confidential work: hatched, like a restricted document. */
.lab--public { grid-column: span 7; }
.lab--public::before {
  background-image: radial-gradient(rgba(168, 186, 222, .22) 1px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(90% 80% at 100% 0%, #000 10%, transparent 75%);
  mask-image: radial-gradient(90% 80% at 100% 0%, #000 10%, transparent 75%);
}
[dir="rtl"] .lab--public::before { -webkit-mask-image: radial-gradient(90% 80% at 0% 0%, #000 10%, transparent 75%); mask-image: radial-gradient(90% 80% at 0% 0%, #000 10%, transparent 75%); }
.lab--private { grid-column: span 5; background: var(--surface-2); }
.lab--private::before {
  background-image: repeating-linear-gradient(135deg, rgba(168, 186, 222, .085) 0 1px, transparent 1px 11px);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}
.lab--open {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 64px;
  min-height: 0;
  border-color: rgba(121, 167, 255, .26);
  background: linear-gradient(110deg, rgba(29, 78, 216, .34), rgba(29, 78, 216, .08) 55%, rgba(29, 78, 216, 0) 85%), var(--surface);
}
[dir="rtl"] .lab--open { background: linear-gradient(-110deg, rgba(29, 78, 216, .34), rgba(29, 78, 216, .08) 55%, rgba(29, 78, 216, 0) 85%), var(--surface); }
.lab__copy { display: flex; flex-direction: column; gap: 14px; max-width: 40rem; }
.lab--open h3 { padding-top: 40px; }
.lab--open .lab__tag { color: var(--blue-soft); border-color: rgba(121, 167, 255, .3); }
.lab--open .tlink { flex: none; }

.notes { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 64px; padding-top: 28px; border-top: 1px solid var(--line); }
.notes dt { font-size: 14px; color: var(--text-3); }
.notes dd { margin-top: 8px; font-size: 18px; line-height: 1.5; letter-spacing: -.01em; }
html[data-lang="ar"] .notes dd { letter-spacing: 0; line-height: 1.8; }

/* ---------- reviews ---------- */
/* One quote at full measure; the people who said them sit underneath as the switcher. */
.rv { display: flex; flex-direction: column; }
.rv__stage { order: 2; display: grid; margin-top: clamp(40px, 5vw, 72px); }
.rv__tabs { order: 3; margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 24px; }
.rv__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 0 4px;
  border: 0;
  border-top: 1px solid var(--line-2);
  background: none;
  text-align: start;
  cursor: pointer;
}
.rv__tab::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 2px;
  background: var(--blue-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
[dir="rtl"] .rv__tab::before { transform-origin: right; }
.rv__tab[aria-selected="true"]::before { transform: scaleX(1); }
.rv__tab strong { font-weight: 500; font-size: 17px; color: var(--text-3); transition: color .25s ease; }
.rv__tab small { font-size: 14px; color: var(--text-3); }
.rv__tab:hover strong, .rv__tab[aria-selected="true"] strong { color: var(--text); }
.rv__tab[aria-selected="true"] small { color: var(--text-2); }
.rv__panel { grid-area: 1 / 1; }
.js .rv__panel { visibility: hidden; opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .6s var(--ease), visibility 0s linear .45s; }
.js .rv__panel.is-active { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.rv__q p {
  max-width: 30em;
  font-size: clamp(24px, 1rem + 1.7vw, 42px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.03em;
  text-wrap: pretty;
}
.rv__q .i18n[lang="en"]::before { content: "\201C"; }
.rv__q .i18n[lang="en"]::after { content: "\201D"; }
.rv__q .i18n[lang="ar"]::before { content: "\00AB"; }
.rv__q .i18n[lang="ar"]::after { content: "\00BB"; }
html[data-lang="ar"] .rv__q p { font-size: clamp(22px, 1rem + 1.2vw, 32px); letter-spacing: 0; line-height: 1.75; }
.rv__panel figcaption { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; font-size: 15px; color: var(--text-2); }
.rv__panel figcaption strong { font-weight: 500; color: var(--text); }
.js .rv__panel figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
html:not(.js) .rv__tabs { display: none; }
html:not(.js) .rv__stage { gap: 56px; }
html:not(.js) .rv__panel { grid-area: auto; }

/* ---------- contact ---------- */
.contact { padding-block: clamp(104px, 12vw, 184px) clamp(16px, 2vw, 24px); }
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 7vw, 112px) clamp(24px, 6.5vw, 104px) clamp(40px, 6vw, 96px);
  border-radius: 36px;
  background: var(--field);
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(121, 167, 255, .24), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(7, 9, 13, .35), transparent 70%);
}
[dir="rtl"] .cta::before { transform: scaleX(-1); }
.cta__title {
  font-size: clamp(56px, 1.6rem + 7vw, 136px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.06em;
}
.cta__title em { font-style: normal; color: rgba(255, 255, 255, .56); }
html[data-lang="ar"] .cta__title { font-size: clamp(48px, 1.4rem + 5.6vw, 112px); font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.cta__lead { margin-top: 28px; max-width: 40rem; font-size: clamp(17px, .95rem + .3vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .84); text-wrap: pretty; }
html[data-lang="ar"] .cta__lead { line-height: 1.85; }
.cta__mail { margin-top: clamp(48px, 7vw, 104px); }
.cta__k { font-size: 14px; color: rgba(255, 255, 255, .78); }
.cta__row { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.cta__addr {
  font-family: var(--sans);
  font-size: clamp(30px, 1rem + 3.6vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.04em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .16em;
  text-decoration-color: rgba(255, 255, 255, .32);
  transition: text-decoration-color .25s ease;
  overflow-wrap: anywhere;
}
.cta__addr:hover { text-decoration-color: #fff; }
.cta__copy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--field);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s ease;
}
.cta__copy:hover { background: #eef3ff; }
.cta__copy:active { transform: scale(.97); }
.cta__copy .ico { width: 16px; height: 16px; }
.cta__social { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta__social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  transition: background-color .25s ease, border-color .25s ease;
}
.cta__social a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); }
.cta__social .ico--sm { opacity: .7; }
.cta :focus-visible { outline-color: #fff; }

/* ---------- footer ---------- */
.foot__in { display: flex; align-items: center; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; padding-block: 28px 36px; font-size: 14px; color: var(--text-3); }
.foot__in p { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.foot__top { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); transition: color .2s ease; }
.foot__top:hover { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { gap: 22px; }
  .nav__in { gap: 28px; }
}
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__end { margin-inline-start: auto; }
  .menu-btn { display: inline-flex; align-items: center; }
  .hero { min-height: clamp(640px, 100svh, 880px); }
  .hero__row { grid-template-columns: minmax(0, 1fr); }
  .hero__role, .hero__side { grid-column: 1 / -1; }
  .hero__role { max-width: none; padding-top: 0; margin-bottom: 20px; }
  .pkg, .bgx { grid-template-columns: minmax(0, 1fr); }
  .bgx__head { position: static; }
  .ix__btn { grid-template-columns: minmax(0, 1fr) 40px; row-gap: 10px; }
  .ix__label { grid-column: 1; }
  .ix__meta { grid-column: 1; grid-row: 2; font-size: 15px; }
  .ix__icon { grid-column: 2; grid-row: 1 / 3; width: 40px; height: 40px; }
  .ix__body { grid-template-columns: minmax(0, 1fr); }
  .ix__body p { grid-column: 1; max-width: 34em; }
  .lab--public, .lab--private { grid-column: span 6; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { min-height: 0; padding-top: calc(var(--nav-h) + 44px); border-radius: 0 0 28px 28px; }
  .hero__title { margin-top: 20px; }
  .hero__row { margin-bottom: 52px; }
  .hero__cta { gap: 24px; }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .fact, .fact:first-child { padding: 24px 0; }
  .fact:last-child { padding-bottom: 36px; }
  .fact + .fact { border-inline-start: 0; border-top: 1px solid rgba(245, 248, 255, .22); }
  .fact dd { font-size: 60px; }
  .bgx__items { grid-template-columns: minmax(0, 1fr); }
  .bgx__item:nth-child(n) { padding: 26px 0 30px; border-inline-start: 0; }
  .labs { grid-template-columns: minmax(0, 1fr); }
  .lab--public, .lab--private, .lab--open { grid-column: auto; min-height: 0; }
  .lab h3 { padding-top: 40px; }
  .lab--open { flex-direction: column; align-items: flex-start; }
  .notes { grid-template-columns: minmax(0, 1fr); }
  .rv__tabs { grid-template-columns: minmax(0, 1fr); }
  .rv__tab { padding: 14px 0; }
  .cta { border-radius: 28px; }
  .cta__social a { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; transition-delay: 0s !important; animation: none !important; }
  .js .hero [data-in], .js .hero__title .w, .js [data-reveal] { opacity: 1; transform: none; filter: none; }
}
