/* ============================================================
   WONDER LEVEL — Design System
   Palette: navy + cyan on light  |     Concept: "LEVELS"
   ============================================================ */

/* ---------- 01 · TOKENS ---------- */
:root {
  /* brand */
  --ink: #0D2439;
  --ink-2: #12293F;
  --ink-3: #173A5E;
  --navy: #173A5E;
  --navy-2: #1B4470;
  --cyan: #00B4D8;
  --cyan-2: #0091AD;
  --gold: #F4A62A;

  --paper: #FFFFFF;
  --soft: #F4F7FB;
  --soft-2: #E8EEF5;

  --accent: var(--cyan);
  --grad: linear-gradient(135deg, #173A5E 0%, #0E6BA8 55%, #00B4D8 100%);

  /* text per surface */
  --t-dark: #0D2439;
  --t-dark-mute: #4A5B6E;
  --t-light: #EAF2FA;
  --t-light-mute: #8FB3D3;

  /* live surface variables (light by default) */
  --fg: var(--t-dark);
  --fg-mute: var(--t-dark-mute);
  --hair: #E2E9F1;

  /* type */
  --display: 'Cairo', 'Tajawal', sans-serif;
  --body: 'Tajawal', 'Cairo', sans-serif;
  --mono: 'IBM Plex Mono', 'Tajawal', ui-monospace, monospace;

  --fs-mega: clamp(2.4rem, 6.6vw, 5.6rem);
  --fs-xl: clamp(1.8rem, 4vw, 3.2rem);
  --fs-md: clamp(1.02rem, 1.3vw, 1.18rem);

  /* motion */
  --e: cubic-bezier(.16, 1, .3, 1);
  --t: .55s var(--e);
  --t-fast: .3s var(--e);

  --gut: clamp(20px, 5vw, 68px);
}

/* ---------- 02 · BASE ---------- */
* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.95;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
  color: var(--fg);
  letter-spacing: 0;
}

p {
  margin: 0;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

::selection {
  background: var(--navy);
  color: #fff;
}

.wrap {
  width: 100%;
  padding-inline: var(--gut);
  margin-inline: auto;
  max-width: 1600px;
}

.sec {
  padding: clamp(66px, 9vw, 132px) 0;
  position: relative;
}

.sec-tight {
  padding: clamp(46px, 5.5vw, 80px) 0;
}

/* ---------- 03 · SURFACES ---------- */
.on-ink,
.on-ink-2 {
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .15);
  background: var(--ink);
  color: var(--fg);
}

.on-ink-2 {
  background: var(--ink-2);
}

.on-soft {
  background: var(--soft);
}

.on-paper {
  background: var(--paper);
}

/* scrollbar */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--soft);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* ---------- 04 · TEXTURE · PROGRESS · RAIL ---------- */
.grain {
  position: fixed;
  inset: -120%;
  z-index: 9990;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0)
  }

  20% {
    transform: translate(-4%, 3%)
  }

  40% {
    transform: translate(3%, -4%)
  }

  60% {
    transform: translate(-3%, -3%)
  }

  80% {
    transform: translate(4%, 2%)
  }

  100% {
    transform: translate(0, 0)
  }
}

#scrollBar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 2px;
  width: 0%;
  background: var(--grad);
  z-index: 9992;
  transition: width .1s linear;
}

/* ---------- 05 · LOADER ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(13, 36, 57, .38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .65s var(--e), visibility .65s;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-in {
  text-align: center;
  padding: clamp(24px, 3.6vw, 32px) clamp(30px, 4.5vw, 42px);
  background: rgba(13, 36, 57, .94);
  border: 1px solid rgba(143, 179, 211, .14);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
  min-width: min(260px, 74vw);
}

.loader-in img {
  width: min(190px, 54vw);
  height: auto;
  max-height: 42px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translateY(6px);
  animation: loaderIn .7s var(--e) .1s forwards;
}

@keyframes loaderIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.loader-bar {
  width: min(148px, 40vw);
  height: 2px;
  margin: 20px auto 0;
  background: rgba(143, 179, 211, .16);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--grad);
  transition: width .45s var(--e);
}

#loader.run .loader-bar-fill {
  width: 68%;
}

#loader.done .loader-bar-fill {
  width: 100%;
  transition-duration: .22s;
}

/* ---------- 06 · HEADER ---------- */
.hdr {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding var(--t), background var(--t), box-shadow var(--t);
}

.hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 38px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  transition: var(--t-fast);
}

.brand .b-light {
  display: block;
}

.brand .b-dark {
  display: none;
}

.brand:hover img {
  opacity: .8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  padding: 8px 15px;
  color: rgba(234, 242, 250, .72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  inset-inline-start: 15px;
  inset-inline-end: 15px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform var(--t-fast);
}

.nav a:hover,
.nav a.on {
  color: #fff;
}

.nav a:hover::after,
.nav a.on::after {
  transform: scaleX(1);
}

.hdr-cta {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .13em;
  border: 1px solid rgba(234, 242, 250, .28);
  padding: 11px 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--t-fast);
}

.hdr-cta:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

/* solid state (scrolled, or inner pages) */
.hdr.stuck {
  padding: 11px 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px) saturate(170%);
  box-shadow: 0 6px 26px rgba(13, 36, 57, .08);
}

.hdr.stuck .brand .b-light {
  display: none;
}

.hdr.stuck .brand .b-dark {
  display: block;
}

.hdr.stuck .nav a {
  color: var(--t-dark-mute);
}

.hdr.stuck .nav a:hover,
.hdr.stuck .nav a.on {
  color: var(--navy);
}

.hdr.stuck .hdr-cta {
  color: var(--navy);
  border-color: var(--soft-2);
}

.hdr.stuck .hdr-cta:hover {
  color: #fff;
}

.hdr.stuck .burger {
  border-color: var(--soft-2);
}

.hdr.stuck .burger span {
  background: var(--navy);
}

.burger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(234, 242, 250, .28);
  background: none;
  display: none;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  padding: 0;
}

.burger span {
  width: 18px;
  height: 1.6px;
  background: #fff;
  transition: var(--t-fast);
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(3.3px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
  transform: translateY(-3.3px) rotate(-45deg);
}

@media (max-width:1079.98px) {

  .nav,
  .hdr-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* fullscreen menu */
#menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  clip-path: circle(0% at 92% 6%);
  transition: clip-path .8s var(--e);
  display: flex;
  align-items: center;
  overflow-y: auto;
  padding: 110px 0 50px;
  color: var(--t-light);
}

body.menu-open #menu {
  clip-path: circle(150% at 92% 6%);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 242, 250, .14);
}

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 19px 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  transform: translateY(110%);
  transition: transform .7s var(--e), color var(--t-fast);
}

body.menu-open .menu-list a {
  transform: none;
}

.menu-list li:nth-child(2) a {
  transition-delay: .06s
}

.menu-list li:nth-child(3) a {
  transition-delay: .12s
}

.menu-list li:nth-child(4) a {
  transition-delay: .18s
}

.menu-list li:nth-child(5) a {
  transition-delay: .24s
}

.menu-list a .n {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--cyan);
  font-weight: 400;
}

.menu-list a:hover {
  color: var(--cyan);
}

.menu-meta {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--t-light-mute);
  letter-spacing: .1em;
}

