/* ==========================================================
   נקסט לבל — מערכת עיצוב בהירה
   תחליף מלא ל-style.css. אותם שמות מחלקות בדיוק, כך שאפשר
   להחליף בין הכיוונים בשורת <link> אחת בכל עמוד.
   שפה: נייר חם, טיפוגרפיה גדולה, קווי שיער, אפס אפקטים.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;600;700;800;900&family=Assistant:wght@400;500;600;700&display=swap');

:root{
  /* surfaces */
  --bg:      #FAF8F3;   /* paper */
  --bg-2:    #F3EFE6;   /* raised band */
  --bg-3:    #EDE7DA;   /* inset */
  --bg-deep: #F0EADD;   /* the "security" band, quiet not loud */

  /* ink */
  --text:    #1B1F24;
  --text-2:  #5A646F;
  --line:    #E2DBCC;
  --line-2:  #D2C9B6;

  /* accents — one voice each, no glow anywhere */
  --accent:      #12564E;              /* pine: action, live, links */
  --accent-dim:  rgba(18,86,78,.09);
  --accent-glow: transparent;          /* kept so old refs stay valid */
  --gold:        #8A5A12;              /* proof: impact + spotlight */
  --gold-dim:    rgba(138,90,18,.09);
  --green:       #1F6B44;
  --beta:        #5B4B8A;              /* coming soon */
  --beta-dim:    rgba(91,75,138,.10);

  /* type */
  --f-display: 'Rubik', 'Assistant', system-ui, sans-serif;
  --f-body:    'Assistant', system-ui, -apple-system, sans-serif;
  --t-xs:   .8125rem;
  --t-sm:   .9375rem;
  --t-base: 1.0625rem;
  --t-lg:   1.25rem;
  --t-xl:   1.5rem;
  --t-2xl:  2rem;
  --t-3xl:  2.75rem;
  --t-4xl:  3.5rem;

  /* layout */
  --wrap: 1120px;
  --wrap-narrow: 720px;
  --gut: clamp(20px, 5vw, 48px);
  --r-sm: 2px;
  --r:    3px;
  --r-lg: 4px;
  --nav-h: 72px;
}

*,*::before,*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust:100%;
}

body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:var(--f-body);
  font-size:clamp(1rem, .4vw + .95rem, 1.0625rem);
  line-height:1.75; direction:rtl; overflow-x:hidden;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}

img{max-width:100%; display:block}
a{color:inherit}

:focus-visible{outline:2px solid var(--accent); outline-offset:3px; border-radius:2px}

.skip{
  position:absolute; right:-9999px; top:0; z-index:200;
  background:var(--accent); color:var(--bg); padding:12px 20px;
  font-weight:700;
}
.skip:focus{right:0}

/* ---------- layout ---------- */
.wrap{width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gut)}
.narrow{max-width:var(--wrap-narrow)}
section{padding-block:clamp(54px,8vw,108px)}
section.tight{padding-block:clamp(40px,6vw,72px)}

/* ---------- type ---------- */
h1,h2,h3,h4{font-family:var(--f-display); font-weight:700; line-height:1.14; margin:0; text-wrap:balance; letter-spacing:-.015em}
h1{font-size:clamp(2.2rem,5.4vw,var(--t-4xl)); font-weight:800; letter-spacing:-.025em}
h2{font-size:clamp(1.65rem,3.4vw,var(--t-3xl))}
h3{font-size:clamp(1.1rem,1.9vw,var(--t-xl))}
p{margin:0 0 1.05rem}
p:last-child{margin-bottom:0}
.lead{font-size:clamp(1.06rem,1.7vw,var(--t-lg)); color:var(--text-2); line-height:1.65}
.muted{color:var(--text-2)}
.center{text-align:center}

.eyebrow{
  display:inline-block; font-family:var(--f-body); font-weight:600;
  font-size:var(--t-xs); letter-spacing:.17em; color:var(--accent);
  margin-bottom:14px;
}

.sec-head{max-width:64ch; margin-bottom:clamp(28px,4vw,46px)}
.sec-head.center{margin-inline:auto; text-align:center}
.sec-head h2 + p{margin-top:14px}

/* highlight used in the light hero */
.mark{
  background:linear-gradient(var(--accent-dim),var(--accent-dim));
  background-size:100% 40%; background-position:0 80%; background-repeat:no-repeat;
  padding:0 2px;
}

/* ---------- status pills ---------- */
.pill{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--f-body); font-weight:700; font-size:var(--t-xs);
  padding:3px 11px; border-radius:100px; white-space:nowrap; vertical-align:middle;
}
.pill--live{background:var(--accent-dim); color:var(--accent); border:1px solid rgba(18,86,78,.3)}
.pill--live::before{content:''; width:6px; height:6px; border-radius:50%; flex:0 0 auto; background:var(--accent)}
.pill--beta{background:var(--beta-dim); color:var(--beta); border:1px solid rgba(91,75,138,.3)}
.pill--beta::before{content:''; width:6px; height:6px; border-radius:50%; flex:0 0 auto; border:1.5px solid currentColor}
/* plain pill (no modifier) — neutral label */
.pill:not(.pill--live):not(.pill--beta){background:var(--bg-3); color:var(--text-2); border:1px solid var(--line)}

