/* =================================================================
   HarmonySOS × UJA — report page
   Editorial style. English primary, Hebrew secondary.
   ================================================================= */

:root {
  --hsu-green-950: #0E2218;
  --hsu-green-900: #163328;
  --hsu-green-800: #1F4435;
  --hsu-green-700: #2A5F3D;
  --hsu-green-600: #3E7A52;
  --hsu-green-500: #5A9A6E;
  --hsu-sage:      #9CAA8F;

  --hsu-cream-50:  #FCFAF4;
  --hsu-cream-100: #FAF5EA;
  --hsu-cream-200: #F4EDDF;
  --hsu-cream-300: #E8DEC5;

  --hsu-red:       #A33A3A;
  --hsu-ink:       #1F2D24;
  --hsu-ink-soft:  #4B5A50;
  --hsu-ink-mute:  #7A8980;

  --hsu-white:     #ffffff;
  --hsu-black:     #0a1410;

  --hsu-radius-sm: 10px;
  --hsu-radius:    16px;
  --hsu-radius-lg: 24px;
  --hsu-radius-xl: 32px;

  --hsu-shadow-sm: 0 2px 8px rgba(22, 51, 40, 0.06);
  --hsu-shadow:    0 14px 40px rgba(22, 51, 40, 0.12);
  --hsu-shadow-lg: 0 28px 70px rgba(22, 51, 40, 0.20);
  --hsu-shadow-xl: 0 40px 100px rgba(22, 51, 40, 0.30);

  --hsu-ease:      cubic-bezier(0.25, 0.8, 0.25, 1);
  --hsu-ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --hsu-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --hsu-fs-en:     'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --hsu-fs-he:     'Heebo', 'Inter', system-ui, sans-serif;
  --hsu-fs-serif:  'Playfair Display', 'Heebo', Georgia, serif;
}

/* ---------------- escape host theme container ---------------- */
body:has(#hsu-app) .entry-content,
body:has(#hsu-app) .post-content,
body:has(#hsu-app) main,
body:has(#hsu-app) article {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------- root ---------------- */
#hsu-app {
  font-family: var(--hsu-fs-en);
  color: var(--hsu-ink);
  background: var(--hsu-cream-50);
  line-height: 1.65;
  font-size: 17px;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: clip;
}
#hsu-app *, #hsu-app *::before, #hsu-app *::after { box-sizing: border-box; }
#hsu-app img, #hsu-app video { max-width: 100%; display: block; }
#hsu-app a { color: inherit; text-decoration: none; }
#hsu-app h1, #hsu-app h2, #hsu-app h3, #hsu-app h4 {
  margin: 0 0 .5em;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: var(--hsu-fs-serif);
}
#hsu-app p { margin: 0 0 1em; }
#hsu-app button { font: inherit; cursor: pointer; }

/* ---------------- language switching ---------------- */
#hsu-app.lang-en [data-he] { display: none; }
#hsu-app.lang-he [data-en] { display: none; }
#hsu-app.lang-he {
  direction: rtl;
  font-family: var(--hsu-fs-he);
}
#hsu-app.lang-he h1, #hsu-app.lang-he h2, #hsu-app.lang-he h3, #hsu-app.lang-he h4 {
  font-family: var(--hsu-fs-he);
}

/* ============================================================
   scroll progress + lang toggle + section dots
   ============================================================ */
.hsu-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}
.hsu-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hsu-green-500), var(--hsu-green-700));
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(90,154,110,0.5);
}

.hsu-langbar {
  position: fixed;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 50;
  display: flex;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 51, 40, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: var(--hsu-shadow-sm);
}
.hsu-lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--hsu-ink-mute);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all .25s var(--hsu-ease);
  font-family: var(--hsu-fs-en);
}
.hsu-lang-btn.is-active {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  box-shadow: 0 2px 8px rgba(42,95,61,0.3);
}
.hsu-lang-btn:not(.is-active):hover { color: var(--hsu-green-700); }

