/* ══════════════════════════════════════════════════════════
   SimplyFast.AI — "Luminous Velocity" landing (Google Stitch DS).
   FRAMELESS revision: content sits directly on the canvas.
   No glass panels / bordered boxes — separation comes from
   whitespace, scale and soft glow shadows. Palette, gradients,
   light-bleed orbs, speed-lines and gradient pills all stay.
   MOBILE-FIRST: base styles target 375px; min-width queries scale up.
   RTL-first via logical properties.
   ══════════════════════════════════════════════════════════ */

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:84px; }
body { font-family:var(--font-he); background:var(--surface); color:var(--on-surface);
  overflow-x:hidden; line-height:1.6; }
html.en body { font-family:var(--font-latin); }
img, video { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
.en-run { font-family:var(--font-latin); }
:focus-visible { outline:2px solid var(--primary); outline-offset:3px; border-radius:6px; }

/* ── reveals (kept early so component :hover transforms win the cascade) ── */
.reveal { opacity:0; transform:translateY(20px);
  transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ══ site-wide animated background: orbs + speed-line streaks ══
   Fixed full-viewport layer, transform/opacity only (GPU-friendly),
   3–6% streak opacity so it never competes with content. */
.bgfx { position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none; }
.orb { position:absolute; width:min(600px,80vw); height:min(600px,80vw); border-radius:50%;
  filter:blur(120px); opacity:.4; }
.orb-a { background:var(--primary); top:-280px; inset-inline-start:-280px;
  animation:orbDriftA 34s ease-in-out infinite alternate; }
.orb-b { background:var(--secondary-container); bottom:-280px; inset-inline-end:-280px;
  animation:orbDriftB 42s ease-in-out infinite alternate; }
@keyframes orbDriftA {
  from { transform:translate3d(0,0,0) scale(1); }
  to   { transform:translate3d(9vw,7vh,0) scale(1.12); }
}
@keyframes orbDriftB {
  from { transform:translate3d(0,0,0) scale(1.08); }
  to   { transform:translate3d(-8vw,-6vh,0) scale(.96); }
}
.streak { position:absolute; height:2px; width:44vw; border-radius:var(--r-pill);
  background:linear-gradient(90deg, transparent, var(--streak-violet), transparent);
  opacity:.05; will-change:transform;
  animation:streak var(--dur,10s) linear infinite; animation-delay:var(--delay,0s); }
@keyframes streak {
  from { transform:translate3d(-60vw,0,0) rotate(-14deg); }
  to   { transform:translate3d(160vw,-10vh,0) rotate(-14deg); }
}
.streak.s1 { top:16%; --dur:9s;  --delay:0s; }
.streak.s2 { top:34%; --dur:13s; --delay:-4s; width:32vw; opacity:.04;
  background:linear-gradient(90deg, transparent, var(--streak-cyan), transparent); }
.streak.s3 { top:55%; --dur:11s; --delay:-7s; opacity:.06; }
.streak.s4 { top:72%; --dur:15s; --delay:-2s; width:36vw; opacity:.03;
  background:linear-gradient(90deg, transparent, var(--streak-cyan), transparent); }
.streak.s5 { top:88%; --dur:12s; --delay:-9s; width:28vw; opacity:.045; }

/* ── buttons: gradient pills, lit from within; ≥48px touch target ── */
.pill { display:inline-flex; align-items:center; justify-content:center; gap:8px;
  white-space:nowrap; min-height:48px; background:var(--grad-button); color:var(--on-primary);
  border-radius:var(--r-pill); padding:12px 30px; font-weight:700; font-size:15px;
  font-family:inherit; border:none; cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35), 0 10px 30px rgba(107,56,212,.25);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease); }
.pill:hover { filter:brightness(1.08); transform:translateY(-2px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35), 0 14px 34px rgba(107,56,212,.38); }
.pill:active { transform:translateY(0) scale(.97); }
.pill-lg { padding:14px 40px; font-size:16.5px; min-height:56px; }

/* ── nav: fixed bar, fully transparent over the hero video, frosted
      only after scroll (main.js toggles .scrolled at 24px) ── */
nav { position:fixed; top:0; inset-inline:0; z-index:50; background:transparent;
  border-bottom:1px solid transparent;
  transition:background .35s var(--ease), box-shadow .35s var(--ease),
             border-color .35s var(--ease); }