/* ---------- agent roster ---------- */
.roster{
  display:grid; gap:0; background:var(--bg);
  border:1px solid var(--line); border-radius:var(--r); overflow:hidden;
}
.roster-item{
  display:grid; grid-template-columns:minmax(120px,168px) 1fr; gap:8px 22px;
  padding:20px 24px; border-bottom:1px solid var(--line); align-items:baseline;
}
.roster-item:last-child{border-bottom:0}
.roster-dom{
  font-family:var(--f-body); font-weight:700; font-size:var(--t-xs);
  color:var(--text-2); letter-spacing:.02em;
}
.roster-body b{
  display:block; font-family:var(--f-display); font-weight:700;
  font-size:var(--t-base); color:var(--text); margin-bottom:5px;
}
.roster-body span{display:block; font-size:var(--t-sm); color:var(--text-2); line-height:1.55}
@media (max-width:620px){
  .roster-item{grid-template-columns:1fr; gap:6px; padding:18px 20px}
}

/* ---------- connection chips ---------- */
.chips{display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; padding:0; list-style:none}
.chips li{
  font-family:var(--f-body); font-weight:600; font-size:var(--t-sm); color:var(--text);
  background:var(--bg); border:1px solid var(--line-2); border-radius:100px;
  padding:7px 16px; white-space:nowrap;
}

/* ---------- stacked layers ---------- */
.stack{display:grid; gap:14px}
.stack-item{
  background:var(--bg); border:1px solid var(--line); border-radius:var(--r);
  padding:26px 28px; display:grid; grid-template-columns:auto 1fr; gap:6px 20px;
}
.stack-num{
  grid-row:span 2; font-family:var(--f-display); font-weight:800; font-size:var(--t-2xl);
  color:var(--line-2); line-height:1;
}
.stack-item h3{margin:0 0 6px; align-self:center}
.stack-item p{margin:0; color:var(--text-2); font-size:var(--t-sm); line-height:1.6}
.stack-item--core{border-color:var(--accent); border-width:1.5px}
.stack-item--core .stack-num{color:var(--accent)}
@media (max-width:620px){
  .stack-item{grid-template-columns:1fr; padding:22px 20px}
  .stack-num{grid-row:auto; font-size:var(--t-xl)}
}

/* ---------- landing page: minimal header ---------- */
.site-head--lp .nav{gap:0}
.site-head--lp .burger{display:none}