/* section dots — vertical rail on the side */
.hsu-dots {
  position: fixed;
  top: 50%;
  inset-inline-end: 18px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 8px;
}
.hsu-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(22, 51, 40, 0.18);
  transition: all .3s var(--hsu-ease);
  display: block;
}
.hsu-dot:hover { background: var(--hsu-green-500); transform: scale(1.4); }
.hsu-dot.is-active {
  background: var(--hsu-green-700);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(42,95,61,0.15);
}
.hsu-dot__label {
  position: absolute;
  top: 50%;
  inset-inline-end: calc(100% + 12px);
  transform: translateY(-50%);
  background: var(--hsu-green-900);
  color: var(--hsu-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--hsu-ease);
  font-family: var(--hsu-fs-en);
}
#hsu-app.lang-he .hsu-dot__label { font-family: var(--hsu-fs-he); }
.hsu-dot:hover .hsu-dot__label,
.hsu-dot.is-active .hsu-dot__label { opacity: 1; }

/* ============================================================
   shared section heads
   ============================================================ */
.hsu-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(42, 95, 61, 0.08);
  color: var(--hsu-green-700);
  margin-bottom: 18px;
  font-family: var(--hsu-fs-en);
}
#hsu-app.lang-he .hsu-eyebrow { letter-spacing: .04em; font-family: var(--hsu-fs-he); }
.hsu-eyebrow--light { background: rgba(255, 255, 255, 0.12); color: var(--hsu-cream-200); }

.hsu-section__head {
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 0 28px;
}
.hsu-section__head--center { text-align: center; }
.hsu-section__title {
  font-size: clamp(30px, 4.4vw, 52px);
  color: var(--hsu-green-950);
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.1;
}
.hsu-section__title--light { color: var(--hsu-cream-100); }
.hsu-section__lede {
  font-size: 19px;
  color: var(--hsu-ink-soft);
  max-width: 720px;
  line-height: 1.6;
}

/* ============================================================
   reveal animation
   Gated by .hsu-js — no JS = content visible by default.
   ============================================================ */
.hsu-js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}
.hsu-js [data-reveal] {
  transition:
    opacity 1s var(--hsu-ease-out),
    transform 1s var(--hsu-ease-out);
}
.hsu-js [data-reveal="hero"]:not(.is-visible) {
  transform: translateY(20px) scale(0.985);
}

/* ============================================================
   HERO
   ============================================================ */
.hsu-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 28px 120px;
  color: var(--hsu-white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hsu-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.85) contrast(1.05);
}
.hsu-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0,0,0,0) 0%, rgba(14,34,24,0.5) 60%, rgba(14,34,24,0.95) 100%),
    linear-gradient(180deg, rgba(14,34,24,0.4) 0%, rgba(14,34,24,0.6) 100%);
}
.hsu-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hsu-hero__top { margin-bottom: 36px; position: relative; z-index: 1; }
.hsu-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.06);
}
.hsu-pill__dot {
  width: 7px; height: 7px;
  background: var(--hsu-green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(90,154,110,.25);
  animation: hsu-pulse 2.4s ease-in-out infinite;
}
@keyframes hsu-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(90,154,110,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(90,154,110,.05); }
}

.hsu-hero__title {
  font-size: clamp(44px, 8.5vw, 108px);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: -.025em;
  max-width: 1180px;
  color: var(--hsu-white);
}
.hsu-hero__line { display: block; }
.hsu-hero__mark {
  color: var(--hsu-cream-200);
  position: relative;
  display: inline-block;
  font-style: italic;
}
.hsu-hero__mark::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.08em;
  background: linear-gradient(90deg, var(--hsu-green-500), var(--hsu-cream-200));
  border-radius: 4px;
  opacity: 0.65;
}
.hsu-hero__sub {
  font-size: clamp(16px, 1.7vw, 21px);
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  font-weight: 400;
  line-height: 1.6;
}
.hsu-hero__sub strong { color: var(--hsu-cream-200); font-weight: 600; }

.hsu-hero__scroll {
  position: absolute;
  bottom: 32px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}
#hsu-app.lang-he .hsu-hero__scroll { transform: translateX(50%); }
.hsu-hero__scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 100%);
  animation: hsu-scroll 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes hsu-scroll {
  0% { opacity: 0; transform: scaleY(0.4); }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(8px); }
}

