/* ============================================================
   MOBILE LANDING — fully isolated from styles.css.
   Every rule is scoped under .ml-* so nothing here can ever
   collide with or override the existing desktop stylesheet.
   Brand tokens (--accent, --ink, --bg, --font-sans, etc.) are
   REUSED from styles.css's :root — this is intentional reuse of
   the single source of truth for brand consistency, not a
   duplication of desktop layout code.
   ============================================================ */

.ml-root {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  width: 100%;
}
.ml-root * { box-sizing: border-box; }

/* ---------- reveal-on-scroll (self-contained, mirrors desktop's data-reveal) ---------- */
.ml-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.ml-reveal.ml-in { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.ml-nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(246,247,249,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ml-brand { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.ml-brand-mark { width: 26px; height: 26px; border-radius: 8px; background: url('/favicon.png') center/cover no-repeat; flex-shrink: 0; }
.ml-menu-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2);
  background: var(--bg-elev); display: flex; align-items: center; justify-content: center;
  color: var(--ink); flex-shrink: 0;
}
.ml-menu-overlay {
  position: fixed; inset: 0; z-index: 50; background: rgba(10,10,10,0.4); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.ml-menu-overlay.ml-open { opacity: 1; pointer-events: auto; }
.ml-menu-sheet {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 51; width: min(84vw, 340px);
  background: var(--bg-elev); box-shadow: -20px 0 60px -20px rgba(0,0,0,0.35);
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.ml-menu-sheet.ml-open { transform: none; }
.ml-menu-close { align-self: flex-end; width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-2); background: var(--bg); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.ml-menu-link { padding: 15px 6px; font-size: 17px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.ml-menu-cta { margin-top: 16px; }

/* ---------- generic section rhythm ---------- */
.ml-section { padding: 56px 20px; }
.ml-section + .ml-section { padding-top: 0; }
.ml-eyebrow {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); border: 1px solid color-mix(in oklab, var(--accent) 24%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
.ml-eyebrow .ml-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.ml-h1 { font-size: 34px; line-height: 1.12; letter-spacing: -0.02em; font-weight: 600; margin: 16px 0 0; }
.ml-h2 { font-size: 26px; line-height: 1.18; letter-spacing: -0.02em; font-weight: 600; margin: 14px 0 0; }
.ml-lead { font-size: 16px; line-height: 1.55; color: var(--ink-3); margin: 12px 0 0; }

/* ---------- buttons — touch-friendly, min 48px tall ---------- */
.ml-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 52px; border-radius: 14px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; padding: 0;
}
.ml-btn-primary { background: var(--ink); color: var(--bg-elev); }
.ml-btn-accent { background: var(--accent); color: white; }
.ml-btn-ghost { background: transparent; color: var(--ink-3); border: 1px solid var(--line-2); }

/* ---------- hero ---------- */
.ml-hero { padding-top: 40px; }
.ml-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }

/* ---------- hero visual — composed static "snapshot", not a live demo ---------- */
.ml-hv { position: relative; margin-top: 44px; padding: 8px 14px 30px; }
.ml-hv-glow {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 320px; height: 220px; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--accent) 38%, transparent), transparent 70%);
  filter: blur(10px); z-index: 0; pointer-events: none;
}
.ml-hv-main {
  position: relative; z-index: 1;
  background: var(--bg-elev); border: 1px solid var(--line-2); border-radius: 18px;
  box-shadow: 0 30px 60px -24px rgba(10,10,10,0.22);
  padding: 20px 20px 18px;
}
.ml-hv-main-top { display: flex; align-items: center; gap: 11px; }
.ml-hv-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #6d54c7, #4a3a8c); color: white;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
}
.ml-hv-who { flex: 1; min-width: 0; }
.ml-hv-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.ml-hv-role { font-size: 11.5px; color: var(--ink-4); margin-top: 1px; }
.ml-hv-badge {
  display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px; background: #e6f4ea; color: #057642; flex-shrink: 0;
}
.ml-hv-dot { width: 5px; height: 5px; border-radius: 50%; background: #057642; }
.ml-hv-main-body { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.ml-hv-line { height: 8px; border-radius: 4px; background: var(--bg-soft); }
.ml-hv-attach {
  display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); font-weight: 500;
}
.ml-hv-pdf {
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono);
  font-size: 9px; font-weight: 700; color: #fff; background: #d93025; border-radius: 4px; padding: 3px 5px;
}
.ml-hv-float {
  position: absolute; z-index: 2; background: var(--bg-elev); border: 1px solid var(--line-2);
  border-radius: 14px; box-shadow: 0 18px 40px -16px rgba(10,10,10,0.28);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
}
.ml-hv-float-1 { top: -14px; left: 6px; flex-direction: column; align-items: flex-start; gap: 2px; transform: rotate(-4deg); }
.ml-hv-float-num { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.ml-hv-float-lbl { font-size: 10.5px; color: var(--ink-4); font-family: var(--font-mono); }
.ml-hv-float-2 { bottom: 6px; right: 4px; transform: rotate(3deg); max-width: 66%; }
.ml-hv-float-ico {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.ml-hv-float-title { font-size: 12.5px; font-weight: 600; }
.ml-hv-float-sub { font-size: 11px; color: var(--ink-4); margin-top: 1px; }

/* ---------- benefits — horizontal snap carousel, premium mobile pattern ---------- */
.ml-bcarousel {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 20px 8px; margin: 24px -20px 0;
  -webkit-overflow-scrolling: touch;
}
.ml-bcarousel::-webkit-scrollbar { display: none; }
.ml-bcard {
  scroll-snap-align: start; flex: 0 0 78%; max-width: 320px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.ml-bcard-ico {
  width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ml-bcard h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.ml-bcard p { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin: 0; }
.ml-bdots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.ml-bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); transition: background .2s ease, width .2s ease; }
.ml-bdot.ml-active { background: var(--accent); width: 18px; border-radius: 4px; }

/* ---------- how it works — static step-card carousel (same pattern as benefits) ---------- */
.ml-hiw-carousel {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 20px 8px; margin: 20px -20px 0;
  -webkit-overflow-scrolling: touch;
}
.ml-hiw-carousel::-webkit-scrollbar { display: none; }
.ml-sv-card {
  scroll-snap-align: start; flex: 0 0 80%; max-width: 320px; position: relative;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px;
}
.ml-sv-num { font-size: 11px; font-family: var(--font-mono); color: var(--ink-4); letter-spacing: 0.06em; margin-top: 4px; }
.ml-sv-card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.ml-sv-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin: 0; }

/* mini mockup frame shared by all step visuals */
.ml-sv-frame {
  height: 140px; border-radius: 12px; background: #f3f2ef; border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
}
.ml-sv-tall { height: 170px; }
@keyframes mlSpin { to { transform: rotate(360deg); } }
.ml-sv-avatar-sm { width: 30px; height: 30px; border-radius: 50%; color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #f3f2ef; }
.ml-sv-avatar-sm2 { margin-left: -10px; }
.ml-sv-center { align-items: center; justify-content: center; gap: 10px; padding: 0 16px; }
.ml-sv-dots { display: flex; gap: 4px; padding: 8px 10px; background: linear-gradient(180deg,#fafaf9,#f3f2ee); border-bottom: 1px solid var(--line); }
.ml-sv-dots span { width: 7px; height: 7px; border-radius: 50%; background: #e2dfd8; }
.ml-sv-dots span:nth-child(1) { background: #ff6058; }
.ml-sv-dots span:nth-child(2) { background: #ffbe2e; }
.ml-sv-dots span:nth-child(3) { background: #28c941; }

/* shared: pulsing ring annotation on a key element */
.ml-sv-annotated { position: relative; }
.ml-sv-ring {
  position: absolute; inset: -3px; border-radius: 12px; border: 2px solid var(--accent);
  animation: mlRingPulse 1.8s ease-out infinite; pointer-events: none;
}
@keyframes mlRingPulse { 0% { opacity: .9; transform: scale(1); } 100% { opacity: 0; transform: scale(1.04); } }

/* step 0 — LinkedIn job list */
.ml-sv-li-top { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: #fff; border-bottom: 1px solid var(--line); }
.ml-sv-li-logo { width: 20px; height: 20px; border-radius: 4px; background: #0a66c2; color: white; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ml-sv-li-search { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--ink-3); background: var(--bg-soft); border-radius: 6px; padding: 5px 8px; flex: 1; }
.ml-sv-li-chips { display: flex; gap: 5px; padding: 6px 10px; background: #fff; border-bottom: 1px solid var(--line); }
.ml-sv-li-chip { font-size: 9.5px; color: var(--ink-3); background: var(--bg-soft); border-radius: 999px; padding: 3px 8px; }
.ml-sv-li-card { display: flex; align-items: center; gap: 9px; background: #fff; padding: 9px 10px; margin: 8px 10px 0; border-radius: 9px; border: 1px solid var(--line); }
.ml-sv-li-card.ml-sv-dim { opacity: 0.45; margin-top: 6px; }
.ml-sv-li-cardlogo { width: 26px; height: 26px; border-radius: 6px; background: #6d54c7; color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-sv-li-cardtext { min-width: 0; }
.ml-sv-li-cardtitle { font-size: 11.5px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ml-sv-li-cardco { font-size: 10px; color: var(--ink-4); margin-top: 1px; }

/* step 1 — detection: arrow + pulsing pin */
.ml-sv-arrow { position: absolute; right: 8px; top: 42px; width: 110px; height: 40px; }
.ml-sv-pin-wrap { position: absolute; right: 14px; bottom: 14px; }
.ml-sv-pin-pulse {
  position: absolute; inset: -6px; border-radius: 999px; background: color-mix(in oklab, var(--accent) 40%, transparent);
  animation: mlPinPulse 1.5s ease-out infinite;
}
@keyframes mlPinPulse { 0% { opacity: .7; transform: scale(0.8); } 100% { opacity: 0; transform: scale(1.6); } }
.ml-sv-pin { position: relative; display: flex; align-items: center; gap: 5px; background: var(--ink); color: white; font-size: 10.5px; font-weight: 600; padding: 6px 10px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(0,0,0,0.4); }
.ml-sv-pin-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* shared panel chrome — steps 2, 3 */
.ml-sv-panel-head { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; padding: 9px 12px; background: #fff; border-bottom: 1px solid var(--line); }
.ml-sv-panel-logo { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.ml-sv-panel-job { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--ink-3); padding: 7px 12px; background: var(--accent-soft); }

/* step 2 — finding hiring managers */
.ml-sv-find-list { display: flex; flex-direction: column; gap: 6px; padding: 8px 12px; background: #fff; flex: 1; }
.ml-sv-find-row { display: flex; align-items: center; gap: 8px; }
.ml-sv-find-check { width: 17px; height: 17px; border-radius: 50%; background: #e6f4ea; color: #057642; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-sv-find-name { font-size: 11px; font-weight: 600; }
.ml-sv-find-role { font-size: 9.5px; color: var(--ink-4); }
.ml-sv-dimtext { color: var(--ink-4); font-weight: 400; }
.ml-sv-find-spin { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--line-2); border-top-color: var(--accent); flex-shrink: 0; animation: mlSpin .8s linear infinite; }

/* step 3 — drafting */
.ml-sv-ai-badge { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 7px; border-radius: 999px; }
.ml-sv-draft { background: #fff; padding: 9px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ml-sv-draft-to { font-size: 9.5px; color: var(--ink-4); }
.ml-sv-draft-subj { font-size: 11px; font-weight: 600; }
.ml-sv-draft-line { height: 6px; border-radius: 3px; background: var(--bg-soft); }
.ml-sv-draft-line.ml-sv-typing { background: var(--accent-soft); animation: mlTypeFade 1.2s ease-in-out infinite; }
@keyframes mlTypeFade { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.ml-sv-personalizing { font-size: 10px; color: var(--accent-ink); background: var(--accent-soft); padding: 6px 12px; font-weight: 600; }

/* step 4 — review */
.ml-sv-review { background: #fff; padding: 12px 14px; flex: 1; position: relative; }
.ml-sv-review-row { display: flex; align-items: center; }
.ml-sv-avatar-xs { width: 22px; height: 22px; font-size: 10px; border: 2px solid #fff; }
.ml-sv-review-names { font-size: 10.5px; color: var(--ink-3); margin-left: 8px; }
.ml-sv-review-attach { display: flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 10.5px; color: var(--ink-3); font-weight: 500; }
.ml-sv-eye-badge { position: absolute; top: 10px; right: 12px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }

/* step 0 — chrome web store install */
.ml-sv-cws-top { display: flex; align-items: center; gap: 5px; padding: 7px 10px; background: linear-gradient(180deg,#fafaf9,#f3f2ee); border-bottom: 1px solid var(--line); }
.ml-sv-cws-dot { width: 7px; height: 7px; border-radius: 50%; background: #e2dfd8; }
.ml-sv-cws-dot:nth-child(1) { background: #ff6058; }
.ml-sv-cws-dot:nth-child(2) { background: #ffbe2e; }
.ml-sv-cws-dot:nth-child(3) { background: #28c941; }
.ml-sv-cws-url { font-size: 9.5px; color: var(--ink-4); margin-left: 6px; font-family: var(--font-mono); }
.ml-sv-cws-body { flex: 1; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px; }
.ml-sv-cws-icon { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.ml-sv-cws-name { font-size: 13px; font-weight: 700; margin-top: 2px; }
.ml-sv-cws-sub { font-size: 10px; color: var(--ink-4); margin-top: -3px; }
.ml-sv-cws-stars { display: flex; align-items: center; gap: 2px; color: #ffbe2e; margin-top: 1px; }
.ml-sv-cws-stars span { font-size: 10px; color: var(--ink-4); margin-left: 4px; font-family: var(--font-mono); }
.ml-sv-cws-btn { margin-top: 5px; display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: white; background: #057642; padding: 7px 14px; border-radius: 8px; }

/* step 1 — enroll button highlighted */
.ml-sv-enroll-panel { display: flex; align-items: center; gap: 8px; background: var(--ink); padding: 9px 12px; margin-top: auto; }
.ml-sv-enroll-label { font-size: 10.5px; color: rgba(255,255,255,0.55); flex: 1; }
.ml-sv-enroll-btn { position: relative; font-size: 11px; font-weight: 600; color: white; background: var(--accent); padding: 6px 16px; border-radius: 8px; border: none; }

/* step 2 — compact found-contacts list above the draft */
.ml-sv-find-compact { padding: 8px 12px 6px; gap: 5px; }
.ml-sv-find-compact .ml-sv-find-name { font-size: 10.5px; }

/* step 3 — delivered tag + gmail tag */
.ml-sv-delivered-tag { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 700; color: #057642; background: #e6f4ea; padding: 3px 8px; border-radius: 999px; }
.ml-sv-gmail-tag { font-size: 10px; color: var(--ink-4); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }

/* step 4 — outcome: reply notification + reply-rate comparison */
.ml-sv-outcome { flex: 1; display: flex; flex-direction: column; background: #fff; }
.ml-sv-outcome-notif { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.ml-sv-outcome-ico { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-sv-outcome-title { font-size: 11px; font-weight: 600; }
.ml-sv-outcome-sub { font-size: 10px; color: var(--ink-4); margin-top: 1px; font-style: italic; }
.ml-sv-outcome-tag { margin-left: auto; font-size: 9.5px; font-weight: 700; color: #1a56db; background: #e8f0ff; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.ml-sv-outcome-bars { flex: 1; display: flex; align-items: flex-end; justify-content: center; gap: 20px; padding: 10px 12px 6px; position: relative; }
.ml-sv-outcome-barcol { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 52px; gap: 5px; }
.ml-sv-outcome-bar { width: 26px; border-radius: 5px 5px 0 0; background: var(--line-2); }
.ml-sv-outcome-barlead { background: var(--accent); }
.ml-sv-outcome-barcol label { font-size: 9px; color: var(--ink-4); }
.ml-sv-outcome-caption { position: absolute; top: 6px; right: 12px; font-size: 9px; color: var(--ink-4); font-family: var(--font-mono); }

/* ---------- product showcase — real dashboard app-shell mockup ---------- */
.ml-dash-mock {
  display: flex; margin-top: 20px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: 0 24px 50px -22px rgba(10,10,10,0.22);
  min-height: 260px;
}
.ml-dash-mock-side { width: 92px; flex-shrink: 0; background: var(--bg-elev); border-right: 1px solid var(--line); padding: 14px 8px; display: flex; flex-direction: column; gap: 3px; }
.ml-dash-mock-brand { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 0 4px; margin-bottom: 10px; }
.ml-dash-mock-logo { width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
.ml-dash-mock-nav { display: flex; align-items: center; gap: 6px; font-size: 9.5px; color: var(--ink-3); padding: 6px 6px; border-radius: 6px; }
.ml-dash-mock-nav-active { background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.ml-dash-mock-main { flex: 1; min-width: 0; background: var(--bg); padding: 14px 12px; }
.ml-dash-mock-title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.ml-dash-mock-stats { display: flex; gap: 6px; margin-bottom: 10px; }
.ml-dash-mock-stat { flex: 1; min-width: 0; background: var(--bg-elev); border: 1px solid var(--line); border-radius: 9px; padding: 7px 8px; }
.ml-dash-mock-stat-lead { background: var(--accent-soft); border-color: color-mix(in oklab, var(--accent) 24%, transparent); }
.ml-dash-mock-statlbl { display: flex; align-items: center; gap: 3px; font-size: 7.5px; font-weight: 600; color: var(--ink-4); font-family: var(--font-mono); white-space: nowrap; overflow: hidden; }
.ml-dash-mock-statnum { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.ml-dash-mock-table { display: flex; flex-direction: column; gap: 6px; }
.ml-dash-mock-row { display: flex; align-items: center; gap: 7px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: 8px; padding: 7px 8px; }
.ml-dash-mock-rowlogo { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 9px; flex-shrink: 0; }
.ml-dash-mock-rowinfo { flex: 1; min-width: 0; }
.ml-dash-mock-rowco { font-size: 10.5px; font-weight: 600; }
.ml-dash-mock-rowrole { font-size: 8.5px; color: var(--ink-4); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ml-dash-mock-rowstatus { font-size: 8px; font-weight: 700; padding: 3px 6px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }


/* ---------- pricing — featured plan first ---------- */
.ml-price-stack { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.ml-price-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.ml-price-card.ml-featured { background: var(--ink); color: #fafafa; border-color: var(--ink); }
.ml-price-card.ml-featured .ml-price-sub,
.ml-price-card.ml-featured .ml-price-name { color: rgba(255,255,255,0.65); }
.ml-price-tag { position: absolute; top: 18px; right: 18px; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--accent); color: white; font-family: var(--font-mono); font-weight: 600; }
.ml-price-name { font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); }
.ml-price-amt { font-size: 42px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-top: 6px; }
.ml-price-amt .ml-currency { font-size: 19px; vertical-align: 16px; margin-right: 2px; opacity: 0.7; }
.ml-price-amt .ml-per { font-size: 13px; opacity: 0.6; margin-left: 6px; font-weight: 400; }
.ml-price-sub { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }
.ml-price-feats { display: flex; flex-direction: column; gap: 9px; }
.ml-price-feat { display: flex; gap: 9px; font-size: 14px; align-items: flex-start; }
.ml-price-check { width: 17px; height: 17px; border-radius: 50%; flex: 0 0 auto; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ml-price-card.ml-featured .ml-price-check { background: rgba(255,255,255,0.15); color: white; }

/* ---------- final CTA ---------- */
.ml-final { background: var(--ink); border-radius: 24px; padding: 40px 24px; margin: 0 20px; text-align: center; }
.ml-final .ml-h2 { color: #fafafa; }
.ml-final .ml-lead { color: rgba(245,245,244,0.62); }
.ml-final .ml-hero-cta { margin-top: 24px; }
.ml-final-note { font-size: 11.5px; color: rgba(245,245,244,0.45); font-family: var(--font-mono); margin-top: 18px; }

/* ---------- footer ---------- */
.ml-foot { padding: 40px 20px 32px; }
.ml-foot-desc { font-size: 13px; color: var(--ink-4); margin-top: 8px; }
.ml-foot-links { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 22px; }
.ml-foot-links a { font-size: 13.5px; color: var(--ink-3); text-decoration: none; }
.ml-foot-copy { font-size: 12px; color: var(--ink-4); font-family: var(--font-mono); margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ---------- sign-in gate (mobile only) — premium "not on mobile" screen ---------- */
.ml-signgate-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: mlGateFadeIn .22s ease;
}
@keyframes mlGateFadeIn { from { opacity: 0; } to { opacity: 1; } }
.ml-signgate-card {
  width: 100%; max-width: 380px;
  background: var(--bg-elev); border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.45);
  padding: 36px 28px 28px; text-align: center;
  animation: mlGateUp .28s cubic-bezier(.22,1,.36,1);
}
@keyframes mlGateUp { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: none; } }

.ml-signgate-illo { position: relative; height: 196px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.ml-signgate-glow-1 {
  position: absolute; width: 250px; height: 180px; border-radius: 50%;
  top: -18px; left: 10%;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--accent) 40%, transparent), transparent 70%);
  filter: blur(16px);
}
.ml-signgate-glow-2 {
  position: absolute; width: 170px; height: 150px; border-radius: 50%;
  bottom: -20px; right: 8%;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--accent-2) 32%, transparent), transparent 70%);
  filter: blur(18px);
}
.ml-signgate-particle { position: absolute; border-radius: 50%; background: var(--accent); opacity: 0.35; animation: mlParticleFloat 4.5s ease-in-out infinite; }
.ml-signgate-p1 { width: 5px; height: 5px; top: 14%; left: 12%; animation-delay: 0s; }
.ml-signgate-p2 { width: 4px; height: 4px; top: 68%; left: 20%; animation-delay: 1.4s; opacity: 0.25; }
.ml-signgate-p3 { width: 4px; height: 4px; top: 22%; right: 16%; animation-delay: 2.6s; opacity: 0.3; }
@keyframes mlParticleFloat { 0%,100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(-8px); opacity: 0.55; } }
.ml-signgate-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 5px;
  background: var(--bg-elev); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 5px 10px 5px 6px; font-size: 10px; font-weight: 600; color: var(--ink-2);
  box-shadow: 0 10px 22px -10px rgba(10,10,10,0.3);
  animation: mlFloatBob 3.6s ease-in-out infinite;
}
.ml-signgate-float-1 { top: -6px; left: 2%; transform: rotate(-4deg); animation-delay: 0.2s; }
.ml-signgate-float-2 { bottom: 14px; left: -4px; transform: rotate(-3deg); animation-delay: 1.6s; }
.ml-signgate-float-3 { top: -6px; right: 0%; transform: rotate(4deg); animation-delay: 0.9s; white-space: nowrap; }
@keyframes mlFloatBob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-5px) rotate(-4deg); } }
.ml-signgate-float-tick { width: 15px; height: 15px; border-radius: 50%; background: #e6f4ea; color: #057642; display: flex; align-items: center; justify-content: center; }
.ml-signgate-float-live { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
.ml-signgate-float-cal { width: 15px; height: 15px; border-radius: 50%; background: #e8f0ff; color: #1a56db; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-signgate-laptop { position: relative; z-index: 1; transform: perspective(760px) rotateX(4deg); }
.ml-signgate-screen {
  width: 220px; height: 128px;
  background: linear-gradient(160deg, var(--bg-elev), var(--bg-soft));
  border: 3px solid var(--ink); border-bottom: none;
  border-radius: 12px 12px 2px 2px; overflow: hidden; position: relative;
  box-shadow: 0 24px 46px -18px rgba(10,10,10,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}
.ml-signgate-sweep {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 45%, transparent 60%);
  transform: translateX(-100%);
  animation: mlSweep 5s ease-in-out infinite;
}
@keyframes mlSweep { 0% { transform: translateX(-120%); } 35% { transform: translateX(120%); } 100% { transform: translateX(120%); } }
.ml-signgate-chrome { display: flex; align-items: center; gap: 4px; padding: 5px 7px; background: linear-gradient(180deg,#fafaf9,#f1f0ec); border-bottom: 1px solid var(--line); }
.ml-signgate-dot { width: 4.5px; height: 4.5px; border-radius: 50%; background: #d8d5cf; }
.ml-signgate-url { font-size: 6.5px; color: var(--ink-4); margin-left: 3px; font-family: var(--font-mono); }
.ml-signgate-li { display: flex; height: calc(100% - 24px); }
.ml-signgate-li-main { flex: 1.35; min-width: 0; background: #fff; padding: 6px 6px 0; display: flex; flex-direction: column; gap: 4px; }
.ml-signgate-li-top { display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.ml-signgate-li-logo { width: 12px; height: 12px; border-radius: 3px; background: #0a66c2; color: #fff; font-size: 6px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-signgate-li-search { flex: 1; height: 8px; border-radius: 4px; background: var(--bg-soft); }
.ml-signgate-li-job { display: flex; align-items: center; gap: 5px; padding: 4px 5px; border-radius: 5px; }
.ml-signgate-li-job-active { background: var(--accent-soft); }
.ml-signgate-li-joblogo { width: 14px; height: 14px; border-radius: 4px; background: #6d54c7; flex-shrink: 0; }
.ml-signgate-li-jobtext { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.ml-signgate-li-jobline { display: block; height: 4px; border-radius: 2px; background: var(--line-2); }
.ml-signgate-li-jobline.ml-signgate-li-sm { background: var(--bg-soft); height: 3px; }
.ml-signgate-connector { width: 14px; height: 100%; flex-shrink: 0; overflow: visible; }
.ml-signgate-connector path { animation: mlDashFlow 1.4s linear infinite; }
@keyframes mlDashFlow { to { stroke-dashoffset: -14; } }
.ml-signgate-li-panel {
  flex: 1; min-width: 0; background: var(--ink); padding: 7px 7px;
  display: flex; flex-direction: column; gap: 4px;
}
.ml-signgate-panel-head { display: flex; align-items: center; gap: 4px; margin-bottom: 1px; }
.ml-signgate-panel-icon { width: 11px; height: 11px; border-radius: 3.5px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
.ml-signgate-panel-label { font-size: 8px; font-weight: 700; color: #fff; flex: 1; }
.ml-signgate-panel-dot { width: 4px; height: 4px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,0.25); }
.ml-signgate-panel-line { display: block; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.14); }
.ml-signgate-panel-btn {
  margin-top: 2px; background: var(--accent); color: #fff; font-size: 6.5px; font-weight: 700;
  text-align: center; border-radius: 4px; padding: 3.5px 0;
}
.ml-signgate-hinge { width: 224px; height: 4px; margin: 0 auto; background: linear-gradient(90deg, var(--ink-3), var(--ink), var(--ink-3)); border-radius: 2px; }
.ml-signgate-base {
  width: 248px; height: 8px; margin: 0 auto;
  background: linear-gradient(180deg, var(--ink-3), var(--ink));
  border-radius: 0 0 6px 6px;
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0% 100%);
  box-shadow: 0 8px 18px -10px rgba(10,10,10,0.4);
}
.ml-signgate-text { font-size: 16px; line-height: 1.5; font-weight: 500; color: var(--ink); margin: 20px 0 24px; }
@media (prefers-reduced-motion: reduce) {
  .ml-signgate-particle, .ml-signgate-float, .ml-signgate-sweep, .ml-signgate-connector path {
    animation: none !important;
  }
}
