/* ==========================================================================
   GO Ecosystem — 2026
   Built from the company profile deck: near-black ground, the violet→indigo
   (Brand) and teal (Business) arms, the four-point sparkle, glass plates.
   Arabic leads; every direction-sensitive rule uses logical properties.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
  /* ground */
  --ground: #090909;
  --ground-2: #101013;
  --ground-3: #16161b;
  --plate: rgba(255, 255, 255, 0.035);
  --plate-2: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);

  /* ink */
  --ink: #f4f3f7;
  --ink-2: #b9b8c6;
  --ink-3: #85848f;

  /* the two arms */
  --violet: #7c5ff5;
  --violet-lt: #9d86ff;
  --indigo: #2a36d4;
  --teal: #2ba3ab;
  --teal-lt: #48cfd0;
  --teal-dp: #0e5552;
  --sky: #6dbfe4;

  --g-brand: linear-gradient(135deg, var(--violet) 0%, var(--indigo) 100%);
  --g-business: linear-gradient(135deg, var(--teal) 0%, var(--teal-dp) 100%);
  --g-eco: linear-gradient(120deg, var(--sky) 0%, #7077ee 50%, var(--violet) 100%);

  /* type */
  --display: "Archivo", "Archivo Expanded", system-ui, sans-serif;
  --text: "IBM Plex Sans Arabic", "Segoe UI", system-ui, sans-serif;

  /* metrics */
  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --sec: clamp(72px, 9vw, 132px);
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 10px;

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

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: 90px;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--text);
  font-size: clamp(15.5px, 0.4vw + 14.5px, 17px);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* The ground is never flat black: two soft arm-coloured washes sit behind
   everything, so scrolling moves through colour rather than a void. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 78% -8%, rgba(124, 95, 245, 0.16), transparent 68%),
    radial-gradient(52vw 46vh at 4% 34%, rgba(43, 163, 171, 0.10), transparent 70%),
    radial-gradient(70vw 60vh at 50% 108%, rgba(109, 191, 228, 0.07), transparent 72%);
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--violet-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(124, 95, 245, 0.42); color: #fff; }

/* ---------------------------------------------------------- scaffolding */
.wrap {
  inline-size: min(100% - var(--gut) * 2, var(--wrap));
  margin-inline: auto;
}

.sec { padding-block: var(--sec); position: relative; }
.sec--tight { padding-block: calc(var(--sec) * 0.62); }
.sec--top0 { padding-block-start: 0; }

/* A hairline that fades at both ends — used between major sections. */
.rule {
  block-size: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.visually-hidden {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  background: var(--violet);
  color: #fff;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: none; }

/* ---------------------------------------------------------------- type */
.d1, .d2, .d3 { font-weight: 700; letter-spacing: -0.02em; }
.d1 { font-size: clamp(2.5rem, 6.4vw, 5.1rem); line-height: 1.02; }
.d2 { font-size: clamp(1.95rem, 4vw, 3.15rem); line-height: 1.08; }
.d3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); line-height: 1.22; }

/* Latin display: Archivo pushed to its widest, heaviest axis — the deck's
   BRAND / BUSINESS lockups set the tone for every big Latin word. */
:lang(en) .d1,
:lang(en) .d2,
.wide {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 112, "wght" 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
:lang(en) .d1 { line-height: 0.94; }
:lang(en) .d2 { line-height: 1; }

.lead {
  font-size: clamp(1.02rem, 0.5vw + 0.92rem, 1.22rem);
  color: var(--ink-2);
  max-inline-size: 62ch;
  line-height: 1.8;
}
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }

.grad-brand,
.grad-business,
.grad-eco {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.grad-brand { background-image: var(--g-brand); }
.grad-business { background-image: var(--g-business); }
.grad-eco { background-image: var(--g-eco); }

/* ------------------------------------------------------------- the mark */
.mark { inline-size: 1em; block-size: auto; fill: currentColor; }
.mark--brand { fill: url(#g-brand); }
.mark--business { fill: url(#g-business); }
.mark--eco { fill: url(#g-eco); }

.star { inline-size: 1em; block-size: auto; fill: url(#g-star-sky); }
.star--violet,
.star--brand { fill: url(#g-star-violet); }
.star--teal,
.star--business { fill: url(#g-star-teal); }
.star--eco { fill: url(#g-eco); }

.icon {
  inline-size: 1.15em;
  block-size: 1.15em;
  flex: none;
  fill: none;
  vertical-align: -0.2em;
}

.sprite { position: absolute; inline-size: 0; block-size: 0; overflow: hidden; }

/* ----------------------------------------------------------- the button */
.btn {
  --btn-bg: var(--g-brand);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.86em 1.5em;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.1;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: inherit;
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.26s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { opacity: 0.55; }
.btn--business { --btn-bg: var(--g-business); }
.btn--eco { --btn-bg: var(--g-eco); color: #0a0a12; }
.btn--line {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--line:hover { border-color: rgba(255, 255, 255, 0.4); background: var(--plate); }
.btn--line::after { display: none; }
.btn--sm { padding: 0.66em 1.15em; font-size: 0.9rem; }
.btn--wide { inline-size: 100%; justify-content: center; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ------------------------------------------------------------ nav / bar */
.nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 90;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-block-end: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  border-block-end-color: var(--line);
}

.nav__bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  block-size: 72px;
}

.nav__brand { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__mark { inline-size: 26px; fill: var(--ink); transition: fill 0.3s var(--ease); }
.nav__brand:hover .nav__mark { fill: url(#g-eco); }
.nav__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
}
.nav__word b { font-size: 1.02rem; letter-spacing: -0.02em; }
.nav__word span {
  font-family: var(--text);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-block-start: 3px;
}

.nav__links {
  display: flex;
  gap: clamp(10px, 1.6vw, 22px);
  margin-inline-end: auto;
  font-size: 0.93rem;
}
.nav__links a {
  color: var(--ink-2);
  padding-block: 6px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  block-size: 2px;
  border-radius: 2px;
  background: var(--g-eco);
  transform: scaleX(0);
  transform-origin: var(--origin, left);
  transition: transform 0.26s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__end { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__lang {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__lang:hover { color: var(--ink); border-color: var(--line-2); }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav__toggle .icon { inline-size: 22px; block-size: 22px; stroke: currentColor; }
.nav__icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__icon-close { display: block; }

.nav__sheet {
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(20px);
  border-block-end: 1px solid var(--line);
  padding-block: 18px 26px;
}
.nav__sheet[hidden] { display: none; }
.nav__sheet-links { display: grid; gap: 2px; }
.nav__sheet-links a {
  padding: 13px 4px;
  font-size: 1.12rem;
  font-weight: 600;
  border-block-end: 1px solid var(--line);
}
.nav__sheet-links a[aria-current="page"] { color: var(--violet-lt); }
.nav__sheet-end { display: grid; gap: 10px; margin-block-start: 20px; }
.nav__sheet-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding-block: 8px;
  color: var(--ink-2);
  font-weight: 600;
}
.nav__sheet-lang .icon { stroke: currentColor; }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links { margin-inline-end: 0; }
  .nav__bar { justify-content: space-between; }
}
@media (min-width: 961px) {
  .nav__sheet { display: none; }
}

/* ------------------------------------------------- the bilingual lockup */
/* Every section heading carries its twin in the other script as a small
   tilted tag. It is the one place the site says "two languages" without
   needing a word for it. */
.lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-block-end: clamp(20px, 3vw, 34px);
}
.lockup__title {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
:lang(en) .lockup__title {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 112, "wght" 900;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1;
}
.lockup__twin {
  display: inline-block;
  padding: 0.34em 0.85em;
  border-radius: 999px;
  background: var(--g-eco);
  color: #0a0a12;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  rotate: -3.5deg;
  box-shadow: 0 10px 26px rgba(112, 119, 238, 0.28);
}
.lockup--brand .lockup__twin { background: var(--g-brand); color: #fff; }
.lockup--business .lockup__twin { background: var(--g-business); color: #fff; }
.lockup--center { justify-content: center; text-align: center; }
.lockup--center + .lead { margin-inline: auto; text-align: center; }

/* ---------------------------------------------------------------- pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 0.44em 0.95em;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1.5;
  border: 1px solid transparent;
}
.pill--fill { background: var(--plate-2); color: var(--ink); border-color: var(--line); }
.pill--line { border-color: var(--line-2); color: var(--ink-2); }
.pills--brand .pill--fill { background: rgba(124, 95, 245, 0.16); border-color: rgba(124, 95, 245, 0.35); }
.pills--business .pill--fill { background: rgba(43, 163, 171, 0.16); border-color: rgba(43, 163, 171, 0.35); }

/* --------------------------------------------------------------- plates */
.plate {
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 36px);
}

/* ============================================================== the cover
   One orchestrated moment: the mark builds as an extruded prism while the
   line above it settles. Nothing else on the site animates on load. */
.cover {
  position: relative;
  min-block-size: min(94svh, 880px);
  display: grid;
  align-items: center;
  padding-block: clamp(48px, 9vw, 96px) var(--sec);
  overflow: clip;
}

.cover__grid {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cover__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.cover__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.42em 1em 0.42em 0.6em;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-block-end: 22px;
}
.cover__kicker .star { inline-size: 15px; }

/* The headline stays plain: the prism beside it is where the colour lives. */
.cover__title { margin-block-end: 20px; font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.cover__title em { font-style: normal; }
.cover__lead { margin-block-end: 30px; }

.cover__arms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 34px;
}
.cover__arm {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.55em 1.05em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--plate);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease);
}
.cover__arm .star { inline-size: 14px; }
.cover__arm--brand:hover { border-color: rgba(124, 95, 245, 0.55); background: rgba(124, 95, 245, 0.12); }
.cover__arm--business:hover { border-color: rgba(43, 163, 171, 0.55); background: rgba(43, 163, 171, 0.12); }

.cover__dust {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s ease 0.4s;
}
.cover.is-settled .cover__dust { opacity: 0.85; }
.cover .wrap { position: relative; z-index: 1; }

/* ------------------------------------------------------------- 3D prism */
.prism {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  inline-size: min(100%, 440px);
  margin-inline: auto;
  perspective: 900px;
}
.prism__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 95, 245, 0.55), rgba(43, 163, 171, 0.18) 45%, transparent 70%);
  filter: blur(46px);
}
.prism__stage {
  position: relative;
  inline-size: 78%;
  aspect-ratio: 100 / 85.2;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--tilt-x, 0) * 1deg))
    rotateY(calc(-18deg + var(--tilt-y, 0) * 1deg))
    rotateZ(-2deg);
  transition: transform 0.5s var(--ease-out);
}
.prism__layer {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  fill: #221c4e;
  transform: translateZ(calc(var(--i) * -3.4px));
}
.prism__layer:first-child {
  fill: url(#g-edge);
  filter: drop-shadow(0 18px 40px rgba(88, 62, 214, 0.5));
}
.prism__layer:nth-child(2) { fill: #4231a8; }
.prism__layer:nth-child(3) { fill: #362a80; }
.prism__layer:last-child { fill: #120f28; }

@media (max-width: 899px) {
  .prism { inline-size: min(76%, 340px); }
}

/* Cover intro — runs once, only when JS is present. */
.js .cover__kicker,
.js .cover__title,
.js .cover__lead,
.js .cover__cta,
.js .cover__arms {
  opacity: 0;
  transform: translateY(16px);
}
.js .cover__title { transform: translateY(24px); }
.js .prism__stage { opacity: 0; scale: 0.88; }
.cover.is-ready .cover__kicker,
.cover.is-ready .cover__title,
.cover.is-ready .cover__lead,
.cover.is-ready .cover__cta,
.cover.is-ready .cover__arms {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out) var(--d, 0s), transform 0.85s var(--ease-out) var(--d, 0s);
}
.cover.is-ready .cover__kicker { --d: 0.05s; }
.cover.is-ready .cover__title { --d: 0.15s; }
.cover.is-ready .cover__lead { --d: 0.28s; }
.cover.is-ready .cover__cta { --d: 0.4s; }
.cover.is-ready .cover__arms { --d: 0.5s; }
.cover.is-ready .prism__stage {
  opacity: 1;
  scale: 1;
  transition: opacity 1s var(--ease-out) 0.2s, scale 1.2s var(--ease-out) 0.2s, transform 0.5s var(--ease-out);
}

/* ------------------------------------------------------- page mastheads */
.phead {
  padding-block: clamp(56px, 8vw, 104px) clamp(32px, 4vw, 52px);
  position: relative;
}
.phead__inner { display: grid; gap: 18px; max-inline-size: 58ch; }
/* The arm's wordmark is the page's h1: the lockup names the page better than
   a line of type would, and its alt text carries the name. */
.phead__title { margin: 0; }
.phead__logo { inline-size: min(100%, 320px); }
.phead__slogan {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
}
.phead--brand .phead__slogan { color: var(--violet-lt); }
.phead--business .phead__slogan { color: var(--teal-lt); }

/* The arm pages are washed in their own colour so you always know which
   half of the ecosystem you are standing in. */
.page-go-brand body::before,
body.page-go-brand::before {
  background:
    radial-gradient(64vw 54vh at 82% -6%, rgba(124, 95, 245, 0.26), transparent 66%),
    radial-gradient(50vw 44vh at 0% 40%, rgba(42, 54, 212, 0.16), transparent 70%);
}
body.page-go-business::before {
  background:
    radial-gradient(64vw 54vh at 82% -6%, rgba(43, 163, 171, 0.24), transparent 66%),
    radial-gradient(50vw 44vh at 0% 40%, rgba(14, 85, 82, 0.2), transparent 70%);
}

/* ------------------------------------------------------------ the arms */
.arms { display: grid; gap: clamp(16px, 2.4vw, 26px); }
@media (min-width: 820px) { .arms { grid-template-columns: 1fr 1fr; } }

.arm {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 3.2vw, 40px);
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--plate);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.arm::before {
  content: "";
  position: absolute;
  inset-block-start: -40%;
  inset-inline-end: -25%;
  inline-size: 70%;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  transition: opacity 0.4s var(--ease);
}
.arm--brand::before { background: var(--violet); }
.arm--business::before { background: var(--teal); }
.arm:hover { transform: translateY(-4px); border-color: var(--line-2); }
.arm:hover::before { opacity: 0.75; }

.arm__head { display: flex; align-items: flex-start; gap: 14px; }
.arm__mark { inline-size: 36px; flex: none; margin-block-start: 4px; }
.arm__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.arm__name small {
  display: block;
  font-family: var(--text);
  font-variation-settings: normal;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  margin-block-end: 6px;
}
.arm__list { display: grid; gap: 10px; }
.arm__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: 0.97rem;
}
.arm__list .star { inline-size: 12px; margin-block-start: 0.45em; flex: none; }
.arm__more { margin-block-start: auto; padding-block-start: 6px; }
.arm__more .icon { stroke: currentColor; }

/* ------------------------------------------------------------- clusters */
.clusters { display: grid; gap: clamp(14px, 2vw, 22px); }
@media (min-width: 760px) { .clusters { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) {
  .clusters { grid-template-columns: repeat(6, 1fr); }
  .cluster { grid-column: span 2; }
  .cluster:nth-child(4) { grid-column: span 3; }
  .cluster:nth-child(5) { grid-column: span 3; }
}
.cluster {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--plate);
}
.cluster__title { font-size: 1.12rem; font-weight: 700; }
.cluster__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cluster__more:hover { color: var(--ink); }
.cluster__more .icon { stroke: currentColor; inline-size: 1em; block-size: 1em; }

/* --------------------------------------------------------- the method */
/* A real sequence, so it is numbered. The counter is the only ornament. */
.method { counter-reset: step; }
.method__list { display: grid; gap: 0; }
.method__step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.4vw, 30px);
  align-items: start;
  padding-block: clamp(20px, 2.6vw, 30px);
  border-block-start: 1px solid var(--line);
}
.method__step:last-child { border-block-end: 1px solid var(--line); }
.method__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 800;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1;
  color: transparent;
  background-image: var(--g-eco);
  background-clip: text;
  -webkit-background-clip: text;
  min-inline-size: 2.4ch;
}
.method__body { display: grid; gap: 6px; }
.method__title { font-size: clamp(1.1rem, 1.6vw, 1.32rem); }
.method__text { color: var(--ink-2); margin: 0; max-inline-size: 70ch; }
.method__closing {
  margin-block-start: clamp(24px, 3vw, 36px);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  max-inline-size: 52ch;
}

@media (min-width: 900px) {
  .method__step { grid-template-columns: auto minmax(0, 20ch) minmax(0, 1fr); align-items: baseline; }
  .method__body { display: contents; }
  .method__text { padding-block-start: 0.1em; }
}

/* -------------------------------------------------------------- figures */
.figures__grid {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-block: clamp(28px, 4vw, 48px);
}
.figure { display: grid; gap: 6px; }
.figure__value {
  /* Block, so the numeral's own tight line-height governs the gap to its
     label rather than the surrounding text's line box. */
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  background-image: var(--g-eco);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.figure__label { color: var(--ink-2); font-size: 0.98rem; }

/* ----------------------------------------------------------------- why */
/* A hairline grid rather than a set of cards: the reasons belong to one
   argument, so they share one frame. */
.why__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 720px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }
/* Eight capabilities: four across leaves no half-empty cell. */
@media (min-width: 1040px) { .why__grid--4 { grid-template-columns: repeat(4, 1fr); } }
.why__cell {
  background: var(--ground-2);
  padding: clamp(22px, 2.6vw, 32px);
  display: grid;
  gap: 8px;
  align-content: start;
  transition: background 0.3s var(--ease);
}
.why__cell:hover { background: var(--ground-3); }
.why__cell .star { inline-size: 16px; margin-block-end: 6px; }
/* Cells that carry a name and nothing else don't need the reading height. */
.why__cell--tight { padding-block: clamp(18px, 2vw, 24px); }
.why__title { font-size: 1.06rem; }
.why__text { color: var(--ink-2); font-size: 0.96rem; margin: 0; }
.why__statement {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  max-inline-size: 22ch;
}

/* --------------------------------------------------------------- story */
.story__list { display: grid; gap: 0; }
.story__beat {
  display: grid;
  gap: 8px;
  padding-block: clamp(22px, 3vw, 34px);
  padding-inline-start: clamp(26px, 3.4vw, 44px);
  position: relative;
  border-inline-start: 1px solid var(--line);
}
.story__beat::before {
  content: "";
  position: absolute;
  inset-inline-start: -5px;
  inset-block-start: clamp(28px, 3.4vw, 40px);
  inline-size: 9px;
  block-size: 9px;
  border-radius: 50%;
  background: var(--g-eco);
  box-shadow: 0 0 0 5px var(--ground);
}
.story__beat:last-child { border-inline-start-color: transparent; }
.story__beat:last-child::after {
  content: "";
  position: absolute;
  inset-inline-start: -1px;
  inset-block: 0 auto;
  inline-size: 1px;
  block-size: clamp(28px, 3.4vw, 40px);
  background: var(--line);
}
.story__lead { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 700; }
.story__text { color: var(--ink-2); margin: 0; max-inline-size: 66ch; }
.story__closing {
  margin-block-start: 26px;
  padding-inline-start: clamp(26px, 3.4vw, 44px);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
}

/* ------------------------------------------------------ mission / vision */
.arcs { display: grid; gap: clamp(16px, 2.4vw, 24px); }
@media (min-width: 820px) { .arcs { grid-template-columns: 1fr 1fr; } }
.arc {
  position: relative;
  padding: clamp(26px, 3.2vw, 40px);
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--plate);
  overflow: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
}
.arc::after {
  content: "";
  position: absolute;
  inset-block-end: -58%;
  inset-inline-start: 50%;
  translate: -50% 0;
  inline-size: 128%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.12) transparent transparent;
  pointer-events: none;
}
.arc--mission { border-color: rgba(124, 95, 245, 0.28); }
.arc--vision { border-color: rgba(43, 163, 171, 0.28); }
.arc__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.03em;
}
.arc--mission .arc__title { color: var(--violet-lt); }
.arc--vision .arc__title { color: var(--teal-lt); }
.arc__text { font-size: clamp(1rem, 1.3vw, 1.14rem); color: var(--ink-2); margin: 0; }
.essence {
  margin-block-start: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(124, 95, 245, 0.14), rgba(43, 163, 171, 0.1));
  border: 1px solid var(--line);
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.6;
}

/* ------------------------------------------------------------- presence */
.presence__grid { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (min-width: 900px) { .presence__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }
.presence__map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ground-2);
}
.presence__map img { inline-size: 100%; }
.presence__markets { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 22px; }
.presence__market {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.44em 0.95em;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 0.9rem;
  font-weight: 500;
}
.presence__market .icon { inline-size: 0.95em; block-size: 0.95em; stroke: var(--sky); }

/* -------------------------------------------------------------- founders */
.founders__grid { display: grid; gap: clamp(26px, 4vw, 52px); align-items: center; }
@media (min-width: 880px) { .founders__grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); } }
.founders__portrait {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.founders__portrait img { inline-size: 100%; }
.founders__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 9, 9, 0.75));
  pointer-events: none;
}
.founders__names {
  position: absolute;
  z-index: 1;
  inset-block-end: 20px;
  inset-inline-start: 22px;
  font-weight: 700;
  font-size: 1.05rem;
}
.founders__text { display: grid; gap: 14px; }
.founders__text p { color: var(--ink-2); margin: 0; }
.founders__text p:first-child {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 600;
}

/* ----------------------------------------------------------- case study */
/* The deck lays a case out as the campaign collage across the top, then the
   brand, the challenge and the work underneath. These collages are wide and
   shallow, so anything else wastes the row. */
.cases { display: grid; gap: clamp(44px, 6vw, 84px); }
.case { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.case__frame {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ground-2);
  position: relative;
  transition: border-color 0.3s var(--ease);
}
.case__frame:hover { border-color: var(--line-2); }
.case__frame img { inline-size: 100%; transition: scale 0.6s var(--ease); }
.case__frame:hover img { scale: 1.03; }
.case__body { display: grid; gap: 16px; align-content: start; }
@media (min-width: 900px) {
  .case__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    column-gap: clamp(28px, 4vw, 56px);
  }
  .case__head { grid-column: 1; grid-row: 1; }
  .case__summary { grid-column: 1; grid-row: 2; }
  .case__cols { grid-column: 2; grid-row: 1 / span 2; }
}
.case__head { display: grid; gap: 12px; }
.case__brand {
  font-family: var(--display);
  font-variation-settings: "wdth" 106, "wght" 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.case__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; }
.case__meta div { display: flex; gap: 7px; align-items: baseline; }
.case__meta dt { color: var(--ink-3); font-size: 0.84rem; }
.case__meta dd { margin: 0; font-size: 0.9rem; font-weight: 600; }
.case__summary { color: var(--ink-2); margin: 0; }
.case__cols { display: grid; gap: 18px; }
@media (min-width: 620px) { .case__cols { grid-template-columns: 1fr 1fr; } }
.case__cols p { color: var(--ink-2); font-size: 0.95rem; margin: 0; }
.case__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-block-end: 6px;
}
.case--compact { gap: 16px; }
@media (min-width: 900px) {
  .case--compact .case__body { grid-template-columns: minmax(0, auto) minmax(0, 1fr); align-items: center; }
  .case--compact .case__head { grid-row: 1; }
  .case--compact .case__summary { grid-column: 2; grid-row: 1; }
}