/* ---------- 07 · LABELS + BUTTONS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.eyebrow::before {
  display: none;
}

.eyebrow .dim {
  color: var(--fg-mute);
}

.lead {
  font-size: var(--fs-md);
  color: var(--fg-mute);
  max-width: 56ch;
  line-height: 1.9;
}

.btn-x {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1.5px solid currentColor;
  overflow: hidden;
  isolation: isolate;
  background: none;
  color: var(--fg);
  will-change: transform;
}

.btn-x::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform .45s var(--e);
}

.btn-x:hover {
  color: #fff;
  border-color: var(--navy);
}

.btn-x:hover::before {
  transform: none;
}

.btn-x.solid {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 107, 168, .28);
}

.btn-x.solid::before {
  background: var(--ink);
}

.btn-x.solid:hover {
  color: #fff;
  border-color: transparent;
}

.on-ink .btn-x:hover,
.on-ink-2 .btn-x:hover,
.hero .btn-x:hover {
  border-color: #fff;
  color: var(--ink);
}

.on-ink .btn-x::before,
.on-ink-2 .btn-x::before,
.hero .btn-x::before {
  background: #fff;
}

.on-ink .btn-x.solid:hover,
.on-ink-2 .btn-x.solid:hover,
.hero .btn-x.solid:hover {
  color: var(--ink);
  border-color: transparent;
}

.link-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1.5px solid currentColor;
}

.link-x:hover {
  color: var(--cyan);
}

/* ---------- 08 · HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 150px 0 80px;
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .15);
  color: var(--fg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 58% at 84% 20%, rgba(0, 180, 216, .30) 0%, transparent 62%),
    radial-gradient(52% 60% at 8% 84%, rgba(14, 107, 168, .36) 0%, transparent 62%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 28%, transparent 76%);
}

.hero .wrap {
  position: relative;
  z-index: 3;
}

.hero-cols {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.68;
  letter-spacing: 0;
  margin-bottom: 24px;
  font-weight: 800;
}

.typed-wrap {
  color: var(--cyan);
}

.typed-cursor {
  color: var(--cyan);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.hero .lead {
  color: #B9CFE4;
  max-width: 52ch;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 3.4vw, 52px);
  justify-content: start;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
}

.hero-stats .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  color: #fff;
  line-height: 1;
}

.hero-stats .v small {
  color: var(--cyan);
}

.hero-stats .k {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--t-light-mute);
  margin-top: 9px;
}

/* floating service orbs */
.hero-visual {
  position: relative;
  min-height: 440px;
}

.orb {
  position: absolute;
  width: clamp(88px, 8.4vw, 110px);
  aspect-ratio: 1;
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
  animation: float 6s ease-in-out infinite;
  transition: border-color var(--t-fast);
}

.orb svg {
  width: 30px;
  color: var(--cyan);
}

.orb span {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .14em;
}

.orb:hover {
  border-color: var(--cyan);
}

.orb:nth-child(1) {
  top: 0;
  inset-inline-start: 6%;
  animation-delay: 0s
}

.orb:nth-child(2) {
  top: 18%;
  inset-inline-end: 2%;
  animation-delay: .7s
}

.orb:nth-child(3) {
  top: 42%;
  inset-inline-start: 0;
  animation-delay: 1.4s
}

.orb:nth-child(4) {
  top: 60%;
  inset-inline-end: 12%;
  animation-delay: 2.1s
}

.orb:nth-child(5) {
  bottom: 0;
  inset-inline-start: 22%;
  animation-delay: 2.8s
}

.orb:nth-child(6) {
  top: 33%;
  inset-inline-start: 37%;
  animation-delay: 3.5s;
  background: var(--grad);
  border-color: transparent
}

.orb:nth-child(6) svg {
  color: #fff
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

@media (max-width:991.98px) {
  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero-cols {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- 09 · MARQUEE ---------- */
.mq {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--hair);
  background: var(--soft);
}

.mq-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: mqRun 34s linear infinite;
}

.mq:hover .mq-track {
  animation-play-state: paused;
}

.mq-track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  letter-spacing: 0;
  color: var(--navy);
}

.mq-track .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
}

.mq-track .ghost {
  -webkit-text-stroke: 1px var(--navy);
  color: transparent;
  font-style: normal;
}

/* the track is laid out RTL, so it overflows to the LEFT of the container.
   translating negative walks it off-screen and leaves a blank strip —
   in RTL the loop has to move in the positive direction. */
@keyframes mqRun {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(50%)
  }
}

/* ---------- 10 · SECTION HEADS ---------- */
.lv-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.6vw, 58px);
}

.lv-title {
  font-size: var(--fs-xl);
  max-width: 19ch;
  letter-spacing: 0;
  line-height: 1.52;
  font-weight: 800;
}

/* ---------- 11 · WORK ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 32px);
}

.work {
  grid-column: span 6;
  position: relative;
}

.work.wide {
  grid-column: span 12;
}

@media (max-width:767.98px) {

  .work-grid .work,
  .work-grid .work.wide {
    grid-column: span 12;
  }
}

.work-fig {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--grad);
  display: grid;
  place-items: center;
  will-change: transform;
}

.work.tall .work-fig {
  aspect-ratio: 4/5;
}

.work.wide .work-fig {
  aspect-ratio: 21/9;
}

.work-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 57, .32);
  opacity: 0;
  transition: opacity var(--t);
}

.work:hover .work-fig::after {
  opacity: 1;
}

.work-fig>svg {
  width: clamp(64px, 14%, 124px);
  color: #fff;
  opacity: .24;
  transition: transform .8s var(--e), opacity .5s var(--e);
}

.work:hover .work-fig>svg {
  transform: scale(1.16) rotate(-8deg);
  opacity: .4;
}

.work.v2 .work-fig {
  background: linear-gradient(135deg, #0D2439, #1B4470 60%, #0091AD);
}

.work.v3 .work-fig {
  background: linear-gradient(135deg, #12293F, #3A2E6E 55%, #00B4D8);
}

.work.v4 .work-fig {
  background: linear-gradient(135deg, #0D2439, #0E6BA8 60%, #F4A62A);
}

.work-idx {
  position: absolute;
  top: 16px;
  inset-inline-start: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .6);
}

.work-open {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .14em;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--t);
}

.work:hover .work-open {
  opacity: 1;
  transform: none;
}

.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
}

.work-meta h3 {
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  transition: color var(--t-fast);
}

.work:hover .work-meta h3 {
  color: var(--cyan);
}

.work-meta .cat {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .17em;
  color: var(--fg-mute);
  flex: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4px, 1.2vw, 8px);
  margin-bottom: clamp(26px, 3.6vw, 48px);
}

.filters button {
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fg-mute);
  transition: color var(--t-fast), background var(--t-fast);
}

.filters button:hover {
  color: var(--navy);
  background: var(--soft);
}

.filters button.on {
  background: var(--ink);
  color: #fff;
}

/* ---------- 12 · METRICS ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair);
}

.metrics>div {
  padding: clamp(26px, 3.6vw, 48px) clamp(14px, 2vw, 28px);
  border-inline-start: 1px solid var(--hair);
}

.metrics>div:first-child {
  border-inline-start: 0;
}

.metrics .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--fg);
}

.metrics .v small {
  color: var(--cyan);
  font-size: .45em;
}

.metrics .k {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .15em;
  color: var(--fg-mute);
  margin-top: 13px;
}

@media (max-width:767.98px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics>div:nth-child(3) {
    border-inline-start: 0;
  }

  .metrics>div:nth-child(n+3) {
    border-top: 1px solid var(--hair);
  }
}

/* ---------- 14 · CAPS ---------- */
.caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.caps span {
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: 0;
  border: none;
  padding: 0;
  color: var(--fg-mute);
  transition: color var(--t-fast);
}

.caps span::before {
  content: '·';
  margin-inline-end: 8px;
  color: var(--cyan);
}

.caps span:first-child::before {
  display: none;
}

.caps span:hover {
  color: var(--navy);
  background: none;
}

/* ---------- 16 · CTA ---------- */
.cta {
  position: relative;
  overflow: visible;
  padding: clamp(66px, 10vw, 150px) 0;
}

.cta .huge {
  font-size: clamp(2.2rem, 8vw, 6.4rem);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 700;
  padding-bottom: .1em;
}

.cta .huge .out {
  color: var(--cyan);
}

/* ---------- 17 · FORMS ---------- */
.f-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 22px;
}

@media (max-width:767.98px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}

.f-full {
  grid-column: 1/-1;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1.5px solid var(--hair);
  padding: 12px 2px;
  color: var(--fg);
  font-family: var(--body);
  font-size: 1rem;
  border-radius: 0;
  transition: border-color var(--t-fast);
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-bottom-color: var(--cyan);
}

.field select option {
  background: #fff;
  color: var(--t-dark);
}

.on-ink .field select option,
.on-ink-2 .field select option,
.ftr .field select option {
  background: var(--ink-2);
  color: var(--t-light);
}

.field .err {
  display: none;
  font-family: var(--mono);
  font-size: .63rem;
  color: #E0523B;
  margin-top: 7px;
  letter-spacing: .05em;
}

.field.bad input,
.field.bad select,
.field.bad textarea {
  border-bottom-color: #E0523B;
}

.field.bad .err {
  display: block;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--fg-mute);
}

.check input {
  width: 17px;
  height: 17px;
  margin-top: 6px;
  accent-color: var(--cyan);
  flex: none;
}

.check.bad {
  color: #E0523B;
}