nav.scrolled { background:rgba(255,255,255,.78);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.35);
  box-shadow:0 20px 50px rgba(107,56,212,.1); }
nav .bar { max-width:var(--maxw); margin-inline:auto;
  padding:10px var(--pad-x); display:flex; align-items:center; gap:8px; min-width:0; }
.logo { display:inline-flex; align-items:center; gap:6px; min-height:var(--tap); }
.logo-bolt { width:22px; height:22px; color:var(--primary); flex-shrink:0; }
.logo-word { font-family:var(--font-latin); font-weight:800; font-size:19px; letter-spacing:-.02em;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.nav-links { display:none; }
.nav-end { margin-inline-start:auto; display:flex; align-items:center; gap:10px; }
.lang { font-weight:600; font-size:12.5px; font-family:inherit; background:transparent;
  border:none; color:var(--on-surface-variant); min-height:var(--tap); min-width:var(--tap);
  border-radius:var(--r-pill); padding:8px 13px; cursor:pointer; transition:color .3s; }
.lang:hover { color:var(--primary); }
nav .pill { min-height:var(--tap); padding:8px 16px; font-size:13px; }
.nw { white-space:nowrap; }

/* ── mobile menu: hamburger + frosted dropdown under the fixed bar ── */
.menu-btn { display:grid; place-items:center; width:var(--tap); height:var(--tap);
  border:none; background:transparent; color:var(--on-surface); cursor:pointer;
  border-radius:12px; transition:color .25s; }
.menu-btn:hover { color:var(--primary); }
.menu-btn svg { width:24px; height:24px; }
/* icon swap via class — [hidden] doesn't apply to SVG elements */
.menu-btn .mi-close, .menu-btn.open .mi-open { display:none; }
.menu-btn.open .mi-close { display:block; }
.menu { position:absolute; top:100%; inset-inline:0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(19,27,46,.06);
  box-shadow:0 30px 60px rgba(107,56,212,.14);
  padding:6px var(--pad-x) 14px; display:grid; }
.menu[hidden] { display:none; }   /* display:grid would defeat the hidden attribute */
.menu a { display:flex; align-items:center; gap:10px; min-height:var(--tap);
  padding:12px 4px; font-weight:600; font-size:16px; color:var(--on-surface);
  border-bottom:1px solid rgba(19,27,46,.05); transition:color .25s; }
.menu a:last-child { border-bottom:none; }
.menu a:hover { color:var(--primary); }
.menu-user { color:var(--primary); font-weight:700; }
.menu-user svg { width:19px; height:19px; flex-shrink:0; }
.nav-user svg { width:17px; height:17px; flex-shrink:0; }

/* ══ HERO: full-viewport statement — copy sits DIRECTLY on the video ══
   No panel. A bottom-loaded whitening scrim (plus a thin top band for
   the nav) makes the ink-dark type pop and melts the hero into the
   page surface, so there is no hard section edge either. */
#hero { position:relative; display:flex; align-items:flex-end;
  min-height:100svh; }   /* no overflow clip: the video runs past the section edge */
/* the media layer OVERSHOOTS the hero bottom by ~36svh and slides under
   the next section (z-index:-1), so there is no seam — the video simply
   dissolves into the canvas partway through "What We Do" */
.hero-media { position:absolute; inset:0 0 -36vh; inset:0 0 -36svh; z-index:-1;
  /* branded fallback behind the video */
  background:
    radial-gradient(90vw 70vh at 12% 0%, rgba(107,56,212,.16), transparent 60%),
    radial-gradient(80vw 60vh at 92% 100%, rgba(87,223,254,.2), transparent 60%),
    var(--surface-c-low); }
.hero-media video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* narrow viewports crop the 16:9 frame to a center slice — shift the
   crop window so the beam's white-hot core (at ~72% of frame width)
   stays in view */
@media (max-width:767px) {
  .hero-media video { object-position:72% 50%; }
}
/* MOBILE (same ≤700px breakpoint as the portrait video swap in main.js):
   the original clipped hero was approved as-is — no overshoot, video
   contained in the section, scrim melts to the canvas at the hero edge */
@media (max-width:700px) {
  #hero { overflow:hidden; }
  .hero-media { inset:0; z-index:0; }
  .hero-scrim { background:
    linear-gradient(180deg,
      rgba(250,248,255,.72) 0%,
      rgba(250,248,255,.1)  20%,
      rgba(250,248,255,.05) 40%,
      rgba(250,248,255,.5)  60%,
      rgba(250,248,255,.82) 82%,
      var(--surface)        100%); }
}
/* percentages map to the OVERSHOT media box (hero = top ~73% of it).
   CRITICAL: the scrim reaches SOLID surface at 86%, well before the media
   box ends — the video's bottom edge is buried under opaque scrim, so no
   cutoff line can ever show. */