/* ------------------------------------------------------ campaign feature */
/* A longer-running partnership than a single case: the facts strip carries
   what makes it different — how long it has run, and where. */
.campaigns { display: grid; gap: clamp(48px, 7vw, 96px); }
.campaign { display: grid; gap: clamp(22px, 3vw, 34px); }
.campaign__head { display: grid; gap: 14px; }
.campaign__brand {
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1;
}
.campaign__tagline {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  max-inline-size: 46ch;
  margin: 0;
}
.campaign__facts {
  display: grid;
  gap: 1px;
  margin: 6px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 680px) { .campaign__facts { grid-template-columns: repeat(3, 1fr); } }
.campaign__facts > div { background: var(--ground-2); padding: 18px 20px; display: grid; gap: 4px; }
.campaign__facts dt { font-size: 0.8rem; color: var(--ink-3); }
.campaign__facts dd { margin: 0; font-weight: 600; font-size: 0.96rem; white-space: pre-line; }

.campaign__blocks { display: grid; gap: clamp(16px, 2vw, 22px); }
@media (min-width: 880px) { .campaign__blocks { grid-template-columns: repeat(3, 1fr); } }
.campaign__block { display: grid; gap: 8px; align-content: start; }
.campaign__block p { color: var(--ink-2); font-size: 0.95rem; margin: 0; }
.campaign__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sky);
}

