/* ============================================================
   REGENT MENA — 2D Edition
   Ink · Paper · Amber. Inter Black · Cormorant Italic · Mono.
   ============================================================ */

:root {
  --ink: #0E0E10;
  --paper: #F4EFE5;
  --amber: #D97706;

  --ink-60: rgba(14, 14, 16, 0.60);
  --ink-40: rgba(14, 14, 16, 0.40);
  --ink-20: rgba(14, 14, 16, 0.20);
  --ink-12: rgba(14, 14, 16, 0.12);
  --ink-08: rgba(14, 14, 16, 0.08);

  --paper-90: rgba(244, 239, 229, 0.90);
  --paper-80: rgba(244, 239, 229, 0.80);
  --paper-60: rgba(244, 239, 229, 0.60);
  --paper-40: rgba(244, 239, 229, 0.40);
  --paper-20: rgba(244, 239, 229, 0.20);
  --paper-12: rgba(244, 239, 229, 0.12);

  --container: 1440px;
  --pad-x: 64px;
  --gutter: 24px;
  --col: calc((min(100vw, var(--container)) - 2 * var(--pad-x) - 11 * var(--gutter)) / 12);

  --display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --voice: "Cormorant Garamond", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --arabic-display: "IBM Plex Sans Arabic", "Noto Sans Arabic", sans-serif;
  --arabic-body: "Noto Naskh Arabic", "Noto Sans Arabic", serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; --gutter: 16px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--display);
  font-weight: 900;
  background: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
}
body.is-loading { overflow: hidden; height: 100vh; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: var(--ink); }

/* hide native cursor on devices that get ours */
@media (hover: hover) and (pointer: fine) {
  html, body, * { cursor: none !important; }
}

