:root {
  --ink: #10201f;
  --paper: #f5f3ed;
  --card: #fcfbf7;
  --card-strong: #ffffff;
  --muted: #5c6664;
  --line: #d8d9d2;
  --accent: #147a6c;
  --accent-bright: #42d8bd;
  --accent-soft: #dcefe9;
  --deep: #0b1817;
  --deep-2: #122422;
  --on-deep: #f2f6f2;
  --shadow: 0 24px 70px rgba(15, 36, 32, .12);
  --header-bg: rgba(245, 243, 237, .86);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, "IBM Plex Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color .35s ease, color .35s ease;
}
body.navOpen { overflow: hidden; }
body.storyOpen { overflow: hidden; }
.section, footer { content-visibility: auto; contain-intrinsic-size: 900px; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
a:focus-visible,
button:focus-visible { outline: 3px solid var(--accent-bright); outline-offset: 3px; }
img { max-width: 100%; height: auto; }
.skipLink { position: fixed; z-index: 100; top: -100px; inset-inline-start: 12px; padding: 11px 16px; border-radius: 999px; background: var(--deep); color: var(--on-deep); font-size: 11px; font-weight: 800; transition: top .2s ease; }
.skipLink:focus { top: 12px; }
main:focus { outline: none; }
.shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.pageGlow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  left: var(--pointer-x, 78%);
  top: var(--pointer-y, 15%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-bright) 13%, transparent), transparent 68%);
  translate: -50% -50%;
  pointer-events: none;
  transition: opacity .35s;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(150%);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brandMark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--deep);
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.04em;
  transition: transform .25s ease, border-radius .25s ease;
}
.brand:hover .brandMark { transform: rotate(-5deg); border-radius: 50%; }
.brandText { font-size: 13px; font-weight: 800; letter-spacing: -.02em; }
.navLinks { display: flex; align-items: center; gap: 28px; margin-inline: auto; }
.navLinks a { position: relative; color: var(--muted); font-size: 12px; font-weight: 700; }
.navLinks a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.navLinks a:hover,
.navLinks a.isActive { color: var(--ink); }
.navLinks a:hover::after,
.navLinks a.isActive::after { transform: scaleX(1); }
.navLinks a.isActive::after { height: 2px; box-shadow: 0 0 12px color-mix(in srgb, var(--accent-bright) 45%, transparent); }
.navActions { display: flex; align-items: center; gap: 8px; }
.controlButton,
.menuToggle {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.controlButton { padding: 0 13px; font-size: 11px; font-weight: 700; }
.controlButton i { font-size: 14px; }
.controlButton:hover,
.menuToggle:hover { transform: translateY(-2px); border-color: var(--accent); }
.navCta {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--on-deep);
  font-size: 11px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease;
}
.navCta:hover { transform: translateY(-2px); background: var(--accent); }
.navCta i { font-size: 10px; transition: transform .2s ease; }
.navCta:hover i { transform: translate(2px, -2px); }
.menuToggle { display: none; width: 40px; padding: 0; }
.menuToggle span { position: absolute; width: 15px; height: 1.5px; background: currentColor; transition: transform .25s, translate .25s; }
.menuToggle span:first-child { translate: 0 -3px; }
.menuToggle span:last-child { translate: 0 3px; }
body.navOpen .menuToggle span:first-child { translate: 0 0; transform: rotate(45deg); }
body.navOpen .menuToggle span:last-child { translate: 0 0; transform: rotate(-45deg); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, .76fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
  padding-block: 78px 86px;
}
.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 70%, transparent);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.status > span:first-child,
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-bright) 18%, transparent);
  animation: pulse 2.2s ease-out infinite;
}
.eyebrow { margin: 0 0 9px; color: var(--accent); font-size: 14px; font-weight: 800; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 70px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.02;
}
.hero h1 em { color: var(--muted); font-family: inherit; font-size: .69em; font-style: normal; font-weight: 500; letter-spacing: -.04em; }
.heroLead { max-width: 650px; margin: 27px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.heroActions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.button.primary { border-color: var(--deep); background: var(--deep); color: var(--on-deep); }
.button.ghost { background: var(--card); }
.button.storyButton { border-color: color-mix(in srgb, var(--accent) 56%, var(--line)); background: color-mix(in srgb, var(--accent-soft) 65%, var(--card)); cursor: pointer; }
.button.storyButton i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-size: 13px; }
.button.storyButton:hover { border-color: var(--accent); background: var(--accent-soft); }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14, 38, 34, .13); }
.button.primary:hover { border-color: var(--accent); background: var(--accent); }
.button i { transition: transform .25s ease; }
.button:hover i { transform: translate(2px, 2px); }
.socialRow { display: flex; align-items: center; gap: 8px; margin-top: 30px; }
.socialRow > span { margin-inline-end: 4px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.socialRow a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  font-size: 14px;
  transition: color .2s ease, transform .2s ease, border-color .2s ease;
}
.socialRow a:hover { color: var(--accent); transform: translateY(-3px) rotate(-4deg); border-color: var(--accent); }
.heroVisual { position: relative; width: 100%; max-width: 430px; justify-self: end; padding: 18px 18px 0 0; }
.heroVisual::before {
  content: "";
  position: absolute;
  inset: 0 0 18% 21%;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  transform: rotate(4deg);
}
.portraitCard { position: relative; overflow: hidden; border: 1px solid color-mix(in srgb, var(--line) 72%, transparent); border-radius: var(--radius-lg); background: var(--deep); box-shadow: var(--shadow); }
.portraitTopline { height: 45px; display: flex; align-items: center; justify-content: flex-end; padding: 0 16px; color: #a8b7b3; font: 600 9px/1.2 ui-monospace, Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.portraitCard img { width: 100%; height: auto; aspect-ratio: 4 / 4.5; display: block; object-fit: cover; object-position: center 21%; filter: saturate(.86) contrast(1.02); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.portraitCard:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.01); }
.portraitCaption { min-height: 75px; display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 15px 17px 17px; color: var(--on-deep); }
.portraitCaption span { color: #a8b7b3; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.portraitCaption strong { font-size: 13px; }
.floatingBadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--card-strong) 92%, transparent);
  box-shadow: 0 15px 38px rgba(15, 36, 32, .12);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 10px;
  line-height: 1.45;
}
.badgeOne { left: -45px; bottom: 63px; padding: 13px 15px; }
.badgeOne i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--accent-soft); color: var(--accent); font-size: 16px; }
.badgeOne strong { color: var(--accent); }
.badgeTwo { top: 55px; right: -16px; padding: 11px 14px; font-weight: 800; }