/* ============================================================
   METRICS
   ============================================================ */
.hsu-metrics {
  background: linear-gradient(180deg, var(--hsu-green-950), var(--hsu-green-900));
  color: var(--hsu-white);
  padding: 88px 28px;
  position: relative;
  overflow: hidden;
}
.hsu-metrics::before, .hsu-metrics::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}
.hsu-metrics::before { background: var(--hsu-green-500); top: -200px; left: -100px; }
.hsu-metrics::after  { background: var(--hsu-sage);      bottom: -300px; right: -200px; }

.hsu-metrics__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}
.hsu-metric { text-align: center; }
.hsu-metric__num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  color: var(--hsu-cream-200);
  line-height: 1;
  letter-spacing: -.025em;
  font-family: var(--hsu-fs-serif);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.hsu-metric__plus, .hsu-metric__unit {
  font-size: 0.5em;
  color: var(--hsu-green-500);
  font-weight: 600;
}
.hsu-metric__label {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}

/* ============================================================
   SIDE — split image + content
   ============================================================ */
.hsu-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hsu-cream-50);
  align-items: stretch;
}
.hsu-side--reverse .hsu-side__media { order: 2; }
.hsu-side__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.hsu-side__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--hsu-ease-out);
}
.hsu-side__media:hover img { transform: scale(1.04); }
.hsu-side__content {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.hsu-side__title {
  font-size: clamp(30px, 3.8vw, 48px);
  color: var(--hsu-green-950);
  margin-bottom: 24px;
}
.hsu-side__lede {
  font-size: 19px;
  color: var(--hsu-ink);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hsu-side__lede strong { color: var(--hsu-red); font-weight: 700; }
.hsu-side__list { list-style: none; padding: 0; margin: 20px 0 0; }
.hsu-side__list li {
  padding: 20px 0;
  border-top: 1px solid rgba(22, 51, 40, 0.1);
  font-size: 16px;
  color: var(--hsu-ink-soft);
}
.hsu-side__list li strong {
  display: block;
  color: var(--hsu-green-700);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hsu-quote {
  margin: 28px 0 0;
  padding: 28px 32px;
  background: var(--hsu-white);
  border-inline-start: 4px solid var(--hsu-red);
  border-radius: var(--hsu-radius);
  box-shadow: var(--hsu-shadow-sm);
}
.hsu-quote > span {
  font-size: 22px;
  font-weight: 600;
  color: var(--hsu-green-950);
  display: block;
  font-family: var(--hsu-fs-serif);
  font-style: italic;
  line-height: 1.45;
}
#hsu-app.lang-he .hsu-quote > span { font-family: var(--hsu-fs-he); font-style: normal; font-weight: 500; }
.hsu-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  color: var(--hsu-ink-soft);
  font-family: var(--hsu-fs-en);
}
#hsu-app.lang-he .hsu-quote cite { font-family: var(--hsu-fs-he); }

/* ============================================================
   REELS BAR
   ============================================================ */
.hsu-reels {
  background: linear-gradient(180deg, var(--hsu-cream-50) 0%, var(--hsu-cream-100) 100%);
  padding: 110px 0 110px;
  position: relative;
}
.hsu-reels .hsu-section__head { padding-inline: max(28px, 4vw); }

.hsu-reels__rail {
  display: flex;
  gap: 18px;
  padding: 8px max(28px, 4vw) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.hsu-reels__rail::-webkit-scrollbar { display: none; }

.hsu-reel {
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  background: var(--hsu-green-900);
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: var(--hsu-shadow);
  transition:
    transform .5s var(--hsu-ease-out),
    box-shadow .5s var(--hsu-ease-out);
  padding: 0;
}
.hsu-reel:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: var(--hsu-shadow-lg);
}
.hsu-reel:focus-visible {
  outline: 3px solid var(--hsu-green-500);
  outline-offset: 4px;
}
.hsu-reel__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hsu-reel__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14,34,24,0) 0%, rgba(14,34,24,0) 45%, rgba(14,34,24,0.85) 100%);
}
.hsu-reel__play {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--hsu-green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--hsu-ease-bounce);
}
.hsu-reel:hover .hsu-reel__play {
  transform: scale(1.1);
}
.hsu-reel__meta {
  position: absolute;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 3;
  text-align: start;
  color: var(--hsu-white);
}
.hsu-reel__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
  color: var(--hsu-white);
  font-family: var(--hsu-fs-en);
}
#hsu-app.lang-he .hsu-reel__title { font-family: var(--hsu-fs-he); }
.hsu-reel__sub {
  font-size: 12px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hsu-reels__nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 8px max(28px, 4vw) 0;
  max-width: 1400px;
  margin: 0 auto;
}
#hsu-app.lang-he .hsu-reels__nav { justify-content: flex-start; }
.hsu-reels__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hsu-white);
  color: var(--hsu-green-700);
  border: 1px solid rgba(22, 51, 40, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--hsu-ease);
  box-shadow: var(--hsu-shadow-sm);
}
.hsu-reels__arrow:hover {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  border-color: var(--hsu-green-700);
  transform: translateY(-2px);
}
#hsu-app.lang-he .hsu-reels__arrow svg { transform: scaleX(-1); }

