@charset "UTF-8";
/* ============================================================
   GONG CLONE — design system
   Palette: #124559 (deep teal) · #AEC3B0 (sage) · #F3F3F6 (mist)
   ============================================================ */

:root {
  --teal: #124559;
  --teal-deep: #0b2d3b;
  --teal-ink: #0a2431;          /* darkest — footer / big type */
  --teal-soft: #1d5a72;
  --sage: #AEC3B0;
  --sage-strong: #56715a;       /* darkened sage: 4.6:1 on --mist, AA for body text */
  --sage-wash: #dfe8e0;
  --sage-faint: #eef3ee;
  --mist: #F4F1EA;              /* warmed paper (was cool #F3F3F6) */
  --white: #ffffff;
  --accent: #4CC9D3;            /* bright turquoise accent */
  --accent-deep: #17808C;       /* turquoise for text / hover (AA on paper) */
  --accent-faint: #E1F5F7;      /* turquoise wash */
  --ink: #12303e;               /* body text */
  --ink-soft: #4c6672;

  --font-display: 'Heebo', 'Arial Hebrew', sans-serif;
  --font-body: 'Heebo', -apple-system, 'Segoe UI', sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(18, 69, 89, .08);
  --shadow-md: 0 8px 30px rgba(18, 69, 89, .12);
  --shadow-lg: 0 20px 60px rgba(18, 69, 89, .18);

  --nav-h: 76px;
  --announce-h: 48px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- type ---------- */
.h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal-ink);
}
.h2 em { font-style: normal; color: var(--sage-strong); }
.h2--center { text-align: center; max-width: 900px; margin: 0 auto; }

.section-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
}

.eyebrow {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--sage-strong);
  margin-bottom: 14px;
}

.arrow { display: inline-block; transition: transform .25s var(--ease); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-soft); }
.btn--accent { background: var(--accent); color: var(--teal-ink); }
.btn--accent:hover { background: #6fd6de; }
.btn--ghost { background: transparent; color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.btn--ghost:hover { background: rgba(18, 69, 89, .06); }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--block { width: 100%; }

.text-link {
  font-weight: 700; font-size: 15px; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.text-link:hover .arrow { transform: translateX(5px); }
.text-link--light { color: var(--sage); }
.text-link--btn { font-size: 17px; }

.pill--tiny {
  background: var(--sage); color: var(--teal-ink);
  font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 2px 10px; margin-inline-start: 6px;
}
.pill--light { background: var(--sage); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--teal-ink); color: var(--mist);
  height: var(--announce-h);
  display: flex; align-items: center;
  font-size: 14px;
  position: relative; z-index: 60;
}
.announce.is-hidden { display: none; }
.announce__inner { display: flex; align-items: center; gap: 12px; width: 100%; }
.announce__icon { width: 20px; height: 20px; color: var(--sage); flex: none; }
.announce__inner p { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce__cta { font-weight: 700; color: var(--accent); white-space: nowrap; }
.announce__cta:hover .arrow { transform: translateX(4px); }
.announce__close { color: var(--mist); opacity: .7; font-size: 13px; padding: 6px; }
.announce__close:hover { opacity: 1; }

/* ============================================================
   NAV — whole header block (announce + nav) stays sticky
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; }
.nav {
  position: relative; z-index: 50;
  background: var(--white);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 16px; height: 100%; position: relative; z-index: 50; background: var(--white); }

.nav__logo { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__mark { width: 38px; height: 38px; transition: transform .4s var(--ease); }
.nav__logo:hover .nav__mark { transform: rotate(18deg); }
.nav__word {
  font-family: var(--font-display);
  font-size: 27px; letter-spacing: .04em; color: var(--teal-ink);
}

.nav__menu { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 600; font-size: 15px; color: var(--teal-ink);
  padding: 10px 10px; border-radius: 10px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--sage-faint); color: var(--teal); }
.chev { width: 11px; height: 8px; flex: none; opacity: .65; transition: transform .25s var(--ease), opacity .2s; }
.nav__link:hover .chev { opacity: 1; }
.nav__item.is-open .chev { transform: rotate(180deg); opacity: 1; }

/* dropdowns */
.drop {
  position: absolute; top: calc(100% + 10px); inset-inline-start: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  border: 1px solid var(--sage-wash);
}
.nav__item.is-open .drop,
.nav__item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }

.drop__grid { display: grid; grid-template-columns: repeat(2, 250px); gap: 6px; }
.drop__card {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border-radius: 12px;
  transition: background .2s;
}
.drop__card:hover { background: var(--sage-faint); }
.drop__icon {
  width: 38px; height: 38px; flex: none;
  background: var(--sage-wash); border-radius: 10px;
  display: grid; place-items: center; font-size: 18px;
}
.drop__card strong { display: block; font-size: 15px; color: var(--teal-ink); }
.drop__card small { color: var(--ink-soft); font-size: 13px; line-height: 1.4; }

.drop__cols { display: flex; gap: 36px; }
.drop__cols a, .drop--slim a {
  display: block; padding: 8px 10px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  white-space: nowrap;
}
.drop__cols a:hover, .drop--slim a:hover { background: var(--sage-faint); color: var(--teal); }
.drop__title {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--sage-strong);
  padding: 0 10px 6px;
}

.nav__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; color: var(--teal-ink);
  transition: background .2s;
}
.icon-btn:hover { background: var(--sage-faint); }
.icon-btn svg { width: 20px; height: 20px; }
.nav__signin { font-weight: 600; font-size: 15px; padding: 0 6px; color: var(--teal-ink); }
.nav__signin:hover { color: var(--sage-strong); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 2.5px; background: var(--teal-ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(10, 36, 49, .55); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 18vh;
}
.search-overlay__box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: min(620px, 90vw);
  display: flex; align-items: center; padding: 6px 6px 6px 22px;
  animation: popIn .3s var(--ease);
}
.search-overlay__box:focus-within { box-shadow: var(--shadow-lg), 0 0 0 4px rgba(174, 195, 176, .55); }
.search-overlay__box input {
  flex: 1; border: 0; outline: 0; font: inherit; font-size: 18px; padding: 16px 0;
  background: transparent;
}
.search-overlay__close { padding: 12px 16px; color: var(--ink-soft); }
@keyframes popIn { from { opacity: 0; transform: translateY(-14px); } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--mist); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 85% 10%, rgba(174, 195, 176, .5), transparent 65%),
    radial-gradient(700px 500px at 100% 80%, rgba(18, 69, 89, .12), transparent 60%),
    var(--mist);
}
.hero__bg::after {
  content: '';
  position: absolute; inset-inline-end: -140px; top: 40px;
  width: 560px; height: 560px;
  background: url('../assets/img/hero-ambient.png') center/cover;
  opacity: .5; border-radius: 50%;
  filter: blur(2px);
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px;
  align-items: center;
  padding-top: 84px; padding-bottom: 96px;
  min-height: 560px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.12;
  color: var(--teal-ink);
}
.hero__note { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); }
.hero__rotator { display: block; position: relative; height: 1.32em; overflow: hidden; }
.hero__rotor {
  position: absolute; inset: 0;
  color: var(--sage-strong);
  opacity: 0; transform: translateY(105%);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
  white-space: nowrap;
}
.hero__rotor.is-active { opacity: 1; transform: translateY(0); }
.hero__rotor.is-leaving { opacity: 0; transform: translateY(-105%); }

.hero__sub { margin-top: 22px; font-size: 21px; color: var(--ink-soft); max-width: 520px; }
.hero__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* AI assistant card */
.hero__panel { display: flex; justify-content: flex-end; }
.ai-card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--sage-wash);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 40px 36px 30px;
  width: min(580px, 100%);
  animation: floaty 7s ease-in-out infinite;
}
@media (min-width: 1081px) {
  /* bleed past the right viewport edge like the original (clipped by .hero overflow) */
  .hero__panel { margin-inline-end: -72px; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ai-card__spark { display: flex; justify-content: center; }
.ai-card__spark svg { width: 52px; height: 52px; animation: sparkle 3.5s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.12) rotate(8deg); } }
.ai-card__title { text-align: center; font-size: 24px; font-weight: 800; color: var(--teal-ink); margin: 10px 0 20px; }