/* ---------- landing page: pain / negative list ---------- */
.crosses{list-style:none; margin:0; padding:0; display:grid; gap:16px}
.crosses li{position:relative; padding-inline-start:36px; line-height:1.6}
.crosses li b{display:block; font-family:var(--f-display); font-weight:700; color:var(--text); margin-bottom:4px}
.crosses li span{display:block; color:var(--text-2); font-size:var(--t-sm)}
.crosses li::before{
  content:''; position:absolute; inset-inline-start:0; top:.2em;
  width:22px; height:22px; border-radius:50%;
  background:rgba(138,90,18,.12);
}
.crosses li::after{
  content:''; position:absolute; inset-inline-start:6px; top:calc(.2em + 6px);
  width:10px; height:10px; background:var(--gold);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' d='M5 5l14 14M19 5L5 19'/%3E%3C/svg%3E") center/10px no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' d='M5 5l14 14M19 5L5 19'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ---------- landing page: CORE flow diagram ---------- */
.flow{
  display:grid; grid-template-columns:1fr auto auto auto 1fr;
  gap:clamp(12px,2.4vw,26px); align-items:center; margin-top:26px;
}
.flow-col{display:grid; gap:11px}
.flow-node{
  background:var(--bg); border:1px solid var(--line-2); border-radius:var(--r);
  padding:14px 18px; font-family:var(--f-body); font-weight:600;
  font-size:var(--t-sm); color:var(--text); text-align:center;
}
.flow-node--out{border-color:var(--accent); background:var(--accent-dim); color:var(--accent)}
.flow-core{
  background:var(--accent); color:var(--bg); border-radius:var(--r);
  padding:26px 22px; text-align:center; min-width:130px;
}
.flow-core b{display:block; font-family:var(--f-display); font-weight:800; font-size:var(--t-lg); line-height:1.2}
.flow-core span{display:block; font-size:var(--t-xs); opacity:.85; margin-top:6px}
.flow-arrow{
  display:grid; place-items:center; font-size:var(--t-xl);
  color:var(--line-2); line-height:1;
}
@media (max-width:760px){
  .flow{grid-template-columns:1fr; gap:12px}
  .flow-arrow{transform:rotate(-90deg); font-size:var(--t-lg)}
}

/* ---------- pricing ---------- */
.price{
  display:flex; align-items:baseline; gap:8px; flex-wrap:wrap;
  margin:20px 0 4px; padding-top:18px; border-top:1px solid var(--line);
}
.price b{font-family:var(--f-display); font-weight:800; font-size:var(--t-2xl); color:var(--text); line-height:1}
.price span{font-family:var(--f-body); font-size:var(--t-sm); color:var(--text-2)}
.ticks{list-style:none; margin:14px 0 0; padding:0; display:grid; gap:10px}
.ticks li{position:relative; padding-inline-start:26px; font-size:var(--t-sm); color:var(--text-2); line-height:1.5}
.ticks li::before{
  content:''; position:absolute; inset-inline-start:0; top:.35em;
  width:15px; height:15px; background:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/15px no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--f-body); font-weight:700; font-size:var(--t-base);
  padding:14px 28px; border-radius:var(--r-sm); border:1px solid transparent;
  text-decoration:none; cursor:pointer; transition:background .15s, color .15s, border-color .15s;
}
.btn--primary{background:var(--accent); color:var(--bg); border-color:var(--accent)}
.btn--primary:hover{background:#0E463F; border-color:#0E463F; color:var(--bg)}
.btn--gold{background:var(--gold); color:var(--bg); border-color:var(--gold)}
.btn--gold:hover{background:#6F480E; border-color:#6F480E; color:var(--bg)}
.btn--ghost{background:transparent; color:var(--accent); border-color:var(--line-2)}
.btn--ghost:hover{border-color:var(--accent); background:var(--accent-dim)}
.btn--sm{padding:9px 18px; font-size:var(--t-sm)}
.btn-note{font-size:var(--t-sm); color:var(--text-2); margin-top:12px}

.cta-row{display:flex; flex-wrap:wrap; gap:14px 22px; align-items:center}

.link-arrow{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--f-body); font-weight:700; font-size:var(--t-sm);
  color:var(--accent); text-decoration:none; margin-top:auto; padding-top:14px;
  border-bottom:1px solid transparent; width:fit-content;
}
.link-arrow::after{content:'←'}
.link-arrow:hover{border-bottom-color:currentColor}

/* ---------- header ---------- */
.site-head{
  position:sticky; top:0; z-index:100; height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(250,248,243,.93); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.site-head .wrap{display:flex; align-items:center; gap:26px}

.logo{display:flex; align-items:center; gap:10px; text-decoration:none; font-family:var(--f-display); font-weight:800; font-size:1.22rem; letter-spacing:-.025em; color:var(--text)}
.logo .mark{
  width:28px; height:28px; border-radius:var(--r-sm); flex:0 0 auto;
  background:var(--accent); color:var(--bg);
  display:grid; place-items:center; font-size:.9rem; font-weight:800;
  background-image:none; padding:0;
}

.nav{display:flex; align-items:center; gap:4px; margin-inline-start:auto}
.nav a:not(.btn){
  font-family:var(--f-body); font-weight:600; font-size:var(--t-sm);
  color:var(--text-2); text-decoration:none; padding:8px 12px; border-radius:var(--r-sm);
  transition:color .15s;
}
.nav a:not(.btn):hover,.nav a:not(.btn)[aria-current="page"]{color:var(--text)}

.has-menu{position:relative}
.has-menu > button{
  font-family:var(--f-body); font-weight:600; font-size:var(--t-sm);
  color:var(--text-2); background:none; border:0; cursor:pointer;
  padding:8px 12px; display:flex; align-items:center; gap:6px;
}
.has-menu > button::after{content:''; width:6px; height:6px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg) translateY(-2px)}
.has-menu > button:hover,.has-menu[data-open="true"] > button{color:var(--text)}
.has-menu[data-open="true"] > button::after{transform:rotate(-135deg) translateY(-2px)}

.menu{
  position:absolute; top:calc(100% + 10px); inset-inline-start:0;
  min-width:300px; background:var(--bg); border:1px solid var(--line-2);
  border-radius:var(--r); padding:6px; display:none;
  box-shadow:0 16px 40px -20px rgba(27,31,36,.28);
}
.has-menu[data-open="true"] .menu{display:block}
.menu a{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:10px 12px; border-radius:var(--r-sm); text-decoration:none;
  font-family:var(--f-body); font-weight:700; font-size:var(--t-sm); color:var(--text);
}
.menu a:hover{background:var(--bg-2)}
.menu a small{display:block; font-weight:400; font-size:var(--t-xs); color:var(--text-2); margin-top:2px}
.menu a > span{min-width:0}

.nav-cta{margin-inline-start:8px}

.burger{
  display:none; margin-inline-start:auto; background:none; border:1px solid var(--line-2);
  border-radius:var(--r-sm); width:42px; height:42px; cursor:pointer; padding:0;
  flex-direction:column; gap:5px; align-items:center; justify-content:center;
}
.burger span{display:block; width:18px; height:1.5px; background:var(--text)}
body.nav-open .burger span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
body.nav-open .burger span:nth-child(2){opacity:0}
body.nav-open .burger span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ---------- hero ---------- */
.hero{padding-block:clamp(50px,8vw,100px) clamp(40px,6vw,76px)}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,64px); align-items:center}
.hero h1 + .lead{margin-top:22px}
.hero .lead{max-width:54ch}
.hero .cta-row{margin-top:30px}