/* ============================================================
   REEL MODAL — fullscreen vertical player
   ============================================================ */
.hsu-reel-modal[hidden] { display: none; }
.hsu-reel-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.hsu-reel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 16, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  animation: hsu-fade-in 0.3s var(--hsu-ease);
}
@keyframes hsu-fade-in { from { opacity: 0; } to { opacity: 1; } }
.hsu-reel-modal__close {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--hsu-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.2s var(--hsu-ease);
}
.hsu-reel-modal__close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.hsu-reel-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--hsu-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.2s var(--hsu-ease);
}
.hsu-reel-modal__nav:hover { background: rgba(255,255,255,0.18); }
.hsu-reel-modal__nav--prev { inset-inline-start: 28px; }
.hsu-reel-modal__nav--next { inset-inline-end: 28px; }
#hsu-app.lang-he .hsu-reel-modal__nav--prev svg,
#hsu-app.lang-he .hsu-reel-modal__nav--next svg { transform: scaleX(-1); }

.hsu-reel-modal__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-height: 92vh;
}
.hsu-reel-modal__video {
  width: auto;
  height: min(82vh, 720px);
  aspect-ratio: 9 / 16;
  background: var(--hsu-black);
  border-radius: 18px;
  box-shadow: var(--hsu-shadow-xl);
  max-width: 92vw;
}
.hsu-reel-modal__caption {
  text-align: center;
  color: var(--hsu-cream-100);
  max-width: 540px;
}
.hsu-reel-modal__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--hsu-cream-100);
  font-family: var(--hsu-fs-serif);
}
#hsu-app.lang-he .hsu-reel-modal__title { font-family: var(--hsu-fs-he); }
.hsu-reel-modal__sub {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.hsu-timeline {
  background: var(--hsu-white);
  padding: 120px 28px;
}
.hsu-timeline__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.hsu-timeline__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  inset-inline-start: 6%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(42,95,61,0.15) 0%,
    var(--hsu-green-500) 50%,
    rgba(163,58,58,0.4) 100%);
  z-index: 0;
}
.hsu-timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 80px;
}
.hsu-timeline__time {
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--hsu-white);
  color: var(--hsu-green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 0 0 6px var(--hsu-white), 0 4px 14px rgba(22,51,40,0.18);
  font-family: var(--hsu-fs-en);
  border: 2px solid var(--hsu-green-700);
  letter-spacing: 0.02em;
}
#hsu-app.lang-he .hsu-timeline__time { transform: translateX(50%); }
.hsu-timeline__step--press .hsu-timeline__time {
  color: var(--hsu-red);
  border-color: var(--hsu-red);
  box-shadow: 0 0 0 6px var(--hsu-white), 0 4px 14px rgba(163,58,58,0.25);
}
.hsu-timeline__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--hsu-green-950);
  margin: 0 0 10px;
}
.hsu-timeline__body p {
  font-size: 14px;
  color: var(--hsu-ink-soft);
  margin: 0;
  line-height: 1.55;
}