.hero-scrim { position:absolute; inset:0; background:
  linear-gradient(180deg,
    rgba(250,248,255,.72) 0%,          /* nav legibility band            */
    rgba(250,248,255,.1)  15%,
    rgba(250,248,255,.05) 30%,         /* video breathes mid-frame       */
    rgba(250,248,255,.45) 46%,
    rgba(250,248,255,.78) 62%,         /* copy zone: strong but bolder video */
    rgba(250,248,255,.9)  73%,         /* hero/section boundary: no seam */
    var(--surface)        86%,         /* fully melted inside "What We Do" */
    var(--surface)        100%); }     /* solid tail hides the video edge */
.hero-in { position:relative; z-index:1; width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:120px var(--pad-x) clamp(44px,7svh,88px); }
.hero-copy { max-width:820px; }
#hero h1 { font-weight:800; font-size:clamp(42px,11.6vw,94px);
  line-height:1.08; letter-spacing:-.025em; text-wrap:balance;
  text-shadow:0 2px 24px rgba(250,248,255,.8); }
html.en #hero h1 { font-size:clamp(34px,9.8vw,86px); letter-spacing:-.03em; }
.grad { background:var(--grad-text); text-shadow:none;   /* shadow bleeds through clipped text */
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
#hero .sub { margin-top:18px; font-size:clamp(16px,4.4vw,19px); line-height:1.65;
  color:var(--on-surface-variant); max-width:44ch;
  text-shadow:0 1px 16px rgba(250,248,255,.8); }
#hero .sub b { color:var(--primary); font-weight:800; }
#hero .row { margin-top:30px; display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
#hero .row .pill { width:100%; }   /* thumb-friendly full-width primary CTA on phones */

/* ══ CAPABILITIES (#what): frameless — image + text stacked on canvas ══ */
.svcsec { padding-block:var(--sect-half); }
.svcsec-in { max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad-x); }
.svc-head { text-align:center; max-width:760px; margin:0 auto clamp(40px,6vw,72px); }
.svc-head h2 { font-weight:800; font-size:clamp(27px,6.8vw,40px); letter-spacing:-.015em; line-height:1.22; }
.svc-head h2::after { content:""; display:block; width:96px; height:6px; border-radius:var(--r-pill);
  background:var(--grad-rule); margin:18px auto 0; }
.svc-grid { display:grid; grid-template-columns:1fr; gap:clamp(36px,5vw,48px) var(--gutter); }
.svc-card { background:none; border:none; padding:0; }
/* aspect-ratio box + branded backdrop: layout holds before gen-*.png files land */
.svc-img { border-radius:var(--r-xl); overflow:hidden; margin-bottom:18px; aspect-ratio:16/10;
  background:linear-gradient(135deg, rgba(107,56,212,.12), rgba(87,223,254,.16));
  box-shadow:var(--glow-violet-soft);
  transition:box-shadow .5s var(--ease), transform .5s var(--ease); }
.svc-card:nth-child(even) .svc-img { box-shadow:var(--glow-cyan-soft); }
.svc-card:hover .svc-img { transform:translateY(-4px); box-shadow:var(--glow-violet); }
.svc-card:nth-child(even):hover .svc-img { box-shadow:var(--glow-cyan); }
.svc-img img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.svc-card:hover .svc-img img { transform:scale(1.06); }
.svc-title { display:flex; align-items:center; gap:10px; }
.svc-icon { width:26px; height:26px; color:var(--primary); flex-shrink:0; }
.svc-card:nth-child(even) .svc-icon { color:var(--secondary); }
.svc-card h3 { font-weight:700; font-size:20px; letter-spacing:-.01em; }
.svc-card > p { margin-top:10px; color:var(--on-surface-variant); font-size:15px; line-height:1.65; }

/* ══ open sections (process / about): content flows on the canvas ══ */
.sheetrow { max-width:var(--maxw); margin-inline:auto;
  padding:var(--sect-half) var(--pad-x); }
.sheet { position:relative; }

/* ══ PROCESS (#how): full-bleed DEEP-PURPLE band with a subtle dot grid;
      white squircle tiles pop on the dark, light text ══ */