.proof-strip{
  display:flex; align-items:baseline; gap:12px; flex-wrap:wrap;
  margin-top:36px; padding-top:22px; border-top:1px solid var(--line);
  font-size:var(--t-sm); color:var(--text-2);
}
.proof-strip b{font-family:var(--f-display); font-weight:800; font-size:var(--t-xl); color:var(--text)}

/* ---------- dashboard mock (framed like a screenshot on paper) ---------- */
.mock{
  background:var(--bg); border:1px solid var(--line-2); border-radius:var(--r);
  padding:16px; box-shadow:0 18px 44px -28px rgba(27,31,36,.3);
}
.mock-bar{display:flex; align-items:center; gap:7px; padding-bottom:13px; border-bottom:1px solid var(--line); margin-bottom:15px}
.mock-bar i{width:8px; height:8px; border-radius:50%; background:var(--line-2)}
.mock-bar span{margin-inline-start:auto; font-size:var(--t-xs); color:var(--text-2)}
.mock-bar span::before{content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--green); margin-inline-end:6px; vertical-align:middle}
.mock-kpis{display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-bottom:13px}
.kpi{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r-sm); padding:11px 12px}
.kpi small{display:block; font-size:var(--t-xs); color:var(--text-2); margin-bottom:3px}
.kpi b{font-family:var(--f-display); font-size:1.35rem; font-weight:800; letter-spacing:-.03em; font-variant-numeric:tabular-nums}
.kpi u{display:block; text-decoration:none; font-size:var(--t-xs); color:var(--green); font-weight:600}
.kpi u.down{color:var(--gold)}
.mock-chart{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r-sm); padding:13px 12px 10px}
.mock-chart small{font-size:var(--t-xs); color:var(--text-2)}
.bars{display:flex; align-items:flex-end; gap:7px; height:84px; margin-top:12px}
.bars i{flex:1; background:var(--accent); opacity:.82; border-radius:1px 1px 0 0; min-height:6px}
.bars i:last-child{background:var(--gold)}

/* silent hero loop */
.vloop{position:relative; border:1px solid var(--line-2); border-radius:var(--r); overflow:hidden; background:var(--bg-2); aspect-ratio:16/10}
.vloop video,.vloop img{width:100%; height:100%; object-fit:cover; display:block}

/* ---------- cards & grids ---------- */
.grid{display:grid; gap:20px}
.grid--3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid--2{grid-template-columns:repeat(auto-fit,minmax(330px,1fr))}
.grid--4{grid-template-columns:repeat(auto-fit,minmax(215px,1fr))}
.narrow .grid--3{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}

.card{
  background:transparent; border:1px solid var(--line); border-radius:var(--r);
  padding:26px 24px; display:flex; flex-direction:column;
  transition:border-color .15s;
}
.card--hover:hover{border-color:var(--line-2)}
.card h3{margin-bottom:10px}
.card p:not(.btn-note):not(.microproof){color:var(--text-2); font-size:var(--t-sm)}
.card-top{display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap}
.card-top h3{margin:0}

.icon{
  width:40px; height:40px; border-radius:var(--r-sm); display:grid; place-items:center;
  background:var(--accent-dim); color:var(--accent); margin-bottom:16px; flex:0 0 auto;
}
.icon svg{width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}
.icon--gold{background:var(--gold-dim); color:var(--gold)}

.microproof{
  margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
  font-size:var(--t-xs); color:var(--text-2); line-height:1.65;
}
.microproof b{color:var(--text)}

.card--custom{background:var(--bg-2); border-style:dashed; border-color:var(--line-2)}

/* ---------- stats / figures ---------- */
.stats{display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:clamp(20px,3vw,40px)}
.stat{background:transparent; border:0; border-top:2px solid var(--accent); border-radius:0; padding:20px 0 0; text-align:start}
.stat b{
  display:block; font-family:var(--f-display); font-weight:800;
  font-size:clamp(1.9rem,4.4vw,2.9rem); letter-spacing:-.035em; color:var(--text);
  font-variant-numeric:tabular-nums; line-height:1.04;
}
.stat span{display:block; margin-top:9px; font-size:var(--t-sm); color:var(--text-2)}

/* ---------- quotes ---------- */
.quote{
  background:transparent; border:0;
  border-inline-start:3px solid var(--accent); border-radius:0;
  padding:4px 22px 4px 0; margin:0;
}
.quote p{font-family:var(--f-display); font-weight:500; font-size:clamp(1.1rem,2vw,1.45rem); line-height:1.5; margin-bottom:14px}
.quote footer{font-size:var(--t-sm); color:var(--text-2); font-weight:600}
.quote footer small{display:block; font-weight:400; margin-top:2px}

