/* me.botomat.co.il — main-design tokens (light-only, RTL, Assistant, amber accent).
   Hand-written to the skill recipes since this static site has no Tailwind build. */
:root {
  --accent: #fbbf24;          /* amber-400 — focus/active/badges ONLY, never CTA */
  --accent-strong: #f59e0b;   /* amber-500 — hover/gradient of the accent only */
  --ink: #111827;             /* gray-900 — primary buttons + headings */
  --ink-soft: #374151;        /* gray-700 */
  --muted: #6b7280;           /* gray-500 */
  --faint: #9ca3af;           /* gray-400 — eyebrow labels */
  --line: #f3f4f6;            /* gray-100 — card borders */
  --line-2: #e5e7eb;          /* gray-200 */
  --field: #f9fafb;           /* gray-50 — input bg */
  --bg: #f6f7f9;
  --white: #fff;
  --green: #16a34a;
  --red: #dc2626;
  --blue: #2563eb;
  --radius: 1.5rem;           /* rounded-3xl */
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
  --shadow-xl: 0 20px 40px -12px rgba(16,24,40,.18);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Assistant', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--ink); direction: rtl; text-align: right;
  font-weight: 700; -webkit-font-smoothing: antialiased; line-height: 1.55;
}
a { color: inherit; }
.hidden { display: none !important; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; direction: ltr; unicode-bidi: plaintext; }

/* ── layout ── */
.wrap { max-width: 560px; margin: 0 auto; padding: 20px 16px 120px; }
.wrap-wide { max-width: 960px; }
.topbar {
  position: sticky; top: 0; z-index: 30; background: rgba(246,247,249,.85);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line-2);
}
.topbar-in { max-width: 960px; margin: 0 auto; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: -.02em; display: flex; align-items: center; gap: 8px; }
.logo .dot { color: var(--accent); }
.grow { flex: 1; }

/* ── cards ── */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; }
.card + .card { margin-top: 16px; }
.card-lg { padding: 32px; }
.eyebrow { font-size: 11px; font-weight: 800; color: var(--faint); text-transform: uppercase; letter-spacing: .12em; margin: 0 0 8px; }
h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; line-height: 1.15; }
h2 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 8px; }
h3 { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
p { margin: 0 0 12px; color: var(--ink-soft); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.emoji-xl { font-size: 52px; line-height: 1; margin-bottom: 8px; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 800; font-size: 16px; cursor: pointer;
  border: none; border-radius: 1rem; padding: 15px 22px; width: 100%;
  background: var(--ink); color: #fff; transition: all .2s ease; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-xl); }
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn-accent { background: var(--accent); color: #1a1206; }
.btn-accent:hover { background: var(--accent-strong); }
.btn-sm { padding: 10px 16px; font-size: 14px; width: auto; border-radius: .8rem; }
.btn-row { display: flex; gap: 10px; }
.btn-row .btn { width: auto; flex: 1; }

/* ── inputs ── */
label.fld { display: block; font-size: 11px; font-weight: 800; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; margin: 14px 0 6px; }
input, select {
  width: 100%; font-family: inherit; font-weight: 700; font-size: 16px; color: var(--ink);
  background: var(--field); border: 1.5px solid var(--line-2); border-radius: 1rem;
  padding: 14px 16px; transition: all .2s ease; outline: none;
}
input:focus, select:focus { border-color: var(--accent); background: #fff; }
input::placeholder { color: var(--faint); font-weight: 700; }
.err { color: var(--red); font-size: 14px; font-weight: 700; margin-top: 10px; min-height: 1px; }
.note { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; border-radius: 1rem; padding: 14px 16px; font-size: 14px; margin: 12px 0; }
.note-blue { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.note-red { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ── auth links ── */
.links { display: flex; justify-content: space-between; margin-top: 16px; font-size: 14px; font-weight: 700; }
.links a { color: var(--muted); text-decoration: none; cursor: pointer; }
.links a:hover { color: var(--ink); }
.links.center { justify-content: center; gap: 18px; }

/* ── big stat / teaser ── */
.stat-big { text-align: center; padding: 8px 0 4px; }
.stat-num { font-size: 64px; font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.stat-num .u { font-size: 22px; color: var(--muted); margin-inline-start: 6px; }
.stat-cap { color: var(--muted); font-size: 15px; margin-top: 4px; }
.price-tag { display: inline-flex; align-items: baseline; gap: 4px; font-weight: 800; }
.price-tag .amt { font-size: 34px; }

/* ── steps / wizard ── */
.tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.tab { flex: 1; text-align: center; padding: 12px; border-radius: 1rem; border: 1.5px solid var(--line-2); background: #fff; font-weight: 800; cursor: pointer; transition: all .2s; }
.tab.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #1a1206; font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.step .body { flex: 1; }
.step .body b { display: block; margin-bottom: 3px; }
.step .body .muted { font-size: 14px; }
.copy-box { display: flex; align-items: center; gap: 8px; background: var(--field); border: 1.5px solid var(--line-2); border-radius: .8rem; padding: 10px 12px; margin-top: 8px; }
.copy-box code { flex: 1; font-family: 'JetBrains Mono', monospace; direction: ltr; unicode-bidi: plaintext; font-size: 14px; overflow-x: auto; }

/* ── contacts table ── */
.ct { width: 100%; border-collapse: collapse; font-size: 14px; }
.ct th { text-align: right; color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; padding: 8px 10px; border-bottom: 1px solid var(--line-2); }
.ct td { padding: 10px; border-bottom: 1px solid var(--line); }
.ct tr:hover td { background: var(--field); }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-gray { background: #f3f4f6; color: #6b7280; }

/* ── floating whatsapp ── */
.wa-fab {
  position: fixed; bottom: 20px; left: 20px; z-index: 50; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-xl); font-size: 28px; text-decoration: none; transition: all .2s;
}
.wa-fab:hover { transform: scale(1.08); }

/* ── spinner ── */
.spin { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: sp .7s linear infinite; display: inline-block; }
.spin.dark { border-color: var(--line-2); border-top-color: var(--ink); }
@keyframes sp { to { transform: rotate(360deg); } }
.loading-wrap { display: grid; place-items: center; min-height: 60vh; }

/* ── toast ── */
#toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 1rem; font-weight: 800; z-index: 100; transition: all .25s; box-shadow: var(--shadow-xl); pointer-events: none; }
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#toast.err { background: var(--red); }

/* hero landing */
.hero { text-align: center; padding: 32px 8px 8px; }
.hero .emoji-xl { font-size: 64px; }
.feature { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; }
.feature .ic { font-size: 24px; }
.feature b { display: block; }
@media (max-width: 480px) { h1 { font-size: 25px; } .stat-num { font-size: 52px; } .card-lg { padding: 22px; } }