#how { position:relative; }
#how::before { content:""; position:absolute; inset-block:0; left:50%; width:100vw;
  transform:translateX(-50%); z-index:0;
  background-color:#6b38d4;
  /* IDENTICAL to the דברו איתנו button: var(--grad-button), + the dot grid on top */
  background-image:radial-gradient(rgba(255,255,255,.16) 1.2px, transparent 1.2px),
    var(--grad-button);
  background-size:48px 48px, 100% 100%; pointer-events:none; }
#how .sheet { position:relative; z-index:1; }
.how-head { text-align:center; max-width:640px; margin:0 auto clamp(44px,6vw,84px); }
.how-head h2 { font-weight:800; font-size:clamp(28px,6.6vw,44px); letter-spacing:-.02em; line-height:1.18;
  color:var(--paper); }
.how-head p { margin-top:14px; color:rgba(255,255,255,.88); font-size:17px; }
#how .step h3 { color:#ffffff; }
#how .step p { color:rgba(255,255,255,.88); }
/* ghost numbers: bright brand tints so they read on the violet band */
#how .sb-violet .step-num { color:#e9ddff; opacity:.55; }
#how .sb-cyan   .step-num { color:#57dffe; opacity:.5; }
#how .sb-lime   .step-num { color:#acf847; opacity:.5; }
#how .steps::before { background:rgba(255,255,255,.28); }
.steps { display:grid; grid-template-columns:1fr; gap:clamp(40px,4vw,56px); }
.step { display:flex; flex-direction:column; align-items:center; text-align:center; }
.step-badge { position:relative; width:96px; height:96px; border-radius:26px;
  background:#fff; display:grid; place-items:center;
  border:2px solid currentColor;
  box-shadow:0 18px 38px rgba(19,27,46,.10), 0 2px 6px rgba(19,27,46,.05);
  color:var(--primary); margin-bottom:44px; }
.step-badge svg { width:38px; height:38px; }
.step-badge.sb-cyan { color:var(--secondary); }
.step-badge.sb-lime { color:var(--tertiary); }
.step-num { position:absolute; z-index:-1; top:-30px; inset-inline-start:-44px;
  font-weight:800; font-size:84px; line-height:1;
  color:currentColor; opacity:.28; pointer-events:none; user-select:none; }
.step h3 { font-weight:700; font-size:22px; letter-spacing:-.015em; }
.step p { margin-top:12px; font-size:15.5px; line-height:1.7; color:var(--on-surface-variant); max-width:36ch; }

/* ══ WHO WE ARE (#about): real founder portraits directly on canvas ══ */
.about-head h2 { font-weight:800; font-size:clamp(25px,6.4vw,36px); letter-spacing:-.015em; line-height:1.24; }
.about-head p { margin-top:16px; font-size:16px; line-height:1.75;
  color:var(--on-surface-variant); max-width:58ch; }
.founders { margin-top:clamp(36px,5vw,56px); display:grid; grid-template-columns:1fr;
  gap:clamp(32px,5vw,48px) clamp(24px,4vw,48px); }
/* media-object: small portrait beside name/role/LinkedIn, bio alongside */
.founder { display:grid; grid-template-columns:96px 1fr; column-gap:18px;
  align-items:center; }
.founder-photo { grid-row:1 / span 2; width:96px; aspect-ratio:3/4; object-fit:cover;
  border-radius:var(--r-lg); box-shadow:var(--glow-violet-soft);
  background:linear-gradient(135deg, rgba(107,56,212,.12), rgba(87,223,254,.16)); }
.founder:nth-child(even) .founder-photo { box-shadow:var(--glow-cyan-soft); }
.founder-head { align-self:end; display:flex; align-items:center; gap:10px; }
.founder h3 { font-weight:700; font-size:19px; letter-spacing:-.01em; }
.founder .li { display:inline-grid; place-items:center; width:26px; height:26px;
  border-radius:7px; color:#fff; background:#0a66c2; flex-shrink:0;
  transition:transform .25s var(--ease), box-shadow .25s; }
.founder .li:hover { transform:translateY(-2px); box-shadow:0 8px 18px rgba(10,102,194,.35); }
.founder .li svg { width:14px; height:14px; }
.founder .role { align-self:start; margin-top:4px; color:var(--primary);
  font-weight:700; font-size:13px; letter-spacing:.04em; }