.hsu-pull {
  max-width: 820px;
  margin: 80px auto 0;
  text-align: center;
  padding: 0 24px;
}
.hsu-pull blockquote {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  font-style: italic;
  color: var(--hsu-green-950);
  line-height: 1.35;
  margin: 0 0 16px;
  font-family: var(--hsu-fs-serif);
  position: relative;
  padding: 0 24px;
}
#hsu-app.lang-he .hsu-pull blockquote { font-family: var(--hsu-fs-he); font-style: normal; }
.hsu-pull blockquote::before, .hsu-pull blockquote::after {
  font-size: 2.5em;
  color: var(--hsu-green-500);
  opacity: 0.3;
  position: absolute;
  font-family: var(--hsu-fs-serif);
  line-height: 1;
}
.hsu-pull blockquote::before { content: '“'; top: -0.1em; inset-inline-start: -0.2em; }
.hsu-pull blockquote::after  { content: '”'; bottom: -0.5em; inset-inline-end: -0.2em; }
.hsu-pull figcaption {
  font-size: 13px;
  color: var(--hsu-ink-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   ARC — growth pillars
   ============================================================ */
.hsu-arc {
  background: linear-gradient(135deg, var(--hsu-green-950) 0%, var(--hsu-green-800) 100%);
  color: var(--hsu-white);
  padding: 120px 28px;
  position: relative;
  overflow: hidden;
}
.hsu-arc::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  background: var(--hsu-green-500);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hsu-arc__from {
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  font-weight: 500;
}
.hsu-arc__to {
  color: var(--hsu-cream-200);
  position: relative;
  display: inline-block;
  font-style: italic;
}
.hsu-arc__to::after {
  content: "";
  position: absolute;
  bottom: 0.08em; inset-inline-start: 0;
  width: 100%; height: 0.08em;
  background: var(--hsu-green-500);
  border-radius: 4px;
  opacity: .6;
}
.hsu-arc__lede {
  max-width: 720px;
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.hsu-arc__pillars {
  max-width: 1240px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.hsu-pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--hsu-radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  transition: all .4s var(--hsu-ease-out);
}
.hsu-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  box-shadow: var(--hsu-shadow-lg);
}
.hsu-pillar__num {
  font-family: var(--hsu-fs-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--hsu-cream-200);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-style: italic;
}
.hsu-pillar__title {
  font-size: 22px;
  color: var(--hsu-white);
  margin-bottom: 14px;
  font-weight: 700;
}
.hsu-pillar p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
.hsu-types {
  background: var(--hsu-cream-100);
  padding: 120px 28px;
}
.hsu-gallery {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hsu-gallery__item {
  margin: 0;
  position: relative;
  border-radius: var(--hsu-radius);
  overflow: hidden;
  background: var(--hsu-white);
  box-shadow: var(--hsu-shadow-sm);
  cursor: zoom-in;
  transition: transform .4s var(--hsu-ease-out), box-shadow .4s var(--hsu-ease-out);
  aspect-ratio: 4 / 5;
}
.hsu-gallery__item:hover { transform: translateY(-4px); box-shadow: var(--hsu-shadow); }
.hsu-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--hsu-ease-out);
}
.hsu-gallery__item:hover img { transform: scale(1.05); }
.hsu-gallery__item figcaption {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  padding: 20px 16px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hsu-white);
  background: linear-gradient(0deg, rgba(14,34,24,.92) 0%, rgba(14,34,24,0) 100%);
}
.hsu-gallery__zoom {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--hsu-green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all .3s var(--hsu-ease);
  backdrop-filter: blur(6px);
}
.hsu-gallery__item:hover .hsu-gallery__zoom { opacity: 1; transform: scale(1); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.hsu-lightbox[hidden] { display: none; }
.hsu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hsu-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 16, 0.94);
  backdrop-filter: blur(20px);
  animation: hsu-fade-in 0.3s var(--hsu-ease);
}
.hsu-lightbox__close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--hsu-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.2s var(--hsu-ease);
}
.hsu-lightbox__close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.hsu-lightbox__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 92vw;
  max-height: 90vh;
  margin: 0;
  animation: hsu-zoom-in 0.45s var(--hsu-ease-out);
}
@keyframes hsu-zoom-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.hsu-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: var(--hsu-shadow-xl);
  object-fit: contain;
}
.hsu-lightbox__caption {
  color: var(--hsu-cream-100);
  font-size: 15px;
  text-align: center;
  max-width: 700px;
  font-weight: 500;
}