/* ---------- type utilities ---------- */
.t-display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
}
.t-voice {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.t-mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.t-mono-sm {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: 104px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.5;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: grid;
  place-items: center;
  pointer-events: all;
}
.loader__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.loader__mark {
  width: 64px; height: 64px;
  transform: scale(0);
  will-change: transform;
}
.loader__word {
  position: absolute;
  bottom: calc(50% - 100px);
  display: flex;
  gap: 4px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--paper);
}
.loader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.loader__pct {
  position: absolute;
  bottom: 32px; left: var(--pad-x);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-60);
}
.loader__where {
  position: absolute;
  bottom: 32px; right: var(--pad-x);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--amber);
}
.loader__top, .loader__bot {
  position: fixed; left: 0; right: 0;
  background: var(--ink);
  z-index: 999;
  pointer-events: none;
  transform: translateY(0);
  will-change: transform;
}
.loader__top { top: 0; height: 50vh; }
.loader__bot { top: 50vh; height: 50vh; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out);
}
.cursor__pill {
  position: absolute;
  transform: translate(-50%, -50%) scale(0.6);
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  white-space: nowrap;
  pointer-events: none;
}
.cursor.is-link .cursor__dot { width: 0; height: 0; }
.cursor.is-link .cursor__ring { width: 56px; height: 56px; }
.cursor.is-pill .cursor__dot { opacity: 0; }
.cursor.is-pill .cursor__ring { opacity: 0; }
.cursor.is-pill .cursor__pill { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  color: var(--paper);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}
.nav.is-stuck {
  background: rgba(14, 14, 16, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.is-light { color: var(--ink); }
.nav.is-light.is-stuck { background: rgba(244, 239, 229, 0.78); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.nav__brand-mark {
  width: 22px; height: 22px;
  color: var(--amber) !important;
}
.nav__brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav__brand-mena {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--amber);
  margin-left: 4px;
}
.nav__center {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.nav__link:hover::after { width: 100%; }

.nav__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.nav__lang button {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.nav__lang button.is-active { opacity: 1; color: var(--amber); }
.nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.nav__pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
}

@media (max-width: 900px) {
  .nav__center, .nav__pill { display: none; }
  .nav__burger { display: flex; }
}
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  z-index: 210;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
[data-bg="paper"] ~ * .nav__burger span,
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link {
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.mobile-menu__link:active { color: var(--amber); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 96px var(--pad-x) 48px;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-60);
}
.hero__top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__top span:first-child::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
@media (max-width: 600px) {
  .hero__top { font-size: 9px; gap: 8px; }
  .hero__bottom { font-size: 9px; }
  .hero__blob.b1 { width: 260px; height: 260px; }
  .hero__blob.b2 { width: 200px; height: 200px; }
  .hero__blob.b3 { width: 180px; height: 180px; }
}
.hero__main {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px 0;
  perspective: 1400px;
  position: relative;
  z-index: 1;
}
.hero__float-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  animation: hero-float 14s ease-in-out infinite;
}
.hero__blob.b1 { width: 480px; height: 480px; top: -10%; left: 8%; animation-delay: 0s; }
.hero__blob.b2 { width: 360px; height: 360px; top: 40%; right: 5%; animation-delay: -5s; opacity: 0.25; }
.hero__blob.b3 { width: 300px; height: 300px; bottom: -8%; left: 40%; animation-delay: -9s; opacity: 0.2; }
@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.94); }
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(60px, 11vw, 220px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--paper);
  margin: 0;
}
.hero__title--3d {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
}
.hero__title--3d .char.whisper-amber {
  text-shadow:
    0 1px 0 #b45f04,
    0 2px 0 #b45f04,
    0 3px 0 #96500a,
    0 4px 0 #7a4108,
    0 8px 18px rgba(0,0,0,0.45);
}
.hero__title .char.whisper-amber { color: var(--amber) !important; }
.whisper-pulse {
  display: inline-block;
  animation: whisper-breathe 3.2s ease-in-out infinite;
}
@keyframes whisper-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.97); }
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-60);
}
.hero__bottom > *:nth-child(2) { text-align: center; }
.hero__bottom > *:nth-child(3) { text-align: right; }
.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  width: 34px; height: 34px;
  padding: 0;
}
.sound-toggle__ring {
  width: 34px; height: 34px;
  border: 1px solid var(--paper-20);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.sound-toggle:hover .sound-toggle__ring { border-color: var(--amber); background: rgba(217,119,6,0.1); }
.sound-toggle .bars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  height: 12px;
}
.sound-toggle .bars span {
  display: block;
  width: 2px; height: 5px;
  border-radius: 1px;
  background: var(--paper-60);
  transition: background 0.3s var(--ease-out);
}
.sound-toggle:hover .bars span { background: var(--amber); }
.sound-toggle.is-on .bars span:nth-child(1) { animation: bar 0.6s ease infinite alternate; }
.sound-toggle.is-on .bars span:nth-child(2) { animation: bar 0.45s ease 0.1s infinite alternate; }
.sound-toggle.is-on .bars span:nth-child(3) { animation: bar 0.55s ease 0.2s infinite alternate; }
@keyframes bar { from { height: 3px; } to { height: 12px; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--amber);
  color: var(--ink);
  height: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee__item {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.marquee__item::after {
  content: "✦";
  font-size: 0.5em;
  color: var(--ink);
  opacity: 0.7;
}
.marquee:hover { /* JS slows track */ }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: 128px 0;
  overflow: hidden;
}
.manifesto__label {
  color: var(--amber);
  margin-bottom: 56px;
}
.manifesto__lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.manifesto__line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 9vw, 160px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  padding: 24px 0;
}
.manifesto__line:nth-child(1) { text-align: left; color: var(--paper); }
.manifesto__line:nth-child(2) { text-align: center; color: var(--amber); }
.manifesto__line:nth-child(3) { text-align: right; color: var(--paper); }
.manifesto__line .word { display: inline-block; overflow: hidden; line-height: 1.05; }
.manifesto__line .word span { display: inline-block; transform: translateY(110%); will-change: transform; }
.manifesto__sub {
  margin-top: 64px;
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  text-align: center;
  color: var(--paper-80);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: 0;
  background: var(--paper);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 320px;
}
.stats__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 32px 24px;
  min-width: 0;
}
.stats__cell + .stats__cell::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: var(--ink-20);
}
.stats { border-top: 1px solid var(--ink-08); border-bottom: 1px solid var(--ink-08); }
.stats__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--amber);
  text-align: center;
  margin: 0;
  width: 100%;
}
.stats__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 24px;
  text-align: center;
  color: var(--ink);
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: 1fr; min-height: 0; }
  .stats__cell + .stats__cell::before { display: none; }
  .stats__cell { padding: 40px 0; }
}

/* ============================================================
   TALENT
   ============================================================ */