#toasts {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 9994;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-x {
  background: var(--ink);
  color: #fff;
  padding: 15px 20px;
  max-width: 340px;
  font-size: .9rem;
  border-inline-start: 3px solid #E0523B;
  box-shadow: 0 20px 50px rgba(13, 36, 57, .35);
  animation: tIn .45s var(--e);
}

.toast-x.ok {
  border-inline-start-color: var(--cyan);
}

@keyframes tIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }
}

/* ---------- 18 · PAGE HEAD ---------- */
.phead {
  padding: clamp(140px, 16vw, 210px) 0 clamp(40px, 5.5vw, 74px);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .15);
  color: var(--fg);
}

.phead::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 70% at 84% 14%, rgba(0, 180, 216, .26), transparent 62%),
    radial-gradient(52% 70% at 8% 92%, rgba(14, 107, 168, .3), transparent 62%);
}

.phead .wrap {
  position: relative;
  z-index: 2;
}

.phead h1 {
  color: #fff;
  font-size: var(--fs-mega);
  line-height: 1.38;
  letter-spacing: 0;
}

.crumbs {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .15em;
  color: var(--t-light-mute);
}

.crumbs a:hover {
  color: var(--cyan);
}

/* ---------- 19 · INNER BLOCKS ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5.5vw, 84px);
  align-items: start;
}

.split-3-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5.5vw, 84px);
  align-items: start;
}

@media (max-width:991.98px) {

  .split,
  .split-3-2 {
    grid-template-columns: 1fr;
  }
}

.ulx {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ulx li {
  position: relative;
  display: block;
  font-size: .95rem;
  padding: 12px 0;
  padding-inline-start: 22px;
  border-top: 1px solid var(--hair);
}

.ulx li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.deflist {
  border-top: 1px solid var(--hair);
}

.deflist>div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}

.deflist dt {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .15em;
  color: var(--cyan);
  padding-top: 6px;
}

.deflist dd {
  margin: 0;
}

.deflist dd h4 {
  font-size: 1.04rem;
  margin-bottom: 4px;
}

.deflist dd p {
  font-size: .92rem;
  color: var(--fg-mute);
}

@media (max-width:575.98px) {
  .deflist>div {
    grid-template-columns: 1fr;
  }
}

.svc-vis {
  position: relative;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  border: 1px solid var(--hair);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--soft);
}

.on-ink .svc-vis,
.on-ink-2 .svc-vis {
  background: rgba(255, 255, 255, .04);
}

.svc-vis>svg {
  width: clamp(70px, 25%, 140px);
  color: var(--navy);
  opacity: .6;
}

.on-ink .svc-vis>svg,
.on-ink-2 .svc-vis>svg {
  color: var(--cyan);
  opacity: .8;
}

.svc-vis .bignum {
  position: absolute;
  top: 12px;
  inset-inline-start: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1;
  color: var(--cyan);
  opacity: .22;
  letter-spacing: -.04em;
}

.svc-vis::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 60% at 72% 26%, rgba(0, 180, 216, .14), transparent 62%);
}

.tile {
  padding: clamp(22px, 2.8vw, 32px);
  height: 100%;
  transition: var(--t);
  border: none;
  background: transparent;
  border-top: 1px solid var(--hair);
}

.on-ink .tile,
.on-ink-2 .tile {
  background: transparent;
}

.tile:hover {
  transform: none;
  box-shadow: none;
  border-top-color: var(--cyan);
}

.tile .ic {
  width: 32px;
  color: var(--cyan);
  margin-bottom: 18px;
}

.tile h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tile p {
  font-size: .92rem;
  color: var(--fg-mute);
}

.people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 26px);
}

@media (max-width:991.98px) {
  .people {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:479.98px) {
  .people {
    grid-template-columns: 1fr;
  }
}

.person {
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}

.person .ph {
  aspect-ratio: 3/4;
  background: var(--soft-2);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
  transition: var(--t);
}

.person:hover .ph {
  background: var(--grad);
  color: #fff;
}

.person h3 {
  font-size: 1.02rem;
}

.person .rl {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .13em;
  color: var(--cyan);
  margin-top: 4px;
}

.acc-item {
  border-bottom: 1px solid var(--hair);
}

.acc-btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: start;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--fg);
}

.acc-btn .pm {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}

.acc-btn .pm::before,
.acc-btn .pm::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  transition: var(--t-fast);
}

.acc-btn .pm::before {
  inset-inline: 0;
  top: 6px;
  height: 1.6px;
}

.acc-btn .pm::after {
  inset-block: 0;
  inset-inline-start: 6px;
  width: 1.6px;
}

.acc-item.open .acc-btn .pm::after {
  transform: scaleY(0);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--e);
}

.acc-panel p {
  padding-bottom: 24px;
  color: var(--fg-mute);
  font-size: .94rem;
  max-width: 70ch;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

@media (max-width:991.98px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

.plan {
  padding: clamp(26px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  border: none;
  border-top: 1px solid var(--hair);
  background: transparent;
}

.on-ink .plan,
.on-ink-2 .plan {
  background: transparent;
}

.plan.hot {
  background: var(--ink);
  border-color: transparent;
  color: var(--t-light);
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .16);
  box-shadow: 0 24px 60px rgba(13, 36, 57, .18);
}

.plan .tier {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .17em;
  color: var(--cyan);
  margin-bottom: 15px;
}

.plan h3 {
  font-size: 1.45rem;
  margin-bottom: 5px;
}

.plan .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.02em;
  margin: 18px 0 4px;
  color: var(--fg);
}

.plan .price span {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .09em;
  font-weight: 400;
  color: var(--fg-mute);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  flex: 1;
}

.plan li {
  position: relative;
  display: block;
  font-size: .92rem;
  padding: 9px 0;
  padding-inline-start: 20px;
  border-top: 1px solid var(--hair);
}

.plan li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.plan.hot .btn-x:hover {
  border-color: #fff;
  color: var(--ink);
}

.plan.hot .btn-x::before {
  background: #fff;
}

.creach {
  border-top: 1px solid var(--hair);
}

.creach a,
.creach .row-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  transition: var(--t-fast);
}

.creach a:hover {
  padding-inline-start: 12px;
  color: var(--cyan);
}

.creach .k {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .15em;
  color: var(--fg-mute);
  flex: none;
}

.creach .v {
  font-size: 1.04rem;
  text-align: end;
  min-width: 0;
  overflow-wrap: anywhere;
}

.manifesto {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(1.2rem, 2.6vw, 2.1rem);
  line-height: 1.8;
  max-width: 26ch;
}

.manifesto em {
  font-style: normal;
  color: var(--cyan);
}

.mapx {
  border: 1px solid var(--hair);
  overflow: hidden;
  line-height: 0;
}

.mapx iframe {
  width: 100%;
  height: 330px;
  border: 0;
  filter: grayscale(.35);
}

.note {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .05em;
  line-height: 2;
  color: var(--fg-mute);
  border-inline-start: 2px solid var(--cyan);
  padding-inline-start: 14px;
}

/* ---------- 20 · MODAL ---------- */
#pmodal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  background: rgba(13, 36, 57, .72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#pmodal.show {
  display: flex;
  animation: tIn .35s var(--e);
}

.pmodal-in {
  background: var(--paper);
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  box-shadow: 0 40px 90px rgba(13, 36, 57, .4);
}

.pmodal-hd {
  position: relative;
  aspect-ratio: 21/9;
  display: grid;
  place-items: center;
  background: var(--grad);
}

.pmodal-hd>svg {
  width: 92px;
  color: #fff;
  opacity: .3;
}

.pmodal-x {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: none;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
}

.pmodal-x:hover {
  background: #fff;
  color: var(--navy);
}

.pmodal-bd {
  padding: clamp(24px, 3.4vw, 38px);
}

.pmodal-bd h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  margin-bottom: 8px;
}

/* ---------- 21 · FOOTER + FABS ---------- */
.ftr {
  background: var(--ink);
  color: var(--t-light);
  padding: clamp(54px, 6.5vw, 84px) 0 0;
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .14);
}

.ftr-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(26px, 3.6vw, 50px);
}

@media (max-width:991.98px) {
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:575.98px) {
  .ftr-top {
    grid-template-columns: 1fr;
  }
}

.ftr img,
.ftr-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  margin-bottom: 20px;
  object-fit: contain;
}

.ftr h4 {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  font-weight: 400;
}

.ftr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr li {
  margin-bottom: 10px;
}