.founder .bio { grid-column:1 / -1; margin-top:14px; font-size:15px; line-height:1.7;
  color:var(--on-surface-variant); max-width:52ch; }

/* ══ TESTIMONIALS (#clients): the one carded section — white quote cards
      floating on the canvas, alternating violet/cyan glow shadows.
      Flex+wrap centers the odd fifth card on every breakpoint. ══ */
.tst-sub { margin:14px auto 0; font-size:16px; line-height:1.7;
  color:var(--on-surface-variant); max-width:52ch; }
.tst-grid { display:flex; flex-wrap:wrap; justify-content:center;
  gap:clamp(20px,3vw,28px); }
.tst-card { display:flex; flex-direction:column; gap:16px;
  flex:1 1 300px; max-width:480px;
  background:var(--surface-c-lowest); border-radius:var(--r-xl);
  padding:clamp(24px,4vw,32px);
  box-shadow:var(--glow-violet-soft), 0 2px 6px rgba(19,27,46,.05);
  transition:transform .35s var(--ease), box-shadow .35s; }
.tst-card:nth-child(even) { box-shadow:var(--glow-cyan-soft), 0 2px 6px rgba(19,27,46,.05); }
.tst-card:hover { transform:translateY(-4px); box-shadow:var(--glow-violet); }
.tst-card:nth-child(even):hover { box-shadow:var(--glow-cyan); }
.tst-stars { display:flex; gap:3px; color:var(--primary); }
.tst-card:nth-child(even) .tst-stars { color:var(--secondary); }
.tst-stars svg { width:16px; height:16px; }
.tst-card blockquote p { font-size:15.5px; line-height:1.75; font-weight:600;
  color:var(--on-surface); }
.tst-who { margin-top:auto; display:flex; align-items:center; gap:12px; }
.tst-avatar { width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:grid; place-items:center; color:#fff; font-weight:800; font-size:17px;
  background:var(--grad-card); }