.talent {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 0;
}
.talent__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
.talent__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 120px);
  line-height: 1.28;
  letter-spacing: -0.035em;
  margin: 16px 0 0;
}
.talent__title .voice {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--amber);
}
.talent__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- brand logo wall (3-row alternating marquee) ---------- */
.brandwall {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brandwall__row {
  overflow: hidden;
  border-top: 1px dashed rgba(217,119,6,.35);
  padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brandwall__row:last-child { border-bottom: 1px dashed rgba(217,119,6,.35); }
.brandwall__track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.bw {
  flex: 0 0 auto;
  width: clamp(110px, 9vw, 155px);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}
.bw img {
  max-width: 98%;
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .bw { width: 130px; padding: 6px 8px; }
  .bw img { max-height: 76px; }
}
.scatter {
  position: relative;
  width: 100%;
  height: clamp(300px, 30vw, 400px);
  margin-top: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.scatter__counter {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 140px);
  letter-spacing: -0.04em;
  color: rgba(217,119,6,0.7);
  text-shadow: 0 0 40px rgba(217,119,6,0.35);
  user-select: none;
  transition: transform 0.25s cubic-bezier(.2,.8,.3,1.4);
}
.scatter__counter.is-pop {
  transform: translate(-50%, -50%) scale(1.28);
  text-shadow: 0 0 60px rgba(217,119,6,0.6);
}

.t-circle {
  position: absolute;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink-08);
  box-shadow: 0 18px 40px rgba(14,14,16,0.12), 0 0 0 6px rgba(217,119,6,0.14), 0 0 0 12px rgba(217,119,6,0.06);
  animation: t-float 7s ease-in-out infinite, halo-pulse 4.5s ease-in-out infinite;
}
.t-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  position: absolute; inset: 0;
  transition: opacity 4s ease;
}
.t-circle img.is-active { opacity: 1; }

.t-circle { width: 128px; }
@media (max-width: 768px) {
  .scatter { height: 420px; }
  .t-circle { width: 74px !important; }
}
.c1  { top: 10%; left: 4%;  animation-delay: 0s; }
.c2  { top: 12%; left: 21%; animation-delay: .6s; }
.c3  { top: 8%;  left: 38%; animation-delay: 1.2s; }
.c4  { top: 13%; left: 55%; animation-delay: 1.8s; }
.c5  { top: 9%;  left: 72%; animation-delay: .3s; }
.c6  { top: 11%; left: 89%; animation-delay: 2.1s; }
.c7  { top: 40%; left: 4%;  animation-delay: .9s; }
.c8  { top: 42%; left: 21%; animation-delay: 1.5s; }
.c9  { top: 38%; left: 38%; animation-delay: .4s; }
.c10 { top: 43%; left: 55%; animation-delay: 1.9s; }
.c11 { top: 39%; left: 72%; animation-delay: 1.1s; }
.c12 { top: 41%; left: 89%; animation-delay: 2.4s; }
.c13 { top: 70%; left: 4%;  animation-delay: 2.7s; }
.c14 { top: 72%; left: 21%; animation-delay: .8s; }
.c15 { top: 68%; left: 38%; animation-delay: 1.6s; }
.c16 { top: 73%; left: 55%; animation-delay: 2.9s; }
.c17 { top: 69%; left: 72%; animation-delay: .2s; }
.c18 { top: 71%; left: 89%; animation-delay: 1.4s; }

@keyframes t-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes t-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.scatter__spark {
  position: absolute;
  fill: var(--amber);
  opacity: 0.7;
  animation: t-spin 9s linear infinite;
}
.scatter__spark path { fill: currentColor; }
.s1 { width: 20px; top: 6%;  left: 18%; }
.s2 { width: 28px; top: 46%; left: 46%; }
.s3 { width: 16px; top: 16%; left: 62%; }
.s4 { width: 22px; top: 70%; left: 22%; }
.s5 { width: 18px; top: 84%; left: 68%; }
.s6 { width: 24px; top: 2%;  left: 84%; }
.s7 { width: 16px; top: 54%; left: 8%; }
.s8 { width: 20px; top: 34%; left: 96%; }
@keyframes t-spin {
  0% { transform: rotate(0deg) scale(1); opacity: .5; }
  50% { transform: rotate(180deg) scale(1.2); opacity: .9; }
  100% { transform: rotate(360deg) scale(1); opacity: .5; }
}
@keyframes halo-pulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(14,14,16,0.12), 0 0 0 6px rgba(217,119,6,0.14), 0 0 0 12px rgba(217,119,6,0.06); }
  50% { box-shadow: 0 18px 40px rgba(14,14,16,0.12), 0 0 0 9px rgba(217,119,6,0.22), 0 0 0 18px rgba(217,119,6,0.09); }
}
.t-circle.is-bursting {
  animation: circle-pop 0.55s ease-out forwards !important;
  z-index: 15;
}
@keyframes circle-pop {
  0% { transform: scale(1); opacity: 1; }
  45% { transform: scale(1.5); opacity: 0.85; box-shadow: 0 0 0 18px rgba(217,119,6,0.25), 0 0 40px 20px rgba(217,119,6,0.3); }
  100% { transform: scale(0.1); opacity: 0; }
}
.pop-ring {
  position: absolute;
  width: 0; height: 0;
  border: 3px solid var(--amber);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 25;
  animation: pop-ring-expand 0.65s ease-out forwards;
}
@keyframes pop-ring-expand {
  0% { width: 0; height: 0; opacity: 0.95; border-width: 4px; }
  70% { opacity: 0.5; }
  100% { width: 220px; height: 220px; opacity: 0; border-width: 1px; }
}
.t-circle img { transition: opacity 2s ease; }
.talent__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .talent__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .talent__grid { grid-template-columns: repeat(2, 1fr); } }