.spotlight{
  display:grid; grid-template-columns:auto 1fr; gap:clamp(18px,3vw,26px); align-items:start;
  background:var(--bg-2); border:1px solid var(--line);
  border-inline-start:3px solid var(--gold); border-radius:var(--r);
  padding:clamp(24px,3.5vw,34px);
}
.spotlight-face{
  width:64px; height:64px; border-radius:50%; flex:0 0 auto; overflow:hidden;
  background:var(--bg-3); border:1px solid var(--line-2);
  display:grid; place-items:center;
  font-family:var(--f-display); font-weight:800; font-size:1.3rem; color:var(--gold);
}
/* portrait source is 2:3, so a square crop must favour the top or it lands on the chest */
.spotlight-face img{width:100%; height:100%; object-fit:cover; object-position:center top; display:block}
.spotlight blockquote{margin:0}
.spotlight p{font-family:var(--f-display); font-weight:500; font-size:clamp(1.05rem,1.9vw,1.35rem); line-height:1.55; margin-bottom:16px}
.spotlight footer{font-size:var(--t-sm); color:var(--text-2)}
.spotlight footer b{display:block; color:var(--text); font-family:var(--f-display); font-size:var(--t-base)}
@media (max-width:560px){ .spotlight{grid-template-columns:1fr} }

.impact{
  background:var(--bg-2); border:1px solid var(--line);
  border-inline-start:3px solid var(--gold); border-radius:var(--r);
  padding:clamp(22px,3vw,30px);
}
.impact-label{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--f-body); font-weight:700; font-size:var(--t-xs);
  letter-spacing:.1em; color:var(--gold); margin-bottom:12px;
}
.impact-label svg{width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round}
.impact p{font-size:clamp(1rem,1.7vw,var(--t-lg)); line-height:1.6; margin-bottom:14px}
.impact p b{color:var(--accent); font-weight:700; white-space:nowrap}
.impact .link-arrow{padding-top:0}

/* ---------- steps ---------- */
.steps{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:clamp(18px,2.5vw,28px); counter-reset:s}
.step{background:transparent; border:0; border-top:1px solid var(--line-2); border-radius:0; padding:18px 0 0; counter-increment:s}
.step::before{
  content:counter(s) '.'; display:block;
  font-family:var(--f-display); font-weight:800; font-size:var(--t-sm);
  color:var(--accent); margin-bottom:8px;
}
.step h3{font-size:var(--t-base); margin-bottom:8px}
.step p{font-size:var(--t-sm); color:var(--text-2)}
.note .steps .step{background:transparent; border-top-color:var(--line-2)}

/* ---------- notes / callouts ---------- */
.note{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r); padding:22px 24px; font-size:var(--t-sm)}
.note--gold{background:var(--gold-dim); border-color:rgba(138,90,18,.28)}
.note--plain{background:transparent; border-color:var(--line)}
.note h3{font-size:var(--t-base); margin-bottom:8px}

.promise{
  margin-top:26px; padding:20px 24px; text-align:start;
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r);
  font-size:var(--t-sm); color:var(--text-2);
}
.promise b{display:flex; align-items:center; gap:8px; color:var(--text); font-family:var(--f-display); margin-bottom:8px; font-size:var(--t-base)}

.disclosure{
  display:flex; gap:11px; align-items:flex-start;
  margin-top:22px; padding-top:20px; border-top:1px solid var(--line);
  font-size:var(--t-sm); color:var(--text-2); line-height:1.7;
}
.disclosure b{color:var(--text)}
.disclosure svg{width:19px; height:19px; flex:0 0 auto; margin-top:3px; stroke:var(--gold); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}

.draft{background:var(--gold-dim); border:1px solid rgba(138,90,18,.28); border-radius:var(--r); padding:16px 20px; font-size:var(--t-sm); margin-bottom:32px}

/* ---------- split panels ---------- */
.split{display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:20px}
.split-panel{background:transparent; border:1px solid var(--line); border-radius:var(--r); padding:24px 22px}
.split-panel--bad{border-top:2px solid var(--gold)}
.split-panel--good{border-top:2px solid var(--accent)}
.split-panel h3{font-size:var(--t-base); margin-bottom:16px; display:flex; align-items:center; gap:9px}
.split-panel ul{margin:0; padding:0; list-style:none; display:grid; gap:11px}
.split-panel li{display:flex; gap:10px; font-size:var(--t-sm); color:var(--text-2); align-items:flex-start}
.split-panel li::before{content:'×'; font-weight:700; color:var(--gold); flex:0 0 auto; line-height:1.5}
.split-panel--good li::before{content:'✓'; color:var(--accent)}