.ftr a {
  color: var(--fg-mute);
  font-size: .93rem;
}

.ftr a:hover {
  color: #fff;
}

.ftr p {
  color: var(--fg-mute);
  font-size: .93rem;
}

.nl-form {
  margin-top: clamp(22px, 2.8vw, 28px);
}

.nl-label {
  display: block;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--t-light);
  margin-bottom: 6px;
}

.nl-hint {
  font-size: .8rem;
  color: var(--t-light-mute);
  line-height: 1.65;
  margin-bottom: 14px;
}

.nl-row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(143, 179, 211, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.nl-row:focus-within {
  border-color: rgba(0, 180, 216, .48);
  background: rgba(255, 255, 255, .07);
}

.nl-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--t-light);
  font-family: var(--body);
  font-size: .9rem;
}

.nl-row input::placeholder {
  color: rgba(143, 179, 211, .45);
}

.nl-row input:focus {
  outline: 0;
}

.nl-btn {
  flex: none;
  border: 0;
  cursor: pointer;
  padding: 0 clamp(16px, 2.4vw, 22px);
  background: var(--grad);
  color: #fff;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: filter var(--t-fast), transform var(--t-fast);
}

.nl-btn:hover {
  filter: brightness(1.08);
}

.nl-btn:active {
  transform: scale(.98);
}

@media (max-width:575.98px) {
  .nl-row {
    flex-direction: column;
  }

  .nl-btn {
    padding: 12px;
    text-align: center;
  }
}

.ftr-bot {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hair);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .11em;
  color: var(--fg-mute);
}

.clock {
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
}

.fabs {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 107, 168, .3);
  transition: var(--t-fast);
}

.fab:hover {
  transform: translateY(-4px);
  color: #fff;
}

.fab.wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .38);
}

.fab.wa:hover {
  background: #1FBF5B;
}

#toTop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

#toTop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fab i {
  width: 11px;
  height: 11px;
  background: currentColor;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

/* grid span helpers (used inside .work-grid) */
.g-3 {
  grid-column: span 3;
}

.g-4 {
  grid-column: span 4;
}

.g-6 {
  grid-column: span 6;
}

@media (max-width:991.98px) {

  .g-3,
  .g-4 {
    grid-column: span 6;
  }
}

@media (max-width:575.98px) {

  .g-3,
  .g-4,
  .g-6 {
    grid-column: span 12;
  }
}

/* ---------- 22 · REVEAL + UTILS ---------- */
[data-rv] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--e), transform .85s var(--e);
}

[data-rv].in {
  opacity: 1;
  transform: none;
}

[data-rv="l"] {
  transform: translateX(-32px);
}

[data-rv="r"] {
  transform: translateX(32px);
}

[data-rv="s"] {
  transform: scale(.96);
}

[data-rv="n"] {
  transform: none;
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-rv] {
    opacity: 1 !important;
    transform: none !important;
  }

  .grain,
  .mq-track,
  .orb {
    animation: none !important;
  }
}

.mono {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mute {
  color: var(--fg-mute);
}

.acc-c {
  color: var(--cyan);
}

.hr {
  height: 1px;
  background: var(--hair);
  border: 0;
  margin: 0;
}

/* ============================================================
   23 · SYSTEM MAP — the services, drawn as an architecture
   ============================================================ */
.smap {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(26px, 4vw, 66px);
  align-items: center;
}

@media (max-width:1079.98px) {
  .smap {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

.smap-stage {
  position: relative;
  aspect-ratio: 1000/700;
}

.smap-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.smap-wires .wire {
  fill: none;
  stroke: var(--soft-2);
  stroke-width: 1.5;
}

.smap-wires .ring {
  fill: none;
  stroke: var(--soft-2);
  stroke-width: 1;
  stroke-dasharray: 4 8;
}

.smap-wires .flow {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 175;
  animation: flow 5s linear infinite;
}

.smap-wires .flow:nth-of-type(2) {
  animation-delay: -.8s
}

.smap-wires .flow:nth-of-type(3) {
  animation-delay: -1.6s
}

.smap-wires .flow:nth-of-type(4) {
  animation-delay: -2.4s
}

.smap-wires .flow:nth-of-type(5) {
  animation-delay: -3.2s
}

.smap-wires .flow:nth-of-type(6) {
  animation-delay: -4s
}

@keyframes flow {
  to {
    stroke-dashoffset: -360;
  }
}

.score {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 22px 50px rgba(14, 107, 168, .32);
}

.score img {
  width: 50%;
  height: auto;
  object-fit: contain;
}

.score::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  animation: corePulse 3.2s ease-out infinite;
}

@keyframes corePulse {
  0% {
    transform: scale(1);
    opacity: .55
  }

  100% {
    transform: scale(1.55);
    opacity: 0
  }
}

.snode {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(94px, 14%, 148px);
  padding: 15px 8px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--hair);
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t), opacity var(--t);
}

.snode svg {
  width: 26px;
  margin: 0 auto 9px;
  color: var(--navy);
  transition: color var(--t-fast);
}

.snode b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--fg);
  line-height: 1.4;
}

.snode i {
  display: block;
  font-style: normal;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .17em;
  color: var(--fg-mute);
}

.snode:hover,
.snode.on {
  background: var(--grad);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 20px 42px rgba(14, 107, 168, .32);
}

.snode:hover svg,
.snode.on svg {
  color: #fff;
}

.snode:hover b,
.snode.on b,
.snode:hover i,
.snode.on i {
  color: #fff;
}

.smap-stage.act .snode:not(.on) {
  opacity: .42;
}

.spanel {
  position: relative;
  min-height: 340px;
}

.spane {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--e), transform .5s var(--e);
  pointer-events: none;
}

.spane.on {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}

.spane .k {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  color: var(--cyan);
}

.spane h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  margin: 12px 0 14px;
  letter-spacing: 0;
}

.spane .ulx {
  margin: 20px 0 22px;
}

.spane .ulx li {
  padding-block: 10px;
}

@media (max-width:767.98px) {
  .smap-stage {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .smap-wires,
  .score {
    display: none;
  }

  .snode {
    position: static;
    transform: none;
    width: auto;
  }

  .snode:hover,
  .snode.on {
    transform: none;
  }

  .spanel {
    min-height: 400px;
  }
}

/* ============================================================
   24 · RESULTS LEDGER
   The work section as an instrument panel: every project is one
   row of evidence — a before bar, an after bar, and the delta.
   Bars draw themselves when the row enters the viewport.
   ============================================================ */
.ledger {
  border-top: 1px solid var(--hair);
}

.ldg {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(210px, 1.05fr) minmax(280px, 1.55fr) 118px;
  gap: 0 clamp(18px, 2.4vw, 44px);
  align-items: center;
  padding: clamp(24px, 2.8vw, 34px) clamp(14px, 1.6vw, 22px);
  border-bottom: 1px solid var(--hair);
  transition: background var(--t);
}

.ldg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 180, 216, .09), transparent 62%);
  opacity: 0;
  transition: opacity var(--t);
}

.ldg:hover::before {
  opacity: 1;
}

.ldg>* {
  position: relative;
  z-index: 1;
}

/* 1 · index + type */
.ldg-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ldg-ix {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--fg-mute);
}

.ldg-type {
  width: auto;
  height: auto;
  display: block;
  border: none;
  background: none;
  transition: var(--t);
}

.ldg-type svg {
  width: 22px;
  color: var(--cyan);
  opacity: .75;
}

.ldg:hover .ldg-type {
  background: none;
  border-color: transparent;
}

.ldg:hover .ldg-type svg {
  color: var(--cyan);
  opacity: 1;
}

/* 2 · identity */
.ldg-id h3 {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  margin-bottom: 7px;
}

.ldg-id p {
  font-size: .88rem;
  color: var(--fg-mute);
}

.ldg-id .cat {
  display: inline-block;
  margin-top: 10px;
  font-size: .76rem;
  font-weight: 500;
  color: var(--fg-mute);
  border: none;
  padding: 0;
}

/* 3 · the measurement */
.ldg-chart {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ldg-metric {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--fg-mute);
  margin-bottom: 2px;
}

.bar {
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
}

.bar .fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  transition: width 1.15s var(--e) .2s;
}

.bar.b4 .fill {
  background: rgba(234, 242, 250, .12);
}

.bar.af .fill {
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(0, 180, 216, .22);
}

.ldg.in .bar.b4 .fill {
  width: var(--before, 100%);
}