.tst-card:nth-child(even) .tst-avatar {
  background:linear-gradient(135deg,#00687a 0%,#4cd7f6 135%); }
.tst-id { display:grid; }
.tst-name { font-weight:700; font-size:15px; }
.tst-role { font-size:13px; color:var(--on-surface-variant); }

/* ══ FINAL CTA (#band): split backdrop — a soft brand-tinted block fills
      the top ~2/3, the page canvas shows below; a white two-panel card
      straddles the seam. Details panel first in DOM = inline-start =
      the RIGHT side in Hebrew (flips left in English automatically). ══ */
#band { position:relative; }
#band::before { content:""; position:absolute; inset:0 0 32%;
  background:linear-gradient(120deg, #ece3fd 0%, #e9effe 52%, #dff5fe 100%); }
.band-in { position:relative; z-index:1; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(64px,9vw,108px) var(--pad-x) clamp(64px,9vw,116px); }
.band-head { text-align:center; max-width:720px; margin:0 auto clamp(36px,5.5vw,64px); }
#band h2 { font-weight:800; font-size:clamp(27px,6.8vw,42px); letter-spacing:-.015em; line-height:1.2; }
.band-head p { margin:16px auto 0; font-size:clamp(15.5px,4.2vw,18px); line-height:1.7;
  color:var(--on-surface-variant); max-width:58ch; }
@media (max-width:639px) {
  .band-head p .nw { white-space:normal; }   /* phones: let the sentence wrap */
}

/* the straddling card */
.cta-card { display:grid; grid-template-columns:1fr; overflow:hidden;
  max-width:1080px; margin-inline:auto; text-align:start;
  background:var(--surface-c-lowest); border-radius:var(--r-2xl);
  box-shadow:0 44px 90px rgba(107,56,212,.16), 0 6px 18px rgba(19,27,46,.06); }

/* ── details panel: brand gradient, white type, light-bleed bubbles ── */
.cta-info { position:relative; overflow:hidden; background:var(--grad-card);
  color:#fff; padding:clamp(28px,4.5vw,44px); }
.cta-info h3 { font-weight:800; font-size:23px; letter-spacing:-.01em; }
.cta-info > p { margin-top:10px; font-size:14.5px; line-height:1.7;
  color:rgba(255,255,255,.86); max-width:34ch; }
.cta-list { list-style:none; margin-top:clamp(28px,4vw,40px);
  display:grid; gap:14px; position:relative; z-index:1; }
.cta-list a, .cta-row { display:flex; align-items:center; gap:14px;
  font-size:15px; font-weight:600; color:#fff; min-height:var(--tap);
  transition:transform .25s var(--ease); }
.cta-list a:hover { transform:translateY(-2px); }
.cta-ic { width:40px; height:40px; border-radius:12px; flex-shrink:0;
  background:rgba(255,255,255,.16); display:grid; place-items:center; }
.cta-ic svg { width:19px; height:19px; }
.cta-bubble { position:absolute; border-radius:50%;
  background:rgba(255,255,255,.13); pointer-events:none; }
.cta-bubble.b1 { width:230px; height:230px; bottom:-84px; inset-inline-end:-64px; }
.cta-bubble.b2 { width:120px; height:120px; bottom:112px; inset-inline-end:-58px;
  background:rgba(255,255,255,.09); }

/* ── contact form: minimal line fields on the white panel ── */
.cform { display:grid; gap:26px; align-content:center;
  padding:clamp(28px,5vw,48px); }
.cform label { display:grid; gap:8px; font-size:13px; font-weight:600;
  letter-spacing:.02em; color:var(--on-surface-variant); }
.cform input, .cform textarea { width:100%; padding:6px 2px 12px; border:0;
  border-bottom:1.5px solid var(--outline-variant); border-radius:0;
  background:transparent; font:inherit; font-size:16.5px; font-weight:600;
  color:var(--on-surface); transition:border-color .25s, box-shadow .25s; }
.cform input:hover, .cform textarea:hover { border-bottom-color:var(--outline); }
.cform input:focus, .cform textarea:focus { outline:none;
  border-bottom-color:var(--primary); box-shadow:0 1.5px 0 var(--primary); }
.cform textarea { resize:vertical; min-height:96px; }
.cform-ok { text-align:center; font-size:17px; font-weight:600; color:var(--on-surface);
  padding:22px 8px; }
.cform .pill { margin-top:6px; width:100%; }
.cform .auth-err { margin-top:0; }
.cform .auth-err a { font-weight:800; text-decoration:underline; }
@media (min-width:640px) {
  .cform { grid-template-columns:1fr 1fr; column-gap:32px; }
  .cform label, .cform .pill, .cform-ok, .cform .auth-err { grid-column:1 / -1; }
  .cform label.half { grid-column:auto; }
  .cform .pill { justify-self:start; width:auto; min-width:220px; }
}
@media (min-width:900px) {
  .cta-card { grid-template-columns:380px 1fr; }
}

/* ══ footer — deep brand violet, light-on-dark ══ */
footer { background:linear-gradient(180deg, var(--violet-deep-hi) 0%, var(--violet-deep) 55%, #1c004a 100%);
  border-top:1px solid rgba(208,188,255,.25); }
footer .logo-bolt { color:var(--violet-soft); }
footer .logo-word {
  background:linear-gradient(90deg, #d0bcff, #4cd7f6);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
footer .top { max-width:var(--maxw); margin-inline:auto;
  padding:clamp(48px,6vw,72px) var(--pad-x) 32px;
  display:grid; grid-template-columns:1fr; gap:40px; }
footer .state { max-width:40ch; }
.fbrand { display:flex; align-items:center; gap:6px; }
.fbrand .logo-bolt { width:24px; height:24px; }
.fbrand .logo-word { font-size:21px; }
footer .state p { margin-top:12px; color:rgba(238,240,255,.78); font-size:14.5px; line-height:1.7; }
.fcols { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.fcol h5 { font-size:12.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--violet-soft); margin-bottom:10px; }
.fcol a { display:block; font-size:14.5px; color:rgba(238,240,255,.82); padding-block:10px;
  transition:color .25s, transform .25s var(--ease); }
.fcol a:hover { color:#4cd7f6; transform:translateY(-2px); }
.fcol a.cicon { display:flex; align-items:center; gap:9px; }
.ci { width:17px; height:17px; flex-shrink:0; }
.ci-mail { color:var(--violet-soft); }
.ci-wa { color:#25d366; }
footer .bottom { border-top:1px solid rgba(208,188,255,.2); }
footer .bottom .in { max-width:var(--maxw); margin-inline:auto;
  padding:18px var(--pad-x); display:flex; flex-wrap:wrap; gap:10px 24px;
  justify-content:space-between; font-size:13px; color:rgba(238,240,255,.66); }

/* ══ customer access (login.html) ══ */
.auth-main { min-height:100svh; display:grid; place-items:center;
  padding:calc(76px + 4vh) var(--pad-x) 56px; }
.auth-card { width:100%; max-width:440px; background:var(--surface-c-lowest);
  border-radius:var(--r-2xl); padding:clamp(28px,5vw,44px);
  box-shadow:0 44px 90px rgba(107,56,212,.16), 0 6px 18px rgba(19,27,46,.06); }
.auth-card h1 { font-weight:800; font-size:26px; letter-spacing:-.015em; }
.auth-sub { margin-top:8px; color:var(--on-surface-variant); font-size:14.5px; line-height:1.65; }
.sso { margin-top:26px; display:grid; gap:12px; }
.sso-btn { display:flex; align-items:center; justify-content:center; gap:10px;
  min-height:48px; border-radius:var(--r-pill); border:1.5px solid var(--outline-variant);
  background:#fff; font:inherit; font-weight:600; font-size:15px; color:var(--on-surface);
  cursor:pointer; transition:border-color .25s, box-shadow .25s, transform .25s var(--ease); }
.sso-btn:hover { border-color:var(--outline); transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(19,27,46,.08); }
.sso-btn svg { width:19px; height:19px; flex-shrink:0; }
.auth-divider { margin:24px 0 20px; display:flex; align-items:center; gap:12px;
  color:var(--on-surface-variant); font-size:12.5px; font-weight:600; }
.auth-divider::before, .auth-divider::after { content:""; flex:1; height:1px;
  background:var(--outline-variant); }
.auth-form { display:grid; gap:22px; }
.auth-form label { display:grid; gap:8px; font-size:13px; font-weight:600;
  letter-spacing:.02em; color:var(--on-surface-variant); }
.auth-form input { width:100%; padding:6px 2px 12px; border:0; border-radius:0;
  border-bottom:1.5px solid var(--outline-variant); background:transparent;
  font:inherit; font-size:16.5px; font-weight:600; color:var(--on-surface);
  transition:border-color .25s, box-shadow .25s; }
.auth-form input:hover { border-bottom-color:var(--outline); }
.auth-form input:focus { outline:none; border-bottom-color:var(--primary);
  box-shadow:0 1.5px 0 var(--primary); }
.auth-row { display:flex; justify-content:flex-end; font-size:13.5px; }
.auth-row a { color:var(--primary); font-weight:600; }
.auth-row a:hover { text-decoration:underline; }
.auth-form .pill { width:100%; }
.auth-note { margin-top:20px; padding:14px 16px; border-radius:14px;
  background:var(--surface-c-low); border:1px solid var(--outline-variant);
  color:var(--on-surface); font-size:14px; line-height:1.65; }
.auth-note a { color:var(--primary); font-weight:700; }
.auth-err { margin-top:20px; padding:14px 16px; border-radius:14px;
  background:#fdecea; border:1px solid #f5c6c0;
  color:#8c1d13; font-size:14px; font-weight:600; line-height:1.65; }
footer.auth-foot { background:none; border-top:none;
  text-align:center; padding:0 var(--pad-x) 28px;
  font-size:13px; color:var(--on-surface-variant); }
footer.auth-foot a { color:var(--primary); }

/* ══ workshops portal (/workshops/) — Worker-gated customer area ══ */
.portal-main { max-width:var(--maxw); margin-inline:auto;
  min-height:72svh; padding:calc(84px + 3vh) var(--pad-x) 64px; }
.portal-head h1 { font-weight:800; font-size:clamp(26px,6vw,36px); letter-spacing:-.015em; }
.portal-head p { margin-top:10px; color:var(--on-surface-variant); font-size:16px; }
.portal-denied, .portal-empty { margin-top:22px; padding:14px 16px; border-radius:14px;
  background:var(--surface-c-low); border:1px solid var(--outline-variant);
  font-size:14.5px; line-height:1.65; max-width:56ch; }
.portal-denied a, .portal-empty a { color:var(--primary); font-weight:700; }
.wcards { margin-top:30px; display:grid; gap:20px;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); }
.wcard { display:flex; flex-direction:column; align-items:flex-start; gap:10px;
  background:var(--surface-c-lowest); border-radius:var(--r-xl); padding:26px;
  box-shadow:var(--glow-violet-soft), 0 2px 6px rgba(19,27,46,.05); }
.wcard:nth-child(even) { box-shadow:var(--glow-cyan-soft), 0 2px 6px rgba(19,27,46,.05); }
.wcard h2 { font-weight:700; font-size:19px; letter-spacing:-.01em; }
.wcard p { color:var(--on-surface-variant); font-size:14.5px; line-height:1.65; }
.wcard .pill { margin-top:auto; }

/* ── solid fallbacks when translucency is reduced ── */
@media (prefers-reduced-transparency: reduce) {
  nav.scrolled { background:rgba(255,255,255,.97) !important;
    backdrop-filter:none !important; -webkit-backdrop-filter:none !important; }
  .menu { background:rgba(255,255,255,.98) !important;
    backdrop-filter:none !important; -webkit-backdrop-filter:none !important; }
  footer { background:var(--violet-deep) !important; }
}

/* ══ scale up: ≥640px ══ */
@media (min-width: 640px) {
  #hero .row .pill { width:auto; }
  nav .bar { gap:22px; padding-block:12px; }
  nav .pill { padding:9px 20px; }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  /* founders: photo stays small, the resume sits beside it */
  .founder { grid-template-columns:132px 1fr; column-gap:24px; }
  .founder-photo { grid-row:1 / span 3; width:132px; }
  .founder h3 { font-size:20px; }
  .founder .bio { grid-column:2; margin-top:10px; }
}

/* ══ scale up: ≥900px ══ */
@media (min-width: 900px) {
  .nav-links { display:flex; gap:28px; }
  .nav-links a { font-size:14px; font-weight:600; color:var(--on-surface-variant);
    transition:color .3s; padding-block:10px; }
  .nav-links a:hover { color:var(--primary); }
  .nav-links .nav-user { display:flex; align-items:center; gap:7px; color:var(--primary); }
  .menu-btn, .menu { display:none; }
  .hero-in { padding-bottom:clamp(64px,9vh,110px); }
  #hero .sub { font-size:19px; }
  .steps { grid-template-columns:repeat(3,1fr); gap:clamp(32px,4vw,64px); position:relative; }
  .steps::before { content:""; position:absolute; top:118px; inset-inline:0; height:1px;
    background:rgba(19,27,46,.08); }
  .step { position:relative; z-index:1; }
  .step-num { font-size:96px; top:-34px; inset-inline-start:-52px; }
  .about-head { max-width:720px; }
  /* desktop: Calanit and Guy share one row */
  .founders { grid-template-columns:repeat(2,1fr); max-width:1080px; }
  footer .top { grid-template-columns:5fr 7fr; }
  .fcols { grid-template-columns:repeat(3,1fr); }
  .fcol a { padding-block:5px; }
}

/* ══ scale up: ≥1100px ══ */
@media (min-width: 1100px) {
  .svc-grid { grid-template-columns:repeat(3,1fr); align-items:start; }
  .svc-card:nth-child(3n+2) { margin-top:32px; }   /* staggered rhythm, per the reference */
}

/* ══ reduced motion: everything collapses to static ══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  .orb, .streak { animation:none; }
  .streak { display:none; }
  .pill, .svc-card, .svc-img, .svc-img img, .fcol a, .lang, .tst-card { transition:none; }
  .pill:hover, .fcol a:hover, .tst-card:hover { transform:none; }
  .svc-card:hover .svc-img { transform:none; }
  .svc-card:hover .svc-img img { transform:none; }
}

/* ══ accessibility (ת"י 5568 / WCAG 2.1 AA) ══ */
/* skip link: hidden until keyboard focus */
.skip { position:fixed; top:10px; inset-inline-start:10px; z-index:200;
  background:var(--primary); color:#fff; font-weight:700; font-size:14px;
  padding:12px 20px; border-radius:12px; transform:translateY(-250%);
  transition:transform .2s; }
.skip:focus { transform:none; }

/* hero video pause/play (WCAG 2.2.2) */
.vid-toggle { position:absolute; bottom:18px; inset-inline-start:18px; z-index:2;
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(123,116,134,.2);
  background:rgba(255,255,255,.32); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  color:var(--on-surface); display:grid; place-items:center; cursor:pointer;
  transition:background .25s; }
.vid-toggle:hover, .vid-toggle:focus-visible { background:rgba(255,255,255,.9); }
.vid-toggle svg { width:18px; height:18px; }
/* icon swap via class — [hidden] doesn't apply to SVG elements */
.vid-toggle .vt-play, .vid-toggle.paused .vt-pause { display:none; }
.vid-toggle.paused .vt-play { display:block; }