/* ---------- contrast table ---------- */
.versus{display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; background:transparent}
.versus-head{display:flex; align-items:center; gap:9px; padding:15px 20px; font-family:var(--f-display); font-weight:700; font-size:var(--t-sm); border-bottom:1px solid var(--line)}
.versus-head:first-child{background:var(--gold-dim); color:var(--gold)}
.versus-head:nth-child(2){background:var(--accent-dim); color:var(--accent); border-inline-start:1px solid var(--line)}
.versus-cell{padding:15px 20px; font-size:var(--t-sm); color:var(--text-2); border-bottom:1px solid var(--line); display:flex; gap:10px; align-items:flex-start}
.versus-cell:nth-child(even){border-inline-start:1px solid var(--line); background:var(--bg-2)}
.versus-cell:nth-last-child(-n+2){border-bottom:0}
.versus-cell b{color:var(--text); font-family:var(--f-display); display:block; margin-bottom:3px; font-weight:700}
.versus-cell::before{content:''; width:5px; height:5px; border-radius:50%; flex:0 0 auto; margin-top:9px; background:var(--gold)}
.versus-cell:nth-child(even)::before{background:var(--accent)}
@media (max-width:640px){
  .versus{grid-template-columns:1fr}
  .versus-head:nth-child(2),.versus-cell:nth-child(even){border-inline-start:0}
  .versus-head:nth-child(2){border-top:1px solid var(--line)}
}

/* ---------- security band ---------- */
.security{background:var(--bg-deep); border-block:1px solid var(--line-2)}
.security .icon{width:52px; height:52px}
.security .icon svg{width:26px; height:26px}
.security .card{background:var(--bg); border-color:var(--line-2)}

/* ---------- founder ---------- */
.founder{display:grid; grid-template-columns:300px 1fr; gap:clamp(28px,5vw,60px); align-items:start}
.founder-portrait{display:flex; flex-direction:column; gap:16px; position:sticky; top:calc(var(--nav-h) + 24px)}
.portrait-frame{width:100%; aspect-ratio:4/5; border-radius:var(--r); overflow:hidden; background:var(--bg-2); border:1px solid var(--line-2); display:grid; place-items:center}
.portrait-frame img{width:100%; height:100%; object-fit:cover; display:block}
.portrait-frame--todo{text-align:center; padding:22px; background:var(--bg-2); border-style:dashed}
.portrait-frame--todo em{font-style:normal; font-size:var(--t-xs); color:var(--text-2); line-height:1.7}
.founder-id b{display:block; font-family:var(--f-display); font-size:var(--t-lg); font-weight:800}
.founder-id span{display:block; color:var(--text-2); font-size:var(--t-sm); margin-top:2px}
.founder-quote{
  margin:26px 0; padding:2px 22px 2px 0; border-radius:0;
  background:transparent; border:0; border-inline-start:3px solid var(--accent);
  font-family:var(--f-display); font-weight:500;
  font-size:clamp(1.15rem,2.2vw,1.65rem); line-height:1.45;
}
@media (max-width:860px){
  .founder{grid-template-columns:1fr}
  .founder-portrait{position:static; flex-direction:row; align-items:center}
  .portrait-frame{width:130px; aspect-ratio:1; flex:0 0 auto}
}

/* ---------- video player ---------- */
.vplayer{background:transparent; border:1px solid var(--line); border-radius:var(--r); padding:14px}
.vplayer-head{display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding:0 4px 12px; font-size:var(--t-xs); color:var(--text-2)}
.vplayer-head b{font-family:var(--f-display); color:var(--text); font-size:var(--t-sm); display:flex; align-items:center; gap:7px}
.vplayer-head .raw{margin-inline-start:auto; padding:2px 10px; border-radius:100px; background:var(--bg-2); border:1px solid var(--line); white-space:nowrap}
.vframe{
  position:relative; aspect-ratio:16/9; border-radius:var(--r-sm); overflow:hidden;
  background:var(--bg-2); display:block; width:100%; border:0; padding:0; color:inherit; cursor:pointer;
}
.vframe iframe,.vframe video,.vframe img{position:absolute; inset:0; width:100%; height:100%; border:0; object-fit:cover; display:block}
.vplay{
  position:absolute; inset-inline-start:50%; top:50%; transform:translate(50%,-50%);
  width:62px; height:62px; border-radius:50%; z-index:2;
  background:var(--accent); color:var(--bg); display:grid; place-items:center; pointer-events:none;
}
.vplay svg{width:22px; height:22px; fill:currentColor; margin-inline-start:3px}
.vplayer-note{padding:12px 4px 2px; font-size:var(--t-xs); color:var(--text-2)}
.vframe--todo{display:grid; place-items:center; cursor:default; background:var(--bg-2); border:1px dashed var(--line-2)}
.vframe--todo span{font-size:var(--t-sm); color:var(--text-2); text-align:center; padding:20px; max-width:360px; line-height:1.65}
.vframe--todo b{display:block; color:var(--text); font-family:var(--f-display); margin-bottom:6px}