.metrics { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid var(--line); }
.metrics div { min-height: 115px; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-inline-end: 1px solid var(--line); }
.metrics div:first-child { padding-inline-start: 0; }
.metrics div:last-child { border-inline-end: 0; }
.metrics strong { font-size: 25px; letter-spacing: -.045em; }
.metrics span { margin-top: 3px; color: var(--muted); font-size: 10px; font-weight: 600; }

.proofStrip { position: relative; }
.proofStrip::before { content: "VERIFIED"; position: absolute; inset-inline-start: 0; top: -10px; padding: 0 9px; background: var(--paper); color: var(--accent); font: 800 8px/20px ui-monospace, Consolas, monospace; letter-spacing: .12em; }
.proofStrip strong { color: var(--ink); }
.proofStrip div:nth-child(2) strong,
.proofStrip div:nth-child(5) strong { color: var(--accent); }

.techRail { width: 100%; overflow: hidden; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--card) 72%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.techRailTrack { width: max-content; display: flex; animation: techRail 34s linear infinite; }
.techRail:hover .techRailTrack,
.techRail:focus-within .techRailTrack { animation-play-state: paused; }
.techRailGroup { display: flex; align-items: center; gap: 42px; padding: 18px 21px; }
.techRailGroup span { min-width: max-content; display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .025em; text-transform: uppercase; }
.techRailGroup i { color: var(--accent); font-size: 16px; }
@keyframes techRail { to { transform: translateX(-50%); } }

.section { padding-block: 112px; }
.sectionHeader { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .68fr); align-items: end; gap: 80px; margin-bottom: 48px; }
.sectionHeader.compact { grid-template-columns: 1fr; }
.sectionIndex { margin: 0; color: var(--accent); font: 700 10px/1.3 ui-monospace, Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.sectionHeader h2 { max-width: 720px; margin: 14px 0 0; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.12; letter-spacing: -.055em; }
.sectionHeader > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.aboutSection { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(55px, 8vw, 110px); align-items: start; }
.aboutStatement { position: sticky; top: 118px; }
.aboutStatement h2 { margin: 15px 0 24px; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.12; letter-spacing: -.055em; }
.aboutStatement > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.principlesGrid { display: grid; border-top: 1px solid var(--line); }
.principlesGrid article { position: relative; min-height: 165px; display: grid; align-content: center; padding-block: 30px; padding-inline: 70px 18px; border-bottom: 1px solid var(--line); transition: padding-inline-start .3s ease, background-color .3s ease; }
.principlesGrid article:hover { padding-inline-start: 82px; background: color-mix(in srgb, var(--accent-soft) 28%, transparent); }
.principlesGrid article > span { position: absolute; top: 35px; inset-inline-start: 18px; color: var(--accent); font: 800 10px/1 ui-monospace, Consolas, monospace; }
.principlesGrid h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.035em; }
.principlesGrid p { max-width: 470px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.projectsGrid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.projectFilters { display: flex; flex-wrap: wrap; gap: 8px; margin: -18px 0 28px; }
.projectFilters button { min-height: 39px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 750; transition: transform .22s ease, border-color .22s ease, color .22s ease, background-color .22s ease; }
.projectFilters button:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.projectFilters button.isActive { border-color: var(--deep); background: var(--deep); color: var(--on-deep); box-shadow: 0 9px 24px rgba(9,31,28,.12); }
.projectCard {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s, border-color .25s;
}
.featuredProject { grid-column: span 6; }
.compactProject { grid-column: span 4; }
.featuredProject:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); }
.featuredProject:first-child .projectMedia { height: 100%; min-height: 575px; }
.featuredProject:first-child .projectBody { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 4vw, 52px); }
.compactProject .projectMedia { height: 215px; }
.compactProject .projectFeatures { display: none; }
.compactProject .projectTags span:nth-child(n+5) { display: none; }
.projectCard[hidden] { display: none !important; }
.projectsGrid.isFiltered .projectCard:not([hidden]) { grid-column: span 6; display: block; }
.projectsGrid.isFiltered .featuredProject:first-child .projectMedia { height: 275px; min-height: 0; aspect-ratio: auto; }
.projectsGrid.isFiltered .featuredProject:first-child .projectBody { display: block; padding: 25px; }
.projectCard:hover,
.projectCard:focus-within { transform: translateY(-10px); border-color: color-mix(in srgb, var(--accent) 68%, var(--line)); box-shadow: 0 32px 78px rgba(9,37,33,.18); }
.projectMedia { position: relative; height: 275px; display: block; overflow: hidden; background: var(--accent-soft); }
.projectMedia::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(5, 18, 16, .28)); pointer-events: none; }
.projectMedia img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s; }
.projectCard:hover .projectMedia img,
.projectCard:focus-within .projectMedia img { transform: translate(var(--media-x, 0), var(--media-y, 0)) scale(1.075); filter: saturate(1.12) contrast(1.02); }
.projectMediaIcon { position: absolute; right: 15px; bottom: 15px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: #10201f; transition: transform .3s; }
.projectCard:hover .projectMediaIcon,
.projectCard:focus-within .projectMediaIcon { transform: rotate(45deg) scale(1.08); }
.projectBody { padding: 25px; }
.projectTopline { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.projectType { margin: 0; color: var(--accent); font: 700 9px/1.35 ui-monospace, Consolas, monospace; letter-spacing: .05em; text-transform: uppercase; }
.projectNumber { color: var(--muted); font: 10px/1 ui-monospace, Consolas, monospace; }
.projectBody h3 { margin: 0 0 9px; font-size: 23px; letter-spacing: -.04em; }
.projectDescription { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.projectOutcomes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; margin-top: 18px; }
.projectOutcomes span { min-width: 0; padding: 11px 10px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); font-size: 8px; line-height: 1.35; }
.projectOutcomes b { display: block; margin-bottom: 4px; color: var(--accent); font-size: 13px; letter-spacing: -.025em; }
.projectFeatures { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 18px; margin: 18px 0 0; padding: 0; list-style: none; }
.projectFeatures li { position: relative; padding-inline-start: 14px; color: color-mix(in srgb, var(--ink) 78%, var(--muted)); font-size: 10px; }
.projectFeatures li::before { content: ""; position: absolute; top: .62em; inset-inline-start: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-bright); }
.projectEvidence { display: flex; align-items: center; gap: 7px; margin: 16px 0 0; color: var(--accent); font-size: 9px; font-weight: 750; }
.projectEvidence i { color: var(--accent-bright); font-size: 12px; }
.projectTags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 19px; }
.projectTags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font: 600 8px/1.2 ui-monospace, Consolas, monospace; }
.projectStatus { display: flex; align-items: center; gap: 7px; margin: 19px 0 0; color: var(--muted); font-size: 9px; }
.projectStatus span { width: 6px; height: 6px; border-radius: 50%; background: #dc9d32; }
.projectStatus.live { color: var(--accent); }
.projectStatus.live span { background: var(--accent-bright); }
/* A click-through export of a Laravel app is not a running deployment. */
.projectStatus.walkthrough span { background: #b07d1f; }
.projectActions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; padding-top: 17px; border-top: 1px solid var(--line); transition: transform .3s ease; }
.projectCard:hover .projectActions,
.projectCard:focus-within .projectActions { transform: translateY(-2px); }
.projectActions a,
.projectActions .disabledAction { min-height: 37px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 800; transition: transform .2s, border-color .2s, background-color .2s, color .2s; }
.projectActions a:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.projectActions a.liveAction { border-color: var(--deep); background: var(--deep); color: var(--on-deep); }
.projectActions a.liveAction:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.disabledAction { opacity: .55; cursor: not-allowed; }

.expertiseBand { position: relative; overflow: hidden; background: var(--deep); color: var(--on-deep); }
.expertiseBand::before { content: ""; position: absolute; width: 580px; height: 580px; top: -290px; right: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(66,216,189,.18), transparent 67%); }
.sectionHeader.light .sectionIndex { color: var(--accent-bright); }
.sectionHeader.light > p { color: #9fb0ac; }
.expertiseGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.expertiseGrid article { position: relative; min-height: 250px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.035); transition: transform .3s, border-color .3s, background-color .3s; }
.expertiseGrid article:hover { transform: translateY(-5px); border-color: rgba(66,216,189,.55); background: rgba(255,255,255,.065); }
.expertiseGrid article > i { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 13px; background: rgba(66,216,189,.12); color: var(--accent-bright); font-size: 18px; }
.expertiseGrid article > span { position: absolute; top: 30px; inset-inline-end: 30px; color: #758985; font: 9px/1 ui-monospace, Consolas, monospace; }
.expertiseGrid h3 { margin: 0 0 9px; font-size: 20px; }
.expertiseGrid p { max-width: 470px; margin: 0; color: #9fb0ac; font-size: 12px; line-height: 1.75; }

.timeline { border-top: 1px solid var(--line); }
.timeline article { position: relative; display: grid; grid-template-columns: 160px minmax(0, 1fr) 44px; gap: 35px; align-items: start; padding: 31px 0; border-bottom: 1px solid var(--line); }
.timeline time { color: var(--muted); font: 10px/1.5 ui-monospace, Consolas, monospace; }
.timelineType { margin: 0; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.timeline h3 { margin: 7px 0 8px; font-size: 21px; letter-spacing: -.035em; }
.timeline article p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.timeline article > i { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); }

.proofBand { position: relative; overflow: hidden; background: var(--deep); color: var(--on-deep); }
.proofBand::before { content: ""; position: absolute; width: 620px; height: 620px; bottom: -390px; left: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(66,216,189,.16), transparent 68%); }
.proofBand .section { position: relative; }
.proofGrid { display: grid; grid-template-columns: 1.18fr .91fr .91fr; gap: 12px; }
.proofGrid article { min-width: 0; min-height: 330px; padding: 29px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.035); transition: transform .3s, border-color .3s, background-color .3s; }
.proofGrid article:hover { transform: translateY(-5px); border-color: rgba(66,216,189,.5); background: rgba(255,255,255,.06); }
.proofIcon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 31px; border-radius: 13px; background: rgba(66,216,189,.12); color: var(--accent-bright); font-size: 18px; }
.proofEyebrow { margin: 0 0 12px; color: var(--accent-bright); font: 700 9px/1.4 ui-monospace, Consolas, monospace; letter-spacing: .055em; text-transform: uppercase; }
.recommendationCard blockquote { margin: 0; font-size: clamp(20px, 2.1vw, 28px); font-weight: 650; line-height: 1.45; letter-spacing: -.035em; }
.recommendationAuthor { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.recommendationAuthor > span { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--accent-bright); color: #09211d; font-size: 10px; font-weight: 900; }
.recommendationAuthor div { min-width: 0; display: grid; gap: 4px; }
.recommendationAuthor strong { font-size: 11px; }
.recommendationAuthor small { color: #9fb0ac; font-size: 9px; line-height: 1.5; }
.verificationCard h3, .availabilityCard h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.verificationCard > p:last-child { margin: 24px 0 0; color: #9fb0ac; font-size: 10px; line-height: 1.7; }
.testMatrix { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; margin-top: 24px; }
.testMatrix span { min-width: 0; padding: 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; color: #aab8b5; font-size: 9px; }
.testMatrix b { display: block; margin-bottom: 3px; color: var(--on-deep); font-size: 12px; }
.availabilityCard ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.availabilityCard li { display: flex; align-items: center; gap: 9px; color: #b3c1be; font-size: 10px; }
.availabilityCard li i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(66,216,189,.12); color: var(--accent-bright); }

.credibilityRail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.credibilityRail article { min-width: 0; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.035); transition: transform .28s ease, border-color .28s ease, background-color .28s ease; }
.credibilityRail article:hover { transform: translateY(-4px); border-color: rgba(66,216,189,.45); background: rgba(66,216,189,.07); }
.credibilityRail i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(66,216,189,.12); color: var(--accent-bright); font-size: 16px; }
.credibilityRail div { min-width: 0; display: grid; gap: 3px; }
.credibilityRail strong { font-size: 10px; }
.credibilityRail span { color: #9fb0ac; font-size: 8px; line-height: 1.55; }

.contactSection { display: grid; grid-template-columns: 1.06fr .94fr; gap: 90px; align-items: center; margin-block: 96px 95px; padding: 58px; border-radius: var(--radius-lg); background: var(--deep); color: var(--on-deep); }
.contactCopy h2 { max-width: 580px; margin: 15px 0 16px; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; letter-spacing: -.055em; }
.contactCopy > p:not(.sectionIndex) { max-width: 560px; margin: 0; color: #9fb0ac; font-size: 13px; }
.hireFacts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.hireFacts span { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(255,255,255,.04); color: #b6c4c1; font-size: 9px; }
.hireFacts i { color: var(--accent-bright); }
.hireFacts b { font-weight: 700; }
.hireActions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hireActions .button { min-height: 44px; }
.hirePrimary { border-color: var(--accent-bright); background: var(--accent-bright); color: #09211d; }
.hirePrimary:hover { background: #72e6cf; }
.hireEmail { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 0 6px; color: #d7e4e1; font-size: 11px; font-weight: 750; letter-spacing: -.015em; transition: color .22s ease, transform .22s ease; }
.hireEmail i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: var(--accent-bright); transition: border-color .22s ease, background-color .22s ease, transform .22s ease; }
.hireEmail:hover { color: var(--accent-bright); transform: translateY(-2px); }
.hireEmail:hover i { border-color: var(--accent-bright); background: rgba(66,216,189,.1); transform: rotate(-7deg); }
.contactLinks { display: grid; gap: 8px; }
.contactLinks a { min-height: 54px; display: grid; grid-template-columns: 25px 1fr 18px; align-items: center; gap: 10px; padding: 0 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.04); font-size: 11px; transition: transform .25s, border-color .25s, background-color .25s; }
.contactLinks a:hover { transform: translateX(5px); border-color: rgba(66,216,189,.55); background: rgba(66,216,189,.08); }
[dir="rtl"] .contactLinks a:hover { transform: translateX(-5px); }
.contactLinks a > i:first-child { color: var(--accent-bright); font-size: 16px; }
.contactLinks a > i:last-child { color: #72827f; font-size: 9px; }
.contactForm { display: grid; gap: 15px; padding: 23px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); box-shadow: 0 22px 70px rgba(0,0,0,.14); }
.formHeading { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; margin-bottom: 3px; }
.formHeading > i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(66,216,189,.13); color: var(--accent-bright); font-size: 17px; }
.formHeading div { display: grid; gap: 2px; }
.formHeading strong { font-size: 12px; }
.formHeading span { color: #91a49f; font-size: 9px; }
.formRow { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.contactForm label { display: grid; gap: 6px; color: #b9c7c4; font-size: 9px; font-weight: 700; }
.contactForm input,
.contactForm textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; outline: 0; background: rgba(3,16,14,.5); color: var(--on-deep); font: 500 11px/1.55 Manrope, "IBM Plex Sans Arabic", Arial, sans-serif; transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease; }
.contactForm input { height: 43px; padding: 0 12px; }
.contactForm textarea { min-height: 96px; resize: vertical; padding: 11px 12px; }
.contactForm input::placeholder,
.contactForm textarea::placeholder { color: #71827e; }
.contactForm input:focus,
.contactForm textarea:focus { border-color: var(--accent-bright); background: rgba(6,25,22,.78); box-shadow: 0 0 0 3px rgba(66,216,189,.12); }
.formFooter { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.formFooter p { min-height: 18px; margin: 0; color: #91a49f; font-size: 9px; line-height: 1.5; }
.formFooter p.formError { color: #ffaaa2; }
.formFooter p.formSuccess { flex: 1 0 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--accent-bright); }
.formFooter p.formSuccess > span { flex: 1 0 100%; }
.formFooter p.formSuccess a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border: 1px solid color-mix(in srgb, var(--accent-bright) 42%, transparent); border-radius: 999px; font-size: 10px; font-weight: 800; transition: background-color .2s ease, border-color .2s ease; }
.formFooter p.formSuccess a.primaryAction { border-color: var(--accent-bright); background: var(--accent-bright); color: #06110f; }
.formFooter p.formSuccess a:hover { border-color: var(--accent-bright); background: color-mix(in srgb, var(--accent-bright) 16%, transparent); }
.formConnect { min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.formSocials { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
.formSocials a { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(255,255,255,.035); color: #d8e4e1; font-size: 13px; transition: color .2s ease, transform .2s ease, border-color .2s ease, background-color .2s ease; }
.formSocials a:hover { color: var(--accent-bright); transform: translateY(-3px) rotate(-5deg); border-color: var(--accent-bright); background: rgba(66,216,189,.1); }
.contactSubmit { min-height: 43px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; border: 0; border-radius: 999px; background: var(--accent-bright); color: #09211d; cursor: pointer; font-size: 9px; font-weight: 850; transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease; }
.contactSubmit:hover { transform: translateY(-3px); background: #72e6cf; box-shadow: 0 12px 25px rgba(66,216,189,.18); }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.footerRow { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* The name set large enough to read as a mark rather than a label. It is one
   long unbreakable word pair, so the footer clips it rather than letting it
   push the page sideways. */
.footerWordmark {
  overflow: hidden;
  margin: 26px 0 0;
  color: var(--line);
  font-size: clamp(38px, 10.4vw, 132px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}
[dir="rtl"] .footerWordmark { letter-spacing: 0; }
footer a { font-weight: 800; transition: color .2s; }
footer a:hover { color: var(--accent); }
.footerLinks { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }

.storyDialog { width: min(1120px, calc(100% - 34px)); max-height: calc(100dvh - 34px); padding: 0; overflow: auto; border: 1px solid color-mix(in srgb, var(--accent) 45%, #2b403c); border-radius: 24px; background: #061613; color: #eff8f4; box-shadow: 0 38px 120px rgba(0,0,0,.55); }
.storyDialog::backdrop { background: rgba(1,10,9,.82); backdrop-filter: blur(10px); }
.storyDialogTop { display: flex; align-items: start; justify-content: space-between; gap: 24px; padding: 24px 26px 20px; }
.storyDialogTop p { margin: 0 0 5px; color: var(--accent-bright); font: 800 8px/1.3 ui-monospace, Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
.storyDialogTop h2 { margin: 0; font-size: clamp(21px, 3vw, 34px); letter-spacing: -.045em; }
.storyDialogTop button { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(255,255,255,.05); color: #fff; cursor: pointer; transition: transform .2s, border-color .2s, color .2s; }
.storyDialogTop button:hover { transform: rotate(7deg); border-color: var(--accent-bright); color: var(--accent-bright); }
.storyDialog video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #020908; }
.storyMeta { display: flex; flex-wrap: wrap; gap: 8px; padding: 17px 24px 22px; }
.storyMeta span { min-height: 34px; display: inline-flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #aebfba; font-size: 9px; }
.storyMeta i { color: var(--accent-bright); font-size: 13px; }
.storyMeta b { font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s cubic-bezier(.2,.7,.2,1); }
[data-reveal].isVisible { opacity: 1; transform: none; }
.projectCard[data-reveal]:nth-child(2n) { transition-delay: .08s; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(66,216,189,.32); } 50% { box-shadow: 0 0 0 7px rgba(66,216,189,0); } }

[dir="rtl"] body { text-align: right; font-family: "IBM Plex Sans Arabic", Manrope, Arial, sans-serif; }
[dir="rtl"] .hero h1 { letter-spacing: -.035em; }
[dir="rtl"] .hero h1 em { letter-spacing: -.02em; }
[dir="rtl"] .projectMediaIcon { right: auto; left: 15px; }
[dir="rtl"] .badgeOne { left: auto; right: -45px; }
[dir="rtl"] .badgeTwo { right: auto; left: -16px; }
[dir="rtl"] .heroVisual { padding: 18px 0 0 18px; }

@media (max-width: 980px) {
  .brandText { display: none; }
  .navLinks { gap: 20px; }
  .hero { grid-template-columns: 1fr .78fr; gap: 55px; }
  .hero h1 { font-size: clamp(40px, 5.8vw, 58px); }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .metrics div:nth-child(3) { border-inline-end: 0; }
  .metrics div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .aboutSection { grid-template-columns: 1fr; }
  .aboutStatement { position: static; }
  .compactProject { grid-column: span 6; }
  .featuredProject:first-child { grid-template-columns: 1fr 1fr; }
  .featuredProject:first-child .projectMedia { min-height: 520px; }
  .badgeOne { left: -22px; }
  [dir="rtl"] .badgeOne { right: -22px; }
  .sectionHeader { gap: 45px; }
  .expertiseGrid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proofGrid { grid-template-columns: 1.1fr .9fr; }
  .availabilityCard { grid-column: 1 / -1; min-height: auto !important; }
  .availabilityCard ul { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contactSection { gap: 45px; padding: 46px; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px, 1160px); }
  .nav { height: 68px; }
  .navLinks {
    position: fixed;
    inset: 68px 0 auto;
    z-index: 49;
    display: grid;
    gap: 0;
    padding: 20px 16px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }
  .navLinks a { padding: 14px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .navLinks a::after { display: none; }
  body.navOpen .navLinks { opacity: 1; visibility: visible; transform: none; }
  .menuToggle { position: relative; display: inline-flex; }
  .navCta { display: none; }
  .hero { grid-template-columns: 1fr; gap: 55px; padding-block: 65px 76px; }
  .heroCopy { max-width: 680px; }
  .heroVisual { max-width: 450px; justify-self: center; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics div { border-bottom: 1px solid var(--line); }
  .metrics div:nth-child(2n) { border-inline-end: 0; }
  .metrics div:nth-last-child(-n+2) { border-bottom: 0; }
  .metrics div:nth-child(3) { border-inline-end: 1px solid var(--line); }
  .sectionHeader { grid-template-columns: 1fr; gap: 20px; }
  .projectsGrid { grid-template-columns: 1fr; }
  .featuredProject,
  .compactProject,
  .featuredProject:first-child { grid-column: auto; display: block; }
  .featuredProject:first-child .projectMedia { min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .projectsGrid.isFiltered .featuredProject:first-child .projectMedia { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .compactProject .projectMedia { height: auto; aspect-ratio: 16 / 9; }
  .compactProject .projectFeatures { display: grid; }
  .proofGrid { grid-template-columns: 1fr; }
  .credibilityRail { grid-template-columns: 1fr; }
  .availabilityCard { grid-column: auto; }
  .projectMedia { height: auto; aspect-ratio: 16 / 9; }
  .contactSection { grid-template-columns: 1fr; }
  .contactForm { max-width: 680px; width: 100%; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1160px); }
  .controlButton { width: 38px; height: 38px; padding: 0; }
  .controlButton span { display: none; }
  .brandMark { width: 37px; height: 37px; }
  .hero { padding-block: 48px 62px; }
  .status { margin-bottom: 25px; }
  .hero h1 { font-size: 38px; line-height: 1.08; }
  .heroLead { margin-top: 20px; font-size: 14px; }
  .heroActions .button { flex: 1 1 100%; }
  .socialRow > span { display: none; }
  .heroVisual { padding: 10px 10px 0 0; }
  [dir="rtl"] .heroVisual { padding: 10px 0 0 10px; }
  .portraitTopline { height: 40px; }
  .portraitCaption { min-height: 67px; }
  .badgeOne { left: -4px; bottom: 54px; }
  [dir="rtl"] .badgeOne { right: -4px; }
  .badgeTwo { top: 40px; right: -4px; }
  [dir="rtl"] .badgeTwo { left: -4px; }
  .metrics div { min-height: 94px; padding: 17px 14px; }
  .metrics strong { font-size: 21px; }
  .metrics span { font-size: 9px; }
  .section { padding-block: 78px; }
  .sectionHeader { margin-bottom: 35px; }
  .sectionHeader h2 { font-size: 35px; }
  .projectBody { padding: 20px; }
  .projectBody h3 { font-size: 21px; }
  .projectFilters { margin-top: -12px; }
  .projectFilters button { flex: 1 1 calc(50% - 4px); padding-inline: 10px; }
  .projectFeatures { grid-template-columns: 1fr; }
  .projectOutcomes { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .projectOutcomes span { padding: 9px 7px; }
  .projectActions a, .projectActions .disabledAction { flex: 1 1 calc(50% - 4px); }
  .expertiseGrid { grid-template-columns: 1fr; }
  .expertiseGrid article { min-height: 220px; padding: 25px; }
  .proofGrid article { min-height: auto; padding: 24px; }
  .recommendationCard blockquote { font-size: 20px; }
  .availabilityCard ul { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 1fr 40px; gap: 13px 18px; }
  .timeline time { grid-column: 1; }
  .timeline article > div { grid-column: 1; }
  .timeline article > i { grid-column: 2; grid-row: 1 / span 2; }
  .contactSection { width: calc(100% - 24px); gap: 35px; margin-block: 64px 55px; padding: 34px 22px; border-radius: 22px; }
  .contactCopy h2 { font-size: 34px; }
  .hireActions .button { flex: 1 1 100%; }
  .hireEmail { width: 100%; justify-content: center; }
  .contactForm { padding: 18px; }
  .formRow { grid-template-columns: 1fr; }
  .formFooter { align-items: stretch; flex-direction: column; }
  .formConnect { flex-wrap: wrap; justify-content: center; text-align: center; }
  .formConnect p { width: 100%; }
  .formFooter p.formSuccess { justify-content: center; }
  .formFooter p.formSuccess a { padding: 11px 15px; font-size: 11px; }
  .contactSubmit { width: 100%; justify-content: center; }
  .storyDialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 18px; }
  .storyDialogTop { padding: 18px 18px 15px; }
  .storyMeta { padding: 13px 16px 17px; }
  footer { flex-wrap: wrap; justify-content: center; padding-block: 24px; text-align: center; }
  footer a { min-height: 44px; display: inline-flex; align-items: center; }
  footer span:nth-child(2) { display: none; }
}

@media (hover: none) { .pageGlow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .techRailTrack { width: 100%; animation: none; overflow-x: auto; }
  .techRailGroup[aria-hidden="true"] { display: none; }
}

/* Announced to screen readers, never painted. */
.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Icons are an inline SVG sprite now, not a webfont from a CDN. The font sized
   glyphs at 1em and sat on the text baseline; these have to do the same or every
   button and pill that pairs an icon with a label shifts. */
.bi {
  width: 1em;
  height: 1em;
  flex: none;
  fill: currentColor;
  vertical-align: -0.125em;
}
.iconSprite { display: none; }

/* Certifications — the badge is decoration; the Credly link is the part a
   reader can actually check, so it gets the affordance. */
.certifications { margin-block-start: 46px; }
.certificationsTitle { margin: 6px 0 22px; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
.certificationsRail { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.certificationCard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  /* the rail sits inside the dark proof band, which sets a light text colour on
     everything below it — on a light card that leaves the title invisible */
  color: var(--ink);
}
.certificationCard img { width: 72px; height: 72px; flex: none; object-fit: contain; }
.certificationCard h3 { margin: 2px 0 6px; font-size: 15px; line-height: 1.35; }
.certificationIssuer { margin: 0; color: var(--muted); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.certificationFocus { margin: 0 0 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.certificationVerify { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
.certificationVerify:hover { text-decoration: underline; }