.ldg.in .bar.af .fill {
  width: var(--after, 50%);
}

.bar .lbl {
  position: relative;
  z-index: 2;
  padding-inline-start: 12px;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--fg-mute);
}

.bar.af .lbl {
  color: rgba(255, 255, 255, .82);
}

.bar .val {
  position: relative;
  z-index: 2;
  margin-inline-start: auto;
  padding-inline-end: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .94rem;
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

/* 4 · delta */
.ldg-delta {
  text-align: center;
}

.ldg-delta b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--cyan);
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.ldg-delta i {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  color: var(--fg-mute);
}

/* 5 · the stack, revealed on hover */
.ldg-more {
  grid-column: 1/-1;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .5s var(--e), opacity .4s var(--e), margin-top .5s var(--e);
}

.ldg:hover .ldg-more,
.ldg:focus-within .ldg-more {
  max-height: 90px;
  opacity: 1;
  margin-top: 20px;
}

.ldg-more .caps span {
  font-size: .64rem;
  padding: 5px 12px;
}

@media (max-width:991.98px) {
  .ldg {
    grid-template-columns: 56px 1fr auto;
    gap: 0 16px;
    padding-inline: 0;
  }

  /* pin each cell so the delta stays on the headline row, not under the bars */
  .ldg-head {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .ldg-id {
    grid-column: 2;
    grid-row: 1;
  }

  .ldg-delta {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    text-align: end;
  }

  .ldg-chart {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 22px;
  }

  .ldg-more {
    grid-column: 1/-1;
    grid-row: 3;
    max-height: none;
    opacity: 1;
    margin-top: 18px;
  }

  .ldg-more .caps {
    gap: 6px;
  }
}

@media (max-width:479.98px) {
  .ldg {
    grid-template-columns: 1fr auto;
  }

  .ldg-head {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================================
   25 · NUMBERS — bento showcase
   ============================================================ */
.nums-sec {
  overflow: hidden;
}

.nums-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(0, 180, 216, .16), transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(14, 107, 168, .12), transparent 60%);
}

.nums-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.15fr);
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 20px);
}

/* featured stat */
.nums-feature {
  position: relative;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  min-height: clamp(320px, 42vw, 420px);
  border: 1px solid rgba(234, 242, 250, .12);
  border-radius: 2px;
  background:
    linear-gradient(160deg, rgba(0, 180, 216, .1) 0%, transparent 55%),
    rgba(255, 255, 255, .03);
  overflow: hidden;
}

.nums-feature::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 3px;
  background: var(--grad);
}

.nums-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset-inline-end: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(78%, 300px);
  height: auto;
  object-fit: contain;
  opacity: .05;
  -webkit-mask-image: radial-gradient(ellipse 68% 72% at 58% 50%, #000 18%, transparent 74%);
  mask-image: radial-gradient(ellipse 68% 72% at 58% 50%, #000 18%, transparent 74%);
}

.nums-feature-body {
  position: relative;
  z-index: 1;
}

.nums-feature-v {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  line-height: .9;
  font-size: clamp(4.5rem, 11vw, 7.5rem);
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nums-feature-v sup {
  font-size: .32em;
  font-weight: 700;
  vertical-align: super;
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
  margin-inline-start: 2px;
}

.nums-feature-k {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #fff;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 14ch;
}

/* 2×2 mini stats */
.nums-grid {
  grid-row: 1 / 3;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
}

.nums-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(234, 242, 250, .1);
  background: rgba(255, 255, 255, .025);
  border-radius: 2px;
  transition: border-color .4s var(--e), background .4s var(--e), transform .4s var(--e);
}

.nums-item:hover {
  border-color: rgba(0, 180, 216, .35);
  background: rgba(0, 180, 216, .07);
  transform: translateY(-4px);
}

.nums-item-glow {
  background: linear-gradient(135deg, rgba(0, 180, 216, .12), rgba(255, 255, 255, .03));
  border-color: rgba(0, 180, 216, .22);
}

.nums-item-v {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: #fff;
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.nums-item-v sup {
  font-size: .42em;
  color: var(--cyan);
  font-weight: 700;
  vertical-align: super;
  margin-inline-start: 1px;
}

.nums-item-k {
  display: block;
  margin-top: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--t-light-mute);
}

/* proof bar */
.nums-proof {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  padding: clamp(22px, 3vw, 30px) clamp(26px, 3.5vw, 38px);
  border: 1px solid rgba(234, 242, 250, .1);
  border-radius: 2px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.nums-proof-score {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
}

.nums-proof-num {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #fff;
  direction: ltr;
  unicode-bidi: isolate;
}

.nums-proof-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nums-proof-meta .stars {
  gap: 4px;
}

.nums-proof-meta .star {
  width: 15px;
  height: 15px;
  background: rgba(234, 242, 250, .2);
}

.nums-proof-meta .star.on,
.nums-proof-meta .star.half::after {
  background: var(--gold);
}

.nums-proof-meta>span:last-child {
  font-size: .86rem;
  color: var(--t-light-mute);
}

.nums-proof-note {
  font-size: .84rem;
  color: var(--t-light-mute);
  max-width: 36ch;
  line-height: 1.75;
  margin: 0;
  text-align: end;
}

@media (max-width:991.98px) {
  .nums-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .nums-feature {
    grid-row: auto;
    min-height: 280px;
  }

  .nums-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .nums-proof-note {
    text-align: start;
    max-width: none;
  }
}

@media (max-width:479.98px) {
  .nums-grid {
    grid-template-columns: 1fr;
  }

  .nums-feature-v {
    font-size: clamp(3.8rem, 16vw, 5rem);
  }
}

/* ============================================================
   26 · JOURNEY — ascending project path
   ============================================================ */
.journey {
  position: relative;
  padding-top: clamp(20px, 3vw, 36px);
  --journey-rail: 32px;
  padding-bottom: var(--journey-rail);
}

.journey-track {
  position: absolute;
  inset-inline: clamp(32px, 6vw, 64px);
  bottom: calc(var(--journey-rail) / 2);
  height: 1px;
  background: var(--hair);
  z-index: 1;
  overflow: hidden;
}

.journey-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan);
  transition: width 1.8s var(--e);
}

.journey.in .journey-fill {
  width: 100%;
}

.journey-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
  align-items: end;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(var(--rise, 0) * clamp(32px, 5vw, 56px));
  transition: transform .5s var(--e);
}

.journey-step:hover {
  transform: translateY(-8px);
}

.journey-step:hover .journey-body {
  border-color: rgba(0, 180, 216, .45);
  box-shadow: 0 24px 56px rgba(13, 36, 57, .1);
}

.journey-node {
  position: relative;
  z-index: 3;
  width: 11px;
  height: 11px;
  margin-top: clamp(18px, 2.2vw, 24px);
  margin-bottom: calc(var(--journey-rail) / 2 - 5.5px);
  flex: none;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--soft-2);
  transition: background .35s var(--e), box-shadow .35s var(--e);
}

.journey.in .journey-step .journey-node {
  background: var(--cyan);
  box-shadow: 0 0 0 2px var(--cyan);
}

.journey.in .journey-step:last-child .journey-node {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.journey-step:hover .journey-node {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.journey-body {
  width: 100%;
  text-align: center;
  padding: clamp(22px, 2.6vw, 30px) clamp(16px, 2vw, 22px);
  border: none;
  background: transparent;
  transition: opacity .45s var(--e);
}

.journey-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-bottom: 10px;
}

.journey-body>p {
  font-size: .88rem;
  color: var(--fg-mute);
  line-height: 1.85;
  margin-bottom: 16px;
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.journey-tags span {
  font-size: .76rem;
  font-weight: 500;
  color: var(--fg-mute);
  padding: 0;
  background: none;
  border: none;
  transition: color .3s var(--e);
}

.journey-tags span:not(:last-child)::after {
  content: '·';
  margin-inline: 8px;
  color: var(--hair);
}

.journey-step:hover .journey-tags span {
  color: var(--navy);
  background: none;
  border: none;
}

@media (max-width:991.98px) {
  .journey-track {
    display: none;
  }

  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 24px);
    align-items: stretch;
  }

  .journey-step {
    margin-bottom: 0;
    align-items: stretch;
  }

  .journey-node {
    display: none;
  }

  .journey-body {
    flex: 1;
  }
}

@media (max-width:575.98px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-step:hover {
    transform: none;
  }
}