.ai-card__prompt {
  border: 1.5px solid var(--sage); border-radius: 18px;
  background: var(--white);
  padding: 16px 16px 12px;
}
.ai-card__typed { min-height: 48px; font-size: 15.5px; color: var(--ink); }
.caret {
  display: inline-block; width: 2px; height: 1.1em; background: var(--teal);
  vertical-align: text-bottom; margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.ai-card__prompt-foot { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.ai-card__send {
  margin-inline-start: auto;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 17px;
  display: grid; place-items: center;
  transition: transform .2s var(--ease), background .2s;
}
.ai-card__send:hover { transform: translateY(-2px); background: var(--accent-deep); }

.ai-card__chips { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.ai-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  background: var(--sage-faint); color: var(--teal-ink);
  border: 1px solid var(--sage-wash);
  padding: 8px 14px; border-radius: 999px;
  transition: background .2s, transform .2s;
}
.ai-chip:hover { background: var(--sage-wash); transform: translateY(-1px); }
.ai-chip--filled { background: var(--teal); color: #fff; border-color: var(--teal); }
.ai-chip--filled:hover { background: var(--teal-soft); }
.ai-chip--quiet { background: transparent; border-color: transparent; color: var(--ink-soft); padding: 6px 8px; }
.ai-chip--quiet:hover { background: var(--sage-faint); }

.ai-card__reply {
  margin-top: 14px; font-size: 14px; color: var(--teal);
  background: var(--sage-faint); border-radius: 12px; padding: 12px 16px;
  animation: popIn .35s var(--ease);
}

/* ============================================================
   LOGOS MARQUEE
   ============================================================ */
.logos { background: var(--white); padding: 46px 0 52px; }
.logos__title {
  text-align: center; font-size: 15px; font-weight: 600;
  color: var(--sage-strong); margin-bottom: 30px;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 72px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding-right: 72px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* static variant: no scroll, no tilt — everything visible in one centered row */
.marquee--static::before, .marquee--static::after { display: none; }
.marquee--static .marquee__track {
  width: 100%; flex-wrap: wrap; justify-content: center;
  animation: none; padding-right: 0; gap: 36px 56px;
}
.marquee--static .logo-word { font-size: 24px; }
.marquee--static .logo-img { height: 40px; }
.marquee--static .logo-img--wide { height: 31px; }

.logo-word {
  font-size: 27px; font-weight: 800; letter-spacing: -.01em;
  color: var(--teal); opacity: .75; white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
.logo-word:hover { opacity: 1; transform: scale(1.05); }
.logo-word--caps { letter-spacing: .12em; font-weight: 700; font-size: 22px; }
.logo-word--serif { font-family: var(--font-body); font-weight: 300; }
.logo-word--script { font-family: var(--font-body); font-weight: 500; letter-spacing: .06em; }

/* ============================================================
   FORMULA
   ============================================================ */
.formula { padding: 110px 0 90px; text-align: center; background: var(--mist); }
.formula .section-sub { margin-left: auto; margin-right: auto; }
.formula__row {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.06fr;
  gap: 22px; align-items: stretch;
}
.formula__card {
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: var(--radius-lg);
  padding: 44px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.formula__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.formula__card h3 { font-size: 26px; font-weight: 800; color: var(--teal); }
.formula__card p { color: var(--ink-soft); margin-top: 6px; }
.formula__card--filled { background: var(--teal); border-color: var(--teal); }
.formula__card--filled h3 { color: var(--sage); }
.formula__card--filled p { color: rgba(243, 243, 246, .85); }
.formula__op {
  align-self: center; font-size: 30px; font-weight: 800; color: var(--accent-deep);
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case { background: var(--white); padding: 110px 0; }
.case__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.case__quote {
  margin-top: 30px;
  border-inline-start: 3px solid var(--sage);
  padding-inline-start: 24px;
}
.case__quote p { font-size: 19px; font-weight: 600; color: var(--teal-ink); line-height: 1.55; }
.case__quote footer { margin-top: 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.case__quote strong { color: var(--teal); font-size: 16px; }
.case__quote footer span { color: var(--ink-soft); font-size: 14.5px; }

.logo-chip {
  background: var(--teal); color: var(--mist) !important;
  font-size: 12px !important; font-weight: 700; letter-spacing: .08em;
  border-radius: 8px; padding: 6px 12px;
}

.case__stat {
  margin-top: 34px;
  display: inline-flex; align-items: center; gap: 20px;
  background: var(--mist); border: 1px solid var(--sage-wash);
  border-radius: var(--radius); padding: 18px 28px;
}
.case__stat-num {
  font-family: var(--font-display);
  font-size: 54px; color: var(--teal); line-height: 1;
}
.case__stat-label { font-weight: 600; color: var(--ink); }

.case__media { position: relative; }
.case__video {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 0;
}
.case__video img { transition: transform .5s var(--ease); }
.case__video:hover img { transform: scale(1.03); }
.case__play {
  position: absolute; inset-inline-start: 26px; bottom: 26px;
  width: 62px; height: 62px; border-radius: 16px;
  background: rgba(243, 243, 246, .92); color: var(--teal);
  display: grid; place-items: center; font-size: 20px;
  transition: transform .25s var(--ease), background .25s;
}
.case__video:hover .case__play { transform: scale(1.08); background: var(--accent); }
.case__play::after {
  content: ''; position: absolute; inset: -8px; border-radius: 20px;
  border: 2px solid rgba(174, 195, 176, .7);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse { 0% { opacity: 1; transform: scale(.9); } 100% { opacity: 0; transform: scale(1.25); } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 110px 0; background: var(--mist); }
.products__grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: var(--radius-lg);
  padding: 18px 18px 26px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-card__art {
  position: relative;
  background: linear-gradient(135deg, var(--sage-faint) 0%, var(--accent-faint) 100%);
  display: grid; place-items: center;
  padding: 24px 0 20px; margin-bottom: 22px;
}
.prod-card:nth-child(even) .prod-card__art { background: linear-gradient(225deg, var(--accent-faint) 0%, var(--sage-faint) 100%); }
.prod-card__art img {
  width: 132px; height: 132px; object-fit: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(circle at center, #000 52%, transparent 74%);
  mask-image: radial-gradient(circle at center, #000 52%, transparent 74%);
  transition: transform .4s var(--ease);
}
.prod-card:nth-child(odd) .prod-card__art img { rotate: -2deg; }
.prod-card:nth-child(even) .prod-card__art img { rotate: 2deg; }
.prod-card:hover .prod-card__art img { transform: scale(1.07) rotate(2deg); }
.prod-card__spark {
  position: absolute; top: 14px; inset-inline-end: 16px;
  width: 18px; height: 18px; color: var(--accent);
  transition: transform .35s var(--ease);
}
.prod-card:hover .prod-card__spark { transform: rotate(45deg) scale(1.25); }
.prod-card h3 { font-size: 21px; font-weight: 800; color: var(--teal-ink); padding: 0 10px; }
.prod-card p { color: var(--ink-soft); font-size: 15.5px; margin: 10px 10px 18px; flex: 1; }
.prod-card .text-link { padding: 0 10px; }

/* ============================================================
   PLATFORM
   ============================================================ */
.platform { background: var(--white); padding: 110px 0; }
.platform__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.platform__list { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.platform__list li {
  background: var(--mist); border: 1px solid var(--sage-wash);
  border-radius: 14px; padding: 14px 20px;
  color: var(--ink-soft); font-size: 15.5px;
  transition: transform .25s var(--ease), border-color .25s;
}
.platform__list li:hover { transform: translateX(6px); border-color: var(--sage); }
.platform__list strong { color: var(--teal); }
.platform__figure {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--sage-wash);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   STATS RIBBON — two tilted halves, inset & rounded like the original
   ============================================================ */
.stats { padding: 90px 0 110px; background: var(--mist); overflow: hidden; }
.stats__band { position: relative; max-width: 1320px; margin: 0 auto; padding: 26px 24px 30px; }
.stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  text-align: center; align-items: start;
}
.stat {
  background: var(--teal);
  padding: 48px 22px 42px;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
}
/* each card gets its own organic silhouette + hand-placed tilt */
.stat:nth-child(1) { border-radius: 42px 26px 48px 24px; rotate: -1.6deg; }
.stat:nth-child(2) { border-radius: 24px 46px 26px 42px; rotate: 1.2deg; margin-top: 26px; }
.stat:nth-child(3) { border-radius: 48px 28px 40px 26px; rotate: -0.8deg; }
.stat:nth-child(4) { border-radius: 26px 42px 24px 48px; rotate: 1.8deg; margin-top: 20px; }
.stat:hover { transform: translateY(-6px); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  color: var(--sage);
  line-height: 1;
  position: relative;
}
.stat__bolt {
  position: absolute; top: -20px; margin-inline-start: 8px;
  width: 30px; height: 36px; color: var(--accent);
}
.stat__label { display: block; margin-top: 14px; color: var(--mist); font-weight: 600; font-size: 14.5px; }

/* ============================================================
   FANS / TESTIMONIALS
   ============================================================ */
.fans { padding: 110px 0; background: var(--white); overflow: hidden; }
.fans__wall {
  margin-top: 56px;
  columns: 3; column-gap: 24px;
}
@media (min-width: 1200px) {
  /* wall bleeds past the container edges like the original (clipped by .fans) */
  .fans__wall { margin-left: -72px; margin-right: -72px; }
}
.fan-card {
  break-inside: avoid;
  background: var(--mist);
  border: 1px solid var(--sage-wash);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fan-card p { font-size: 15.5px; font-weight: 500; color: var(--teal-ink); line-height: 1.6; }
.fan-card footer {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--sage-wash);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.fan-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.fan-card footer strong { display: block; font-size: 15px; color: var(--teal); }
.fan-card footer span:not(.logo-chip) { font-size: 13px; color: var(--ink-soft); }
.fan-card footer div { flex: 1; min-width: 170px; }
.fan-card--accent { background: var(--teal); border-color: var(--teal); }
.fan-card--accent p { color: var(--mist); }
.fan-card--accent footer { border-top-color: rgba(174, 195, 176, .35); }
.fan-card--accent footer strong { color: var(--sage); }
.fan-card--accent footer span:not(.logo-chip) { color: rgba(243, 243, 246, .75); }
.fan-card--accent .logo-chip { background: var(--sage); color: var(--teal-ink) !important; }
.fan-card--hidden { display: none; }
.fans__wall.is-expanded .fan-card--hidden { display: block; }
.fans__more { text-align: center; margin-top: 26px; }

/* ============================================================
   PERSONAS
   ============================================================ */
.personas { padding: 110px 0; background: var(--mist); }
.personas__grid {
  margin-top: 54px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.persona-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.persona-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.persona-card--wide { grid-column: span 3; }
.persona-card__icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; font-size: 24px;
  background: var(--sage-faint); border-radius: 14px;
  margin-bottom: 18px;
}
.persona-card h3 { font-size: 22px; font-weight: 800; color: var(--teal-ink); }
.persona-card p { color: var(--ink-soft); font-size: 15.5px; margin: 10px 0 18px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 40px 0 110px; background: var(--mist); }
.cta__panel {
  background:
    radial-gradient(700px 400px at 12% 0%, rgba(174, 195, 176, .28), transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: 28px;
  padding: 72px 64px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta__panel::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(243,243,246,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(243,243,246,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(600px) rotateX(30deg) scale(1.4);
  transform-origin: bottom;
  pointer-events: none;
}
.cta__copy { position: relative; }
.cta__stars { color: var(--sage); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.cta__stars span { color: rgba(243, 243, 246, .8); font-size: 14px; letter-spacing: 0; margin-left: 10px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--mist);
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta__copy > p { color: rgba(243, 243, 246, .85); font-size: 17px; max-width: 460px; }

.cta__form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 30px;
}
.cta__form input[type="email"], .cta__form input[type="tel"] {
  width: 100%;
  font: inherit; font-size: 15.5px;
  border: 1.5px solid var(--sage-wash); border-radius: 999px;
  padding: 15px 22px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white); color: var(--ink);
}
.cta__form input[type="email"]:focus, .cta__form input[type="tel"]:focus { border-color: var(--sage-strong); box-shadow: 0 0 0 4px rgba(174, 195, 176, .3); }
.cta__form input.is-error { border-color: #b3564e; }
.cta__form input + label + input, .cta__form label + input { margin-top: 0; }
.cta__form .btn { margin-top: 14px; }
.cta__consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 16px; font-size: 13px; color: var(--ink-soft);
  cursor: pointer;
}
.cta__consent input { margin-top: 3px; accent-color: var(--teal); }
.cta__msg { margin-top: 12px; font-size: 14px; font-weight: 600; min-height: 20px; }
.cta__msg.is-ok { color: var(--sage-strong); }
.cta__msg.is-error { color: #b3564e; }

/* ============================================================
   RESOURCES (dark)
   ============================================================ */
.resources { background: var(--teal-ink); padding: 100px 0 110px; }
.resources .h2 { color: var(--mist); }
.resources__grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.res-card {
  background: var(--teal-deep);
  border: 1px solid rgba(174, 195, 176, .18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.res-card:hover { transform: translateY(-6px); border-color: var(--sage); }
.res-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.res-card__body { padding: 24px 24px 28px; }
.res-card__tag {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #7FD9E0; margin-bottom: 10px;
}
.res-card h3 { color: var(--mist); font-size: 19px; line-height: 1.4; font-weight: 700; margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--teal-ink); color: var(--mist); padding: 40px 0 60px; border-top: 1px solid rgba(174, 195, 176, .15); }
.footer__cols {
  display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 32px;
  padding: 40px 0 60px;
}
.footer__col h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__col-gap { margin-top: 30px; }
.footer__col a {
  display: block; font-size: 14.5px; color: rgba(243, 243, 246, .72);
  padding: 5px 0;
  transition: color .2s, transform .2s;
}
.footer__col a:hover { color: var(--sage); transform: translateX(3px); }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__soc {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--sage); color: var(--teal-ink);
  font-weight: 800; display: grid; place-items: center;
  transition: transform .2s;
}
.footer__soc svg { width: 18px; height: 18px; }
.footer__soc:hover { transform: translateY(-3px); }

.footer__brand { display: flex; align-items: center; gap: 12px; padding: 20px 0 30px; }
.footer__mark { width: 40px; height: 40px; }
.footer__brand span { font-family: var(--font-display); font-size: 28px; letter-spacing: .04em; color: var(--white); }

.footer__base {
  display: flex; align-items: center; gap: 40px;
  border-top: 1px solid rgba(174, 195, 176, .15);
  padding-top: 34px;
  flex-wrap: wrap;
}
.footer__lang { color: var(--mist); font-weight: 600; font-size: 15px; }
.footer__lang:hover { color: var(--sage); }
.footer__legal { flex: 1; font-size: 13px; color: rgba(243, 243, 246, .55); max-width: 420px; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { font-size: 14px; color: rgba(243, 243, 246, .72); }
.footer__links a:hover { color: var(--sage); }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 36, 49, .72); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; width: min(880px, 92vw);
  animation: popIn .35s var(--ease);
}
.modal__close {
  position: absolute; top: -44px; inset-inline-end: 0;
  color: var(--mist); font-size: 18px; padding: 8px;
}
.modal__video { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.modal__toolbar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(10, 36, 49, .85));
}
.modal__playpause { color: var(--mist); font-size: 18px; }
.modal__progress {
  flex: 1; height: 5px; border-radius: 3px;
  background: rgba(243, 243, 246, .3);
  overflow: hidden;
}
.modal__progress span { display: block; height: 100%; width: 0; background: var(--sage); transition: width .2s linear; }
.modal__time { color: var(--mist); font-size: 13px; font-variant-numeric: tabular-nums; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookies {
  position: fixed; inset-inline-start: 24px; bottom: 24px; z-index: 70;
  width: min(440px, calc(100vw - 48px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sage-wash);
  padding: 26px 28px;
  animation: popIn .4s var(--ease);
}
.cookies__close { position: absolute; top: 12px; inset-inline-end: 14px; color: var(--sage-strong); }
.cookies p { font-size: 14px; color: var(--ink-soft); padding-inline-end: 12px; }
.cookies__actions { display: flex; gap: 10px; margin-top: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 840px) {
  /* the 5-track formula row needs ~805px minimum — collapse earlier than 680 */
  .formula__row { grid-template-columns: 1fr; }
  .formula__op { justify-self: center; }
}

@media (max-width: 1080px) {
  .nav__menu {
    /* top is set precisely by JS to the sticky header's bottom edge */
    position: fixed; top: calc(var(--announce-h) + var(--nav-h)); left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px 24px 60px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 49;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__item { border-bottom: 1px solid var(--sage-wash); }
  .nav__link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 17px; }
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 16px;
    display: none; min-width: 0;
  }
  .nav__item.is-open .drop { display: block; }
  .nav__item:hover .drop { } /* hover rule disabled on mobile via display */
  .drop__grid { grid-template-columns: 1fr; }
  .nav__burger { display: flex; }
  .nav__signin, .icon-btn:first-child { display: none; }

  .hero__inner { grid-template-columns: 1fr; padding-top: 56px; gap: 40px; }
  .hero__bg::after { display: none; }
  .case__grid, .platform__grid { grid-template-columns: 1fr; gap: 44px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .fans__wall { columns: 2; }
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .cta__panel { grid-template-columns: 1fr; padding: 54px 40px; }
  .resources__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(2), .stat:nth-child(4) { margin-top: 0; }
}

@media (max-width: 680px) {
  .announce__cta { display: none; }
  .products__grid, .resources__grid { grid-template-columns: 1fr; }
  .fans__wall { columns: 1; }
  .personas__grid { grid-template-columns: 1fr; }
  .persona-card, .persona-card--wide { grid-column: span 1; }
  .stats__row { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cta__panel { padding: 44px 26px; }
  .hero__title { font-size: clamp(32px, 9.6vw, 46px); }
}

@media (max-width: 600px) {
  /* keep the header row inside the viewport: logo + burger only */
  .nav__actions .btn--accent { display: none; }
  .nav__actions .icon-btn { display: none; }
}

/* print / capture: never hide scroll-revealed content */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important; /* infinite animations end instead of strobing */
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ACTIVE (Hebrew/RTL) — brand components & RTL refinements
   ============================================================ */

/* nav brand logo (replaces svg mark + wordmark) */
.nav__brand { height: 40px; width: auto; transition: transform .3s var(--ease); }
.nav__logo:hover .nav__brand { transform: scale(1.05); }
.icon-btn--text { font-weight: 700; font-size: 13.5px; text-decoration: none; width: auto; padding: 0 10px; }

/* centered section headers */
.eyebrow--center { text-align: center; }
.section-sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* marquee: image badges alongside wordmarks */
.logo-img { height: 44px; width: auto; opacity: .85; transition: opacity .2s, transform .2s; }
.logo-img--wide { height: 34px; }
.logo-img:hover { opacity: 1; transform: scale(1.05); }

/* display numbers now set in Heebo */
.stat__num, .case__stat-num { font-weight: 900; letter-spacing: -.01em; }

/* case-study media caption */
.case__caption { margin-top: 12px; text-align: center; font-size: 13.5px; color: var(--ink-soft); }

/* video-testimonial cards in the wall */
.fan-card--video { padding: 0; overflow: hidden; }
.fan-card__thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fan-card--video footer { margin-top: 0; padding: 18px 22px; border-top: 0; }
.fan-card__play {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--accent); color: var(--teal-ink);
  display: grid; place-items: center; font-size: 13px;
}

/* pricing plan cards */
.personas__grid--pricing { margin-top: 44px; }
.plan-card { display: flex; flex-direction: column; }
.plan-card__price { font-size: 16px; color: var(--ink-soft); margin: 4px 0 10px; }
.plan-card__price strong { font-size: 38px; font-weight: 900; color: var(--teal); }
.plan-card__list { list-style: none; margin: 14px 0 24px; display: grid; gap: 9px; flex: 1; }
.plan-card__list li { padding-inline-start: 26px; position: relative; font-size: 15px; color: var(--ink); }
.plan-card__list li::before {
  content: '✓'; position: absolute; inset-inline-start: 0; top: 0;
  color: var(--sage-strong); font-weight: 800;
}
.plan-card--featured { border: 2px solid var(--teal); box-shadow: var(--shadow-md); position: relative; }
.plan-card--featured::before {
  content: 'המסלול המומלץ';
  position: absolute; top: -14px; inset-inline-start: 28px;
  background: var(--accent); color: var(--teal-ink);
  font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 4px 14px;
}
.pricing__note { margin-top: 26px; font-size: 15px; color: var(--ink-soft); max-width: 720px; }
.pricing__note .text-link { font-size: 15px; }

/* security mini-cards row */
.security-row { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sec-card {
  background: var(--white); border: 1px solid var(--sage-wash);
  border-radius: var(--radius); padding: 22px 22px 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.sec-card h4 { font-size: 16px; font-weight: 800; color: var(--teal-ink); margin-bottom: 6px; }
.sec-card p { font-size: 13.5px; color: var(--ink-soft); }
.sec-card a { color: var(--sage-strong); font-weight: 700; }
.security-row__tag { margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--sage-strong); }

/* CTA contact links + form header */
.cta__contacts { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.cta__contacts a { color: var(--sage); font-weight: 700; font-size: 15px; }
.cta__contacts a:hover { color: var(--mist); }
.cta__form-title { font-size: 20px; font-weight: 800; color: var(--teal-ink); margin-bottom: 6px; }
.cta__form-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.cta__form input[type="text"] { margin-bottom: 0; } .cta__form input[type="text"], .cta__form input[type="tel"], .cta__form input[type="email"] {
  width: 100%; font: inherit; font-size: 15.5px;
  border: 1.5px solid var(--sage-wash); border-radius: 999px;
  padding: 15px 22px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white); color: var(--ink);
}
.cta__form input[type="text"]:focus, .cta__form input[type="tel"]:focus, .cta__form input[type="email"]:focus { border-color: var(--sage-strong); box-shadow: 0 0 0 4px rgba(174, 195, 176, .3); }
.cta__form input.is-error { border-color: #b3564e; }

/* dark section subtitle + badges */
.resources__sub { margin-top: 16px; font-size: 17px; color: rgba(243, 243, 246, .8); max-width: 820px; }
.resources .eyebrow { color: var(--sage); }
.resources__badges { margin-top: 40px; display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.resources__badges img { height: 54px; width: auto; background: var(--mist); border-radius: 10px; padding: 8px; }

/* footer brand column */
.footer__col--about { max-width: 300px; }
.footer__brand-logo { height: 42px; width: auto; margin-bottom: 16px; }
.footer__about { font-size: 14px; color: rgba(243, 243, 246, .72); line-height: 1.7; }
.footer__accreds { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__accreds img { height: 40px; width: auto; background: var(--mist); border-radius: 8px; padding: 5px; }

/* ---------- RTL directionality ---------- */
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .text-link:hover .arrow { transform: translateX(-5px) scaleX(-1); }
[dir="rtl"] .announce__cta:hover .arrow { transform: translateX(-4px) scaleX(-1); }
[dir="rtl"] .footer__col a:hover { transform: translateX(-3px); }
[dir="rtl"] .platform__list li:hover { transform: translateX(-6px); }
[dir="rtl"] .marquee::before { background: linear-gradient(-90deg, var(--white), transparent); }
[dir="rtl"] .marquee::after { background: linear-gradient(90deg, var(--white), transparent); }
[dir="rtl"] .marquee__track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* pricing/security responsive */
@media (max-width: 1080px) {
  .security-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .security-row { grid-template-columns: 1fr; }
  .cta__contacts { flex-direction: column; gap: 10px; }
  .nav__brand { height: 34px; }
}

/* ============================================================
   AGENCY ART-DIRECTION LAYER
   painterly texture · hand-drawn ink · editorial details
   ============================================================ */

:root {
  --font-serif: 'Heebo', 'Arial Hebrew', sans-serif; /* unified: one typeface site-wide */
  --r-sig: 26px 26px 8px 26px;   /* signature corner-cut radius */
}

::selection { background: var(--accent); color: var(--teal-ink); }

/* film grain over everything, very quiet */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 120;
  background: url('../assets/img/grain-tile.png') repeat;
  background-size: 280px;
  opacity: .16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- editorial section numbers ---------- */
.sec-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 900; font-size: 13px;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-deep);
  letter-spacing: .12em;
  margin-inline-end: 12px;
  transform: translateY(-1px);
}

/* ---------- serif display accents ---------- */
.h2 em { font-family: var(--font-serif); font-weight: 900; letter-spacing: 0; }
.hero__rotor { font-family: var(--font-serif); font-weight: 900; color: var(--accent-deep); }
.case__quote p { font-family: var(--font-serif); font-weight: 700; font-size: 21px; }
.case__quote { position: relative; }
.case__quote::before {
  content: '״';
  position: absolute; top: -34px; inset-inline-start: 10px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 90px; line-height: 1;
  color: var(--sage); opacity: .8;
  pointer-events: none;
}

/* ---------- hand-drawn doodles ---------- */
.doodle { color: var(--sage-strong); pointer-events: none; }
.doodle--underline {
  display: block; width: min(320px, 60%); height: 20px;
  margin-top: 6px;
  color: var(--accent);
}
.doodle--arrow {
  color: var(--accent-deep);
  width: 74px; height: 50px; align-self: flex-end;
  margin-inline-start: 2px; margin-bottom: -8px;
  transform: scaleX(-1); /* points toward the CTA in RTL */
}
.doodle--star { position: absolute; color: var(--sage-strong); opacity: .85; }
.doodle--star-1 { width: 34px; top: -48px; inset-inline-end: 8%; color: var(--accent); animation: twinkle 4.5s ease-in-out infinite; }
.doodle--star-2 { width: 22px; bottom: -34px; inset-inline-start: 12%; animation: twinkle 4.5s ease-in-out 1.6s infinite; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.25) rotate(12deg); } }
.formula__card--filled { position: relative; overflow: visible; }
.doodle--circle {
  position: absolute; inset: 12px 8px auto; height: calc(100% - 24px); width: calc(100% - 16px);
  color: var(--accent);
  opacity: .95;
}
.formula__card--filled h3, .formula__card--filled p { position: relative; }

/* ---------- painterly hero ---------- */
/* text side (right in RTL) stays calm; the paint breathes at the far side */
.hero__bg {
  background:
    radial-gradient(720px 420px at 88% 12%, rgba(76, 201, 211, .16), transparent 65%),
    linear-gradient(to left,
      rgba(244, 241, 234, .96) 0%,
      rgba(244, 241, 234, .8) 34%,
      rgba(244, 241, 234, .3) 62%,
      rgba(244, 241, 234, .1) 82%),
    linear-gradient(rgba(244, 241, 234, .45), rgba(244, 241, 234, .45)),
    url('../assets/img/paint-hero.png') center / cover no-repeat,
    var(--mist);
}
.hero__bg::after { display: none; } /* retire the old ambient blob */
.hero__copy { position: relative; }
.hero__copy::before {
  content: '';
  position: absolute; top: -70px; inset-inline-start: -80px;
  width: 230px; height: 230px;
  background: url('../assets/img/ink-burst.png') center / contain no-repeat;
  opacity: .12; mix-blend-mode: multiply;
  pointer-events: none;
}

/* collage photo peeking from behind the AI card */
.hero__panel { position: relative; }
.hero__collage {
  position: absolute; top: -38px; inset-inline-start: -18px;
  width: 250px; border-radius: 18px;
  transform: rotate(6deg);
  box-shadow: var(--shadow-lg);
  z-index: 0;
  border: 6px solid var(--white);
}
.ai-card { position: relative; z-index: 1; }

/* ---------- signature corner-cut radius ---------- */
.ai-card, .prod-card, .fan-card, .res-card, .persona-card,
.sec-card, .cta__form, .platform__figure, .drop, .case__video,
.formula__card, .search-overlay__box { border-radius: var(--r-sig); }
.prod-card__art { border-radius: 18px 18px 4px 18px; overflow: hidden; }

/* ---------- tilted trust strip ---------- */
.logos--tilt { padding: 58px 0 64px; overflow: hidden; }
.logos--tilt .marquee { transform: rotate(-1.4deg) scale(1.03); }

/* ---------- voice-wave strip in products intro ---------- */
.products__wave {
  display: block;
  width: min(520px, 70%);
  margin: 34px auto 0;
  mix-blend-mode: multiply;
  opacity: .9;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at center, #000 55%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 68% at center, #000 55%, transparent 78%);
}

/* ---------- photographic CTA panel ---------- */
.cta__panel {
  background:
    radial-gradient(560px 360px at 12% 88%, rgba(76, 201, 211, .22), transparent 62%),
    linear-gradient(115deg, rgba(10, 36, 49, .93) 30%, rgba(18, 69, 89, .82)),
    url('../assets/img/team-photo.png') center / cover no-repeat;
}
.cta__panel::after { opacity: .5; }

/* ---------- contour texture on dark sections ---------- */
.resources, .footer { position: relative; }
.resources::before, .footer::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/img/pattern-contours.png') repeat;
  background-size: 420px;
  opacity: .1;
  pointer-events: none;
}
.resources > .container, .footer > .container { position: relative; }

/* ---------- wave section separators ---------- */
.wave-sep { background: var(--mist); line-height: 0; }
.wave-sep svg { width: 100%; height: 54px; display: block; }

/* ---------- nav: underline slide instead of pill ---------- */
.nav__link { background: none; position: relative; }
.nav__link:hover { background: none; }
.nav__link::after {
  content: '';
  position: absolute; bottom: 4px; inset-inline-start: 12px; inset-inline-end: 12px;
  height: 2.5px; border-radius: 2px;
  background: var(--sage-strong);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__item.is-open .nav__link::after { transform: scaleX(1); }

/* ---------- sticker energy ---------- */
.logo-chip { transform: rotate(-2deg); }
.fan-card--accent .logo-chip { transform: rotate(2deg); }
.plan-card--featured::before { transform: rotate(2deg); }
.persona-card__icon { transition: transform .3s var(--ease); }
.persona-card:hover .persona-card__icon { transform: rotate(-8deg) scale(1.1); }

/* offset ink shadow on primary CTAs */
.btn--primary:hover, .btn--accent:hover {
  transform: translate(2px, -3px);
  box-shadow: -4px 5px 0 rgba(18, 69, 89, .28);
}

/* editorial image treatment */
.fan-card__thumb, .platform__figure img { filter: saturate(.88) contrast(1.02); transition: filter .4s; }
.fan-card--video:hover .fan-card__thumb, .platform__figure:hover img { filter: saturate(1.05); }

/* footer watermark */
.footer { overflow: hidden; }
.footer .container { position: relative; }
.footer .container::before {
  content: 'ACTIVE';
  position: absolute; bottom: -60px; inset-inline-end: -20px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 220px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(174, 195, 176, .12);
  pointer-events: none;
}

/* responsive guards for the new layer */
@media (max-width: 1080px) {
  .hero__collage { display: none; }
  .doodle--star-1, .doodle--star-2 { display: none; }
  .footer .container::before { font-size: 130px; }
}
@media (max-width: 680px) {
  .doodle--arrow {
  color: var(--accent-deep); display: none; }
  .doodle--underline { width: 70%; }
  .products__wave { width: 86%; }
}
@media (prefers-reduced-motion: reduce) {
  .doodle--star-1, .doodle--star-2 { animation: none; }
}

/* ============================================================
   HAND-INKED ICON SET (replaces all emoji)
   ============================================================ */
.drop__ico { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 3px; }
.drop__icon { background: var(--sage-faint); overflow: hidden; }

.ai-chip__icon { width: 20px; height: 20px; object-fit: contain; mix-blend-mode: multiply; flex: none; }
.ai-chip--filled .ai-chip__icon {
  mix-blend-mode: normal;
  background: var(--white); border-radius: 6px; padding: 1.5px;
}

.persona-ico { width: 38px; height: 38px; object-fit: contain; mix-blend-mode: multiply; }

.contact-ico {
  width: 28px; height: 28px; object-fit: contain;
  background: var(--mist); border-radius: 9px; padding: 3px;
  display: inline-block; flex: none;
}
.cta__contacts a { display: inline-flex; align-items: center; gap: 9px; }

.glyph { width: 15px; height: 15px; flex: none; }
.footer__lang { display: inline-flex; align-items: center; gap: 8px; }
.footer__lang .glyph { width: 17px; height: 17px; }
.glyph--star { width: 19px; height: 19px; color: var(--accent); }
.cta__stars { display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0; }

/* ============================================================
   V3 — showcase tabs · fans duo · two-tone headlines
   ============================================================ */

/* two-tone headline continuation */
.h2-soft { color: #9aab9d; }

/* dotted engineering-paper background for the showcase section */
.platform {
  background-image: radial-gradient(rgba(18, 69, 89, .08) 1.2px, transparent 1.6px);
  background-size: 24px 24px;
}

/* ---------- vertical-tab showcase ---------- */
.showcase {
  display: grid; grid-template-columns: 310px 1fr; gap: 36px;
  margin: 48px 0 40px;
  align-items: stretch;
}
.showcase__tabs { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.showcase__tab {
  text-align: start;
  padding: 15px 18px;
  border-radius: 14px;
  border-inline-start: 3px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.showcase__tab strong { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink-soft); transition: color .25s; }
.showcase__tab span {
  display: block; font-size: 13.5px; color: var(--ink-soft);
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .35s var(--ease), max-height .35s var(--ease);
}
.showcase__tab:hover strong { color: var(--teal); }
.showcase__tab.is-active {
  background: var(--white);
  border-inline-start-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.showcase__tab.is-active strong { color: var(--teal-ink); }
.showcase__tab.is-active span { opacity: 1; max-height: 46px; margin-top: 3px; }

.showcase__stage {
  position: relative; min-height: 400px;
  border-radius: var(--r-sig); overflow: hidden;
  border: 1px solid var(--sage-wash);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.showcase__panel { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .45s var(--ease); }
.showcase__panel.is-active { opacity: 1; }
.showcase__panel img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- fans: three featured video stories + trust strip ---------- */
.fans__duo {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1180px; margin-inline: auto;
}
.fan-video {
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: var(--r-sig);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fan-video:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fan-video__media { position: relative; overflow: hidden; }
.fan-video__media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .5s var(--ease);
}
.fan-video:hover .fan-video__media img { transform: scale(1.04); }
.fan-video__play {
  position: absolute; inset-inline-start: 22px; bottom: 22px;
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(244, 241, 234, .94); color: var(--teal);
  display: grid; place-items: center; font-size: 17px;
  transition: background .25s, transform .25s;
}
.fan-video:hover .fan-video__play { background: var(--accent); transform: scale(1.08); }
.fan-video footer { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; }
.fan-video footer strong { display: block; color: var(--teal-ink); font-size: 17px; }
.fan-video footer span:not(.fan-video__tag) { color: var(--ink-soft); font-size: 14px; }
.fan-video__tag {
  background: var(--accent-faint); color: var(--accent-deep);
  font-size: 12.5px; font-weight: 700;
  border-radius: 999px; padding: 5px 14px;
  rotate: -2deg;
}

.fans__strip { margin-top: 44px; text-align: center; }
.fans__strip > p { font-weight: 600; color: var(--ink-soft); font-size: 15px; margin-bottom: 14px; }
.fans__badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust-chip {
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 700; font-size: 14px; color: var(--teal);
}
.trust-chip:nth-child(odd) { rotate: -1deg; }
.trust-chip:nth-child(even) { rotate: 1deg; }

@media (max-width: 1080px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase__tabs { flex-direction: row; flex-wrap: wrap; }
  .showcase__tab { flex: 1 1 40%; border-inline-start: 0; border-bottom: 3px solid transparent; }
  .showcase__tab.is-active { border-bottom-color: var(--accent); }
  .showcase__tab span { display: none; }
  .showcase__stage { min-height: 300px; }
  .fans__duo { grid-template-columns: 1fr 1fr; max-width: 760px; }
}
@media (max-width: 720px) {
  .fans__duo { grid-template-columns: 1fr; }
}

/* ISO badge (own SVG) - circular, no chip backing */
.resources__badges .iso-badge { background: none; padding: 0; height: 74px; border-radius: 50%; }
.footer__accreds .iso-badge { background: none; padding: 0; height: 48px; border-radius: 50%; }

/* ============================================================
   V5 — international-grade polish
   glow · layered switching screens · glass nav · micro-physics
   ============================================================ */

/* ---------- soft glow halo behind the hero composition ---------- */
.hero__glow {
  position: absolute;
  top: -12%; inset-inline-start: -14%;
  width: 130%; height: 124%;
  background:
    radial-gradient(46% 42% at 38% 40%, rgba(76, 201, 211, .34), transparent 70%),
    radial-gradient(40% 38% at 68% 62%, rgba(174, 195, 176, .38), transparent 70%);
  filter: blur(58px);
  z-index: 0;
  pointer-events: none;
}

/* ---------- layered product-screen deck (crossfading) ---------- */
.hero__deck {
  position: absolute;
  top: -44px; inset-inline-start: -26px;
  width: 300px; aspect-ratio: 4 / 3;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: 0 24px 70px rgba(18, 69, 89, .28);
  transform: rotate(5deg);
  overflow: hidden;
  z-index: 0;
  background: var(--white);
}
.hero__screen {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.hero__screen.is-active { opacity: 1; }

/* ---------- live status chip with pulsing dot ---------- */
.ai-card__status {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  margin: -12px 0 16px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative; flex: none;
}
.live-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(76, 201, 211, .55);
  animation: pulse 2s var(--ease) infinite;
}

/* ---------- glass navigation ---------- */
.nav { background: rgba(255, 255, 255, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav__inner { background: transparent; }

/* ---------- gradient CTAs with glow + press physics ---------- */
.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #17808C 115%);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--teal-soft) 0%, #1e97a4 115%); }
.btn--accent {
  background: linear-gradient(135deg, #5fd2db 0%, #2BA8B4 130%);
  box-shadow: 0 6px 20px rgba(76, 201, 211, .3);
}
.btn--accent:hover { background: linear-gradient(135deg, #74dae2 0%, #33b3bf 130%); }
.btn:active { transform: scale(.97); transition-duration: .08s; }

/* ---------- keyboard focus rings (never removed, brand-colored) ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible, .ai-chip:focus-visible { outline-offset: 3px; }

/* ---------- staggered grid entrances ---------- */
.products__grid > *:nth-child(2), .personas__grid > *:nth-child(2), .security-row > *:nth-child(2) { transition-delay: .07s; }
.products__grid > *:nth-child(3), .personas__grid > *:nth-child(3), .security-row > *:nth-child(3) { transition-delay: .14s; }
.products__grid > *:nth-child(4), .security-row > *:nth-child(4) { transition-delay: .21s; }
.products__grid > *:nth-child(5) { transition-delay: .28s; }
.products__grid > *:nth-child(6) { transition-delay: .35s; }
.stats__row > *:nth-child(2) { transition-delay: .08s; }
.stats__row > *:nth-child(3) { transition-delay: .16s; }
.stats__row > *:nth-child(4) { transition-delay: .24s; }

/* ---------- data numerals: tabular, no shift while counting ---------- */
.stat__value, .case__stat-num, .plan-card__price strong { font-variant-numeric: tabular-nums; }

/* ---------- touch behavior ---------- */
body { touch-action: manipulation; }

/* responsive guards */
@media (max-width: 1080px) {
  .hero__deck, .hero__glow { display: none; }
}

/* ============================================================
   V6 — new content assets
   ============================================================ */

/* connected-system illustration in the formula section */
.formula__net {
  display: block;
  width: min(440px, 62%);
  margin: 26px auto -6px;
  mix-blend-mode: multiply;
  opacity: .92;
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at center, #000 55%, transparent 80%);
  mask-image: radial-gradient(ellipse 74% 70% at center, #000 55%, transparent 80%);
}

/* about section: floor photo layered behind the dashboard screenshot */
.case__media { position: relative; }
.case__photo {
  position: absolute; top: -42px; inset-inline-end: -30px;
  width: 265px; border-radius: 18px;
  border: 6px solid var(--white);
  box-shadow: 0 22px 60px rgba(18, 69, 89, .26);
  transform: rotate(-5deg);
  z-index: 0;
}
.case__video { position: relative; z-index: 1; }

@media (max-width: 1080px) {
  .case__photo { display: none; }
  .formula__net { width: 80%; }
}

/* ============================================================
   V7 — hero composition rebuilt: product window + docked AI card
   ============================================================ */

.hero__panel { display: block; position: relative; padding-bottom: 178px; }
@media (min-width: 1081px) { .hero__panel { margin-inline-end: 0; } }

/* the anchor: a real product window, big and confident */
.hero__window {
  position: relative; z-index: 1;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sage-wash);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(18, 69, 89, .25);
  overflow: hidden;
}
.hero__window-bar {
  display: flex; gap: 7px; align-items: center;
  padding: 12px 16px;
  background: var(--mist);
  border-bottom: 1px solid var(--sage-wash);
}
.hero__window-bar span { width: 11px; height: 11px; border-radius: 50%; }
.hero__window-bar span:nth-child(1) { background: var(--teal); }
.hero__window-bar span:nth-child(2) { background: var(--sage); }
.hero__window-bar span:nth-child(3) { background: var(--accent); }
.hero__window-screens { position: relative; aspect-ratio: 16 / 10; }

/* AI card: small, solid, docked over the window corner */
.hero__panel .ai-card {
  position: absolute; z-index: 2;
  bottom: 0; inset-inline-start: -20px;
  width: min(372px, 92%);
  background: var(--white);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 1px solid var(--sage-wash);
  box-shadow: 0 24px 60px rgba(18, 69, 89, .22);
  padding: 24px 24px 20px;
  animation: none;
}
.hero__panel .ai-card__title { font-size: 18px; margin: 8px 0 4px; }
.hero__panel .ai-card__status { margin: 0 0 12px; }
.hero__panel .ai-card__spark svg { width: 38px; height: 38px; }
.hero__panel .ai-card__typed { min-height: 40px; font-size: 14.5px; }
.hero__panel .ai-card__chips { margin-top: 11px; }
.hero__panel .ai-chip { font-size: 12px; padding: 6px 10px; white-space: nowrap; }
.hero__panel .ai-card__chips { gap: 6px; }
.hero__panel .ai-card__prompt { padding: 12px 12px 10px; }

/* stronger, clearly visible glow behind the window */
.hero__glow {
  top: -10%; inset-inline-start: -10%;
  width: 120%; height: 115%;
  background:
    radial-gradient(44% 40% at 42% 38%, rgba(76, 201, 211, .5), transparent 68%),
    radial-gradient(38% 36% at 70% 66%, rgba(174, 195, 176, .55), transparent 70%);
  filter: blur(52px);
}

/* old deck styles are superseded */
.hero__deck { display: none; }

@media (max-width: 1080px) {
  .hero__glow { display: block; }
  .hero__panel { padding-bottom: 0; }
  .hero__panel .ai-card { position: static; width: 100%; margin-top: 16px; }
}

/* ============================================================
   V8 — clean modern direction
   flat backgrounds · live-call vignette · no hand-drawn artifacts
   ============================================================ */

/* ---------- flatten backgrounds: remove grain / paint / contours ---------- */
body::after { display: none; }                      /* film grain off */
.resources::before, .footer::before { display: none; } /* contour pattern off */
.hero__copy::before { display: none; }              /* ink burst off */
.platform { background-image: none; }               /* dot grid off for clean read */

.hero__bg {
  background:
    radial-gradient(640px 480px at 22% 42%, rgba(76, 201, 211, .18), transparent 65%),
    radial-gradient(520px 420px at 8% 78%, rgba(174, 195, 176, .22), transparent 68%),
    linear-gradient(180deg, #FBFAF7 0%, var(--mist) 100%);
}

/* ---------- retire hand-drawn accents ---------- */
.doodle--underline, .doodle--arrow, .doodle--circle { display: none; }
/* clean gradient underline under the rotating word instead */
.hero__rotator::after {
  content: '';
  position: absolute; bottom: -4px; inset-inline-start: 2px;
  width: 54%; height: 7px; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(76, 201, 211, .2) 100%);
}
.hero__rotator { overflow: visible; }

/* ---------- live-call vignette panel ---------- */
.hero__panel { padding-bottom: 0; }
.live-panel {
  position: relative; z-index: 1;
  width: min(500px, 100%);
  margin-inline-start: auto;
  background: var(--white);
  border-radius: 22px;
  padding: 24px 24px 22px;
  box-shadow: 0 30px 80px rgba(18, 69, 89, .18);
}
/* gradient edge hugging one corner (clean, not drawn) */
.live-panel::before {
  content: '';
  position: absolute; inset: -1.5px; z-index: -1;
  border-radius: 24px;
  background: linear-gradient(200deg, var(--accent) 0%, rgba(76, 201, 211, .05) 42%, rgba(18, 69, 89, .06) 100%);
}

.live-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.live-caller { display: flex; align-items: center; gap: 12px; }
.live-caller__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #17808C 100%);
  color: var(--white); font-weight: 800; font-size: 18px;
  display: grid; place-items: center; flex: none;
}
.live-caller__meta strong { display: block; color: var(--teal-ink); font-size: 16px; line-height: 1.3; }
.live-caller__meta small { color: var(--ink-soft); font-size: 12.5px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-faint); color: var(--teal-ink);
  font-size: 12.5px; font-weight: 700;
  border-radius: 999px; padding: 7px 14px;
  font-variant-numeric: tabular-nums;
}

/* audio wave — pure CSS, crisp */
.live-wave { display: flex; align-items: center; justify-content: center; gap: 5px; height: 44px; margin: 18px 0 14px; }
.live-wave span {
  width: 4.5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--teal));
  height: 30%;
  animation: wave 1.3s ease-in-out infinite;
}
.live-wave span:nth-child(odd) { animation-duration: 1.1s; }
.live-wave span:nth-child(3n) { animation-delay: .18s; height: 55%; }
.live-wave span:nth-child(4n) { animation-delay: .32s; height: 80%; }
.live-wave span:nth-child(5n) { animation-delay: .1s; height: 42%; }
.live-wave span:nth-child(7n) { animation-delay: .45s; height: 66%; }
@keyframes wave { 0%, 100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }

/* call-stage chips */
.live-stages { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.live-stage {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--mist); border-radius: 999px; padding: 6px 13px;
}
.live-stage.is-done { color: var(--sage-strong); background: var(--sage-faint); }
.live-stage.is-now {
  color: var(--teal-ink); background: var(--accent-faint);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

/* AI note card */
.ai-note { background: var(--mist); border-radius: 16px; padding: 16px 18px 16px; }
.ai-note__title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14.5px; color: var(--teal-ink);
  margin-bottom: 10px;
}
.ai-note__title svg { width: 17px; height: 17px; color: var(--accent); }
.ai-note ul { list-style: none; display: grid; gap: 7px; margin-bottom: 14px; }
.ai-note li {
  position: relative; padding-inline-start: 20px;
  font-size: 13.5px; color: var(--ink); line-height: 1.5;
}
.ai-note li::before {
  content: '';
  position: absolute; inset-inline-start: 2px; top: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.ai-note__cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #5fd2db 0%, #2BA8B4 130%);
  color: var(--teal-ink); font-weight: 700; font-size: 13px;
  border-radius: 999px; padding: 9px 18px;
  box-shadow: 0 5px 16px rgba(76, 201, 211, .3);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ai-note__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(76, 201, 211, .4); }
.ai-note__cta svg { width: 15px; height: 15px; }

/* glow: single directional presence hugging the panel */
.hero__glow {
  top: -8%; inset-inline-start: -18%;
  width: 115%; height: 112%;
  background:
    radial-gradient(52% 48% at 40% 45%, rgba(76, 201, 211, .38), transparent 68%),
    radial-gradient(40% 42% at 20% 70%, rgba(174, 195, 176, .3), transparent 70%);
  filter: blur(56px);
}

/* section images: clean presentation (no multiply/ink blending) */
.products__wave, .formula__net { mix-blend-mode: normal; opacity: 1; }

@media (max-width: 1080px) {
  .live-panel { margin-inline: auto; }
}

/* ============================================================
   V9 — photographic hero: full-bleed office, centered type, fact strip
   ============================================================ */

.hero {
  display: flex; flex-direction: column;
  min-height: 640px;
}
.hero__bg {
  background:
    linear-gradient(rgba(10, 36, 49, .58), rgba(10, 36, 49, .66)),
    url('../assets/img/hero-office.png') center / cover no-repeat;
}
.hero__inner {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  max-width: 900px;
  padding-top: 72px; padding-bottom: 88px;
  gap: 0;
}
.hero__copy { max-width: 820px; }
.hero .eyebrow { color: var(--sage); }
.hero__title { color: var(--white); }
.hero__rotor { color: var(--accent); }
.hero__rotator::after { inset-inline-start: 23%; width: 54%; }
.hero__sub {
  color: rgba(244, 241, 234, .88);
  margin-inline: auto;
  max-width: 640px;
}
.hero__cta { justify-content: center; }
.hero .btn--primary {
  background: linear-gradient(135deg, #5fd2db 0%, #2BA8B4 130%);
  color: var(--teal-ink);
  box-shadow: 0 10px 30px rgba(76, 201, 211, .35);
}
.hero .btn--primary:hover { background: linear-gradient(135deg, #74dae2 0%, #33b3bf 130%); }
.hero .btn--ghost {
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(244, 241, 234, .75);
}
.hero .btn--ghost:hover { background: rgba(244, 241, 234, .12); }
.hero__note { color: rgba(244, 241, 234, .65); }

/* bottom fact strip (light bar over the photo edge) */
.hero__strip {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--sage-wash);
}
.hero__strip-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding-top: 22px; padding-bottom: 22px;
}
.hero__fact {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--teal-ink);
}
.hero__fact::before {
  content: '';
  width: 16px; height: 3px; border-radius: 2px;
  background: var(--accent);
  flex: none;
}
a.hero__fact:hover { color: var(--accent-deep); }

/* the old wave between hero and logos clashes with the strip */
.hero + .wave-sep { display: none; }

@media (max-width: 680px) {
  .hero { min-height: 560px; }
  .hero__strip-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   V10 — rotating hero backgrounds (crossfade every 10s)
   ============================================================ */
.hero__bg { background: var(--teal-ink); overflow: hidden; }
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
}
.hero__bg-img.is-active { opacity: 1; }
/* the teal overlay sits above whichever photo is active */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(64% 58% at 50% 46%, rgba(10, 36, 49, .48), transparent 100%),
    linear-gradient(rgba(10, 36, 49, .62), rgba(10, 36, 49, .76));
}
/* guaranteed copy legibility over any of the rotating photos */
.hero__copy { text-shadow: 0 1px 22px rgba(10, 36, 49, .5); }
.hero__strip { z-index: 1; }

/* ============================================================
   V11 — secondary pages (legal / FAQ / careers)
   ============================================================ */
.page__hero {
  background: linear-gradient(135deg, var(--teal-ink) 0%, var(--teal) 100%);
  padding: 56px 0 48px;
  color: var(--mist);
}
.page__crumbs { display: flex; gap: 10px; font-size: 13.5px; color: rgba(244, 241, 234, .7); margin-bottom: 14px; }
.page__crumbs a:hover { color: var(--accent); }
.page__title { font-size: clamp(30px, 4vw, 44px); font-weight: 900; color: var(--white); line-height: 1.15; }
.page__sub { margin-top: 10px; font-size: 16.5px; color: rgba(244, 241, 234, .85); max-width: 640px; }

.page__body { padding: 52px 24px 90px; max-width: 860px; }
.page__body h2 { font-size: 24px; font-weight: 800; color: var(--teal-ink); margin: 38px 0 12px; }
.page__body h3 { font-size: 18.5px; font-weight: 700; color: var(--teal); margin: 26px 0 8px; }
.page__body p, .page__body li { font-size: 16px; color: var(--ink); line-height: 1.75; }
.page__body p { margin-bottom: 14px; }
.page__body ul, .page__body ol { margin: 0 0 16px; padding-inline-start: 22px; }
.page__body li { margin-bottom: 8px; }
.page__body a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.page__body a:hover { color: var(--teal); }
.page__body strong { color: var(--teal-ink); }
.page__body .page__updated { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 28px; }
.page__body table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: 14.5px; }
.page__body th, .page__body td { border: 1px solid var(--sage-wash); padding: 10px 14px; text-align: start; vertical-align: top; }
.page__body th { background: var(--sage-faint); font-weight: 700; color: var(--teal-ink); }

/* FAQ accordion */
.faq-item { border: 1px solid var(--sage-wash); border-radius: 14px; background: var(--white); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px;
  font-weight: 700; font-size: 16px; color: var(--teal-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent-deep); flex: none; transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 18px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* careers cards */
.job-card { border: 1px solid var(--sage-wash); border-radius: var(--r-sig); background: var(--white); padding: 26px 28px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.job-card h3 { margin-top: 0; }
.job-card__meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 12px; }
.job-card__tag { background: var(--sage-faint); color: var(--sage-strong); font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 4px 12px; }

.footer__addr { display: block; font-size: 14.5px; color: rgba(243, 243, 246, .72); padding: 5px 0; }

/* subpage: nav layout */
.subpage .nav__menu { justify-content: flex-start; }
.cta__addr { color: rgba(244, 241, 234, .75); font-size: 14.5px; display: inline-flex; align-items: center; }

/* ============================================================
   V12 — feature pages components
   ============================================================ */
.page__hero-cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.page__body--wide { max-width: 1080px; }

.page-shot { border-radius: var(--r-sig); overflow: hidden; border: 1px solid var(--sage-wash); box-shadow: var(--shadow-md); margin: 34px 0; }
.page-shot img { width: 100%; display: block; }
.page-shot figcaption { padding: 12px 18px; font-size: 13.5px; color: var(--ink-soft); background: var(--white); border-top: 1px solid var(--sage-wash); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0 10px; }
.feature-card { background: var(--white); border: 1px solid var(--sage-wash); border-radius: var(--r-sig); padding: 24px; box-shadow: var(--shadow-sm); }
.feature-card img { width: 72px; height: 72px; object-fit: contain; mix-blend-mode: multiply; margin-bottom: 10px; }
.feature-card h3 { margin: 0 0 6px; }
.feature-card p { margin-bottom: 0; font-size: 14.5px; }

.steps { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 14px; }
.steps li {
  position: relative; margin: 0;
  padding: 18px 22px; padding-inline-start: 68px;
  background: var(--white); border: 1px solid var(--sage-wash); border-radius: 14px;
  counter-increment: step;
}
.steps { counter-reset: step; }
.steps li::before {
  content: counter(step);
  position: absolute; inset-inline-start: 18px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-faint); color: var(--accent-deep);
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
}

.page-cta {
  background: linear-gradient(135deg, var(--teal-ink) 0%, var(--teal) 100%);
  border-radius: var(--r-sig);
  padding: 38px 42px; margin-top: 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
}
.page-cta div h2 { color: var(--white); margin: 0 0 6px; font-size: 25px; }
.page-cta div p { color: rgba(244, 241, 234, .85); margin: 0; }

.related { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.related a {
  background: var(--white); border: 1px solid var(--sage-wash);
  border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 700; color: var(--teal);
  text-decoration: none;
}
.related a:hover { border-color: var(--accent); color: var(--accent-deep); }

@media (max-width: 840px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   V13 — capabilities mega-menu
   ============================================================ */
.drop--mega { display: flex; gap: 26px; }
.drop__group .drop__title { padding: 0 10px 8px; }
.drop__grid--one { grid-template-columns: 250px; }
@media (max-width: 1080px) {
  .drop--mega { flex-direction: column; gap: 6px; }
  .drop__grid--one { grid-template-columns: 1fr; }
}

/* ============================================================
   V14 — hero text pop + showcase image fit
   ============================================================ */
/* stronger presence over the busy photos */
.hero__copy {
  text-shadow:
    0 2px 8px rgba(10, 36, 49, .65),
    0 8px 34px rgba(10, 36, 49, .55);
}
.hero__sub { color: #fff; font-weight: 500; }
.hero__note { color: rgba(255, 255, 255, .88); }
.hero__bg::after {
  background:
    radial-gradient(68% 62% at 50% 46%, rgba(10, 36, 49, .56), transparent 100%),
    linear-gradient(rgba(10, 36, 49, .64), rgba(10, 36, 49, .78));
}

/* marketing-style shots (window floating on white) fit inside the stage */
.showcase__panel--fit { background: var(--white); }
.showcase__panel--fit img { object-fit: contain; object-position: center; }

/* ============================================================
   V15 — bulletproof RTL for the contact form
   ============================================================ */
/* direction-aware: inherits dir from <html>, aligns to the logical start */
.cta__form { text-align: start; }
.cta__form-title { text-align: start; text-wrap: balance; }
.cta__form-sub { text-align: start; }
.cta__form input:not([type="checkbox"]) { text-align: start; }
.cta__consent {
  flex-direction: row;
  justify-content: flex-start;
  text-align: start;
}
.cta__consent input[type="checkbox"] { order: -1; margin-top: 3px; }
.cta__consent span { flex: 1; }
.cta__msg { text-align: start; }

/* explicit per-direction lock for the contact form */
[dir="rtl"] .cta__form, [dir="rtl"] .cta__consent { direction: rtl; }
[dir="ltr"] .cta__form, [dir="ltr"] .cta__consent { direction: ltr; }

/* ============================================================
   V16 — contact form: RTL phone field + "sent" confirmation
   ============================================================ */
/* UA stylesheets force direction:ltr on input[type="tel"] inside an RTL
   context, so `text-align: start` resolved to the LEFT edge and the phone
   placeholder sat opposite its siblings.
   Empty  -> rtl, so the Hebrew placeholder (incl. its colon) renders exactly
             like the name/email fields.
   Filled -> ltr, so any phone format keeps its digit order, "+972-52-733-5353"
             included; right-aligned to stay flush with the RTL siblings. */
[dir="rtl"] .cta__form input[type="tel"] { direction: ltr; text-align: right; }
[dir="rtl"] .cta__form input[type="tel"]:placeholder-shown { direction: rtl; }

/* success state: the form is replaced in place by a confirmation panel */
.cta__done { display: none; }
.cta__form.is-sent > *:not(.cta__done) { display: none; }
.cta__form.is-sent .cta__done { display: block; }
.cta__done {
  text-align: center;
  padding: 26px 6px 18px;
}
.cta__done:focus { outline: none; }
.cta__done-icon {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sage-strong);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 31px; font-weight: 800; line-height: 1;
  animation: cta-done-pop .45s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes cta-done-pop {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.cta__done-title {
  font-size: 21px; font-weight: 800; color: var(--teal-ink);
  margin-bottom: 8px;
}
.cta__done-text { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.cta__done-note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }
.cta__done-note a { color: var(--sage-strong); font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .cta__done-icon { animation: none; } }

/* ============================================================
   V17 — mobile header: menu panel, announcement bar
   ============================================================ */
@media (max-width: 1080px) {
  /* `.nav` carries backdrop-filter, which makes it the containing block for
     ANY position:fixed descendant - so the full-screen .nav__menu collapsed
     to the height of the header bar. The blur is a desktop-only nicety; drop
     it where the fixed panel lives and keep the bar opaque instead. */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }
  /* belt-and-braces: fill the viewport even if an ancestor ever regains a
     containing block (dvh accounts for the iOS URL bar) */
  .nav__menu.is-open { max-height: none; }
}

/* the announcement line was clipped mid-word on narrow screens - drop the
   secondary clauses instead of ellipsing the sentence */
@media (max-width: 760px) {
  .announce__more { display: none; }
  .announce__inner { gap: 8px; }
  .announce__inner p { font-size: 13px; }
}

/* ============================================================
   V18 — real video playback (demo modal + customer stories)
   ============================================================ */
.modal__video video {
  display: block; width: 100%; height: auto;
  max-height: 80vh; background: #000;
}

/* customer-story cards: the poster is the trigger, the YouTube iframe
   replaces it in place on click (nothing is requested before that) */
.fan-video__media[data-vid],
.fan-video__media[data-src] { cursor: pointer; }
.fan-video__media[data-vid]:focus-visible,
.fan-video__media[data-src]:focus-visible {
  outline: 3px solid var(--sage-strong); outline-offset: 3px;
}
.fan-video__media iframe,
.fan-video__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; z-index: 2;
}
.fan-video__media video { background: #000; object-fit: contain; }
.fan-video__media[data-loaded] img,
.fan-video__media[data-loaded] .fan-video__play { display: none; }
/* the <img> carried the 16/9 box - keep it once the img is swapped out */
.fan-video__media[data-loaded] { aspect-ratio: 16/9; }

/* ============================================================
   V19 — mobile menu: burger placement + collapsed dropdowns
   ============================================================ */
@media (max-width: 1080px) {
  /* .nav__menu is position:fixed here, so it no longer fills the flex row and
     nothing pushed the actions to the far edge - the burger ended up glued to
     the logo. inline-start:auto sends it to the opposite edge in both
     directions (left in RTL, right in LTR). */
  .nav__actions { margin-inline-start: auto; }

  /* `.drop--mega { display:flex }` sits LATER in this file than the mobile
     `.drop { display:none }` and carries the same specificity, so it won and
     the capabilities panel was stuck open with no way to collapse it.
     Re-assert the collapsed default at a higher specificity. */
  .nav__item .drop--mega { display: none; }
  .nav__item.is-open .drop--mega { display: flex; }
}

/* ============================================================
   V20 — mobile menu: sign-in / sign-up + language switch
   ============================================================ */
/* The header bar hides `.nav__signin` and the language chip below 1080px, and
   the accent sign-up button below 600px - which left phones with no way at all
   to reach login or register. Repeat all three inside the drawer, at the TOP:
   the foot of the drawer is where the cookie banner sits. */
.nav__cta { display: none; }

@media (max-width: 1080px) {
  .nav__cta {
    display: flex; flex-direction: column; gap: 12px;
    padding: 4px 0 22px;
    border-bottom: 1px solid var(--sage-wash);
  }
  .nav__cta .btn { padding: 14px 26px; font-size: 16px; }
  .nav__cta-lang {
    align-self: center; margin-top: 4px;
    padding: 8px 18px; border-radius: 999px;
    font-weight: 700; font-size: 14px; letter-spacing: .04em;
    color: var(--teal-ink);
    box-shadow: inset 0 0 0 1.5px var(--sage-wash);
    transition: background .2s;
  }
  .nav__cta-lang:hover { background: var(--sage-wash); }
}

/* ============================================================
   V25 — transparent nav over the hero (homepage): white text at
   the top, glass background returns on scroll
   ============================================================ */
.hero--under-nav { margin-top: calc(-1 * var(--nav-h)); }
.hero--under-nav .hero__inner { padding-top: calc(72px + var(--nav-h)); }

.nav--overlay { transition: background .3s, box-shadow .3s; }
.nav__brand--light { display: none; height: 40px; width: auto; }
.nav--overlay:not(.is-scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav--overlay:not(.is-scrolled) .nav__brand--dark { display: none; }
.nav--overlay:not(.is-scrolled) .nav__brand--light { display: block; }
.nav--overlay:not(.is-scrolled) .nav__link { color: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__link:hover { color: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__link::after { background: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__cta-lang { color: var(--white); }
.nav--overlay:not(.is-scrolled) .btn--ghost { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .75); }
.nav--overlay:not(.is-scrolled) .btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.nav--overlay:not(.is-scrolled) .nav__burger span { background: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__signin { color: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__signin:hover { color: rgba(255, 255, 255, .8); }
.nav--overlay:not(.is-scrolled) .nav__actions .icon-btn { color: var(--white); }
.nav--overlay:not(.is-scrolled) .nav__actions .icon-btn:hover { background: rgba(255, 255, 255, .12); }

/* while the mobile menu is open, keep the solid readable header.
   No backdrop-filter here: it would make .nav the containing block for the
   position:fixed .nav__menu and collapse the drawer to the bar height (V17). */
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) { background: var(--white); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__brand--dark { display: block; }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__brand--light { display: none; }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__link { color: var(--teal-ink); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__burger span { background: var(--teal-ink); }
/* the drawer sits on white — undo every white-on-transparent override inside it */
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__cta-lang { color: var(--teal-ink); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__signin { color: var(--teal-ink); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__signin:hover { color: var(--sage-strong); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .btn--ghost { color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .btn--ghost:hover { background: rgba(18, 69, 89, .06); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__actions .icon-btn { color: var(--teal-ink); }
.nav--overlay:not(.is-scrolled):has(.nav__burger.is-open) .nav__actions .icon-btn:hover { background: var(--sage-faint); }

/* ---------- hero + trust strip fit in one viewport ---------- */
.hero--under-nav { min-height: calc(100svh - 60px); }
.hero--under-nav .hero__inner { padding-top: calc(24px + var(--nav-h)); padding-bottom: 28px; }
.hero--under-nav ~ .logos { padding: 10px 0 12px; }


/* ============== MOBILE APP BAND (section 08, light) ============== */
.appband {
  position: relative; overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(820px 480px at 84% 12%, rgba(76, 201, 211, .13), transparent 62%),
    radial-gradient(700px 440px at 10% 92%, rgba(174, 195, 176, .22), transparent 62%),
    var(--white);
  color: var(--ink);
}
.appband::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 69, 89, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 69, 89, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(78% 68% at 50% 40%, #000, transparent 78%);
  mask-image: radial-gradient(78% 68% at 50% 40%, #000, transparent 78%);
}
.appband__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: center;
}
.appband .eyebrow { color: var(--accent-deep); }
.appband .h2 { color: var(--teal-ink); }
.appband .h2 em { font-style: normal; color: var(--accent-deep); }
.appband .section-sub { color: var(--ink-soft); max-width: 520px; }

/* feature chips */
.appband__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 26px 0 30px; padding: 0; list-style: none;
}
.appband__chips li {
  font-size: 13.5px; font-weight: 600; color: var(--teal);
  padding: 7px 15px; border-radius: 999px;
  background: var(--sage-faint);
  box-shadow: inset 0 0 0 1px rgba(18, 69, 89, .12);
}

/* official store badges — matched to a common visual height */
.appband__stores { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.badge {
  position: relative; display: inline-flex; line-height: 0;
  border-radius: 9px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), opacity .24s;
}
.badge img { height: 54px; width: auto; display: block; }
.badge--ios { box-shadow: 0 10px 24px rgba(18, 69, 89, .22); }
.badge--ios:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18, 69, 89, .3); }
.badge--ios:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 4px; }

.badge--play { box-shadow: 0 10px 24px rgba(18, 69, 89, .22); }
.badge--play:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18, 69, 89, .3); }
.badge--play:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 4px; }

.appband__note { margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); opacity: .8; max-width: 460px; }

/* phone mockup — dark device reads as a real product against the white band */
.appband__visual { display: grid; place-items: center; }
.phone {
  position: relative; width: 288px; height: 578px;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2b4a58, #0c202b 62%);
  box-shadow:
    0 34px 70px rgba(18, 69, 89, .32),
    inset 0 0 0 1.5px rgba(255, 255, 255, .16),
    inset 0 2px 3px rgba(255, 255, 255, .2);
  transform: rotate(-4deg);
  transition: transform .5s var(--ease);
}
.appband__visual:hover .phone { transform: rotate(0deg) translateY(-6px); }
.phone::after {
  content: ""; position: absolute; inset: -20% -24%;
  z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 201, 211, .3), rgba(174, 195, 176, .22) 48%, transparent 70%);
  filter: blur(34px);
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; border-radius: 999px;
  background: #08161e; z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 35px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, #1d6d86 0%, #17516b 44%, #123f55 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.phone__screen::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 50% 0%, rgba(76, 201, 211, .34), transparent 62%);
}
.phone__screen > * { position: relative; z-index: 1; }
.phone__bar {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 12px;
  margin: 0 auto; width: 106px; height: 5px; border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}
.phone__icon {
  width: 104px; height: 104px; border-radius: 24px; margin-bottom: 16px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .42);
}
.phone__name { font-family: var(--font-display); font-size: 27px; font-weight: 700; color: var(--white); letter-spacing: .04em; }
.phone__tag { font-size: 13px; color: var(--sage); letter-spacing: .03em; }

@media (max-width: 900px) {
  .appband { padding: 76px 0; }
  .appband__grid { grid-template-columns: 1fr; gap: 46px; }
  .appband__visual { order: -1; }
  .phone { width: 220px; height: 450px; transform: rotate(0deg); }
  .phone__icon { width: 82px; height: 82px; }
}
@media (max-width: 520px) {
  .badge img { height: 48px; }
}