.talent__card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
}
.talent__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}
.talent__card:hover img { filter: grayscale(0); transform: scale(1.04); }
.talent__card__num {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--paper);
  mix-blend-mode: difference;
}
.talent__card__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(14,14,16,0.85), transparent);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(20%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.talent__card:hover .talent__card__meta { transform: translateY(0); opacity: 1; }
.talent__card__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: none;
}

/* ============================================================
   WORK (horizontal pinned)
   ============================================================ */
.work {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.work__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.work__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
}
.work__title em {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.005em;
}
.work__pin {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.work__track {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
  padding: 0 var(--pad-x);
  will-change: transform;
}
.case {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  flex-direction: column;
}
.case__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-60);
  z-index: 2;
}
.case__visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.case__meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 20px 4px 0;
  align-items: center;
}
.case__client {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.case__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.case__year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-60);
}

/* card layouts */
.case--ink .case__visual {
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}
.case--ink .case__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--paper);
  transform: rotate(-8deg);
  text-align: center;
  margin: 0;
}
.case--ink .case__num { color: var(--paper-60); }

.case--amber .case__visual {
  background: var(--amber);
  position: relative;
}
.case--amber .case__quote {
  font-family: var(--voice);
  font-style: italic;
  font-size: clamp(140px, 22vw, 240px);
  line-height: 0.7;
  color: var(--paper);
  position: absolute;
  top: -8%;
  left: 12%;
}
.case--amber .case__caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.case--paper .case__visual {
  background: var(--paper);
  border: 8px solid var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case--paper .case__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.case--paper .case__cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.case--split .case__visual {
  background: linear-gradient(to right, var(--paper) 0%, var(--paper) 50%, var(--ink) 50%, var(--ink) 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.case--split .case__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0;
  color: var(--paper);
  mix-blend-mode: difference;
  padding: 0 16px;
}

.case__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}
.case:hover .case__video { opacity: 0.9; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--ink);
  color: var(--paper);
}
.process__label { color: var(--amber); margin-bottom: 32px; }
.process__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0 0 56px;
}
.process__title em {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.005em;
}
.process__steps {
  position: relative;
  padding-left: 96px;
}
.process__line {
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: var(--paper-20);
  overflow: hidden;
}
.process__line::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: var(--draw, 0%);
  background: var(--amber);
  transition: height 0.1s linear;
}
.step {
  position: relative;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--paper-12);
}
.step:last-child { border-bottom: none; }
.step__num {
  position: absolute;
  left: -96px;
  top: 56px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--amber);
  background: var(--ink);
  padding: 0 6px;
}
.step__rule {
  position: absolute;
  left: -28px;
  top: 80px;
  width: 60px;
  height: 1px;
  background: var(--paper-40);
}
.step__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.step__desc {
  font-family: var(--voice);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper-80);
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 768px) {
  .process__steps { padding-left: 64px; }
  .process__line { left: 16px; }
  .step__num { left: -64px; font-size: 36px; }
  .step__rule { left: -16px; width: 36px; top: 60px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.proof {
  background: var(--paper);
  color: var(--ink);
}
.proof__label { color: var(--ink); margin-bottom: 48px; }
.proof__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0 0 48px;
}
.proof__title em {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.005em;
}
.proof__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .proof__row { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 460px;
}
.testimonial__quote {
  font-family: var(--voice);
  font-style: italic;
  font-size: 110px;
  line-height: 0.7;
  color: var(--amber);
  margin-bottom: 24px;
}
.testimonial__body {
  font-family: var(--voice);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--paper-90);
  flex: 1;
}
.testimonial__div {
  height: 1px;
  background: var(--paper-20);
  margin: 32px 0 16px;
}
.testimonial__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.testimonial__role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 6px;
}

