.spinner {
    display: none;
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 0.145em;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 0.65s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
}

.spinner.started {
    display: block;
    padding-left: 4px;
}

@keyframes spinner-pulse {
    0%   {box-shadow: 8px 0 #aaaaaa99, -8px 0 #aaaaaa00; background: #aaaaaa4c }
    15%  {box-shadow: 8px 0 #aaaaaa4c, -8px 0 #aaaaaa4c; background: #aaaaaa00 }
    30%  {box-shadow: 8px 0 #aaaaaa00, -8px 0 #aaaaaa99; }
    50%  {box-shadow: 8px 0 #aaaaaa66, -8px 0 #aaaaaaff; }
    65%  {box-shadow: 8px 0 #aaaaaab2, -8px 0 #aaaaaab2; background: #aaaaaaff }
    80%  {box-shadow: 8px 0 #aaaaaaff, -8px 0 #aaaaaa66; }
    100% {box-shadow: 8px 0 #aaaaaa99, -8px 0 #aaaaaa00; background: #aaaaaa4c }
}


/* no button outlines in Chrome--  */

.btn.focus,
.btn:focus,
.btn.active,
.btn.active:focus,
.btn:active.focus,
.btn:active:focus {
    outline: 0;
}

/* no up/down buttons for number fields */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}



/* Greyed out help text in selectize dropdowns (e.g. in "Add ntfy" form) */
.selectize-control .help {
    opacity: 0.6;
}

/* Hide caret to  mimic the standard <select> element */
.selectize-control.no-caret {
    caret-color: transparent;
}



/* Fix select dropdown in Chrome and dark mode  */
select.form-control {
    background-color: var(--panel-bg);
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius:2px
}
.h-60px {
  height: 60px !important;
}
.h-40px {
  height: 40px !important;
}
.badge.badge-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  min-width: 1.75rem;
  padding: 0 0.1rem;
  line-height: 0;
}
.badge.badge-circle {
  border-radius: 50%;
  padding: 0;
  min-width: unset;
  width: 1.75rem;
}
.badge.badge-lg.badge-circle {
  width: 2rem;
  height: 2rem;
}
.badge-success {
  color: #ffffff;
  background-color: #17C653;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}
#wizard {
    transition: opacity 0.3s ease-in-out;
}

.htmx-request #wizard-container {
    opacity: 0.5;
}

.htmx-settling #wizard-container {
    opacity: 1;
}

/* OUT animations */
@keyframes fadeOutLeft {
from { opacity: 1; transform: translateX(0); }
to   { opacity: 0; transform: translateX(-24px); }
}
@keyframes fadeOutRight {
from { opacity: 1; transform: translateX(0); }
to   { opacity: 0; transform: translateX(24px); }
}

/* IN animations */
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(24px); }
to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-24px); }
to   { opacity: 1; transform: translateX(0); }
}

/* Utility classes */
.wiz-out-left  { animation: fadeOutLeft  220ms ease both; }
.wiz-out-right { animation: fadeOutRight 220ms ease both; }
.wiz-in-left   { animation: fadeInLeft   260ms ease both; }
.wiz-in-right  { animation: fadeInRight  260ms ease both; }

/* Ensure toasts appear above the navbar */
.toast-container {
    position: fixed !important;
    z-index: 9999 !important;
}

/* ==================================================================
   myChecksAI landing page â€” complete stylesheet
   Drop into <link rel="stylesheet"> or paste inside a single <style> tag.
   Requires Bootstrap 5.3 + Bootstrap Icons + Google Fonts
   (Instrument Serif, Inter, JetBrains Mono) loaded separately.
   ================================================================== */

/* ==================================================================
   1. WEBPIXELS UTILITY SHIM + DESIGN TOKENS
   ================================================================== */