/* ---------- screenshots ---------- */
.shots{display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:18px}
.shots--ba{grid-template-columns:repeat(auto-fit,minmax(290px,1fr))}
.shot{
  background:transparent; border:1px solid var(--line); border-radius:var(--r);
  overflow:hidden; display:flex; flex-direction:column; text-align:start;
  padding:0; cursor:zoom-in; color:inherit; font:inherit; transition:border-color .15s;
}
.shot:hover{border-color:var(--line-2)}
.shot-img{position:relative; aspect-ratio:16/10; background:var(--bg-2); overflow:hidden}
.shot-img img{width:100%; height:100%; object-fit:cover; display:block}
.shot-img::after{
  content:'לחצו להגדלה'; position:absolute; inset-block-end:10px; inset-inline-end:10px;
  font-size:11px; font-weight:600; padding:4px 10px; border-radius:100px;
  background:var(--bg); border:1px solid var(--line-2); color:var(--text-2); opacity:0; transition:opacity .15s;
}
.shot:hover .shot-img::after,.shot:focus-visible .shot-img::after{opacity:1}
.shot-img--todo{display:grid; place-items:center; text-align:center; padding:18px; background:var(--bg-2); border-bottom:1px dashed var(--line-2)}
.shot-img--todo em{font-style:normal; font-size:var(--t-xs); color:var(--text-2)}
.shot-cap{padding:15px 17px}
.shot-cap b{display:block; font-family:var(--f-display); font-size:var(--t-sm); margin-bottom:4px}
.shot-cap span{font-size:var(--t-xs); color:var(--text-2); line-height:1.6}
.shot-tag{display:inline-flex; align-items:center; gap:6px; margin-bottom:9px; font-family:var(--f-body); font-weight:700; font-size:11px; letter-spacing:.1em; padding:3px 10px; border-radius:100px}
.shot-tag--before{background:var(--gold-dim); color:var(--gold)}
.shot-tag--after{background:var(--accent-dim); color:var(--accent)}

/* ---------- lightbox ---------- */
.lightbox{position:fixed; inset:0; z-index:200; display:none; background:rgba(27,31,36,.93); padding:clamp(16px,4vw,48px); place-items:center}
.lightbox[open],.lightbox.show{display:grid}
.lightbox img{max-width:100%; max-height:78vh; border-radius:var(--r); display:block; margin-inline:auto; background:var(--bg)}
.lightbox figure{margin:0; max-width:1200px; width:100%}
.lightbox figcaption{margin-top:16px; text-align:center; color:#C9C2B4; font-size:var(--t-sm)}
.lightbox figcaption b{display:block; color:#fff; font-family:var(--f-display); margin-bottom:4px}
.lightbox-close{position:absolute; top:18px; inset-inline-end:18px; width:44px; height:44px; border-radius:50%; background:var(--bg); border:1px solid var(--line-2); color:var(--text); font-size:22px; line-height:1; cursor:pointer}
.lightbox-close:hover{border-color:var(--accent); color:var(--accent)}

/* ---------- modal ---------- */
.modal{position:fixed; inset:0; z-index:210; display:none; background:rgba(27,31,36,.9); padding:clamp(16px,4vw,40px); place-items:center; overflow-y:auto}
.modal.show{display:grid}
.modal-card{background:var(--bg); border:1px solid var(--line-2); border-radius:var(--r); padding:clamp(24px,4vw,38px); max-width:520px; width:100%; position:relative}
.modal-card h3{margin-bottom:10px}
.modal-card > p{color:var(--text-2); font-size:var(--t-sm); margin-bottom:22px}
.modal-close{position:absolute; top:14px; inset-inline-end:14px; width:36px; height:36px; border-radius:50%; background:transparent; border:1px solid var(--line); color:var(--text-2); font-size:19px; line-height:1; cursor:pointer}
.modal-close:hover{border-color:var(--accent); color:var(--accent)}

/* ---------- FAQ ---------- */
.faq{display:grid; gap:0; max-width:820px; margin-inline:auto; border-top:1px solid var(--line)}
.faq details{background:transparent; border:0; border-bottom:1px solid var(--line); border-radius:0; overflow:hidden}
.faq summary{cursor:pointer; padding:20px 4px; font-family:var(--f-display); font-weight:700; font-size:var(--t-base); list-style:none; display:flex; align-items:center; gap:14px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+'; margin-inline-start:auto; color:var(--accent); font-size:1.35rem; line-height:1; font-weight:400}
.faq details[open] summary::after{content:'−'}
.faq details[open] summary{border-bottom:0; padding-bottom:8px}
.faq .answer{padding:0 4px 22px; color:var(--text-2); font-size:var(--t-sm)}

/* ---------- integrations ---------- */
.chips{display:flex; flex-wrap:wrap; gap:9px}
.chip{background:transparent; border:1px solid var(--line-2); border-radius:100px; padding:7px 16px; font-weight:600; font-size:var(--t-sm); color:var(--text-2)}

/* ---------- closing CTA ---------- */
.cta-band{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r); padding:clamp(34px,5vw,60px); text-align:center; position:relative}
.cta-band .lead{margin:16px auto 0; max-width:54ch}
.cta-band .cta-row{justify-content:center; margin-top:28px}

/* ---------- forms ---------- */
.form{background:transparent; border:1px solid var(--line-2); border-radius:var(--r); padding:clamp(24px,4vw,36px); display:grid; gap:20px}
.field{display:grid; gap:8px}
.field > label{font-family:var(--f-display); font-weight:700; font-size:var(--t-sm)}
.field > label .req{color:var(--accent)}
.field input[type="text"],.field input[type="tel"],.field input[type="email"],.field select,.field textarea{
  width:100%; padding:13px 15px; font-family:var(--f-body); font-size:var(--t-base);
  color:var(--text); background:var(--bg); border:1px solid var(--line-2);
  border-radius:var(--r-sm); transition:border-color .15s;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent); outline:none}
.field select{appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--text-2) 50%),linear-gradient(135deg,var(--text-2) 50%,transparent 50%); background-position:left 20px center,left 15px center; background-size:5px 5px; background-repeat:no-repeat}
.opts{display:flex; flex-wrap:wrap; gap:9px}
.opt{position:relative}
.opt input{position:absolute; opacity:0; width:0; height:0}
.opt span{display:block; padding:8px 16px; border-radius:100px; cursor:pointer; background:transparent; border:1px solid var(--line-2); font-weight:600; font-size:var(--t-sm); color:var(--text-2); transition:.15s}
.opt input:checked + span{background:var(--accent-dim); border-color:var(--accent); color:var(--accent)}
.opt input:focus-visible + span{outline:2px solid var(--accent); outline-offset:2px}
.form-note{font-size:var(--t-xs); color:var(--text-2); text-align:center}
.form-ok{display:none; background:var(--accent-dim); border:1px solid rgba(18,86,78,.3); border-radius:var(--r); padding:20px 24px; font-size:var(--t-sm)}
.form-ok.show{display:block}