/* ============================================================
   JOURNAL
   ============================================================ */
.journal { background: var(--paper); color: var(--ink); }
.journal__label { color: var(--ink); margin-bottom: 48px; }
.journal__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0 0 48px;
}
.journal__title em {
  font-family: var(--voice);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.005em;
}
.journal__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journal__row .more-item { display: none; }
.journal__row.is-expanded .more-item { display: flex; }
.journal__more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--ink-20);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.journal__more:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 900px) { .journal__row { grid-template-columns: 1fr; } }
.article { display: flex; flex-direction: column; gap: 16px; }
.article__thumb {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 15%;
  cursor: pointer;
}

/* ---------- Journal lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  display: none; align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(14,14,16,0.92);
  backdrop-filter: blur(6px);
}
.lightbox__inner {
  position: relative; z-index: 1;
  width: min(640px, 90vw);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lightbox__stage {
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox__stage img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out);
}
.lightbox__stage img.is-shown { opacity: 1; transform: scale(1); }
.lightbox__inner { transform: scale(0.92); opacity: 0; transition: transform 0.4s var(--ease-expo), opacity 0.4s var(--ease-out); }
.lightbox.is-open .lightbox__inner { transform: scale(1); opacity: 1; }
.lightbox__backdrop { transition: backdrop-filter 0.4s var(--ease-out); }
.lightbox__close {
  position: absolute; top: -46px; right: 0;
  font-size: 32px; line-height: 1; color: var(--paper);
  font-family: var(--display); font-weight: 300;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,239,229,0.08); color: var(--paper);
  font-size: 18px; transition: background .2s;
}
.lightbox__nav:hover { background: var(--amber); color: var(--ink); }
.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }
@media (max-width: 760px) {
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
}
.lightbox__meta {
  display: flex; justify-content: space-between; width: 100%;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--paper-60);
}
.article__thumb--ink { background: var(--ink); }
.article__thumb--amber { background: var(--amber); }
.article__thumb--paper { background: var(--paper); border: 4px solid var(--ink); }
.article__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.article__thumb--ink .article__num { color: var(--paper-60); }
.article__thumb--amber .article__num { color: var(--ink); }
.article__thumb--paper .article__num { color: var(--ink-60); }
.article__thumb__type {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.article__thumb--ink .article__thumb__type { color: var(--paper); }
.article__thumb--amber .article__thumb__type { color: var(--ink); }
.article__thumb--paper .article__thumb__type { color: var(--ink); }
.article__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.article__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s var(--ease-out);
}
.article:hover .article__title { color: var(--amber); }
.article:hover .article__thumb { filter: contrast(0.9) saturate(0.6); }
.article__thumb { transition: filter 0.4s var(--ease-out); }
.article__read {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-40);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--amber);
  color: var(--ink);
  padding: 128px 0;
  position: relative;
}
.cta__simple {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cta__label { color: rgba(14,14,16,0.6); margin-bottom: 20px; }
.cta__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.cta__email {
  display: block;
  margin-top: 24px;
}
.cta__email a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.cta__email a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 100%;
  background: var(--ink);
  transform: scaleX(0.15);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}
.cta__email a:hover::after { transform: scaleX(1); }

.cta__form {
  margin: 56px 0 40px;
  text-align: left;
}
.cta__field { display: grid; gap: 8px; margin-bottom: 22px; min-width: 0; }
.cta__field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(14,14,16,0.55);
}
.cta__field input, .cta__field textarea {
  width: 100%; box-sizing: border-box; min-width: 0;
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(14,14,16,0.3);
  padding: 10px 0; outline: none;
}
.cta__field input::placeholder, .cta__field textarea::placeholder { color: rgba(14,14,16,0.4); }
.cta__field input:focus, .cta__field textarea:focus { border-bottom-color: var(--ink); }
.cta__field textarea { resize: vertical; min-height: 70px; }

.cta__submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--paper);
  padding: 16px 26px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: transform 0.25s var(--ease-out);
}
.cta__submit:hover { transform: translateX(4px); }
.cta__submit .arrow { font-family: var(--display); font-weight: 900; }
.cta__form__done { display: none; text-align: center; }
.cta__form__done.is-shown { display: block; padding: 12px 0; }
.cta__form__done__label { color: var(--ink); letter-spacing: 0.2em; margin-bottom: 12px; }
.cta__form__done p { margin: 0 auto; font-size: 18px; max-width: 40ch; }

.cta__meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(14,14,16,0.65);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  border-top: 1px solid rgba(14,14,16,0.2);
  padding-top: 28px;
}
.cta__meta a { color: var(--ink); }
.cta__meta a:hover { color: rgba(14,14,16,0.6); }
.cta__meta__dot { opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
  overflow: hidden;
}
.foot__wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(80px, 22vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0 0 16px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.foot__wordmark .ltr {
  display: inline-block;
  will-change: transform;
  transition: transform 0.2s var(--ease-out), color 0.3s var(--ease-out);
}
.foot__wordmark .ltr:hover { color: var(--amber); }
.foot__mena {
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 56px;
  padding-left: 0.6em;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-60);
  border-top: 1px solid var(--paper-12);
  padding-top: 48px;
}
.foot__cols h6 {
  margin: 0 0 16px;
  color: var(--paper);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
}
.foot__cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__cols a { transition: color 0.25s; }
.foot__cols a:hover { color: var(--paper); }
.foot__strip {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-40);
}
@media (max-width: 700px) {
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__strip { flex-direction: column; gap: 12px; }
  .foot__wordmark { font-size: clamp(44px, 19vw, 320px); }
}

/* ============================================================
   RTL / Arabic
   ============================================================ */