.campaign__slides { display: grid; gap: clamp(26px, 4vw, 44px); }
.campaign__slide { margin: 0; display: grid; gap: 16px; }
@media (min-width: 940px) {
  .campaign__slide { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; gap: clamp(20px, 3vw, 34px); }
}
.campaign__cards { display: grid; gap: 18px; align-content: start; }
.campaign__cards p { color: var(--ink-2); font-size: 0.94rem; margin: 6px 0 0; }
.campaign__card-title { font-size: 1.05rem; }

/* --------------------------------------------------------- partner wall */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-end: 24px;
}
.tabs__tab {
  padding: 0.5em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.tabs__tab:hover { color: var(--ink); border-color: var(--line-2); }
.tabs__tab[aria-selected="true"] {
  background: var(--g-eco);
  border-color: transparent;
  color: #0a0a12;
}
.tabs__panel { display: grid; gap: 14px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel img {
  inline-size: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

/* --------------------------------------------------------------- go bot */
.bot {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(24px, 3.4vw, 44px);
  border-radius: 32px;
  border: 1px solid rgba(124, 95, 245, 0.28);
  background: linear-gradient(135deg, rgba(124, 95, 245, 0.12), rgba(9, 9, 9, 0) 60%);
}
.bot__head { display: flex; align-items: center; gap: 12px; }
.bot__avatar {
  inline-size: 44px;
  block-size: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--g-brand);
}
.bot__avatar .star { inline-size: 20px; fill: #fff; }
.bot__name { font-weight: 700; font-size: 1.05rem; }
.bot__role { color: var(--ink-3); font-size: 0.85rem; }
.bot__insights { display: grid; gap: 14px; }
@media (min-width: 860px) { .bot__insights { grid-template-columns: repeat(3, 1fr); } }
.bot__insight {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--plate);
  border: 1px solid var(--line);
}
.bot__q { font-weight: 700; font-size: 1rem; }
.bot__a { color: var(--ink-2); font-size: 0.94rem; margin: 0; }
.bot__quote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  max-inline-size: 46ch;
  margin: 0;
  padding-inline-start: 20px;
  border-inline-start: 3px solid var(--violet);
}

/* A small floating helper, present on every page. */
.gobot {
  position: fixed;
  inset-block-end: 20px;
  inset-inline-end: 20px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}
.gobot > * { pointer-events: auto; }
.gobot__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.7em 1.15em;
  border: 0;
  border-radius: 999px;
  background: var(--g-brand);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(60, 40, 170, 0.45);
}
.gobot__btn .star { inline-size: 17px; fill: #fff; }
.gobot__panel {
  inline-size: min(88vw, 330px);
  padding: 20px;
  border-radius: 22px;
  background: rgba(16, 16, 19, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 12px;
}
.gobot__panel[hidden] { display: none; }
.gobot__line { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
.gobot__actions { display: grid; gap: 8px; }

/* ----------------------------------------------------------- the form */
.contact__grid { display: grid; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (min-width: 920px) { .contact__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); } }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: 0.88rem; font-weight: 600; color: var(--ink-2); }
.field input,
.field select,
.field textarea {
  inline-size: 100%;
  padding: 0.82em 1em;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--plate);
  color: var(--ink);
  font: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { min-block-size: 130px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(124, 95, 245, 0.6);
  background: var(--plate-2);
}
.field select {
  appearance: none;
  cursor: pointer;
  padding-inline-end: 2.7em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9b8c6' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 18px;
}
[dir="rtl"] .field select {
  background-position: left 1em center;
  padding-inline-end: 1em;
  padding-inline-start: 2.7em;
}
.field select option { background: var(--ground-2); color: var(--ink); }
.form__row { display: grid; gap: 16px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 0.86rem; color: var(--ink-3); margin: 0; }

.channels { display: grid; gap: 10px; }
.channel {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--plate);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease);
}
.channel:hover { border-color: var(--line-2); background: var(--plate-2); }
.channel .icon { inline-size: 20px; block-size: 20px; stroke: var(--sky); fill: none; }
.channel .icon--solid { fill: var(--sky); stroke: none; }
.channel__label { display: grid; gap: 1px; }
.channel__label b { font-weight: 600; font-size: 0.97rem; }
.channel__label span { font-size: 0.84rem; color: var(--ink-3); }