/* ---------- legal / prose ---------- */
.prose{max-width:var(--wrap-narrow)}
.prose h2{font-size:var(--t-xl); margin:38px 0 12px}
.prose h2:first-of-type{margin-top:0}
.prose ul{padding-inline-start:22px; margin:0 0 1rem; color:var(--text-2)}
.prose li{margin-bottom:7px}
.prose p{color:var(--text-2)}
.prose a{color:var(--accent)}

/* ---------- footer ---------- */
.site-foot{border-top:1px solid var(--line-2); padding-block:50px 32px; background:var(--bg-2)}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; margin-bottom:34px}
.foot-grid h4{font-size:var(--t-sm); font-family:var(--f-display); letter-spacing:.05em; color:var(--text); margin-bottom:14px; font-weight:700}
.foot-grid ul{list-style:none; margin:0; padding:0; display:grid; gap:9px}
.foot-grid a{color:var(--text-2); text-decoration:none; font-size:var(--t-sm)}
.foot-grid a:hover{color:var(--accent)}
.foot-grid .logo{margin-bottom:14px}
.foot-grid p{font-size:var(--t-sm); color:var(--text-2); max-width:330px}
.foot-base{border-top:1px solid var(--line); padding-top:22px; display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; font-size:var(--t-xs); color:var(--text-2)}
.foot-base a{color:var(--text-2); text-decoration:none}
.foot-base a:hover{color:var(--accent)}

/* ---------- mobile sticky CTA ---------- */
.sticky-cta{
  position:fixed; inset-inline:0; bottom:0; z-index:90; display:none;
  gap:10px; padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(250,248,243,.96); backdrop-filter:blur(8px); border-top:1px solid var(--line-2);
}
.sticky-cta .btn{flex:1; white-space:nowrap; padding-inline:14px; font-size:var(--t-sm)}
.sticky-cta .btn--ghost{flex:0 0 auto}

/* ---------- no scroll animation in the light direction ---------- */
.reveal{opacity:1; transform:none}

/* ---------- responsive ---------- */
@media (max-width:1000px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{order:-1}
  .foot-grid{grid-template-columns:1fr 1fr; gap:26px}
  .foot-grid > :first-child{grid-column:1/-1}
}

@media (max-width:860px){
  .burger{display:flex}
  .nav{
    position:fixed; inset:var(--nav-h) 0 auto 0; flex-direction:column;
    align-items:stretch; gap:2px; padding:14px var(--gut) 24px; margin:0;
    background:var(--bg); border-bottom:1px solid var(--line-2);
    display:none; max-height:calc(100vh - var(--nav-h)); overflow-y:auto;
  }
  body.nav-open .nav{display:flex}
  .nav a:not(.btn),.has-menu > button{width:100%; padding:12px 8px; font-size:var(--t-base); justify-content:flex-start}
  .nav a.btn{width:100%; margin-top:10px}
  .has-menu{position:static}
  .menu{position:static; display:block; min-width:0; background:transparent; border:0; box-shadow:none; padding:0 0 0 8px}
  .menu a{font-size:var(--t-sm)}
  .sticky-cta{display:flex}
  body:has(.sticky-cta){padding-bottom:74px}
  .site-head .wrap{gap:12px}
}

@media (max-width:560px){
  .mock-kpis{grid-template-columns:repeat(2,1fr)}
  .cta-row .btn{width:100%}
  .foot-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition-duration:.001ms !important; animation-duration:.001ms !important}
}

@media print{
  .site-head,.sticky-cta,.cta-band{display:none}
  body{background:#fff; color:#000}
}