html[dir="rtl"] { font-family: var(--arabic-display); }
html[dir="rtl"] body { font-family: var(--arabic-display); }
html[dir="rtl"] .t-mono,
html[dir="rtl"] .t-mono-sm,
html[dir="rtl"] .nav__link,
html[dir="rtl"] .case__cat,
html[dir="rtl"] .article__date,
html[dir="rtl"] .article__read,
html[dir="rtl"] .stats__label {
  font-family: var(--mono);
  letter-spacing: 0;
}
html[dir="rtl"] .hero__title,
html[dir="rtl"] .manifesto__line,
html[dir="rtl"] .work__title,
html[dir="rtl"] .talent__title,
html[dir="rtl"] .process__title,
html[dir="rtl"] .proof__title,
html[dir="rtl"] .journal__title,
html[dir="rtl"] .cta__title,
html[dir="rtl"] .foot__wordmark {
  font-family: var(--arabic-display);
  font-weight: 900;
  letter-spacing: 0;
}
html[dir="rtl"] .voice,
html[dir="rtl"] em,
html[dir="rtl"] .testimonial__body,
html[dir="rtl"] .step__desc,
html[dir="rtl"] .manifesto__sub {
  font-family: var(--arabic-body);
  font-style: normal;
}
html[dir="rtl"] .hero__bottom > *:nth-child(3) { text-align: left; }
html[dir="rtl"] .hero__bottom > *:nth-child(1) { text-align: right; }

/* ---------- glitch heading ---------- */
.cta__title[data-glitch] { position: relative; display: inline-block; }
.cta__title[data-glitch]::before,
.cta__title[data-glitch]::after {
  content: attr(data-glitch);
  position: absolute; left: 0; top: 0; width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--amber);
  clip-path: inset(0 0 0 0);
}
.cta__title[data-glitch]::before {
  color: #ff2b6b;
  animation: glitch-1 5s infinite linear;
}
.cta__title[data-glitch]::after {
  color: #00e5ff;
  animation: glitch-2 5s infinite linear;
}
@keyframes glitch-1 {
  0%, 92%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0,0); }
  93% { clip-path: inset(10% 0 60% 0); transform: translate(-4px,-2px); }
  94% { clip-path: inset(40% 0 20% 0); transform: translate(4px,1px); }
  95% { clip-path: inset(65% 0 5% 0); transform: translate(-3px,2px); }
  96% { clip-path: inset(0 0 100% 0); transform: translate(0,0); }
}
@keyframes glitch-2 {
  0%, 91%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0,0); }
  92% { clip-path: inset(70% 0 10% 0); transform: translate(4px,2px); }
  93% { clip-path: inset(20% 0 55% 0); transform: translate(-4px,-1px); }
  94% { clip-path: inset(5% 0 80% 0); transform: translate(3px,-2px); }
  95% { clip-path: inset(0 0 100% 0); transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta__title[data-glitch]::before, .cta__title[data-glitch]::after { display: none; }
}

/* ============================================================
   reveals
   ============================================================ */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
  transition: clip-path 1.2s var(--ease-expo);
}
.reveal-clip.is-in { clip-path: inset(0 0 0% 0); }

.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}
.reveal-fade.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