.offices { display: grid; gap: 18px; }
@media (min-width: 620px) { .offices { grid-template-columns: 1fr 1fr; } }
.office { display: grid; gap: 6px; align-content: start; }
.office__country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
}
.office__country .icon { inline-size: 1em; block-size: 1em; stroke: var(--violet-lt); }
.office__city { color: var(--ink-2); font-size: 0.93rem; }

/* -------------------------------------------------------------- footer */
.closing {
  padding-block: clamp(56px, 8vw, 110px);
  text-align: center;
  position: relative;
}
.closing__inner { display: grid; gap: 22px; justify-items: center; }
.closing__title {
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-inline-size: 18ch;
}
:lang(en) .closing__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.closing__lead { max-inline-size: 54ch; }

.footer {
  border-block-start: 1px solid var(--line);
  padding-block: clamp(36px, 4vw, 54px);
}
.footer__grid {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}
@media (min-width: 780px) {
  .footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
}
.footer__brand { display: grid; gap: 14px; align-content: start; }
.footer__mark { inline-size: 34px; fill: var(--ink); }
.footer__tag { color: var(--ink-2); font-size: 0.95rem; max-inline-size: 34ch; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__head {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.footer__col a, .footer__col span { color: var(--ink-2); font-size: 0.94rem; }
.footer__col a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  inline-size: 38px;
  block-size: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer__social a:hover { border-color: var(--line-2); background: var(--plate); }
.footer__social .icon { stroke: currentColor; }
.footer__social .icon--solid { fill: currentColor; stroke: none; }
.footer__base {
  margin-block-start: clamp(28px, 3.4vw, 42px);
  padding-block-start: 22px;
  border-block-start: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-3);
  font-size: 0.86rem;
}

/* --------------------------------------------------------------- misc */
.split { display: grid; gap: clamp(22px, 3.4vw, 44px); }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); align-items: start; } }
.split--even { grid-template-columns: 1fr; }
@media (min-width: 900px) { .split--even { grid-template-columns: 1fr 1fr; } }