/* ============================================================
   27 · PROJECT PATH (legacy — kept for inner pages)
   ============================================================ */
.path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--hair);
}

.path-fill {
  position: absolute;
  top: -2px;
  inset-inline-start: 0;
  height: 2px;
  width: 0;
  background: var(--grad);
  transition: width 2s var(--e);
}

.path.in .path-fill {
  width: 100%;
}

.pstage {
  position: relative;
  padding: clamp(30px, 3.2vw, 46px) clamp(16px, 1.8vw, 26px) 0;
  border-inline-start: 1px solid var(--hair);
}

.pstage:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}

.pstage::before {
  content: '';
  position: absolute;
  top: -9px;
  inset-inline-start: clamp(16px, 1.8vw, 26px);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--soft-2);
  transition: background .45s var(--e);
}

.pstage:first-child::before {
  inset-inline-start: 0;
}

.path.in .pstage:nth-child(2)::before {
  background: var(--cyan);
  transition-delay: .2s;
}

.path.in .pstage:nth-child(3)::before {
  background: var(--cyan);
  transition-delay: .7s;
}

.path.in .pstage:nth-child(4)::before {
  background: var(--cyan);
  transition-delay: 1.2s;
}

.path.in .pstage:nth-child(5)::before {
  background: var(--cyan);
  transition-delay: 1.7s;
}

.pstage .num {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--soft-2);
  direction: ltr;
  unicode-bidi: isolate;
  margin-bottom: 16px;
}

.pstage h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.36rem);
  margin-bottom: 10px;
}

.pstage>p {
  font-size: .9rem;
  color: var(--fg-mute);
}

.pstage .dur {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .13em;
  border: 1px solid var(--hair);
  padding: 5px 12px;
  color: var(--fg-mute);
}

.deliv {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.deliv li {
  position: relative;
  padding-inline-start: 18px;
  padding-block: 6px;
  font-size: .86rem;
  color: var(--fg);
}

.deliv li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.deliv-k {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .16em;
  color: var(--cyan);
  margin-top: 22px;
  display: block;
}

@media (max-width:991.98px) {
  .path {
    grid-template-columns: 1fr 1fr;
  }

  .pstage:nth-child(2) {
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .pstage:nth-child(2)::before {
    inset-inline-start: 0;
  }

  .pstage:nth-child(n+4) {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--hair);
  }
}

@media (max-width:575.98px) {
  .path {
    grid-template-columns: 1fr;
  }

  .pstage {
    border-inline-start: 0;
    padding-inline-start: 0;
    padding-top: 34px;
    padding-bottom: 34px;
    border-top: 1px solid var(--hair);
  }

  .pstage:nth-child(2) {
    border-top: 0;
  }

  /* first stage sits under the drawn rule */
  .pstage:last-child {
    padding-bottom: 0;
  }

  .pstage::before {
    inset-inline-start: 0 !important;
  }

  .pstage:nth-child(n+3) {
    margin-top: 0;
  }
}

/* ============================================================
   26 · BRIEF BUILDER — pick the shape, get the plan (no prices)
   ============================================================ */
/* the selectable chips (shared by the whole builder) */
.est-g {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.est-g>.k {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: block;
  margin-bottom: 14px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  position: relative;
  display: inline-flex;
}

.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.chip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .91rem;
  background: var(--soft);
  transition: var(--t-fast);
  user-select: none;
}

.chip span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soft-2);
  flex: none;
  transition: var(--t-fast);
}

.chip:hover span {
  background: var(--soft-2);
}

.chip input:checked+span {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.chip input:checked+span::before {
  background: var(--cyan);
}

.chip input:focus-visible+span {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.brief {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: clamp(24px, 3.4vw, 56px);
  align-items: start;
}

@media (max-width:991.98px) {
  .brief {
    grid-template-columns: 1fr;
  }
}

.brief-out {
  background: var(--ink);
  color: var(--t-light);
  padding: clamp(26px, 3vw, 36px);
  --fg: var(--t-light);
  --fg-mute: var(--t-light-mute);
  --hair: rgba(234, 242, 250, .16);
  position: sticky;
  top: 104px;
  box-shadow: 0 26px 60px rgba(13, 36, 57, .2);
}

.brief-out .k {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .19em;
  color: var(--cyan);
}

.brief-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}

.brief-row:last-of-type {
  border-bottom: 0;
}

.brief-big {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  direction: rtl;
  font-variant-numeric: tabular-nums;
}

.brief-team {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.brief-team span {
  font-size: .78rem;
  border: 1px solid var(--hair);
  padding: 6px 12px;
  color: var(--fg-mute);
}

.brief-out .deliv {
  margin-top: 10px;
}

.brief-out .deliv li {
  color: var(--t-light);
  font-size: .84rem;
}

/* ============================================================
   27 · VOICES — ratings + verified client proof
   ============================================================ */
.voices-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  min-width: min(100%, 220px);
  border: none;
  border-top: 1px solid var(--hair);
  background: transparent;
}

.voices-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.voices-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy);
  direction: ltr;
  unicode-bidi: isolate;
}

.voices-count {
  font-size: .84rem;
  color: var(--fg-mute);
}

.stars {
  display: inline-flex;
  gap: 3px;
  direction: ltr;
  unicode-bidi: isolate;
}

.star {
  width: 16px;
  height: 16px;
  flex: none;
  position: relative;
  background: var(--soft-2);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transition: transform .25s var(--e);
}

.star.on {
  background: var(--gold);
}

.star.half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
}

.stars-lg .star {
  width: 20px;
  height: 20px;
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

@media (max-width:991.98px) {
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }

  .voices-summary {
    width: 100%;
  }
}

@media (max-width:639.98px) {
  .tgrid {
    grid-template-columns: 1fr;
  }
}

.tcard {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: clamp(26px, 3vw, 36px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.tcard-pro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

.tcard-pro::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .55s var(--e);
}

.tcard-pro:hover::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.tcard:hover,
.tcard-pro:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(13, 36, 57, .11);
  border-color: rgba(0, 180, 216, .35);
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.tcard-badge {
  font-size: .78rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, .28);
  padding: 5px 12px;
  background: rgba(0, 180, 216, .06);
}

.tcard .mark {
  display: none;
}

.tcard blockquote {
  margin: 0 0 auto;
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.04rem;
  line-height: 2;
  color: var(--fg);
  flex: 1;
}

.tcard-metric {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 2px;
  background: rgba(13, 36, 57, .04);
  border-inline-start: 3px solid var(--cyan);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tcard-metric-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--cyan);
  direction: ltr;
  unicode-bidi: isolate;
}

.tcard-metric-lbl {
  font-size: .86rem;
  color: var(--fg-mute);
}

.tcard .stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.tcard .stat b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--cyan);
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.tcard .stat i {
  font-style: normal;
  font-size: .84rem;
  color: var(--fg-mute);
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

.tcard .av {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  border-radius: 50%;
}

.tcard .nm {
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--display);
}

.tcard .rl {
  font-size: .82rem;
  color: var(--fg-mute);
  margin-top: 3px;
}

/* ============================================================
   28 · CLOSING — statement beside the real ways to reach us
   ============================================================ */
.cta-split {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: stretch;
}

@media (max-width:991.98px) {
  .cta-split {
    grid-template-columns: 1fr;
  }
}

.cta-aside {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(12px, 2vw, 20px) 0;
}

.cta-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: clamp(-18%, -80px, -40px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 52vw, 560px);
  height: auto;
  object-fit: contain;
  opacity: .055;
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 48% 50%, #000 18%, transparent 78%);
  mask-image: radial-gradient(ellipse 88% 92% at 48% 50%, #000 18%, transparent 78%);
}

.cta-split>div {
  position: relative;
  z-index: 1;
}

.cta-links {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--hair);
}

@media (max-width:991.98px) {
  .cta-aside {
    min-height: clamp(300px, 52vw, 380px);
  }

  .cta-bg {
    left: clamp(-12%, -48px, -24px);
    width: clamp(240px, 68vw, 400px);
    opacity: .05;
  }
}

.cta-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  transition: var(--t-fast);
}

.cta-links a:hover {
  padding-inline-start: 14px;
  color: var(--cyan);
}

.cta-links .k {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--fg-mute);
  flex: none;
}

.cta-links .v {
  font-size: 1.02rem;
  text-align: end;
  direction: ltr;
  unicode-bidi: isolate;
}

.cta-links a:hover .k {
  color: var(--cyan);
}

@media (prefers-reduced-motion:reduce) {

  .smap-wires .flow,
  .score::before {
    animation: none !important;
  }

  .path-fill,
  .journey-fill {
    transition: none !important;
  }

  .path.in .path-fill,
  .journey.in .journey-fill {
    width: 100% !important;
    height: 100% !important;
  }

  .journey-node,
  .journey-node::before {
    transition: none !important;
  }

  .loader-in img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #loader.run .loader-bar-fill,
  #loader.done .loader-bar-fill {
    width: 100% !important;
    transition: none !important;
  }
}

/* ============================================================
   29–31 · INNER PAGES — studio showcase
   ============================================================ */

/* — light page hero — */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 14vw, 158px) 0 clamp(44px, 5.5vw, 68px);
  background: linear-gradient(165deg, var(--soft) 0%, #fff 55%, var(--soft) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 80% at 92% 8%, rgba(0, 180, 216, .14), transparent 62%),
    radial-gradient(45% 60% at 4% 95%, rgba(14, 107, 168, .1), transparent 58%);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero .crumbs {
  color: var(--fg-mute);
  font-family: var(--body);
  font-size: .88rem;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.18;
  font-weight: 800;
  max-width: 13ch;
  margin-top: 8px;
}

.page-hero h1 .acc {
  color: var(--cyan);
}

.page-lead {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.85;
  color: var(--fg-mute);
  max-width: 44ch;
  margin-top: 18px;
}

/* header on light inner pages */
body:has(.page-hero) .hdr:not(.stuck) {
  --fg: var(--t-dark);
  --fg-mute: var(--t-dark-mute);
}

body:has(.page-hero) .hdr:not(.stuck) .brand .b-light {
  display: none;
}

body:has(.page-hero) .hdr:not(.stuck) .brand .b-dark {
  display: block;
}

body:has(.page-hero) .hdr:not(.stuck) .nav a {
  color: var(--t-dark-mute);
}

body:has(.page-hero) .hdr:not(.stuck) .nav a:hover,
body:has(.page-hero) .hdr:not(.stuck) .nav a.on {
  color: var(--navy);
}

body:has(.page-hero) .hdr:not(.stuck) .hdr-cta {
  color: var(--navy);
  border-color: var(--soft-2);
}

body:has(.page-hero) .hdr:not(.stuck) .burger {
  border-color: var(--soft-2);
}

body:has(.page-hero) .hdr:not(.stuck) .burger span {
  background: var(--navy);
}

/* — services (editorial list) — */
.sl-layout {
  display: grid;
  grid-template-columns: minmax(200px, .38fr) 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

@media (max-width: 991.98px) {
  .sl-layout {
    grid-template-columns: 1fr;
  }
}

.sl-intro {
  position: sticky;
  top: 100px;
  padding-top: 4px;
}

@media (max-width: 991.98px) {
  .sl-intro {
    position: static;
  }
}

.sl-tagline {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--fg-mute);
  max-width: 26ch;
  margin: 12px 0 24px;
}

.sl-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

.sl-steps div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .9rem;
  color: var(--fg-mute);
}

.sl-steps .mono {
  font-size: .78rem;
  color: var(--cyan);
  min-width: 20px;
}

.sl-list {
  border-top: 2px solid var(--ink);
}

.sl {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(30px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--hair);
  scroll-margin-top: 100px;
  transition: background var(--t-fast);
}

.sl:hover {
  background: linear-gradient(90deg, rgba(0, 180, 216, .04), transparent 72%);
}

.sl-n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--soft-2);
  padding-top: 4px;
  transition: color var(--t-fast);
}

.sl:hover .sl-n {
  color: var(--cyan);
}

.sl-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}

.sl-icon svg {
  width: 22px;
}

.sl-body {
  min-width: 0;
}

.sl-k {
  font-size: .72rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}

.sl-body h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.sl:hover .sl-body h2 {
  color: var(--cyan);
}

.sl-body>p {
  font-size: .94rem;
  color: var(--fg-mute);
  line-height: 1.8;
  max-width: 54ch;
}

.sl-body .caps {
  margin-top: 14px;
}

.sl-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: end;
  white-space: nowrap;
  padding-top: 4px;
}

.sl-meta {
  font-size: .86rem;
  color: var(--fg-mute);
}

@media (max-width: 767.98px) {
  .sl {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }

  .sl-n {
    grid-row: 1;
    grid-column: 1;
  }

  .sl-icon {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .sl-body {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .sl-end {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

/* — services cards (unused on page, kept for reference) — */
.svc-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

@media (max-width:767.98px) {
  .svc-band {
    grid-template-columns: 1fr;
  }
}

.svc-band-item {
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.4vw, 28px);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(13, 36, 57, .06);
}

.svc-band-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--navy);
  margin-bottom: 4px;
}

.svc-band-item span {
  font-size: .88rem;
  color: var(--fg-mute);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
}

@media (max-width:767.98px) {
  .svc-grid:not(.proj-grid) {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 4px 28px rgba(13, 36, 57, .06);
  transition: transform .45s var(--e), box-shadow .45s var(--e);
  scroll-margin-top: 100px;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(13, 36, 57, .11);
}

.svc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.svc-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--soft-2);
}

.svc-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(14, 107, 168, .28);
}

.svc-ic svg {
  width: 24px;
}

.svc-tag {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.svc-card h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-bottom: 10px;
}

.svc-card>p {
  font-size: .94rem;
  color: var(--fg-mute);
  line-height: 1.8;
  flex: 1;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 20px;
}

.svc-tags span {
  font-size: .76rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--soft);
  padding: 5px 12px;
  border-radius: 999px;
}

.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  font-size: .88rem;
  color: var(--fg-mute);
}

.svc-link {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--t-fast), transform var(--t-fast);
}

.svc-card:hover .svc-link {
  color: var(--cyan);
  transform: translateX(-4px);
}

/* — projects — */
.proj-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.proj-intro {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--fg-mute);
  max-width: 28ch;
  margin: 0;
}

.proj-toolbar .filters {
  margin-bottom: 0;
}

.proj-stats {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
}

.proj-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.proj-stats .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  direction: ltr;
  unicode-bidi: isolate;
}

.proj-stats .k {
  font-size: .8rem;
  color: var(--fg-mute);
}

/* — projects page (svc-card grid) — */
.proj-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proj-grid .svc-card.work {
  grid-column: auto;
  cursor: pointer;
}

.proj-grid .svc-card.work .svc-foot span:first-child {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

#pmodal .pmodal-in {
  border-radius: 16px;
  overflow: hidden;
}

#pmodal .pmodal-hd {
  aspect-ratio: 21/8;
  min-height: 100px;
}

#pmodal .pmodal-hd>svg {
  width: 56px;
  opacity: .35;
}

/* — contact — */
.contact-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-bottom: clamp(24px, 3vw, 32px);
}

@media (max-width:991.98px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.office {
  text-align: start;
  width: 100%;
  padding: clamp(22px, 2.6vw, 28px);
  background: var(--paper);
  border-radius: 18px;
  border: 2px solid transparent;
  box-shadow: 0 6px 28px rgba(13, 36, 57, .06);
  cursor: pointer;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.office:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(13, 36, 57, .09);
}

.office.on {
  border-color: var(--cyan);
  box-shadow: 0 14px 40px rgba(0, 180, 216, .14);
}

.office-code {
  display: none;
}

.office h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.office-role {
  font-size: .84rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 10px;
}

.office address {
  font-style: normal;
  font-size: .9rem;
  color: var(--fg-mute);
  line-height: 1.75;
  margin-bottom: 8px;
}

.office-meta {
  font-size: .82rem;
  color: var(--fg-mute);
}

.office-map {
  overflow: hidden;
  border-radius: 18px;
  line-height: 0;
  box-shadow: 0 16px 48px rgba(13, 36, 57, .08);
}

.office-map iframe {
  width: 100%;
  height: clamp(260px, 36vw, 380px);
  border: 0;
  filter: grayscale(.15) saturate(.9);
  transition: filter .5s var(--e);
}

.office-map:hover iframe {
  filter: grayscale(0) saturate(1);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

@media (max-width:991.98px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.contact-panel .lv-title {
  margin: 12px 0 28px;
  max-width: 16ch;
}

.channel-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(13, 36, 57, .05);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.channel-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 32px rgba(13, 36, 57, .09);
  color: var(--navy);
}

.channel-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.channel-ic.wa-ic {
  background: #25D366;
  font-family: var(--display);
}

.channel-k {
  display: block;
  font-size: .78rem;
  color: var(--fg-mute);
  margin-bottom: 2px;
}

.channel-v {
  display: block;
  font-size: .95rem;
  font-weight: 600;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

.contact-steps div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: .9rem;
  color: var(--fg-mute);
}

.contact-steps span {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  color: var(--cyan);
  min-width: 22px;
}

.contact-note {
  margin-top: 20px;
  font-size: .86rem;
  color: var(--fg-mute);
  line-height: 1.8;
}

.form-panel {
  background: var(--paper);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: 0 12px 48px rgba(13, 36, 57, .08);
}

#pmodal .pmodal-in {
  border-radius: 16px;
  overflow: hidden;
}

#pmodal .pmodal-hd {
  aspect-ratio: 21/8;
  min-height: 100px;
  border-radius: 0;
}

#pmodal .pmodal-hd>svg {
  width: 56px;
  opacity: .35;
}

/* ============================================================
   28 · ARABIC TYPE CORRECTIONS
   Arabic is a joined script: letter-spacing pulls the joins apart,
   and a Latin monospace face has no Arabic at all (it falls back to
   whatever the system has). Every label that carries Arabic therefore
   uses the UI face at its natural spacing. The mono treatment stays
   only where the text is Latin — codes, tech names, numbers.
   ============================================================ */
.eyebrow,
.btn-x,
.link-x,
.hdr-cta,
.filters button,
.field label,
.est-g>.k,
.brief-out .k,
.metrics .k,
.deflist dt,
.ftr h4,
.crumbs,
.plan .tier,
.work-open,
.case .n {
  font-family: var(--body);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  font-size: .84rem;
  font-weight: 600;
  gap: 10px;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
}

.btn-x {
  font-size: .92rem;
  font-weight: 600;
  padding: 16px 30px;
}

.link-x {
  font-size: .9rem;
  font-weight: 600;
}

.hdr-cta {
  font-size: .9rem;
  font-weight: 500;
  padding: 10px 20px;
}

.filters button {
  font-size: .9rem;
  font-weight: 500;
  padding: 10px 20px;
}

.field label {
  font-size: .8rem;
  font-weight: 600;
}

.est-g>.k {
  font-size: .84rem;
  font-weight: 600;
}

.brief-out .k {
  font-size: .84rem;
  font-weight: 500;
}

.metrics .k {
  font-size: .9rem;
  font-weight: 500;
}

.deflist dt {
  font-size: .84rem;
  font-weight: 600;
}

.ftr h4 {
  font-size: .84rem;
  font-weight: 600;
}

.crumbs {
  font-size: .88rem;
}

.plan .tier {
  font-size: .84rem;
  font-weight: 600;
}

.work-open {
  font-size: .86rem;
  font-weight: 500;
}

.case .n {
  font-size: .86rem;
  font-weight: 600;
}

/* numerals read better with tabular figures and a touch of tightening */
.metrics .v,
.hero-stats .v,
.est-price,
.est-weeks,
.plan .price {
  font-variant-numeric: tabular-nums;
}

/* the mono face keeps an Arabic fallback in case a label is ever mixed */
.mono,
.snode i,
.spane .k,
.pstep .n,
.creach .k,
.person .rl,
.qcard .rl,
.hero-stats .k {
  font-feature-settings: "ss01";
}

/* ---------- 32 · COMING SOON PAGE ---------- */
.coming-body {
  min-height: 100dvh;
  background: #06131f;
  color: #fff;
  overflow: hidden;
}

.coming-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(14, 107, 168, .42), transparent 58%),
    linear-gradient(180deg, #0A1C2E 0%, #06131f 48%, #0B2034 100%);
}

.coming-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  animation: coming-drift 16s ease-in-out infinite;
}

.coming-aurora-a {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  top: -12%;
  left: 50%;
  translate: -50% 0;
  background: rgba(0, 180, 216, .28);
}

.coming-aurora-b {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: -10%;
  bottom: 8%;
  background: rgba(23, 58, 94, .7);
  animation-delay: -5s;
}

.coming-aurora-c {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  right: -8%;
  top: 38%;
  background: rgba(14, 107, 168, .35);
  animation-delay: -9s;
}

.coming-mesh {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 42%, #000 15%, transparent 72%);
}

.coming-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 180, 216, .045) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: coming-scan 7.5s linear infinite;
  opacity: .55;
}

@keyframes coming-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -28px, 0) scale(1.08); }
}

@keyframes coming-scan {
  from { background-position: 0 -40%; }
  to { background-position: 0 140%; }
}

.coming-page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 64px) clamp(18px, 4vw, 36px) 24px;
  text-align: center;
}

.coming-stage {
  width: min(100%, 640px);
}

.coming-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(28px, 4.5vw, 40px);
  animation: coming-rise 1s var(--e) both;
}

.coming-logo {
  width: clamp(200px, 34vw, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, .4));
}

.coming-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 180, 216, .28);
  background: rgba(0, 180, 216, .08);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(190, 230, 245, .9);
}

.coming-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0, 180, 216, .55);
  animation: coming-ping 1.8s ease-out infinite;
}

@keyframes coming-ping {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, .55); }
  70% { box-shadow: 0 0 0 10px rgba(0, 180, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

.coming-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: .18em .35em;
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.03em;
  animation: coming-rise 1s var(--e) .12s both;
}

.coming-word {
  color: #fff;
}

.coming-word-soon {
  background: linear-gradient(120deg, #EAF2FA 0%, #00B4D8 55%, #0E6BA8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.coming-word-soon::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: .08em;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, .85), transparent);
  transform-origin: center;
  animation: coming-underline 2.8s var(--e) .8s both;
}

@keyframes coming-underline {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.coming-lead {
  max-width: 34ch;
  margin: 0 auto clamp(26px, 4vw, 34px);
  font-size: clamp(1.02rem, 1.8vw, 1.14rem);
  color: rgba(234, 242, 250, .64);
  line-height: 1.75;
  animation: coming-rise 1s var(--e) .22s both;
}

.coming-levels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto clamp(30px, 4.5vw, 42px);
  animation: coming-rise 1s var(--e) .3s both;
}

.coming-levels span {
  width: clamp(34px, 7vw, 48px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
  position: relative;
}

.coming-levels span.on {
  background: linear-gradient(90deg, #173A5E, #00B4D8);
}

.coming-levels span.pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0E6BA8, #00B4D8);
  transform-origin: left center;
  animation: coming-fill 2.2s ease-in-out infinite;
}

@keyframes coming-fill {
  0%, 100% { transform: scaleX(.35); opacity: .7; }
  50% { transform: scaleX(1); opacity: 1; }
}

.coming-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  animation: coming-rise 1s var(--e) .38s both;
}

@media (max-width: 599.98px) {
  .coming-actions {
    grid-template-columns: 1fr;
  }

  .coming-title {
    flex-direction: column;
    gap: 0;
  }
}

.coming-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  text-align: start;
  color: #fff;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform .45s var(--e),
    background .35s var(--e),
    border-color .35s var(--e),
    box-shadow .45s var(--e);
}

.coming-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(0, 180, 216, .5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
  color: #fff;
}

.coming-btn-ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
}

.coming-btn-call .coming-btn-ic {
  color: var(--cyan);
  background: rgba(0, 180, 216, .12);
}

.coming-btn-wa .coming-btn-ic {
  color: #6ee7a8;
  background: rgba(37, 211, 102, .12);
}

.coming-btn-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.coming-btn-txt small {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(234, 242, 250, .48);
}

.coming-btn-txt strong {
  font-family: var(--mono);
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}

.coming-btn-arrow {
  color: rgba(255, 255, 255, .35);
  font-size: 1.05rem;
  transition: transform .35s var(--e), color .35s var(--e);
}

.coming-btn:hover .coming-btn-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

.coming-foot {
  margin-top: auto;
  padding-top: clamp(42px, 9vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(143, 179, 211, .42);
  animation: coming-rise 1s var(--e) .5s both;
}

.coming-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 180, 216, .55);
}

@keyframes coming-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-aurora,
  .coming-scan,
  .coming-status i,
  .coming-levels span.pulse::before,
  .coming-brand,
  .coming-title,
  .coming-lead,
  .coming-levels,
  .coming-actions,
  .coming-foot,
  .coming-word-soon::after {
    animation: none !important;
  }
}
