/* ============================================================
   SPATIAL° — presentation site
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --ink: #f1efe9;
  --muted: rgba(241, 239, 233, 0.55);
  --accent: #2191ff;
  --accent-2: #8cc4ff;
  --paper: #efece5;
  --paper-ink: #0e0e11;

  --font-display: "Syne", "Inter Tight", system-ui, sans-serif;
  --font-body: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Martian Mono", "SF Mono", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

body[data-theme="light"] {
  --bg: #efece5;
  --bg-2: #e6e2d9;
  --ink: #0e0e11;
  --muted: rgba(14, 14, 17, 0.55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.9s var(--ease-out), color 0.9s var(--ease-out);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
em { font-style: normal; font-family: var(--font-display); font-weight: 400; color: var(--accent); }
.mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: #0a0a0c; color: #f1efe9;
  display: grid; place-items: center;
}
.preloader__brand {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.04em; opacity: 0; transform: translateY(20px);
}
.preloader__count {
  position: absolute; inset-inline-start: var(--gutter); bottom: var(--gutter);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 12vw, 180px); line-height: 0.9;
  letter-spacing: -0.05em; font-variant-numeric: tabular-nums;
}
.preloader__tag {
  position: absolute; inset-inline-end: var(--gutter); bottom: var(--gutter);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.5;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--nav-h); padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  transition: transform 0.6s var(--ease-expo);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.04em; justify-self: start;
}
.nav__links { display: flex; gap: 32px; font-size: 13px; font-weight: 400; letter-spacing: 0.01em; }
.nav__links a { position: relative; opacity: 0.75; transition: opacity 0.3s; padding: 6px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease-expo);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { justify-self: end; display: flex; align-items: center; gap: 10px; }
.lang {
  height: 40px; min-width: 40px; padding: 0 12px; border-radius: 999px; font-size: 11px;
  border: 1px solid color-mix(in srgb, var(--ink) 25%, transparent); transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.lang:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
@media (max-width: 860px) { .nav__links { display: none; } .nav { grid-template-columns: 1fr auto; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px; border-radius: 999px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; overflow: hidden; isolation: isolate; white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
  transition: color 0.4s var(--ease-out), border-color 0.4s;
}
.btn span { position: relative; z-index: 1; display: inline-block; }
.btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: var(--ink); transform: translateY(101%); transition: transform 0.6s var(--ease-expo);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bg); border-color: var(--ink); }
.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--primary::before { background: var(--ink); }
.btn--primary:hover { color: var(--bg); }
.btn--small { height: 40px; padding: 0 20px; font-size: 13px; }
.btn--big { height: 68px; padding: 0 44px; font-size: 16px; }

/* ---------- WebGL ---------- */
.webgl {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  display: block;
}
main { position: relative; z-index: 1; }
section { position: relative; padding: 0 var(--gutter); }

/* ---------- Text reveal helpers ---------- */
.line { display: block; overflow: hidden; }
.line__inner { display: block; transform: translateY(110%); }
.reveal-up { opacity: 0; transform: translateY(24px); }
[data-split] .line-mask { display: block; overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto auto;
  padding-top: calc(var(--nav-h) + 4vh); padding-bottom: 36px;
}
.hero__eyebrow { display: flex; align-items: center; gap: 14px; opacity: 0; color: var(--muted); flex-wrap: wrap; }
.hero__eyebrow i { width: 24px; height: 1px; background: currentColor; opacity: 0.5; }
.hero__title {
  align-self: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 9.2vw, 150px); line-height: 0.96; letter-spacing: -0.04em;
  margin: 4vh 0;
}
.hero__title em { color: var(--accent); }
.hero__bottom {
  display: grid; grid-template-columns: minmax(0, 560px) auto; align-items: end; justify-content: space-between; gap: 32px;
  margin-bottom: 8vh;
}
.hero__lead { font-size: clamp(16px, 1.35vw, 20px); color: var(--muted); line-height: 1.5; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.hero__scroll-line { display: block; width: 48px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%);
  animation: scrollLine 2s var(--ease-expo) infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }
.hero__meta { position: absolute; inset-inline-end: var(--gutter); bottom: 36px; display: flex; gap: 22px; color: var(--muted); }
@media (max-width: 860px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__meta { display: none; }
}

/* ---------- Manifesto ---------- */
.manifesto {
  min-height: 100svh; display: grid; align-content: center; justify-items: center; text-align: center;
  padding-top: 10vh; padding-bottom: 10vh;
}
.manifesto__title {
  font-family: var(--font-display); font-weight: 700; max-width: 17ch;
  font-size: clamp(30px, 4.8vw, 74px); line-height: 1.04; letter-spacing: -0.035em;
}
.manifesto__text { max-width: 620px; margin-top: 36px; color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); }

/* ---------- Section head ---------- */
.section-head { padding: 12vh 0 7vh; display: grid; gap: 24px; max-width: 1100px; }
.section-head--wide { max-width: none; }
.section-head__index { color: var(--muted); }
.section-head__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5.2vw, 84px); line-height: 1.02; letter-spacing: -0.035em;
}
.section-head__note { color: var(--muted); max-width: 560px; }

/* ---------- Services ---------- */
.services { padding-bottom: 14vh; }
.services__list { border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
.service { border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
.service__row {
  width: 100%; display: grid; grid-template-columns: 80px 1fr auto 48px; align-items: center; gap: 24px;
  padding: 34px 0; text-align: left; position: relative;
}
.service__row::before {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 1px; background: var(--accent);
  transition: left 0.7s var(--ease-expo), right 0.7s var(--ease-expo);
}
.service:hover .service__row::before, .service.is-open .service__row::before { left: 0; right: 0; }
.service__num { color: var(--muted); }
.service__name {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.2vw, 48px); line-height: 1; letter-spacing: -0.03em;
  transition: transform 0.7s var(--ease-expo), color 0.4s;
}
.service:hover .service__name { transform: translateX(14px); }
[dir="rtl"] .service:hover .service__name { transform: translateX(-14px); }
.service__tags { color: var(--muted); }
.service__icon {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
  position: relative; transition: background-color 0.5s, transform 0.7s var(--ease-expo), border-color 0.4s;
}
.service__icon::before, .service__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; transition: transform 0.5s var(--ease-expo), background-color 0.4s;
}
.service__icon::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.service__icon::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.service.is-open .service__icon { background: var(--ink); border-color: var(--ink); transform: rotate(135deg); }
.service.is-open .service__icon::before, .service.is-open .service__icon::after { background: var(--bg); }
.service__body { height: 0; overflow: hidden; }
.service__body-inner { display: grid; grid-template-columns: 80px minmax(0, 620px) 1fr; gap: 24px; padding: 4px 0 44px; }
.service__body-inner p { grid-column: 2; font-size: clamp(16px, 1.3vw, 20px); color: var(--muted); }
.service__features { grid-column: 3; display: flex; flex-wrap: wrap; gap: 8px; align-content: start; justify-content: end; }
.service__features li { padding: 8px 12px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent); }
.service-preview {
  position: fixed; left: 0; top: 0; width: 360px; aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden;
  pointer-events: none; z-index: 5; opacity: 0; transform: rotate(-4deg) scale(0.9);
}
.service-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .service__row { grid-template-columns: 44px 1fr 40px; }
  .service__tags { display: none; }
  .service__body-inner { grid-template-columns: 1fr; }
  .service__body-inner p, .service__features { grid-column: 1; justify-content: start; }
  .service-preview { display: none; }
}

/* ---------- Showcase / stages ---------- */
.showcase { padding-bottom: 10vh; }
.stage { padding: 8vh 0 10vh; display: grid; gap: 40px; }
.stage__head { display: grid; grid-template-columns: minmax(0, 720px) 1fr; gap: 24px 64px; align-items: end; }
.stage__label { grid-column: 1 / -1; display: flex; gap: 28px; color: var(--muted); flex-wrap: wrap; }
.stage__label span:first-child { color: var(--accent); }
.stage__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.8vw, 60px); line-height: 1.04; letter-spacing: -0.035em;
}
.stage__text { color: var(--muted); font-size: clamp(15px, 1.15vw, 18px); max-width: 440px; }
.stage__chips { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.stage__chips li { padding: 8px 12px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent); color: var(--muted); }
.stage--alt .stage__head { grid-template-columns: 1fr minmax(0, 720px); }
.stage--alt .stage__title { grid-column: 2; grid-row: 2; }
.stage--alt .stage__text { grid-column: 1; grid-row: 2; align-self: end; }