/* ============================================================
   CREDITS
   ============================================================ */
.hsu-credits {
  background: var(--hsu-white);
  padding: 120px 28px;
}
.hsu-credits__empty {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  background: var(--hsu-cream-100);
  border-radius: var(--hsu-radius);
  color: var(--hsu-ink-soft);
  border: 1px dashed rgba(22,51,40,0.15);
}
.hsu-credits__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.hsu-credit {
  background: var(--hsu-cream-50);
  border-radius: var(--hsu-radius-lg);
  overflow: hidden;
  box-shadow: var(--hsu-shadow-sm);
  border: 1px solid rgba(22,51,40,.06);
  cursor: pointer;
  transition:
    transform .4s var(--hsu-ease-out),
    box-shadow .4s var(--hsu-ease-out),
    border-color .3s var(--hsu-ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.hsu-credit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--hsu-radius-lg);
  border: 2px solid transparent;
  transition: border-color .3s var(--hsu-ease);
  pointer-events: none;
  z-index: 2;
}
.hsu-credit:hover {
  transform: translateY(-8px);
  box-shadow: var(--hsu-shadow);
}
.hsu-credit:hover::before { border-color: var(--hsu-green-500); }
.hsu-credit__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hsu-green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hsu-credit__photo img,
.hsu-credit__avatar {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .8s var(--hsu-ease-out);
}
.hsu-credit:hover .hsu-credit__photo img { transform: scale(1.05); }
.hsu-credit__photo-fallback { color: var(--hsu-cream-200); }
.hsu-credit__body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.hsu-credit__name {
  font-size: 20px;
  color: var(--hsu-green-950);
  margin-bottom: 10px;
  font-weight: 700;
}
.hsu-credit__role--project {
  font-size: 13px;
  font-weight: 700;
  color: var(--hsu-green-700);
  background: rgba(42,95,61,.1);
  padding: 5px 11px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
  letter-spacing: 0.01em;
}
.hsu-credit__role--general {
  font-size: 13px;
  color: var(--hsu-ink-soft);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hsu-credit__note {
  font-size: 14px;
  color: var(--hsu-ink);
  font-style: italic;
  border-inline-start: 3px solid var(--hsu-green-500);
  padding-inline-start: 12px;
  margin: 12px 0;
  line-height: 1.55;
}
.hsu-credit__socials { display: flex; gap: 8px; margin-top: auto; padding-top: 14px; }
.hsu-credit__socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(22,51,40,.06);
  color: var(--hsu-green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--hsu-ease);
}
.hsu-credit__socials a:hover {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  transform: translateY(-2px);
}

/* ============================================================
   PRESS
   ============================================================ */
.hsu-press {
  background: var(--hsu-cream-100);
  padding: 120px 28px;
}
.hsu-press__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hsu-press__card {
  background: var(--hsu-white);
  border-radius: var(--hsu-radius);
  padding: 36px 32px;
  border: 1px solid rgba(22,51,40,.07);
  transition: all .3s var(--hsu-ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hsu-press__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hsu-shadow);
  border-color: var(--hsu-green-500);
}
.hsu-press__name {
  font-family: var(--hsu-fs-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--hsu-green-950);
  letter-spacing: -0.01em;
}
#hsu-app.lang-he .hsu-press__name { font-family: var(--hsu-fs-he); }
.hsu-press__pull {
  font-size: 16px;
  color: var(--hsu-ink);
  font-style: italic;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
#hsu-app.lang-he .hsu-press__pull { font-style: normal; }
.hsu-press__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--hsu-green-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   MISSION cards
   ============================================================ */
.hsu-mission {
  background: var(--hsu-white);
  padding: 120px 28px;
}
.hsu-mission__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hsu-mission__card {
  text-align: center;
  padding: 48px 32px;
  background: var(--hsu-cream-50);
  border-radius: var(--hsu-radius-lg);
  border: 1px solid rgba(22,51,40,.06);
  transition: all .3s var(--hsu-ease-out);
}
.hsu-mission__card:hover {
  transform: translateY(-6px);
  border-color: var(--hsu-green-500);
  box-shadow: var(--hsu-shadow);
  background: var(--hsu-white);
}
.hsu-mission__icon {
  color: var(--hsu-green-700);
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42,95,61,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--hsu-ease-bounce);
}
.hsu-mission__card:hover .hsu-mission__icon {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  transform: scale(1.08);
}
.hsu-mission__card h3 {
  font-size: 24px;
  color: var(--hsu-green-950);
  margin-bottom: 14px;
  font-weight: 700;
}
.hsu-mission__card p { font-size: 15px; color: var(--hsu-ink-soft); margin: 0; line-height: 1.6; }