:root {
  --x-green: #1a7f4f;          /* sage primary, more sophisticated than #16a34a */
  --x-green-deep: #0f5a37;
  --x-green-soft: #e8f3ec;
  --mca-green: #1a7f4f;
  --ink: #1a1f2c;              /* warm near-black, not pure slate */
  --ink-soft: #2d3344;
  --muted: #6b7280;
  --muted-soft: #9aa1ad;
  --surface: #faf8f4;          /* warm cream, not cold white */
  --surface-2: #f3efe8;
  --surface-3: #ebe5da;
  --paper: #ffffff;
  --line: #e8e2d6;             /* warm border instead of cool gray */
  --line-soft: #f0ebe1;
  --accent: #c2410c;           /* terracotta accent for the rare callout */
  --accent-soft: #fdf3ed;
  --danger: #9f1239;           /* claret red instead of stop-sign red */
  --danger-soft: #fdf2f4;
  --gold: #b45309;             /* warm amber */
}
body { font-family: "Satoshi", "Inter", system-ui, sans-serif; color: var(--ink); background: var(--surface); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.mw-screen-xl { max-width: 1280px; }
.mw-screen-md { max-width: 720px; }
.mw-screen-lg { max-width: 960px; }
.ls-tight { letter-spacing: -.01em; }
.ls-tighter { letter-spacing: -.025em; }
.ls-tightest { letter-spacing: -.035em; }
.lh-xs { line-height: 1.02; }
.lh-sm { line-height: 1.2; }
.text-heading { color: var(--ink); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.font-monospace { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-feature-settings: "ss01", "cv11"; }
.serif { font-weight: 600; }
.card-elevated { border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(26,31,44,.03), 0 4px 12px -6px rgba(26,31,44,.06); border-radius: .9rem; background: var(--paper); }
.btn-dark { --bs-btn-bg: var(--ink); --bs-btn-border-color: var(--ink); --bs-btn-hover-bg: var(--ink-soft); --bs-btn-hover-border-color: var(--ink-soft); --bs-btn-color: var(--surface); }
.btn-neutral { --bs-btn-bg: var(--paper); --bs-btn-color: var(--ink); --bs-btn-border-color: var(--line); --bs-btn-hover-bg: var(--surface-2); --bs-btn-hover-border-color: var(--ink); }
.btn-action { --bs-btn-bg: var(--x-green); --bs-btn-color:#fff; --bs-btn-border-color: var(--x-green); --bs-btn-hover-bg: var(--x-green-deep); --bs-btn-hover-border-color: var(--x-green-deep); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 4px 14px -4px rgba(26,127,79,.4); font-weight: 600; }
.icon.icon-shape { display:inline-flex; align-items:center; justify-content:center; width:2.5rem; height:2.5rem; font-size:1.125rem; border-radius:.5rem; }
.vstack { display:flex; flex-direction:column; }
.bg-body-secondary { background-color: var(--surface-2) !important; }
.bg-body-tertiary { background-color: var(--surface-3) !important; }
.text-body-secondary { color: var(--muted) !important; }
.badge-md { font-size:.75rem; padding:.4em .75em; }
.py-16 { padding-top:6rem !important; padding-bottom:6rem !important; }
.py-20 { padding-top:7rem !important; padding-bottom:7rem !important; }
.py-24 { padding-top:8rem !important; padding-bottom:8rem !important; }
@media (min-width:992px){ .py-lg-20{ padding-top:7rem !important; padding-bottom:7rem !important; } .py-lg-24{ padding-top:8rem !important; padding-bottom:8rem !important; } .px-lg-20{ padding-left:7rem !important; padding-right:7rem !important; } .g-lg-10 > *{ --bs-gutter-x:2.5rem; --bs-gutter-y:2.5rem; } .g-lg-16 > *{ --bs-gutter-x:4rem; --bs-gutter-y:4rem; } }
.mb-6 { margin-bottom:2rem !important; } .mt-6 { margin-top:2rem !important; } .mt-7 { margin-top:2.5rem !important; } .mt-8 { margin-top:3rem !important; }
.py-10 { padding-top:4rem !important; padding-bottom:4rem !important; }
.py-14 { padding-top:5rem !important; padding-bottom:5rem !important; }
.text-xl { font-size: 1.25rem; }
.fw-bolder { font-weight: 800; }
.rounded-4 { border-radius: 1rem !important; }

/* ==================================================================
   2. MCA-* COMPONENT STYLES (progress rows, report card, etc.)
   ================================================================== */
.mca-prog-step{display:flex;gap:.9rem;padding:.9rem 0;border-bottom:1px solid rgba(0,0,0,.06)}
.mca-prog-step:last-child{border-bottom:none}
.mca-step-dot{width:2rem;height:2rem;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;font-weight:700;font-size:.78rem;background:#f1f5f9;color:#64748b;border:1px solid #e2e8f0;position:relative}
.is-done .mca-step-dot{background:#16a34a;color:#fff;border-color:#16a34a}
.is-live .mca-step-dot{background:#fff;color:#0f172a;border-color:#0f172a;box-shadow:0 0 0 4px rgba(15,23,42,.08)}
.is-live .mca-step-dot::before{content:"";position:absolute;inset:-6px;border-radius:50%;border:2px solid #0f172a;opacity:.35;animation:mca-pulse 1.6s ease-out infinite}
@keyframes mca-pulse{0%{transform:scale(.85);opacity:.5}100%{transform:scale(1.25);opacity:0}}
.is-pending .mca-step-dot{background:#fff;color:#94a3b8;border-style:dashed}
.mca-step-body{flex:1;min-width:0}
.mca-step-title{font-weight:600;color:#0f172a;font-size:.92rem;display:flex;align-items:center;gap:.4rem;line-height:1.3;flex-wrap:wrap}
.mca-step-sub{font-size:.78rem;color:#64748b;margin-top:.2rem}
.mca-step-time{font-size:.72rem;color:#94a3b8;font-family:ui-monospace,Menlo,monospace;margin-left:auto;flex-shrink:0;padding-top:.15rem}
.mca-wa-preview{background:#e5ddd5;background-image:radial-gradient(rgba(255,255,255,.35) 1px,transparent 1px),radial-gradient(rgba(0,0,0,.04) 1px,transparent 1px);background-size:16px 16px;background-position:0 0,8px 8px;padding:1rem;border-radius:12px;display:flex;flex-direction:column;gap:.45rem}
.mca-wa-bubble{background:#fff;border-radius:8px;padding:.6rem .75rem .4rem;max-width:90%;box-shadow:0 1px 1px rgba(0,0,0,.08);position:relative;font-size:.86rem;line-height:1.45;color:#111b21}
.mca-wa-biz{align-self:flex-start}
.mca-wa-biz::before{content:"";position:absolute;left:-6px;top:0;border:6px solid transparent;border-right-color:#fff;border-top-color:#fff}
.mca-wa-user{background:#d9fdd3;align-self:flex-end}
.mca-wa-meta{font-size:.65rem;color:#667781;text-align:right;margin-top:.15rem;display:flex;gap:.3rem;justify-content:flex-end;align-items:center}
.mca-wa-meta .bi-check2-all{color:#53bdeb;font-size:.75rem}
.mca-wa-template{font-size:.65rem;font-weight:700;color:#008069;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.35rem;display:inline-flex;align-items:center;gap:.3rem}
.mca-wa-btns{display:flex;flex-direction:column;gap:.1rem;margin-top:.5rem;border-top:1px solid rgba(0,0,0,.08);padding-top:.35rem}
.mca-wa-btn{color:#027eb5;text-align:center;font-weight:500;padding:.45rem .5rem;font-size:.82rem;border-top:1px solid rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;gap:.35rem}
.mca-wa-btn:first-child{border-top:none}
.mca-wa-sender{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;padding:0 .25rem}
.mca-wa-avatar{width:2rem;height:2rem;border-radius:50%;background:#0f172a;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:.78rem;font-weight:700}
.mca-wa-name{font-size:.85rem;font-weight:600;color:#111b21}
.mca-wa-verified{color:#25d366;font-size:.85rem}
.mca-wa-biz-tag{font-size:.6rem;color:#667781;margin-left:.25rem;background:rgba(255,255,255,.6);padding:.05rem .35rem;border-radius:3px}
.mca-status-ring{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:50%;font-size:.85rem;flex-shrink:0}
.mca-status-ring.ok{background:rgba(22,163,74,.12);color:#16a34a}
.mca-status-ring.warn{background:rgba(245,158,11,.14);color:#d97706}
.mca-afford-bar{position:relative;height:.5rem;background:#f1f5f9;border-radius:999px;overflow:hidden}
.mca-afford-bar>span{display:block;height:100%;background:linear-gradient(90deg,#16a34a,#22c55e);border-radius:999px}
.mca-afford-ticks{display:flex;justify-content:space-between;font-size:.68rem;color:#94a3b8;font-family:ui-monospace,Menlo,monospace;margin-top:.25rem}
.mca-report-head{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);color:#fff;padding:1.25rem 1.5rem;border-radius:14px 14px 0 0}
.mca-verdict{display:inline-flex;align-items:center;gap:.5rem;background:rgba(26,127,79,.22);color:#86efac;border:1px solid rgba(134,239,172,.35);padding:.35rem .75rem;border-radius:999px;font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;font-family:"JetBrains Mono",monospace}

/* ==================================================================
   3. LANDING-PAGE POLISH (hero, trust bar, before/after, comparison, FAQ)
   ================================================================== */
/* Marquee announcement bar */
.mca-announce { background: var(--ink); color:rgba(255,255,255,.78); font-size:.74rem; padding:.55rem 1rem; text-align:center; font-family:"JetBrains Mono", ui-monospace, monospace; letter-spacing:.04em; border-bottom: 1px solid rgba(255,255,255,.06); }
.mca-announce strong { color:#fff; }
.mca-announce .dot { display:inline-block; width:.42rem; height:.42rem; border-radius:50%; background:#4ade80; margin-right:.5rem; vertical-align:middle; box-shadow: 0 0 0 3px rgba(74,222,128,.18); animation: mca-pulse 1.8s ease-out infinite; }

/* Nav */
.mca-nav { position: sticky; top:0; z-index:1030; background:rgba(250,248,244,.85); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.mca-nav a.nav-link { color: var(--ink-soft); font-weight: 500; font-size: .88rem; transition: color .15s; }
.mca-nav a.nav-link:hover { color: var(--x-green); }
.mca-brand { font-weight: 800; font-size: 1.1rem; letter-spacing: -.025em; color: var(--ink); text-decoration:none; display:inline-flex; align-items:center; gap:.6rem; }
.mca-brand .logo { height: 1.9rem; width: auto; display: block; }
.mca-brand.on-dark .logo { filter: invert(1) brightness(1.1); }

/* Hero */
.hero {
  position:relative; overflow:hidden;
  background: radial-gradient(1200px 600px at 15% -10%, rgba(22,163,74,.08), transparent 60%),
              radial-gradient(900px 600px at 100% 0%, rgba(14,165,233,.06), transparent 60%),
              #fafaf8;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.hero-grid::before, .hero-grid::after {
  content:""; position:absolute; pointer-events:none; opacity:.35;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid rgba(15,23,42,.08);
  padding: .4rem .8rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600; color: #334155;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.hero-eyebrow .pulse { width:.5rem; height:.5rem; border-radius:50%; background:#22c55e; box-shadow:0 0 0 3px rgba(34,197,94,.2); }

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero h1 .ital { color:#16a34a; font-weight: 800; }
.hero .lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color:#475569; max-width: 44ch; line-height: 1.55; }

.hero-bullets { display:flex; gap:1.25rem; flex-wrap:wrap; font-size:.85rem; color:#334155; }
.hero-bullets .bullet { display:inline-flex; align-items:center; gap:.4rem; font-weight:500; }
.hero-bullets i { color:#16a34a; }

/* Hero phone mock */
.phone-mock {
  width: 320px; max-width: 100%; margin: 0 auto;
  background: #111; border-radius: 36px; padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.35), 0 10px 25px -10px rgba(15,23,42,.25);
  position: relative;
}
.phone-mock::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; background: #000; border-radius: 99px; z-index: 2;
}
.phone-screen {
  background: #ece5dd; border-radius: 28px; overflow: hidden;
  min-height: 560px; display:flex; flex-direction:column;
}
.phone-status {
  background:#075e54; color:#fff; padding: 2.5rem .9rem .75rem;
  display:flex; align-items:center; gap:.5rem;
}
.phone-status .avatar{ width:2.2rem; height:2.2rem; border-radius:50%; background:#fff; color:#075e54; display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:.85rem; }
.phone-status .name{ font-weight:600; font-size:.9rem; display:flex; align-items:center; gap:.3rem; }
.phone-status .sub{ font-size:.7rem; opacity:.8; }
.phone-scroll {
  background:#e5ddd5; background-image:radial-gradient(rgba(255,255,255,.35) 1px,transparent 1px),radial-gradient(rgba(0,0,0,.04) 1px,transparent 1px); background-size:16px 16px; background-position:0 0,8px 8px;
  flex: 1; padding: .75rem; display:flex; flex-direction:column; gap:.5rem; overflow:hidden;
}

/* Stat strip */
.stat-strip { background: var(--ink); color: #fff; position:relative; overflow:hidden; }
.stat-strip::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 400px at 100% 50%, rgba(26,127,79,.15), transparent 60%); pointer-events:none; }
.stat-strip .stat-num { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing:-.025em; line-height:1; }
.stat-strip .stat-num.ital { font-weight: 800; color:#86efac; letter-spacing:-.02em; }
.stat-strip .stat-label { font-size:.72rem; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.1em; font-family: "JetBrains Mono", monospace; margin-top:.5rem; }

/* Section header component */
.sec-eyebrow { font-family: "JetBrains Mono", monospace; font-size: .7rem; color: var(--x-green); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.sec-eyebrow::before { content:""; width: 1.5rem; height: 1px; background: var(--x-green); }
.sec-title { font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700; letter-spacing:-.03em; line-height: 1.04; color: var(--ink); }
.sec-title .ital { font-weight: 700; color: var(--x-green); letter-spacing: -.025em; }
.sec-lede { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; max-width: 60ch; }

/* Problem / pain grid */
.pain-card { padding: 1.75rem; border-radius: 1rem; background: var(--paper); border:1px solid var(--line); height:100%; }
.pain-card .pain-time {  font-size: 2.75rem; color: var(--danger); letter-spacing:-.02em; line-height:1; font-weight:400;  }
.pain-card h4 { font-size:1.05rem; font-weight:700; margin:.6rem 0 .3rem; color:#0f172a; }
.pain-card p { font-size:.88rem; color:#64748b; margin:0; line-height:1.5; }

/* Pricing */
.price-table { background: var(--paper); border-radius: 1.25rem; overflow:hidden; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(26,31,44,.04), 0 12px 40px -16px rgba(26,31,44,.15); }
.price-col { padding: 2.25rem 1.75rem; border-right: 1px solid var(--line); position: relative; }
.price-col:last-child { border-right: none; }
.price-col.featured { background: linear-gradient(170deg, var(--ink) 0%, #232938 100%); color: #fff; }
.price-col.featured::before { content:""; position:absolute; inset:0; background: radial-gradient(400px 200px at 50% 0%, rgba(26,127,79,.18), transparent 70%); pointer-events:none; }
.price-col.featured .price-name, .price-col.featured .price-desc { color: #fff; }
.price-col.featured .price-desc { color: rgba(255,255,255,.7); }
.price-col.featured .feat-item { color: rgba(255,255,255,.85); }
.price-col.featured .feat-item i { color: #86efac; }
.price-col.featured .feat-item.muted { color: rgba(255,255,255,.45); }
.price-name { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--muted); font-family: "JetBrains Mono", monospace; }
.price-amount { font-size: 3rem; font-weight: 800; letter-spacing: -.035em; margin: .65rem 0 .15rem; line-height: 1; color: var(--ink); position: relative; }
.price-amount .period { font-size: .9rem; color:#94a3b8; font-weight: 500; margin-left:.2rem; }
.price-col.featured .price-amount, .price-col.featured .price-amount .period { color: #fff; }
.price-col.featured .price-amount .period { color: rgba(255,255,255,.5); }
.price-desc { font-size:.85rem; color:#64748b; margin-bottom:1.5rem; min-height: 2.5em; }
.feat-item { display:flex; align-items: flex-start; gap:.55rem; padding:.5rem 0; font-size:.88rem; color:#334155; border-top:1px solid rgba(15,23,42,.06); }
.feat-item i { color: #16a34a; margin-top:.2rem; flex-shrink:0; }
.feat-item.muted { color:#94a3b8; }
.feat-item.muted i { color:#cbd5e1; }
.price-col.featured .feat-item { border-top-color: rgba(255,255,255,.1); }
.price-ribbon { position:absolute; top:1.25rem; right:1.25rem; background:#4ade80; color:#052e16; font-size:.65rem; font-weight:700; padding:.3rem .65rem; border-radius:999px; letter-spacing:.1em; text-transform:uppercase; box-shadow: 0 2px 8px -2px rgba(74,222,128,.5); font-family: "JetBrains Mono", monospace; }

@media (max-width: 767.98px) {
  .price-col { border-right: none; border-bottom: 1px solid rgba(15,23,42,.08); }
  .price-col:last-child { border-bottom: none; }
}

/* Comparison panel â€” featured us column vs others */
.cmp-grid { background: var(--paper); border: 1px solid var(--line); border-radius: 1.25rem; overflow: hidden; box-shadow: 0 1px 2px rgba(26,31,44,.04), 0 16px 44px -22px rgba(26,31,44,.14); }
.cmp-grid-head { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.cmp-grid-head .col { padding: 1.5rem 1.25rem 1.35rem; font-family: "JetBrains Mono", monospace; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .35rem; }
.cmp-grid-head .col:first-child { background: transparent; }
.cmp-grid-head .col:last-child { border-right: none; }
.cmp-grid-head .col-sub { font-family: "Satoshi", "Inter", sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted-soft); }
.cmp-grid-head .col.is-us { background: var(--ink); color: #fff; position: relative; }
.cmp-grid-head .col.is-us::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 180px at 50% 100%, rgba(26,127,79,.22), transparent 70%); pointer-events: none; }
.cmp-grid-head .col.is-us .col-title { color: #fff; font-weight: 700; letter-spacing: .1em; display: inline-flex; align-items: center; gap: .5rem; }
.cmp-grid-head .col.is-us .col-title::before { content:""; width: .4rem; height: .4rem; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.2); }
.cmp-grid-head .col.is-us .col-sub { color: rgba(255,255,255,.55); }

.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row:nth-child(even) { background: var(--surface); }
.cmp-row .cell { padding: 1.1rem 1.25rem; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .2rem; justify-content: center; min-height: 4.25rem; }
.cmp-row .cell:last-child { border-right: none; }
.cmp-row .label { font-weight: 600; color: var(--ink); font-size: .95rem; letter-spacing: -.005em; }
.cmp-row .sub { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.cmp-row .cell.is-us { background: var(--x-green-soft); border-left: 1px solid rgba(26,127,79,.15); border-right: 1px solid rgba(26,127,79,.15); }
.cmp-row:last-child .cell.is-us { border-bottom-left-radius: 0; }

.cmp-row .value { font-size: .92rem; font-weight: 600; color: var(--ink-soft); line-height: 1.3; }
.cmp-row .cell.is-us .value { color: var(--x-green-deep); font-weight: 700; }
.cmp-row .value-hi { font-family: "Satoshi", "Inter", sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.cmp-row .cell.is-us .value-hi { color: var(--x-green-deep); }
.cmp-row .tick { display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--x-green); color: #fff; font-size: .85rem; }
.cmp-row .cross { display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: transparent; border: 1.5px solid var(--line); color: var(--muted-soft); font-size: .85rem; }
.cmp-row .partial { font-family: "JetBrains Mono", monospace; font-size: .68rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; padding: .25rem .55rem; background: rgba(180,83,9,.08); border-radius: 999px; align-self: flex-start; }
.cmp-row .manual { font-size: .82rem; color: var(--muted); font-style: normal; }

.cmp-foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; background: var(--surface-2); border-top: 1px solid var(--line); }
.cmp-foot .cell { padding: 1.1rem 1.25rem; border-right: 1px solid var(--line-soft); font-family: "JetBrains Mono", monospace; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.cmp-foot .cell:last-child { border-right: none; }
.cmp-foot .cell.is-us { background: var(--ink); color: #fff; }
.cmp-foot .cell.is-us .foot-price { display: block; font-family: "Satoshi", sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: #fff; text-transform: none; line-height: 1; margin-bottom: .2rem; }
.cmp-foot .cell.is-us .foot-note { color: rgba(255,255,255,.55); font-size: .65rem; }
.cmp-foot .cell .foot-price { display: block; font-family: "Satoshi", sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; text-transform: none; line-height: 1; margin-bottom: .2rem; }
.cmp-foot .cell .foot-note { font-size: .65rem; color: var(--muted); }

@media (max-width: 767.98px) {
  .cmp-grid-head, .cmp-row, .cmp-foot { grid-template-columns: 1fr 1fr; }
  .cmp-grid-head .col:nth-child(3), .cmp-grid-head .col:nth-child(4),
  .cmp-row .cell:nth-child(3), .cmp-row .cell:nth-child(4),
  .cmp-foot .cell:nth-child(3), .cmp-foot .cell:nth-child(4) { display: none; }
}

/* Testimonial */
.quote {  font-size: clamp(1.65rem, 2.8vw, 2.4rem); font-weight: 400; letter-spacing:-.02em; line-height: 1.25; color: var(--ink); font-style: normal; }
.quote-mark { font-size: 4.5rem; line-height: 0; color: var(--x-green); opacity: .25; display:inline-block; transform: translateY(16px); font-weight: 800; }

/* Logo row */
.logo-row { display: flex; flex-wrap: wrap; align-items:center; justify-content:center; gap: 2rem 3rem; }
.logo-row .brand { font-weight: 700; color:#94a3b8; font-size: 1rem; letter-spacing:-.02em; opacity: .9; }
.logo-row .brand .serif { font-weight: 600; }

/* FAQ */
.mca-faq-item { border-bottom: 1px solid var(--line); }
.mca-faq-item summary { list-style: none; cursor: pointer; padding: 1.6rem 0; display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; font-size:1.05rem; font-weight:600; color: var(--ink); transition: color .15s; } .mca-faq-item summary:hover { color: var(--x-green); }
.mca-faq-item summary::-webkit-details-marker { display:none; }
.mca-faq-item summary .chev { font-size: 1.2rem; color: var(--muted-soft); transition: transform .2s, color .2s; flex-shrink:0; }
.mca-faq-item[open] summary .chev { transform: rotate(45deg); color: var(--x-green); }
.mca-faq-answer { padding: 0 0 1.6rem; color: var(--ink-soft); font-size:.95rem; line-height:1.65; max-width:60ch; }

/* Final CTA */
.cta-section { background: linear-gradient(140deg, var(--ink) 0%, #232938 100%); color: #fff; border-radius: 1.5rem; overflow: hidden; position: relative; box-shadow: 0 24px 60px -20px rgba(26,31,44,.4); }
.cta-section::before { content:""; position: absolute; inset:0; background: radial-gradient(700px 350px at 75% 10%, rgba(26,127,79,.28), transparent 60%), radial-gradient(500px 250px at 10% 100%, rgba(180,83,9,.12), transparent 60%); pointer-events:none; }
.cta-section::after { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 32px 32px; pointer-events:none; opacity: .6; }
.cta-section h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); font-weight: 700; letter-spacing:-.03em; line-height:1.04; position: relative; }
.cta-section h2 .ital { font-weight: 700; color:#86efac; letter-spacing: -.02em; }

/* Footer */
.mca-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 4rem 0 2rem; border-top: 1px solid var(--ink-soft); }
.mca-footer a { color: rgba(255,255,255,.65); text-decoration: none; font-size:.88rem; display:block; padding:.25rem 0; }
.mca-footer a:hover { color: #fff; }
.mca-footer h5 { color:#fff; font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; margin-bottom:1rem; font-weight:600; font-family: "JetBrains Mono", monospace; }

/* Integration / trust bar
   Works with either markup variant:
   (A) .trust-item placed directly on a Bootstrap .col-* (original markup), or
   (B) .trust-item as a child inside a .col-* wrapper (updated markup). */
.trust-bar { padding: 3.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }

/* Shared inner look */
.trust-bar .trust-item { display:flex; align-items:center; gap:.65rem; color:#475569; font-size:.88rem; }
.trust-bar .trust-item .icon-shape { width:2.25rem; height:2.25rem; font-size:1rem; background: var(--paper); border: 1px solid var(--line); color: var(--ink); border-radius: .55rem; flex-shrink: 0; }
.trust-bar .trust-item > div { min-width: 0; }

/* Variant A: .trust-item IS the grid cell. Centre on desktop. */
.trust-bar [class*="col-"].trust-item { justify-content: center; }

/* Variant B: .trust-item is wrapped inside a .col-*. */
.trust-bar [class*="col-"] > .trust-item { margin: 0 auto; }

/* Mobile (<768px): items stack 2-per-row. Left-align inside a shared fixed
   inner width so both columns share the same icon left-edge.
   Uses !important to beat Bootstrap's .justify-content-center utility. */
@media (max-width: 767.98px) {
  .trust-bar [class*="col-"].trust-item,
  .trust-bar [class*="col-"] > .trust-item {
    justify-content: flex-start !important;
    width: 10.5rem;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .trust-bar .trust-item .fw-semibold { font-size: .82rem; }
  .trust-bar .trust-item .text-xs { font-size: .68rem; }
}

/* Before/after â€” twin journal cards */
.cmp-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  height: 100%;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.cmp-card::before {
  content: "";
  position: absolute;
  left: 0; top: 1.5rem; bottom: 1.5rem;
  width: 3px;
  border-radius: 3px;
}
.cmp-card.before::before { background: linear-gradient(180deg, #b08968 0%, #8a6c4f 100%); }
.cmp-card.after::before { background: linear-gradient(180deg, var(--x-green) 0%, var(--x-green-deep) 100%); }
.cmp-card.after { box-shadow: 0 1px 2px rgba(26,31,44,.04), 0 16px 40px -20px rgba(26,127,79,.18); border-color: rgba(26,127,79,.22); }

.cmp-card .cmp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cmp-card .cmp-label {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.cmp-card.after .cmp-label { color: var(--x-green-deep); }
.cmp-card .cmp-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink);
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  letter-spacing: .04em;
}
.cmp-card.after .cmp-meta {
  color: var(--x-green-deep);
  background: var(--x-green-soft);
  border-color: rgba(26,127,79,.22);
}

.cmp-card .cmp-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.25rem;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.cmp-card .cmp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.cmp-card .cmp-steps::before {
  content: "";
  position: absolute;
  left: 3.95rem;
  top: .4rem; bottom: .4rem;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
}
.cmp-card .cmp-steps li {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  align-items: baseline;
  gap: .9rem;
  padding: .45rem 0;
  position: relative;
}
.cmp-card .cmp-steps li .t {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: right;
  padding-right: 1.15rem;
  position: relative;
  white-space: nowrap;
}
.cmp-card .cmp-steps li .t::after {
  content: "";
  position: absolute;
  right: -.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--muted-soft);
  z-index: 1;
}
.cmp-card.after .cmp-steps li .t { color: var(--x-green-deep); }
.cmp-card.after .cmp-steps li .t::after { border-color: var(--x-green); background: var(--x-green); box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--x-green-soft); }
.cmp-card .cmp-steps li .d {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed; bottom: 0; left:0; right:0; z-index:1020;
  background:#fff; border-top:1px solid rgba(15,23,42,.08); padding:.6rem 1rem;
  box-shadow: 0 -6px 20px -8px rgba(15,23,42,.15);
  display:none;
}
@media (max-width: 767.98px){ .mobile-cta{ display:flex; gap:.5rem; } .mobile-cta .btn{ flex:1; } body{ padding-bottom: 4.5rem; } }

/* ==================================================================
   4. HERO STAT SWAPPER
   ================================================================== */
.hero-stat { background: var(--paper); border-color: var(--line) !important; transition: border-color .3s; min-height: 4.5rem; }
.hero-stat-icon { width:2.25rem; height:2.25rem; flex-shrink:0; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:.85rem; background: var(--x-green-soft); color: var(--x-green-deep); transition: background .3s, color .3s; }
.hero-stat-body { min-width:0; flex:1; position: relative; height: 2.4rem; overflow: hidden; }
.hero-stat-body .label { font-size: .68rem; color: var(--muted); font-family: "JetBrains Mono", monospace; text-transform: uppercase; letter-spacing: .1em; line-height: 1.2; height: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-stat-body .value { font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.2; margin-top: .2rem; letter-spacing: -.01em; height: 1.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-stat-body .swap { position: absolute; inset: 0; display: block; transition: opacity 1.1s ease, transform 1.1s ease; }
.hero-stat-body .swap.out { opacity: 0; transform: translateY(-4px); }
.hero-stat-body .swap.in  { opacity: 0; transform: translateY(4px); }
@media (prefers-reduced-motion: reduce) { .hero-stat-body .swap { transition: none; } }

/* ==================================================================
   5. HERO WRAP BACKGROUND
   ================================================================== */
.hero-wrap { position:relative; }
.hero-wrap::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 20% 20%, rgba(26,127,79,.04), transparent 40%), radial-gradient(circle at 80% 80%, rgba(180,83,9,.025), transparent 40%); pointer-events:none; }
.section-hairline { height:1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 0 auto; max-width: 1280px; }

#mc-chat-bubble { position: relative; }  /* add this */
#mc-chat-bubble {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 1050;
  height: 3.25rem; border-radius: 999px;
  padding: 0 1.25rem 0 1rem;
  background: #111827; color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 1px 4px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: .55rem;
  font-size: .875rem; font-weight: 600; font-family: inherit;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .15s;
}



#mc-chat-bubble .mc-badge {
  position: absolute;
  top: .55rem;
  left: 2.6rem;        /* .5rem padding + ~2.1rem across the logo */
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #111827;
  box-sizing: content-box;
  display: none;
  pointer-events: none;
}
#mc-chat-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 2px 6px rgba(0,0,0,.12);
  background: #1f2937;
}
#mc-chat-bubble .mc-bub-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#mc-chat-bubble .mc-badge {
  position: absolute; top: 6px; right: 6px;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: #22c55e; border: 2px solid #111827;
  display: none;
}
#mc-chat-panel {
  position: fixed; bottom: 6rem; right: 1.5rem; z-index: 1049;
  width: 420px; max-width: calc(100vw - 2rem);
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  display: none; flex-direction: column;
  background: #fff;
  transform: translateY(12px); opacity: 0;
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), opacity .2s ease;
}
#mc-chat-panel.mc-open {
  display: flex; transform: translateY(0); opacity: 1;
}
#mc-chat-header {
  background: #f8f9fa; color: #111827;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .875rem;
}
.mc-logo {
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
}
.mc-online-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: #22c55e; display: inline-block; margin-right: .35rem;
}
#mc-messages {
  flex: 1; overflow-y: auto; padding: 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
  min-height: 440px; max-height: 500px;
  background: #f9fafb;
}
#mc-messages::-webkit-scrollbar { width: 4px; }
#mc-messages::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
.mc-msg {
  max-width: 82%; padding: .65rem .9rem;
  border-radius: 1rem; font-size: .875rem; line-height: 1.5;
  animation: mc-pop .18s ease;
}
@keyframes mc-pop { from { opacity:0; transform: scale(.95); } to { opacity:1; transform: scale(1); } }
.mc-msg.mc-bot {
  background: #fff; color: #111827;
  border: 1px solid #e5e7eb; border-bottom-left-radius: .25rem;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.mc-msg.mc-user {
  background: #111827; color: #fff;
  border-bottom-right-radius: .25rem;
  align-self: flex-end;
}
.mc-msg.mc-bot ol, .mc-msg.mc-bot ul {
  margin: .4rem 0 .2rem; padding-left: 1.25rem;
}
.mc-msg.mc-bot li { margin-bottom: .25rem; }
.mc-msg.mc-bot strong { font-weight: 600; }
.mc-typing {
  display: flex; align-items: center; gap: .3rem;
  padding: .65rem .9rem; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 1rem; border-bottom-left-radius: .25rem;
  align-self: flex-start; width: fit-content;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.mc-typing span {
  width: .4rem; height: .4rem; border-radius: 50%;
  background: #9ca3af; display: inline-block;
  animation: mc-bounce 1.2s infinite ease-in-out;
}
.mc-typing span:nth-child(2) { animation-delay: .2s; }
.mc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes mc-bounce { 0%,80%,100%{ transform:scale(.8); opacity:.5; } 40%{ transform:scale(1.1); opacity:1; } }
#mc-input-row {
  display: flex; gap: .5rem; padding: .875rem 1rem;
  border-top: 1px solid #e5e7eb; background: #fff;
  align-items: flex-end;
}
#mc-input {
  flex: 1; border: 1px solid #e5e7eb; border-radius: .75rem;
  padding: .55rem .85rem; font-size: .875rem; resize: none;
  outline: none; line-height: 1.5; max-height: 7rem; overflow-y: auto;
  font-family: inherit; background: #f9fafb;
  transition: border-color .15s;
}
#mc-input:focus { border-color: #111827; background: #fff; }
#mc-send {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
  background: #111827; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
#mc-send:hover { background: #374151; transform: scale(1.05); }
#mc-send:disabled { background: #e5e7eb; color: #9ca3af; transform: none; cursor: default; }
#mc-suggestions {
  padding: .5rem 1.25rem .75rem;
  display: flex; flex-wrap: wrap; gap: .4rem;
  background: #f9fafb; border-bottom: 1px solid #f3f4f6;
}
.mc-pill {
  font-size: .78rem; padding: .35rem .75rem;
  border: 1px solid #d1d5db; border-radius: 999px;
  background: #fff; color: #374151;
  cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  line-height: 1.4;
}
.mc-pill:hover { background: #111827; border-color: #111827; color: #fff; }
#mc-footer {
  text-align: center; padding: .4rem; font-size: .7rem;
  color: #9ca3af; border-top: 1px solid #f3f4f6; background: #fff;
}

.mca-nav a.nav-link:hover {
        color: var(--x-green);
    }/* ── More / Resources dropdown ─────────────────────────────────── */
    .mca-dd {
        position: relative;
    }

    .mca-dd-trigger {
        background: none;
        border: none;
        padding: 0;
        color: var(--ink-soft);
        font-weight: 500;
        font-size: .88rem;
        display: inline-flex;
        align-items: center;
        gap: .3rem;
        cursor: pointer;
        font-family: inherit;
        transition: color .15s;
    }

    .mca-dd-trigger:hover, .mca-dd-trigger[aria-expanded="true"] {
        color: var(--x-green);
    }

    .mca-dd-caret {
        transition: transform .18s ease;
        opacity: .7;
    }

    .mca-dd-trigger[aria-expanded="true"] .mca-dd-caret {
        transform: rotate(180deg);
    }

    .mca-dd-menu {
        position: absolute;
        top: calc(100% + .75rem);
        right: 0;
        min-width: 240px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: .85rem;
        box-shadow: 0 16px 48px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
        padding: .4rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: opacity .16s, transform .16s, visibility .16s;
        z-index: 1040;
    }

    .mca-dd.mca-open .mca-dd-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mca-dd-item {
        display: flex;
        align-items: center;
        gap: .7rem;
        padding: .55rem .7rem;
        border-radius: .55rem;
        text-decoration: none;
        color: var(--ink);
        transition: background .12s;
    }

    .mca-dd-item:hover {
        background: rgba(26, 127, 79, .06);
        color: var(--ink);
    }

    .mca-dd-item i {
        font-size: 1rem;
        color: var(--ink-soft);
        width: 1.1rem;
        text-align: center;
        flex-shrink: 0;
    }

    .mca-dd-item span {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }

    .mca-dd-title {
        font-size: .88rem;
        font-weight: 600;
    }

    .mca-dd-sub {
        font-size: .74rem;
        color: var(--ink-soft);
        font-weight: 400;
        margin-top: 1px;
    }

    .mca-dd-item-compact {
        padding: .4rem .7rem;
        font-size: .82rem;
        color: var(--ink-soft);
    }

    .mca-dd-item-compact:hover {
        color: var(--ink);
    }

    .mca-dd-divider {
        height: 1px;
        background: rgba(0, 0, 0, .06);
        margin: .4rem .25rem;
    }

/* ----- Mini check-dots summary ----- */
.mca-dots { display: inline-flex; gap: .25rem; }
.mca-dots .mca-dot {
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; border: 1px solid transparent; font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.mca-dots .mca-dot.ok   { background: #dcfce7; color: #15803d; border-color: #86efac; }
.mca-dots .mca-dot.wait { background: #dbeafe; color: #1d4ed8; border-color: #93c5fd; }
.mca-dots .mca-dot.warn { background: #fef3c7; color: #b45309; border-color: #fcd34d; }
.mca-dots .mca-dot.err  { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }