:root {
  --ink: #071b2b;
  --ink-soft: #0d2a3e;
  --ink-card: #102f44;
  --paper: #f7f7f3;
  --mist: #eef2f1;
  --white: #ffffff;
  --gold: #d8b36a;
  --gold-bright: #eccd8d;
  --teal: #0ea596;
  --text: #102635;
  --muted: #61727d;
  --line: rgba(13, 42, 62, 0.14);
  --dark-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 26px 70px rgba(7, 27, 43, 0.13);
  --radius: 22px;
  --radius-sm: 14px;
  --shell: 1220px;
  --header-height: 86px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-inline-start: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 0 0 10px 10px;
  font-weight: 750;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-light {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 27, 43, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(130%);
  transition: background .3s ease, border-color .3s ease, height .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 27, 43, .94);
  border-bottom-color: var(--dark-line);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(216, 179, 106, .62);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-mark.small {
  width: 36px;
  height: 36px;
  font-size: 11px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .015em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .57);
  font-size: 11px;
  letter-spacing: .04em;
}

.primary-nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 650;
  transition: color .22s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto auto -9px 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}

html[dir="rtl"] .primary-nav a::after {
  inset-inline: auto 0;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.lang-btn {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  color: rgba(255, 255, 255, .58);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: color .2s ease, background .2s ease;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  color: var(--ink);
  background: var(--gold-bright);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 180px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -260px;
  inset-inline-end: -200px;
  background: radial-gradient(circle, rgba(14, 165, 150, .22) 0, rgba(14, 165, 150, .06) 42%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: 95px;
  inset-inline-start: -140px;
  border: 1px solid rgba(216, 179, 106, .14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
  min-height: 560px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5.5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -.047em;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .credentials-main > h2,
html[dir="rtl"] .contact-card h2 {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

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

.button:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .button:hover svg {
  transform: translateX(-4px) rotate(180deg);
}

html[dir="rtl"] .button svg {
  transform: rotate(180deg);
}

.button-gold {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-gold:hover {
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .22);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .38);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .53);
  font-size: 13px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #42d9b6;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(66, 217, 182, .46);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(66, 217, 182, .42); }
  70% { box-shadow: 0 0 0 9px rgba(66, 217, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(66, 217, 182, 0); }
}

.growth-console {
  position: relative;
  min-height: 510px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(14, 43, 61, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  box-shadow: 0 32px 85px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.growth-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.console-top,
.console-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-top {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.console-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.console-status i {
  width: 6px;
  height: 6px;
  background: #42d9b6;
  border-radius: 50%;
}

.orbit {
  position: relative;
  height: 365px;
  margin-top: 4px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 210px;
  height: 210px;
}

.ring-two {
  width: 310px;
  height: 310px;
  border-style: dashed;
  animation: rotate 35s linear infinite;
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122px;
  height: 122px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--ink);
  background: var(--gold-bright);
  border: 10px solid rgba(236, 205, 141, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(236, 205, 141, .35), 0 18px 40px rgba(0, 0, 0, .25);
}

.orbit-center span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.orbit-center small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  min-width: 82px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .8);
  background: rgba(7, 27, 43, .84);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.node-strategy { top: 28px; left: 50%; transform: translateX(-50%); }
.node-commerce { top: 50%; right: 3px; transform: translateY(-50%); }
.node-data { bottom: 27px; left: 50%; transform: translateX(-50%); }
.node-ai { top: 50%; left: 22px; transform: translateY(-50%); }

.console-bottom {
  gap: 10px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.console-bottom div {
  display: grid;
  gap: 1px;
}

.console-bottom div:last-child {
  text-align: end;
}

.console-bottom strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.console-bottom span {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.metric-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.metric {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px clamp(18px, 3vw, 38px);
  border-inline-start: 1px solid rgba(255, 255, 255, .14);
}

.metric:first-child {
  border-inline-start: 0;
}

.metric strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.metric span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .57);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.profile,
.experience,
.portfolio,
.collaborations,
.credentials,
.contact {
  padding-block: clamp(90px, 10vw, 145px);
}

.section-heading {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 35px;
  margin-bottom: 65px;
}

.section-index,
.mini-label {
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-heading.light .section-index {
  color: var(--gold-bright);
}

.section-heading h2,
.credentials-main > h2,
.contact-card h2 {
  max-width: 860px;
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.042em;
}

.section-heading > div > p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.light > div > p {
  color: rgba(255, 255, 255, .59);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  position: relative;
  min-height: 430px;
  padding: 34px clamp(25px, 3vw, 40px) 38px;
  border-inline-start: 1px solid var(--line);
  transition: background .28s ease, transform .28s var(--ease);
}

.capability:first-child {
  border-inline-start: 0;
}

.capability:hover {
  z-index: 1;
  background: var(--white);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.capability-number {
  color: #84949d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.capability-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 55px 0 26px;
  color: var(--teal);
  background: rgba(14, 165, 150, .08);
  border: 1px solid rgba(14, 165, 150, .18);
  border-radius: 50%;
}

.capability-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability h3 {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

html[dir="rtl"] .capability h3,
html[dir="rtl"] .timeline-body h3,
html[dir="rtl"] .project-content h3,
html[dir="rtl"] .education-card h3,
html[dir="rtl"] .skill-panel h3 {
  font-family: Tahoma, Arial, sans-serif;
}

.capability p {
  color: var(--muted);
  font-size: 15px;
}

.capability ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability li {
  position: relative;
  margin: 8px 0;
  padding-inline-start: 16px;
  color: #384f5e;
  font-size: 13px;
  font-weight: 650;
}

.capability li::before {
  content: "";
  position: absolute;
  top: .72em;
  inset-inline-start: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline {
  position: relative;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 35px;
  padding: 43px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50px;
  inset-inline-start: 176px;
  width: 17px;
  height: 17px;
  background: var(--mist);
  border: 4px solid var(--teal);
  border-radius: 50%;
  transform: translateX(-50%);
}

html[dir="rtl"] .timeline-item::before {
  transform: translateX(50%);
}

.timeline-date {
  padding-top: 5px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.timeline-body {
  padding-inline-start: 26px;
}

.timeline-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.timeline-body h3 {
  margin-bottom: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
}

.timeline-body > p,
.timeline-title-row p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.timeline-body ul {
  max-width: 860px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-body li {
  position: relative;
  margin: 9px 0;
  padding-inline-start: 20px;
  color: #405762;
}

.timeline-body li::before {
  content: "—";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
}

.current-badge {
  flex: 0 0 auto;
  margin-top: 4px;
  padding: 6px 10px;
  color: #006c61;
  background: rgba(14, 165, 150, .1);
  border: 1px solid rgba(14, 165, 150, .2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 13px 40px rgba(7, 27, 43, .06);
  transition: transform .34s var(--ease), box-shadow .34s ease, border-color .34s ease;
}

.project-card:hover {
  transform: translateY(-9px);
  border-color: rgba(14, 165, 150, .34);
  box-shadow: var(--shadow);
}

.project-visual {
  position: relative;
  height: 230px;
  display: grid;
  place-content: center;
  padding: 30px;
  overflow: hidden;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .35;
}

.project-visual::before {
  width: 190px;
  height: 190px;
  top: -80px;
  inset-inline-end: -60px;
  border: 1px solid currentColor;
}

.project-visual::after {
  width: 110px;
  height: 110px;
  bottom: -60px;
  inset-inline-start: -25px;
  background: currentColor;
  filter: blur(1px);
  opacity: .08;
}

.project-upd .project-visual {
  color: #007b70;
  background: linear-gradient(145deg, #d9fbf7, #f7ffff 74%);
}

.project-nutra .project-visual {
  color: #82efaa;
  background: linear-gradient(145deg, #092d27, #145947);
}

.project-tijara .project-visual {
  color: #7a4100;
  background: linear-gradient(145deg, #ffe4ad, #fff5dd);
}

.project-window {
  position: absolute;
  top: 18px;
  inset-inline-start: 20px;
  display: flex;
  gap: 5px;
}

.project-window span {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: .35;
}

.project-wordmark {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -.055em;
  text-align: center;
}

.project-upd .project-wordmark span {
  font-weight: 450;
}

.project-nutra .project-wordmark {
  color: #f3fff6;
  letter-spacing: .11em;
}

.project-tijara .project-wordmark {
  letter-spacing: .16em;
}

.project-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-start: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
}

.project-visual > p {
  position: relative;
  z-index: 2;
  margin: 9px 0 0;
  color: currentColor;
  text-align: center;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .03em;
  opacity: .68;
}

.project-nutra .project-visual > p {
  color: rgba(255, 255, 255, .63);
}

.project-content {
  flex: 1;
  padding: 28px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.project-meta svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

.project-card:hover .project-meta svg {
  transform: translate(3px, -3px);
}

html[dir="rtl"] .project-card:hover .project-meta svg {
  transform: translate(-3px, -3px);
}

.project-content h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.project-content > p {
  min-height: 110px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 9px;
  color: #48606d;
  background: var(--mist);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.collaborations {
  position: relative;
  overflow: hidden;
}

.collaborations::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  bottom: -360px;
  inset-inline-end: -120px;
  border: 1px solid rgba(216, 179, 106, .13);
  border-radius: 50%;
}

.collaborations .shell {
  position: relative;
  z-index: 1;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.logo-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 145px;
  padding: 14px 24px 14px 14px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-sm);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

html[dir="rtl"] .logo-card {
  padding: 14px 14px 14px 24px;
}

.logo-card:not(.no-link):hover {
  background: rgba(255, 255, 255, .085);
  border-color: rgba(216, 179, 106, .4);
  transform: translateY(-4px);
}

.logo-box {
  height: 106px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 11px;
}

.logo-white {
  color: var(--ink);
  background: var(--white);
}

.logo-box img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.logo-seal img {
  max-height: 78px;
}

.logo-fallback {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-align: center;
}

.logo-fallback.pierre {
  color: #263f80;
  font-size: 13px;
  letter-spacing: .03em;
}

.logo-card > div:last-child {
  display: grid;
  gap: 6px;
}

.logo-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.logo-card > div:last-child span {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rbs-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.rbs-mark span {
  color: #c8992f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
}

.rbs-mark small {
  margin-top: 6px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .34em;
}

.pharma-mark {
  grid-template-columns: 32px 1fr;
  gap: 9px;
}

.pharma-mark svg {
  width: 30px;
  fill: #149486;
}

.pharma-mark span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.logo-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  text-align: end;
}

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.credentials-main > h2 {
  margin: 22px 0 50px;
}

.education-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.education-card > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.education-card h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.3;
}

.education-card p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.education-card strong {
  color: #2d4755;
  font-size: 12px;
}

.awards {
  margin-top: 35px;
}

.awards h3 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.awards ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.awards li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.awards li span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.awards li p {
  margin: 0;
  color: #3c5360;
  font-size: 14px;
  font-weight: 650;
}

.skill-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: clamp(30px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skill-panel .mini-label {
  color: var(--gold-bright);
}

.skill-panel h3 {
  margin: 18px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.18;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-list span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

.language-list {
  margin-top: 34px;
  border-top: 1px solid var(--dark-line);
}

.language-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: rgba(255, 255, 255, .68);
  border-bottom: 1px solid var(--dark-line);
  font-size: 12px;
}

.language-list strong {
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact {
  padding-top: 80px;
}

.contact-card {
  position: relative;
  padding: clamp(45px, 7vw, 90px);
  color: var(--white);
  background: linear-gradient(135deg, #0d3044, var(--ink) 62%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(7, 27, 43, .2);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -290px;
  inset-inline-end: -120px;
  border: 1px solid rgba(216, 179, 106, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(216, 179, 106, .025), 0 0 0 110px rgba(216, 179, 106, .018);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card h2 {
  max-width: 800px;
  margin-bottom: 20px;
}

.contact-card > p {
  max-width: 680px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
}

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

.button-navy {
  color: var(--ink);
  background: var(--gold-bright);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .26);
}

.button-outline:hover {
  background: rgba(255, 255, 255, .08);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 62px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
}

.contact-details a {
  transition: color .2s ease;
}

.contact-details a:hover {
  color: var(--gold-bright);
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.footer-inner > a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease;
}

.footer-inner > a:hover {
  color: var(--gold-bright);
}

.footer-inner svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.capability-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2) {
  transition-delay: .08s;
}

.capability-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

@media (max-width: 1100px) {
  .nav-wrap {
    gap: 18px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    gap: 48px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    height: var(--header-height);
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
    order: 2;
  }

  .language-switcher {
    order: 1;
    margin-inline-start: auto;
  }

  .menu-toggle + .primary-nav {
    order: 3;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 26px 24px 40px;
    background: rgba(7, 27, 43, .985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 18px 0;
    color: rgba(255, 255, 255, .85);
    border-bottom: 1px solid var(--dark-line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-weight: 500;
  }

  html[dir="rtl"] .primary-nav a {
    font-family: Tahoma, Arial, sans-serif;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .growth-console {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .metric-strip {
    margin-top: 70px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: auto;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .capability:first-child {
    border-top: 0;
  }

  .capability-icon {
    margin-top: 30px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  }

  .project-visual {
    height: 100%;
    min-height: 320px;
  }

  .project-content > p {
    min-height: auto;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .skill-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .nav-wrap {
    gap: 10px;
  }

  .language-switcher {
    margin-inline-start: auto;
  }

  .lang-btn {
    min-width: 30px;
    height: 29px;
    padding: 0 6px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.15rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .growth-console {
    min-height: 460px;
    padding: 18px;
  }

  .orbit {
    height: 325px;
  }

  .ring-two {
    width: 280px;
    height: 280px;
  }

  .ring-one {
    width: 190px;
    height: 190px;
  }

  .orbit-center {
    width: 108px;
    height: 108px;
  }

  .node-commerce { right: 0; }
  .node-ai { left: 0; }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    min-height: 125px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .metric:nth-child(3) {
    border-inline-start: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 45px;
  }

  .section-index {
    margin-top: 0;
  }

  .section-heading h2,
  .credentials-main > h2,
  .contact-card h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .section-heading > div > p {
    font-size: 15px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 34px 0;
  }

  .timeline-item::before {
    display: none;
  }

  .timeline-body {
    padding-inline-start: 0;
  }

  .timeline-title-row {
    display: block;
  }

  .current-badge {
    display: inline-block;
    margin-bottom: 15px;
  }

  .project-card {
    display: flex;
  }

  .project-visual {
    min-height: 235px;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 128px;
  }

  .logo-box {
    height: 96px;
  }

  .education-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-card {
    border-radius: 22px;
  }

  .contact-card > p {
    font-size: 15px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-details {
    display: grid;
    gap: 12px;
    margin-top: 45px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 26px), var(--shell));
  }

  .language-switcher {
    gap: 1px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 126px;
  }

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

  .availability {
    align-items: flex-start;
  }

  .availability .pulse {
    margin-top: 7px;
  }

  .growth-console {
    min-height: 425px;
  }

  .orbit {
    height: 292px;
  }

  .ring-two {
    width: 232px;
    height: 232px;
  }

  .ring-one {
    width: 160px;
    height: 160px;
  }

  .orbit-center {
    width: 94px;
    height: 94px;
  }

  .orbit-center span {
    font-size: 26px;
  }

  .orbit-node {
    min-width: 66px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .node-strategy { top: 28px; }
  .node-data { bottom: 24px; }

  .console-top {
    font-size: 9px;
  }

  .metric {
    padding-inline: 16px;
  }

  .metric span {
    font-size: 10px;
  }

  .capability {
    padding-inline: 22px;
  }

  .project-content {
    padding: 24px;
  }

  .logo-card {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .logo-box {
    height: 86px;
    padding: 12px;
  }

  .contact-card {
    padding-inline: 25px;
  }

  .footer-inner {
    align-items: flex-end;
  }

  .footer-inner > div {
    display: grid;
  }
}

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

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

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