/* ============================================================
   NEXT
   ============================================================ */
.hsu-next {
  background: var(--hsu-cream-100);
  padding: 120px 28px;
}
.hsu-next__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hsu-next__item {
  background: var(--hsu-white);
  border-radius: var(--hsu-radius);
  padding: 36px 36px 36px 40px;
  border-inline-start: 4px solid var(--hsu-green-500);
  position: relative;
  transition: all .3s var(--hsu-ease-out);
}
.hsu-next__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hsu-shadow);
}
.hsu-next__num {
  position: absolute;
  top: 18px;
  inset-inline-end: 24px;
  font-family: var(--hsu-fs-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--hsu-cream-300);
  font-style: italic;
}
.hsu-next__item h3 {
  font-size: 22px;
  color: var(--hsu-green-950);
  margin-bottom: 10px;
  padding-inline-end: 50px;
}
.hsu-next__item p { font-size: 15px; color: var(--hsu-ink-soft); margin: 0; line-height: 1.6; }

/* ============================================================
   THANKS
   ============================================================ */
.hsu-thanks {
  position: relative;
  padding: 140px 28px;
  text-align: center;
  isolation: isolate;
  color: var(--hsu-white);
  background: linear-gradient(135deg, var(--hsu-green-950) 0%, var(--hsu-green-700) 100%);
  overflow: hidden;
}
.hsu-thanks__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(90,154,110,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244,237,223,0.1) 0%, transparent 50%);
}
.hsu-thanks__inner { max-width: 860px; margin: 0 auto; position: relative; }
.hsu-thanks__uja { margin: 0 auto 40px; }
.hsu-thanks__uja-logo {
  max-width: 240px;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  opacity: 0.95;
}
.hsu-thanks__uja-text {
  font-family: var(--hsu-fs-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--hsu-cream-100);
}
.hsu-thanks__title {
  font-size: clamp(34px, 5vw, 60px);
  color: var(--hsu-white);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hsu-thanks__body {
  font-size: 19px;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}
.hsu-thanks__signoff {
  font-size: 14px;
  color: var(--hsu-cream-200);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   FAB
   ============================================================ */
.hsu-fab {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--hsu-shadow);
  transition: all .25s var(--hsu-ease);
  letter-spacing: 0.01em;
}
.hsu-fab:hover {
  background: var(--hsu-green-800);
  transform: translateY(-3px);
  box-shadow: var(--hsu-shadow-lg);
}

/* ============================================================
   POPUP (member details)
   ============================================================ */
.hsu-popup[hidden] { display: none; }
.hsu-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.hsu-popup__overlay {
  position: absolute; inset: 0;
  background: rgba(14, 34, 24, .82);
  backdrop-filter: blur(10px);
  animation: hsu-fade-in 0.25s var(--hsu-ease);
}
.hsu-popup__panel {
  position: relative;
  background: var(--hsu-white);
  border-radius: var(--hsu-radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--hsu-shadow-xl);
  padding: 44px;
  animation: hsu-zoom-in 0.35s var(--hsu-ease-out);
}
.hsu-popup__close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 36px;
  height: 36px;
  background: var(--hsu-cream-200);
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hsu-green-950);
  transition: all .2s var(--hsu-ease);
}
.hsu-popup__close:hover { background: var(--hsu-green-700); color: var(--hsu-white); transform: rotate(90deg); }
.hsu-popup__loading {
  text-align: center;
  padding: 80px 0;
  font-size: 28px;
  color: var(--hsu-green-700);
  letter-spacing: 0.3em;
}
.hsu-popup .hsu-pp-header {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hsu-cream-300);
}
.hsu-popup .hsu-pp-photo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--hsu-cream-200);
}
.hsu-popup .hsu-pp-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--hsu-green-950);
  margin-bottom: 6px;
  font-family: var(--hsu-fs-serif);
}
#hsu-app.lang-he .hsu-popup .hsu-pp-name { font-family: var(--hsu-fs-he); }
.hsu-popup .hsu-pp-meta { font-size: 14px; color: var(--hsu-ink-soft); }
.hsu-popup .hsu-pp-socials { display: flex; gap: 8px; margin-top: 12px; }
.hsu-popup .hsu-pp-socials a {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(42,95,61,.1);
  color: var(--hsu-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--hsu-ease);
}
.hsu-popup .hsu-pp-socials a:hover {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
}
.hsu-popup .hsu-pp-section { margin-top: 24px; }
.hsu-popup .hsu-pp-section h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--hsu-green-700);
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--hsu-fs-en);
}
#hsu-app.lang-he .hsu-popup .hsu-pp-section h4 { font-family: var(--hsu-fs-he); }
.hsu-popup .hsu-pp-section p { font-size: 15px; color: var(--hsu-ink); line-height: 1.65; }
.hsu-popup .hsu-pp-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.hsu-popup .hsu-pp-skill {
  background: var(--hsu-green-700);
  color: var(--hsu-white);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hsu-dots { display: none; }
}

