/* ==========================================================================
   WhoOwl — /start landing page (self-contained, mobile-first)
   Does NOT depend on style.css. Palette: paper + ink + owl-yellow + night-navy.
   ========================================================================== */
:root {
  --paper: #F5F6FA;
  --paper-2: #FFFFFF;
  --ink: #0E1330;
  --ink-2: #3C4466;
  --ink-3: #5F6B7A;
  --line: #E4E7F0;
  --navy: #141A3C;
  --navy-2: #1F2756;
  --yellow: #FFC121;
  --yellow-2: #FFD75C;
  --green: #12805C;
  --green-bg: #E6F7EE;
  --red: #C0272D;
  --violet: #6E5BFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(14, 19, 48, .08);
  --shadow-lg: 0 24px 60px rgba(14, 19, 48, .14);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-title: 'Outfit', 'Inter', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper);
  line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, input { font: inherit; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
/* Hidden VERTICALLY, never horizontally (fixed 20/8). `left:-999px` is
   harmless in LTR, but in RTL an element left of the origin extends the
   scrollable width — the document grew to 1374px on a 375px phone, and every
   `position:fixed; inset:0` overlay sized to that, centring the alert sheet
   and the cookie dialog completely off-screen. */
.skip-link { position: absolute; inset-inline-start: 8px; top: -60px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; transition: top .15s; }
.skip-link:focus { top: 8px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 18px; }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 40; background: rgba(245, 246, 250, .86); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.hdr.scrolled { border-bottom-color: var(--line); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
/* site logo (same markup + look as index.html, scaled for the 60px header) */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-text { font-family: var(--font-title); font-weight: 800; font-size: 26px; color: var(--ink); letter-spacing: -0.5px; display: flex; align-items: center; user-select: none; line-height: 1; }
.logo-eyes { position: relative; display: inline-flex; width: 46px; height: 24px; margin: 0 4px; align-items: center; justify-content: center; gap: 2px; }
.logo-eye { width: 20px; height: 20px; border-radius: 50%; background: radial-gradient(circle, #ffd700 20%, #ff8c00 60%, #1e1e24 100%); border: 2px solid #00f0ff; box-shadow: 0 0 8px rgba(0, 240, 255, .8); position: relative; display: flex; align-items: center; justify-content: center; }
.logo-pupil { width: 6px; height: 6px; background: #000; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .1s ease-out; }
.logo-eye.monocle { border-color: #ff8c00; box-shadow: 0 0 9px rgba(255, 140, 0, .8); }
.logo-eye.monocle::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border: 1.5px solid #ff8c00; border-radius: 50%; opacity: .8; }
.btn-ghost { border: 1.5px solid var(--ink); background: transparent; color: var(--ink); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .9rem; text-decoration: none; cursor: pointer; transition: background .15s, color .15s; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
/* The wordmark is Latin and must never be reordered by the RTL page
   (same rule the main site already carries in style.css). */
html[dir="rtl"] .logo, html[dir="rtl"] .logo-text { direction: ltr; }

/* Log in with the language picker right under it (Doron 20/8) */
.hdr-btns { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
/* Both languages are named side by side, the active one filled in — a single
   unlabelled toggle did not say what it would switch to. */
.lang-pick { display: inline-flex; align-items: center; gap: 2px; direction: ltr; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 2px 4px 2px 7px; box-shadow: var(--shadow); }
.lang-ic { color: var(--ink-3); flex: 0 0 auto; }
.lang-opt { background: transparent; border: 0; color: var(--ink-2); border-radius: 999px; padding: 2px 8px; font-size: .72rem; font-weight: 700; line-height: 1.5; cursor: pointer; transition: background .15s, color .15s; }
.lang-opt:hover { color: var(--ink); }
.lang-opt[aria-pressed="true"] { background: var(--navy); color: #fff; cursor: default; }
.lang-opt:focus-visible { outline: 2px solid var(--navy); outline-offset: 1px; }

/* ---------- hero ---------- */
.hero { padding-block: 40px 28px; text-align: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow); }
.pill b { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--ink); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(21, 168, 92, .18); }
.h1 { font-family: var(--font-title); font-weight: 800; font-size: clamp(2.1rem, 8.2vw, 3.8rem); line-height: 1.05; letter-spacing: -.03em; margin: 22px 0 14px; color: var(--ink); }
.h1 em { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--ink); }
.lead { font-size: clamp(1rem, 3.6vw, 1.25rem); color: var(--ink-2); max-width: 34em; margin: 0 auto 26px; }

/* ---------- action card ---------- */
.action { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px; max-width: 560px; margin: 0 auto; text-align: left; }
#hero-action { text-align: center; }
#hero-action .btn { margin-top: 0; }
#hero-fallback.hidden { display: none; }
.paste { padding-block: 34px 10px; }
.paste h2 { font-family: var(--font-title); font-size: clamp(1.5rem, 5.5vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; text-align: center; }
.muted-c { text-align: center; color: var(--ink-3); font-size: .82rem; margin: 14px 0 0; }
.field { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 14px; padding: 0 14px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.field:focus-within { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(20, 26, 60, .08); }
.field svg { flex: 0 0 auto; color: var(--ink-3); }
.field input { flex: 1; border: 0; outline: 0; background: transparent; height: 54px; font-size: 1rem; color: var(--ink); min-width: 0; }
.field input::placeholder { color: #9AA1BA; }
.field .paste-btn { flex: 0 0 auto; border: 0; background: var(--paper); color: var(--ink-2); font-size: .78rem; font-weight: 700; border-radius: 8px; padding: 6px 10px; cursor: pointer; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; border: 0; border-radius: 14px; height: 56px; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: transform .12s, box-shadow .15s, background .15s; text-decoration: none; }
.btn:active { transform: translateY(1px) scale(.995); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(20, 26, 60, .25); }
.btn-primary:hover { background: var(--navy-2); }
.btn-yellow { background: var(--yellow); color: var(--ink); margin-top: 12px; box-shadow: 0 10px 24px rgba(255, 193, 33, .35); }
.btn-yellow:hover { background: var(--yellow-2); }
.or { display: flex; align-items: center; gap: 12px; color: var(--ink-3); font-size: .8rem; margin: 12px 0; }
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.gsi { display: flex; justify-content: center; min-height: 44px; }
.gsi.hidden { display: none; }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin: 16px 0 0; padding: 0; list-style: none; font-size: .82rem; color: var(--ink-2); }
.trust li { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { color: var(--green); }
.spin { width: 18px; height: 18px; border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; display: none; }
.spin.dark { border-color: rgba(14, 19, 48, .25); border-top-color: var(--ink); }
.btn.loading .spin { display: inline-block; } .btn.loading .lbl { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }
.err { color: var(--red); font-size: .85rem; margin: 8px 2px 0; min-height: 1.2em; }
/* a populated error reads as a soft note, not bare alarm text (Doron 20/8) */
.err:not(:empty) { background: #FDF3F3; border: 1px solid #F2D3D3; border-radius: 10px; padding: 9px 12px; line-height: 1.45; }

/* ---------- marquee rail ---------- */
.rail-sec { padding-block: 30px 8px; }
.sec-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
@media (min-width: 640px) { .sec-head { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 12px; } }
.sec-head h2 { font-family: var(--font-title); font-size: 1.2rem; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.sec-head .hint { font-size: .78rem; color: var(--ink-3); }
.sec-head .hint b { color: var(--ink-2); }
.rail-pitch { margin: -6px 0 14px; font-size: .92rem; color: var(--ink-2); max-width: 580px; line-height: 1.55; }
.rail-pitch b { color: var(--ink); }
.marquee { position: relative; overflow: hidden; margin: 0 -18px; padding: 6px 0 14px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.track { display: flex; gap: 12px; width: max-content; padding-left: 18px; will-change: transform; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.track.dragging { cursor: grabbing; }
.track img { pointer-events: none; -webkit-user-drag: none; }
.card { flex: 0 0 176px; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .img { position: relative; height: 132px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 10px; border-bottom: 1px solid var(--line); }
.card .img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.badge { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-weight: 800; font-size: .84rem; padding: 4px 9px; border-radius: 8px; letter-spacing: .01em; box-shadow: 0 3px 8px rgba(0,0,0,.18); }
.badge.new { background: var(--violet); }
.card .body { padding: 10px 10px 10px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .t { font-size: .8rem; font-weight: 600; line-height: 1.3; height: 2.6em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; color: var(--ink); }
.card .p { display: flex; align-items: baseline; gap: 6px; }
.card .was { font-size: .76rem; color: var(--ink-3); text-decoration: line-through; }
.card .now { font-size: 1rem; font-weight: 800; color: var(--green); }
.card .w { font-size: .72rem; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.card .w svg { color: var(--ink-3); }
.card .cta { margin-top: auto; border: 0; border-radius: 10px; height: 36px; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: .82rem; cursor: pointer; transition: background .15s; }
.card .cta:hover { background: var(--yellow-2); }
.rail-note { text-align: center; font-size: .74rem; color: var(--ink-3); margin: 4px 0 0; }
.rail-note .paused-lbl { display: none; color: var(--ink-2); font-weight: 600; }
.marquee.is-paused + .rail-note .paused-lbl { display: inline; }
.rail-skel { flex: 0 0 176px; height: 260px; border-radius: 16px; background: linear-gradient(90deg, #eef0f6 25%, #f7f8fb 50%, #eef0f6 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- how it works ---------- */
.how { padding-block: 34px 10px; }
.how h2, .why h2, .faq h2, .video h2 { font-family: var(--font-title); font-size: clamp(1.5rem, 5.5vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; text-align: center; }
.sub { text-align: center; color: var(--ink-2); margin: 0 auto 22px; max-width: 36em; }
.steps { display: grid; gap: 12px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow); }
.step .n { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: var(--yellow); font-family: var(--font-title); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.step h3 { margin: 0 0 4px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--ink-2); font-size: .92rem; }

/* ---------- video ---------- */
.video { padding-block: 34px 10px; }
.vid-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 16 / 9; }
.vid-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .35)); border: 0; cursor: pointer; }
.vid-play span { width: 72px; height: 72px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); transition: transform .15s; }
.vid-play:hover span { transform: scale(1.06); }
.vid-play.hidden { display: none; }

/* ---------- why ---------- */
.why { padding-block: 34px 10px; }
.why-grid { display: grid; gap: 12px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.why-card .ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.ic.y { background: #FFF4CC; color: #8A6300; } .ic.g { background: var(--green-bg); color: var(--green); } .ic.v { background: #EEEBFF; color: var(--violet); }
.why-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.why-card p { margin: 0; color: var(--ink-2); font-size: .93rem; }

/* ---------- faq ---------- */
.faq { padding-block: 34px 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.3rem; color: var(--ink-3); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 18px 16px; color: var(--ink-2); font-size: .93rem; }

/* ---------- final cta ---------- */
.final { margin: 36px 0 0; background: var(--navy); color: #fff; border-radius: 24px; padding: 34px 22px; text-align: center; position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 193, 33, .35), transparent 60%); top: -160px; right: -120px; pointer-events: none; }
.final h2 { font-family: var(--font-title); font-size: clamp(1.6rem, 6vw, 2.4rem); letter-spacing: -.02em; margin: 0 0 8px; position: relative; }
.final h2 em { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--yellow); }
.final p { color: #C9CEE4; margin: 0 0 20px; position: relative; }
.final .btn { max-width: 360px; margin: 0 auto; position: relative; }

/* ---------- desktop extension ---------- */
.ext { display: none; }

/* ---------- footer ---------- */
.ftr { padding-block: 30px 40px; text-align: center; color: var(--ink-3); font-size: .8rem; }
.ftr a { color: var(--ink-2); text-decoration: none; margin: 0 8px; }
.ftr p { margin: 8px auto 0; max-width: 48em; }

/* ---------- sheet (alert setup) ---------- */
.scrim { position: fixed; inset: 0; background: rgba(14, 19, 48, .55); backdrop-filter: blur(4px); z-index: 60; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .2s; }
.scrim.open { opacity: 1; pointer-events: auto; }
.sheet { background: #fff; width: 100%; max-width: 560px; border-radius: 22px 22px 0 0; padding: 14px 18px 24px; max-height: 92vh; overflow-y: auto; transform: translateY(24px); transition: transform .25s; box-shadow: 0 -10px 40px rgba(0, 0, 0, .2); }
.scrim.open .sheet { transform: translateY(0); }
.grab { width: 42px; height: 5px; border-radius: 3px; background: var(--line); margin: 0 auto 12px; }
.sheet-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.sheet-head h3 { margin: 0; font-family: var(--font-title); font-size: 1.15rem; }
.x { border: 0; background: var(--paper); width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; color: var(--ink-2); }
.prod { display: flex; gap: 12px; align-items: center; background: var(--paper); border-radius: 14px; padding: 10px; margin-bottom: 14px; }
.prod .pi { width: 64px; height: 64px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid var(--line); }
.prod .pi img { max-width: 90%; max-height: 90%; object-fit: contain; }
.prod .pi.pulse { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.btn:disabled { opacity: .55; cursor: wait; }
.prod .pt { font-size: .88rem; font-weight: 600; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.prod .pp { font-size: .95rem; font-weight: 800; color: var(--green); margin-top: 2px; }
/* No price to show: an explanation, not a headline number. */
.prod .pp.unknown { font-size: .78rem; font-weight: 600; color: var(--ink-3); line-height: 1.35; }
.lbl-s { font-size: .8rem; font-weight: 700; color: var(--ink-2); margin: 12px 0 8px; display: block; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: .86rem; font-weight: 600; cursor: pointer; color: var(--ink-2); transition: all .15s; }
.chip.on { border-color: var(--navy); background: var(--navy); color: #fff; }
/* "Below a price" is switched off when we could not read a current price. */
.chip:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.field.sm input { height: 48px; font-size: .95rem; }
.chan { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chan .chip { text-align: center; }
.sheet .hidden { display: none; }
.chk { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--ink-2); margin-top: 12px; }
.chk input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--navy); }
.chk a { color: var(--ink); }
.ok { text-align: center; padding: 20px 6px 8px; }
.ok .ic { width: 72px; height: 72px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.ok h3 { font-family: var(--font-title); margin: 0 0 6px; font-size: 1.3rem; }
.ok p { color: var(--ink-2); margin: 0 0 16px; font-size: .95rem; }
.ok #ok-more { margin-top: 8px; }

/* ---------- my watch list (Doron 20/8) ---------- */
.mine { padding-block: 8px 4px; }
.mine.hidden { display: none; }
.mine-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px; max-width: 560px; margin: 0 auto; }
.mine-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mine-head h2 { font-family: var(--font-title); font-size: 1.25rem; margin: 0; }
.mine-count { background: var(--green-bg); color: var(--green); font-size: .75rem; font-weight: 800; border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.mine .sub { margin: 6px 0 14px; font-size: .9rem; color: var(--ink-2); }
.mine-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mine-item { display: flex; gap: 12px; align-items: center; background: var(--paper); border-radius: 14px; padding: 10px; }
.mine-item .pi { width: 56px; height: 56px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.mine-item .pi img { max-width: 90%; max-height: 90%; object-fit: contain; }
.mine-item .mi-b { min-width: 0; flex: 1; }
.mine-item .mi-t { font-size: .88rem; font-weight: 600; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.mine-item .mi-m { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 5px; }
.mine-item .mi-p { font-size: .9rem; font-weight: 800; color: var(--ink); direction: ltr; }
.mi-tag { font-size: .72rem; font-weight: 700; border-radius: 999px; padding: 2px 9px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.mi-tag.live { background: var(--green-bg); border-color: transparent; color: var(--green); }
.mi-tag.wait { background: #FFF4CC; border-color: transparent; color: #8A6300; }
.mine-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.mine-actions .btn { margin-top: 0; }
.mine-actions .hidden { display: none; }
.mine-note { font-size: .78rem; color: var(--ink-3); margin: 10px 0 0; text-align: center; }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px; font-size: .9rem; font-weight: 600; opacity: 0; transition: all .25s; z-index: 80; max-width: 92vw; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: var(--red); }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .hero { padding-block: 64px 36px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .card { flex-basis: 200px; }
  .card .img { height: 150px; }
  .scrim { align-items: center; }
  .sheet { border-radius: 22px; }
  .marquee { margin: 0; border-radius: var(--radius); }
  .track { padding-left: 0; }
}
@media (min-width: 900px) {
  .ext { display: block; margin-top: 34px; }
  .ext-card { display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); }
  .ext-card .ic { flex: 0 0 56px; height: 56px; border-radius: 14px; background: #FFF4CC; display: flex; align-items: center; justify-content: center; }
  .ext-card h3 { margin: 0 0 4px; font-family: var(--font-title); font-size: 1.15rem; }
  .ext-card p { margin: 0; color: var(--ink-2); font-size: .93rem; }
}

/* ---------- top extension promo card (Doron 25/8) ---------- */
.ext-promo {
  max-width: 560px;
  margin: 20px auto 0;
  width: 100%;
}
.ext-promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #FFFDF2; /* Soft warm yellow tint */
  border: 1px solid #FFE4A0;
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.ext-promo-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFF0C2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ext-promo-text {
  flex: 1;
}
.ext-promo-text h3 {
  margin: 0 0 4px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.ext-promo-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.ext-promo-card .btn {
  height: 40px;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 0 16px;
  width: 100%;
  margin-top: 4px;
}
@media (min-width: 640px) {
  .ext-promo-card {
    flex-direction: row;
    text-align: start;
    padding: 16px 20px;
    gap: 16px;
  }
  .ext-promo-card .btn {
    width: auto;
    flex-shrink: 0;
    margin-top: 0;
    white-space: nowrap;
  }
}

/* ---------- Hebrew / RTL (Doron 20/8: full Hebrew experience) ---------- */
html[dir="rtl"] { --font: 'Heebo', 'Inter', system-ui, sans-serif; --font-title: 'Rubik', 'Heebo', system-ui, sans-serif; }
html[dir="rtl"] .action { text-align: right; }
/* The drops rail keeps LTR geometry — same right-to-left motion, badges and
   prices stay put, product titles are English either way. */
html[dir="rtl"] .marquee, html[dir="rtl"] .track { direction: ltr; }
html[dir="rtl"] .card { direction: ltr; text-align: left; }
html[dir="rtl"] .card .cta { direction: rtl; }
/* Technical inputs stay LTR so links, emails and +972 numbers read correctly */
html[dir="rtl"] #url, html[dir="rtl"] #email, html[dir="rtl"] #phone,
html[dir="rtl"] #l-email, html[dir="rtl"] #l-pass,
html[dir="rtl"] #price, html[dir="rtl"] #pct { direction: ltr; text-align: left; }

/* ---------- Doron's review, 20/8 ---------- */
/* 1. The Log in button sat flush against the phone's top edge. */
.hdr .wrap { height: auto; min-height: 64px; padding-top: calc(12px + env(safe-area-inset-top, 0px)); padding-bottom: 10px; }

/* 2. "בחינם" / "Free": same font as the rest of the line (was serif italic),
   green, with a slow glow. One pulse per 2.4s ≈ 0.42Hz — far below the WCAG
   2.3.1 three-flashes-per-second limit, and it is a glow rather than a
   visibility blink, so the text is legible at every point in the cycle.
   Motion stops for the accessibility widget and for OS reduced-motion. */
.pill b, .lead b {
  font-family: inherit; font-style: normal; font-weight: 800;
  color: var(--green);
  animation: ww-free-glow 2.4s ease-in-out infinite;
}
@keyframes ww-free-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(21, 168, 92, 0); }
  50%      { text-shadow: 0 0 9px rgba(21, 168, 92, .8), 0 0 20px rgba(21, 168, 92, .4); }
}
html.a11y-noanim .pill b, html.a11y-noanim .lead b { animation: none; }
@media (prefers-reduced-motion: reduce) { .pill b, .lead b { animation: none; } }

/* 3. Hebrew has no real italics — the serif <em> rendered as a slanted fake.
   In RTL the accent word keeps the page font and is coloured instead. */
html[dir="rtl"] .h1 em, html[dir="rtl"] .final h2 em {
  font-family: inherit; font-style: normal; color: var(--green);
}