.points { display: grid; gap: 14px; }
.points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
}
.points .star { inline-size: 14px; margin-block-start: 0.4em; flex: none; }

.tracks { display: grid; gap: clamp(14px, 2vw, 20px); }
@media (min-width: 760px) { .tracks { grid-template-columns: 1fr 1fr; } }
.track {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--plate);
  position: relative;
  overflow: hidden;
}
.track::before {
  content: "";
  position: absolute;
  inset-block: 0 auto;
  inset-inline-start: 0;
  inline-size: 3px;
  block-size: 100%;
  background: var(--g-eco);
  opacity: 0.7;
}
.tracks--brand .track::before { background: var(--g-brand); }
.tracks--business .track::before { background: var(--g-business); }
.track__title { font-size: 1.12rem; }
.track__text { color: var(--ink-2); font-size: 0.96rem; margin: 0; }

/* ------------------------------------------------------------------ RTL */
[dir="rtl"] .nav__links a::after { --origin: right; }
[dir="rtl"] .lockup__twin { rotate: 3.5deg; }
[dir="rtl"] .prism__stage {
  transform:
    rotateX(calc(var(--tilt-x, 0) * 1deg))
    rotateY(calc(18deg + var(--tilt-y, 0) * 1deg))
    rotateZ(2deg);
}
[dir="rtl"] .arm::before { inset-inline-end: auto; inset-inline-start: -25%; }
/* The arrow points away from the reader, so it follows the reading direction. */
[dir="rtl"] .icon--arrow, [dir="rtl"] .icon--send { scale: -1 1; }

/* Arabic runs a touch looser — Plex Arabic sits small next to Latin at the
   same size. Set on body only, so anything with its own line-height keeps it. */
[dir="rtl"] body { line-height: 1.85; }
[dir="rtl"] .lockup__title { line-height: 1.3; }
[dir="rtl"] .d1 { line-height: 1.24; }
[dir="rtl"] .d2 { line-height: 1.3; }
[dir="rtl"] .closing__title { line-height: 1.26; }
[dir="rtl"] .arm__name,
[dir="rtl"] .case__brand,
[dir="rtl"] .figure__value,
[dir="rtl"] .arc__title,
[dir="rtl"] .nav__word b { direction: ltr; }

/* -------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .cover__kicker,
  .js .cover__title,
  .js .cover__lead,
  .js .cover__cta,
  .js .cover__arms { opacity: 1; transform: none; }
  .js .prism__stage { opacity: 1; scale: 1; }
  .cover__dust { display: none; }
  .case__frame:hover img { scale: 1; }
}