@media (max-width: 980px) {
  .hsu-metrics__inner { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .hsu-arc__pillars { grid-template-columns: 1fr; }
  .hsu-mission__grid { grid-template-columns: 1fr; }
  .hsu-press__grid { grid-template-columns: 1fr; }
  .hsu-next__grid { grid-template-columns: 1fr; }
  .hsu-gallery { grid-template-columns: repeat(2, 1fr); }

  .hsu-timeline__steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hsu-timeline__steps::before {
    inset-inline-start: 27px;
    top: 32px;
    width: 1px;
    height: calc(100% - 64px);
    background: linear-gradient(180deg, rgba(42,95,61,0.2), var(--hsu-green-500), rgba(163,58,58,0.4));
  }
  .hsu-timeline__step {
    padding-top: 0;
    padding-inline-start: 80px;
    text-align: start;
  }
  .hsu-timeline__time {
    top: 0;
    inset-inline-start: 0;
    transform: none;
  }
  #hsu-app.lang-he .hsu-timeline__time { transform: none; }

  .hsu-side { grid-template-columns: 1fr; }
  .hsu-side__media { min-height: 320px; }
  .hsu-side__content { padding: 64px 28px; }
  .hsu-side--reverse .hsu-side__media { order: 0; }

  .hsu-reel { width: 180px; }
}

@media (max-width: 640px) {
  #hsu-app { font-size: 16px; }
  .hsu-gallery { grid-template-columns: 1fr; }
  .hsu-hero { padding: 110px 22px 90px; }
  .hsu-hero__title { font-size: clamp(36px, 11vw, 64px); }
  .hsu-fab { padding: 12px; font-size: 13px; bottom: 16px; inset-inline-end: 16px; }
  .hsu-fab span { display: none; }
  .hsu-popup__panel { padding: 28px; }
  .hsu-langbar { top: 12px; inset-inline-start: 12px; }
  .hsu-reel { width: 160px; }
  .hsu-reel-modal__nav { width: 40px; height: 40px; }
  .hsu-reel-modal__nav--prev { inset-inline-start: 8px; }
  .hsu-reel-modal__nav--next { inset-inline-end: 8px; }
  .hsu-reel-modal__video { height: 75vh; }
  .hsu-thanks__body { font-size: 17px; }
  .hsu-section__head { margin-bottom: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .hsu-hero__video { display: none; }
  .hsu-pill__dot, .hsu-hero__scroll-line { animation: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