.frame { position: relative; will-change: transform; }
.frame__overlay, .frame__enter { cursor: pointer; }
.frame__inner {
  position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 86vh; overflow: hidden; border-radius: 18px;
  background: #111; box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}
.frame__poster { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; filter: saturate(0.85) brightness(0.8); transform: scale(1.02); }
.frame__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: radial-gradient(ellipse at center, rgba(10, 10, 12, 0.15), rgba(10, 10, 12, 0.55));
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.frame__enter { display: grid; place-items: center; gap: 18px; position: relative; }
.frame__enter-ring {
  width: 120px; height: 120px; border-radius: 50%; border: 1px solid rgba(241, 239, 233, 0.6);
  position: relative; display: grid; place-items: center; backdrop-filter: blur(8px); background: rgba(241, 239, 233, 0.06);
  transition: transform 0.7s var(--ease-expo), background-color 0.5s;
}
.frame__enter-ring::before {
  content: "360°"; font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.04em; color: #f1efe9;
}
.frame__enter-ring--ai::before { content: "AI"; }
.frame__enter-ring::after {
  content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(241, 239, 233, 0.25);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse { 0% { transform: scale(0.85); opacity: 0.9; } 100% { transform: scale(1.35); opacity: 0; } }
.frame:hover .frame__enter-ring { transform: scale(1.08); background: rgba(241, 239, 233, 0.12); }
.frame__enter-text { color: #f1efe9; }
.frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.frame__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40px; padding: 0 18px;
  display: flex; align-items: center; gap: 12px; color: #f1efe9;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0));
  pointer-events: none;
}
.frame__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
.frame__bar-actions { margin-inline-start: auto; display: flex; gap: 18px; pointer-events: auto; }
.frame__bar-actions a, .frame__bar-actions button { font: inherit; letter-spacing: inherit; text-transform: inherit; opacity: 0.8; transition: opacity 0.3s; }
.frame__bar-actions a:hover, .frame__bar-actions button:hover { opacity: 1; }
.frame__reset { display: none; }
.frame.is-active .frame__overlay { opacity: 0; visibility: hidden; }
.frame.is-active .frame__poster { display: none; }
.frame.is-active .frame__reset { display: inline; }
.frame.is-active .frame__bar { background: none; }
.frame.is-active .frame__bar > span:nth-child(2), .frame.is-active .frame__dot { opacity: 0; }
@media (max-width: 860px) {
  .stage__head, .stage--alt .stage__head { grid-template-columns: 1fr; }
  .stage--alt .stage__title { grid-column: 1; grid-row: auto; }
  .stage--alt .stage__text { grid-column: 1; grid-row: auto; }
  .frame__inner { aspect-ratio: 4 / 5; border-radius: 12px; }
}

/* ---------- AI interior redesign ---------- */
.renovation { padding-bottom: 14vh; }
.stage__chips--below { margin-top: 22px; }

/* ---------- Industries (light) ---------- */
.industries { padding-bottom: 8vh; }
.industries__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-inline-start: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.ind {
  position: relative; padding: 32px 28px 40px; min-height: 380px; display: grid; align-content: end; gap: 12px; overflow: hidden;
  border-inline-end: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  transition: color 0.5s;
}
.ind img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transform: scale(1.12); transition: opacity 0.7s var(--ease-out), transform 1.2s var(--ease-expo);
}
.ind::after {
  content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.1));
  opacity: 0; transition: opacity 0.7s var(--ease-out);
}
.ind > *:not(img) { position: relative; z-index: 2; }
.ind__num { color: var(--muted); position: absolute !important; top: 28px; inset-inline-start: 28px; }
.ind h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.4vw, 36px); line-height: 1; letter-spacing: -0.035em; }
.ind p { color: var(--muted); font-size: 15px; max-width: 320px; transition: color 0.5s; }
.ind:hover { color: #f1efe9; }
.ind:hover p, .ind:hover .ind__num { color: rgba(241, 239, 233, 0.75); }
.ind:hover img { opacity: 1; transform: scale(1); }
.ind:hover::after { opacity: 1; }
@media (max-width: 1000px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .industries__grid { grid-template-columns: 1fr; } .ind { min-height: 260px; } }

/* ---------- Process (light) ---------- */
.process { padding-bottom: 16vh; }
.process__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-top: 40px; }
.process__line { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 2px; overflow: visible; }
.process__line path { stroke: var(--accent); stroke-width: 2; fill: none; vector-effect: non-scaling-stroke; }
.step { display: grid; gap: 14px; align-content: start; }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(56px, 6vw, 96px); line-height: 0.9; letter-spacing: -0.05em; color: var(--ink); opacity: 0.18; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.4vw, 36px); letter-spacing: -0.035em; line-height: 1; }
.step p { color: var(--muted); font-size: 15px; }
.step__meta { color: var(--accent); }
@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }

/* ---------- Results ---------- */
.results { padding-bottom: 12vh; }
.results__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.stat { padding: 40px 0 48px; padding-inline-end: 32px; display: grid; gap: 18px; align-content: start; border-inline-end: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
.stat + .stat { padding-inline-start: 32px; }
.stat:last-child { border-inline-end: 0; }
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(52px, 6vw, 110px); line-height: 0.9; letter-spacing: -0.05em; direction: ltr; unicode-bidi: isolate; white-space: nowrap; }
.stat__value b { font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.stat p { color: var(--muted); font-size: 15px; max-width: 260px; }
@media (max-width: 900px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-inline-end: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
  .stat:nth-child(2n + 1) { padding-inline-start: 0; }
}

/* ---------- CTA ---------- */
.cta { padding: 6vh 0 14vh; text-align: center; display: grid; justify-items: center; gap: 28px; overflow: hidden; }
.marquee { width: 100vw; margin-inline-start: calc(-1 * var(--gutter)); overflow: hidden; padding: 24px 0; margin-bottom: 8vh; border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5.4vw, 86px); letter-spacing: -0.045em; white-space: nowrap; }
.marquee__track i { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex: none; }
.cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 7.4vw, 128px); line-height: 0.98; letter-spacing: -0.04em; max-width: 12ch; }
.cta__text { color: var(--muted); max-width: 520px; font-size: clamp(16px, 1.25vw, 19px); }
.cta__actions { display: grid; gap: 22px; justify-items: center; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 1; padding: 28px var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent); color: var(--muted);
}
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.04em; color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .frame__enter-ring::after, .hero__scroll-line::after, .frame__dot { animation: none; }
}

/* ---------- Hebrew ---------- */
html[lang="he"] {
  --font-display: "Rubik", "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", "Rubik", system-ui, sans-serif;
  --font-mono: "Heebo", "Rubik", system-ui, sans-serif;
}
html[lang="he"] body { font-weight: 300; }
html[lang="he"] .mono { font-size: 12px; letter-spacing: 0.02em; font-weight: 500; }
html[lang="he"] :is(.hero__title, .manifesto__title, .section-head__title, .stage__title, .service__name, .cta__title, .ind h3, .step h3, .marquee__track) {
  letter-spacing: -0.01em; font-weight: 800;
}
html[lang="he"] .hero__title { line-height: 1.02; font-size: clamp(44px, 8.6vw, 140px); }
html[lang="he"] em { font-weight: 500; }
html[lang="he"] .stat__value { font-size: clamp(40px, 4.6vw, 84px); letter-spacing: -0.02em; }
html[lang="he"] :is(.nav__logo, .preloader__brand, .footer__brand, .preloader__count, .stat__value, .step__num),
html[lang="he"] .frame__enter-ring::before {
  font-family: "Syne", "Rubik", sans-serif; /* brand + numerals stay in the Latin display face */
}
html[lang="he"] .hero__eyebrow, html[lang="he"] .hero__scroll, html[lang="he"] .stage__label { letter-spacing: 0; }
