.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: .2rem .5rem;
    font-size: .75rem;
    line-height: 1.5;
    border-radius: var(--x-border-radius-xs, .375rem);
}
.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;
}

.mca-toast-container {
    top: 1rem !important;
    right: 1rem !important;
    bottom: auto !important;
    left: auto !important;
    width: min(calc(100vw - 2rem), 420px);
    max-width: 420px;
    pointer-events: none;
}

.mca-toast-container .toast {
    width: 100%;
    max-width: 100%;
    border-color: rgba(26, 31, 44, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 16px 40px rgba(26, 31, 44, .14);
    pointer-events: auto;
}

@media (max-width: 575.98px) {
    .mca-toast-container {
        top: .75rem !important;
        right: .75rem !important;
        left: .75rem !important;
        width: auto;
        max-width: none;
    }
}

/* ==================================================================
   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 {
  --brand-rose: #e2506f;
  --brand-rose-deep: #be3453;
  --brand-rose-soft: #fde8ee;
  --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(--brand-rose); --bs-btn-color:#fff; --bs-btn-border-color: var(--brand-rose); --bs-btn-hover-bg: var(--brand-rose-deep); --bs-btn-hover-border-color: var(--brand-rose-deep); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 4px 14px -4px rgba(226,80,111,.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; }

.demo-notice-card { overflow: hidden; padding: 0; }
.demo-hero-section { background: var(--surface-1); }
.card-contained { border: 1px solid var(--line); border-radius: 1.15rem; background: var(--paper); box-shadow: 0 1px 2px rgba(26,31,44,.03), 0 18px 50px -36px rgba(26,31,44,.35); }
.btn-square { align-items:center; display:inline-flex; justify-content:center; min-width:2rem; padding-left:.45rem; padding-right:.45rem; }
.demo-chat-window { width: 100%; }
.demo-command-surface {
  background: var(--paper);
  padding: 1rem 1.15rem;
}
.demo-ai-prompt {
  align-items: flex-start;
  background: transparent;
  border: 0;
  display: flex;
  min-height: 5.75rem;
  overflow: hidden;
  padding: 0;
}
.demo-ai-textarea {
  background: transparent;
  min-height: 5.75rem;
  overflow: hidden;
  resize: none;
}
.demo-typing-line {
  animation: demo-type 22s steps(62) 1s 1 both, demo-caret 900ms steps(1) infinite;
  border-right: 2px solid var(--x-green);
  display: inline-block;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  font-weight: 650;
  line-height: 1.55;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  white-space: nowrap;
  width: 62ch;
}
.demo-agent-panel {
  animation: demo-panel-reveal .8s ease 1s 1 both;
  background: linear-gradient(180deg, var(--ink), #111827);
  border-radius: 0;
  border-bottom-left-radius: 1.15rem;
  border-bottom-right-radius: 1.15rem;
  color: var(--surface);
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  padding: .55rem 0;
  transform: translateY(.2rem);
  transform-origin: top;
  will-change: opacity, transform;
}
.demo-agent-panel .text-heading { color: var(--surface); }
.demo-agent-panel > .d-flex {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.demo-agent-feed {
  height: clamp(4.5rem, 6vw, 5rem);
  overflow: hidden;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.demo-agent-feed::after {
  content: none;
}
.demo-agent-message {
  align-items: flex-start;
  animation: demo-step-fade 2.8s ease-in-out 1 both;
  background: transparent;
  border: 0;
  border-radius: .9rem;
  display: flex;
  gap: .65rem;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  padding: .55rem .75rem;
  pointer-events: none;
  position: absolute;
  transform: translateY(.25rem);
  will-change: opacity, transform;
}
.demo-agent-message .text-body-secondary { color: rgba(250,248,244,.62) !important; }
.demo-agent-message:nth-child(1) { animation-delay: 6s; }
.demo-agent-message:nth-child(2) { animation-delay: 7.5s; }
.demo-agent-message:nth-child(3) { animation-delay: 9s; }
.demo-agent-message:nth-child(4) { animation-delay: 10.5s; }
.demo-agent-message:nth-child(5) { animation-delay: 12s; }
.demo-agent-message:nth-child(6) { animation-delay: 13.5s; }
.demo-agent-message:nth-child(7) { animation-delay: 15s; }
.demo-agent-message:nth-child(8) { animation-delay: 16.5s; }
.demo-agent-message:nth-child(9) { animation-delay: 18s; }
.demo-agent-message:nth-child(10) { animation-delay: 19.5s; }
.demo-final-report-card {
  background: transparent;
  border-color: transparent;
}
.demo-sequence-complete .demo-agent-panel {
  animation: none;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
}
.demo-sequence-complete .demo-agent-message:not(.demo-final-report-card) {
  animation: none !important;
  opacity: 0;
  transform: translateY(-.15rem);
}
.demo-sequence-complete .demo-final-report-card {
  animation: demo-final-hold .7s ease both !important;
  box-shadow: none;
  opacity: 1;
  transform: translateY(0);
}
.demo-sample-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
}

.demo-progress-dot {
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  flex: 0 0 auto;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.demo-progress-dot.is-complete {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: rgba(250,248,244,.86);
}

.demo-progress-dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

@keyframes demo-caret {
  0%,
  45% {
    border-color: var(--x-green);
  }
  46%,
  100% {
    border-color: transparent;
  }
}
@keyframes demo-type {
  0% { width: 0; }
  25% { width: 62ch; }
  100% { width: 62ch; }
}
@keyframes demo-panel-reveal {
  0% {
    opacity: 0;
    transform: translateY(.2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes demo-step-fade {
  0%,
  16% {
    opacity: 0;
    transform: translateY(.25rem);
  }
  30%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateY(-.2rem);
  }
}
@keyframes demo-final-hold {
  0% {
    opacity: 0;
    transform: translateY(.15rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 575.98px) {
  .demo-typing-line {
    animation: demo-caret 900ms steps(1) infinite;
    white-space: normal;
  }
  .demo-agent-feed {
    height: 5.25rem;
  }
}

/* Order reference payment confirmation */
.order-success-page { background: var(--surface); }
.order-success-badge,
.order-success-paid {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(26,127,79,.2);
  background: var(--x-green-soft);
  color: var(--x-green-deep);
  font-weight: 700;
}
.order-success-badge {
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .8rem;
}
.order-success-paid {
  border-radius: 999px;
  padding: .3rem .65rem;
  font-size: .72rem;
}
.order-success-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(26,31,44,.03), 0 8px 20px -16px rgba(26,31,44,.18);
}
.order-success-callout { border-left: 3px solid var(--x-green); }
.order-success-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;
  background: var(--x-green-soft);
  color: var(--x-green-deep);
  font-weight: 800;
}
.order-success-steps {
  counter-reset: order-success-step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.order-success-step {
  counter-increment: order-success-step;
  display: flex;
  gap: .85rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line-soft);
}
.order-success-step::before {
  content: counter(order-success-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;
  background: var(--x-green-soft);
  color: var(--x-green-deep);
  font-weight: 800;
}
.order-success-step:first-of-type { border-top: 0; padding-top: 0; }
.order-success-step:last-child { padding-bottom: 0; }
.order-success-summary { display: flex; flex-direction: column; }
.order-success-items {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: var(--surface);
}
.order-success-qr {
  width: min(100%, 180px);
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: var(--paper);
  padding: .5rem;
}

/* ==================================================================
   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:var(--brand-rose); margin-right:.5rem; vertical-align:middle; box-shadow: 0 0 0 3px rgba(226,80,111,.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%); }
.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(--brand-rose); }
.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: auto; width: min(10.5rem, 46vw); display: block; }
.mca-brand.on-dark .logo { filter: none; }
.navbar-brand .brand-logo { height: auto; width: min(10.5rem, 46vw); display: block; }
.workspace-brand .brand-logo,
.sidebar-brand .brand-logo { height: auto; width: min(10.5rem, 46vw); display: block; }

/* 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(--brand-rose); 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(--brand-rose); }
.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(--brand-rose); 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;
}


/* ==================================================================
   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; } }

/* ==================================================================
   4b. SAVINGS CALCULATOR
   ================================================================== */
.savings-calculator {
  background: linear-gradient(135deg, var(--paper), var(--surface-1));
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(26,31,44,.03), 0 22px 70px -48px rgba(26,31,44,.4);
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.savings-control {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .85rem;
  padding: 1.25rem;
}
.savings-current {
  align-self: flex-start;
  background: var(--ink);
  border-radius: 999px;
  color: var(--surface);
  font-size: .82rem;
  font-weight: 700;
  padding: .45rem .75rem;
  white-space: nowrap;
}
.savings-range {
  --savings-progress: 15.789%;
  accent-color: var(--brand-rose);
}
.savings-range::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, var(--brand-rose) var(--savings-progress), var(--surface-2) var(--savings-progress));
  border-radius: 999px;
  height: .55rem;
}
.savings-range::-moz-range-track {
  background: var(--surface-2);
  border-radius: 999px;
  height: .55rem;
}
.savings-range::-moz-range-progress {
  background: var(--brand-rose);
  border-radius: 999px;
  height: .55rem;
}
.savings-metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .85rem;
  min-height: 100%;
  padding: 1rem;
}
.savings-metric-accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}
.savings-metric-value {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
.savings-metric-accent .savings-metric-value {
  color: var(--surface);
}
.savings-metric-label {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
  margin-top: .55rem;
}
.savings-metric-accent .savings-metric-label {
  color: rgba(250,248,244,.7);
}

/* ==================================================================
   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;
}
#cookie-banner .cookie-copy-compact {
  display: none;
}
@media (max-width: 575.98px) {
  #mc-chat-bubble.landing-page-chat {
    display: none;
  }
  #cookie-banner.landing-page-cookie {
    padding: .75rem !important;
  }
  #cookie-banner.landing-page-cookie .card-body {
    padding: 1rem !important;
  }
  #cookie-banner.landing-page-cookie .text-sm {
    font-size: .8rem;
    line-height: 1.35;
  }
  #cookie-banner.landing-page-cookie .cookie-copy-full {
    display: none;
  }
  #cookie-banner.landing-page-cookie .cookie-copy-compact {
    display: block;
  }
  #cookie-banner.landing-page-cookie .d-flex.gap-2 {
    width: 100%;
  }
  #cookie-banner.landing-page-cookie .btn {
    flex: 1 1 0;
    white-space: nowrap;
  }
}
#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(--brand-rose);
    }/* ── 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; }
.mca-dots .mca-dot.off  { background: #f1f5f9; color: #64748b; border-color: #cbd5e1; }

/* ── Page wrapper ──────────────────────────────────────────── */
.succ-wrap {
  min-height: calc(100vh - 4rem);
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(26,127,79,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(180,83,9,.04), transparent 60%),
    var(--surface);
}

/* ── Status banner ─────────────────────────────────────────── */
.succ-banner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(26,31,44,.03),
    0 16px 44px -22px rgba(26,31,44,.14);
  position: relative;
  overflow: hidden;
}
.succ-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(26,127,79,.10), transparent 70%);
  pointer-events: none;
}
.succ-banner > * { position: relative; }

.succ-check {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: var(--x-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 12px 28px -10px rgba(26,127,79,.5);
  margin-bottom: 1.25rem;
  position: relative;
}
.succ-check::after {
  content: ""; position: absolute; inset: -.6rem;
  border-radius: 50%; border: 2px solid var(--x-green);
  opacity: .25; animation: mca-pulse 2s ease-out infinite;
}

.succ-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;
  margin-bottom: .9rem;
}
.succ-eyebrow::before,
.succ-eyebrow::after {
  content: ""; width: 1.25rem; height: 1px;
  background: var(--x-green); opacity: .5;
}

.succ-title {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: .65rem;
}
.succ-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 auto;
}

.succ-ref {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1.25rem;
  padding: .45rem .8rem .45rem .65rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: .75rem;
  color: var(--ink-soft);
}
.succ-ref .dot {
  width: .45rem; height: .45rem; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}
.succ-ref strong { color: var(--ink); font-weight: 700; letter-spacing: .04em; }

/* ── Section card ──────────────────────────────────────────── */
.succ-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,31,44,.03),
    0 4px 12px -6px rgba(26,31,44,.06);
}
.succ-card-head {
  padding: 1.25rem 1.6rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.succ-card-head h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.015em;
  margin: 0; color: var(--ink);
  display: inline-flex; align-items: center; gap: .55rem;
}
.succ-card-head h3 i { color: var(--x-green); font-size: 1.05rem; }
.succ-card-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.succ-card-body { padding: .35rem 1.6rem 1rem; }

/* ── Vertical timeline ─────────────────────────────────────── */
.succ-tl { list-style: none; padding: 0; margin: 0; position: relative; }
.succ-tl::before {
  content: ""; position: absolute;
  left: 1.25rem; top: 1.5rem; bottom: 1.5rem;
  width: 2px; background: var(--line);
  border-radius: 2px;
}
.succ-tl li {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  position: relative;
}
.succ-tl li + li { border-top: 1px solid var(--line-soft); }
.succ-tl .dot {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  color: var(--muted-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
  z-index: 1; position: relative;
}
.succ-tl li.done .dot {
  background: var(--x-green); border-color: var(--x-green); color: #fff;
}
.succ-tl li.live .dot {
  background: #fff; border-color: var(--ink); color: var(--ink);
  box-shadow: 0 0 0 4px rgba(26,31,44,.08);
}
.succ-tl li.live .dot::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--ink); opacity: .3;
  animation: mca-pulse 1.8s ease-out infinite;
}
.succ-tl li.pending .dot { border-style: dashed; }
.succ-tl .body { min-width: 0; padding-top: .15rem; }
.succ-tl .title {
  font-weight: 700; font-size: 1rem;
  color: var(--ink); letter-spacing: -.005em;
  line-height: 1.3;
}
.succ-tl li.pending .title { color: var(--muted); font-weight: 600; }
.succ-tl .desc {
  font-size: .88rem; color: var(--ink-soft);
  line-height: 1.5; margin-top: .2rem;
}
.succ-tl li.pending .desc { color: var(--muted); }
.succ-tl .pill {
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  padding: .3rem .55rem; border-radius: 999px;
  align-self: flex-start;
  margin-top: .35rem;
  white-space: nowrap;
}
.succ-tl li.done .pill    { color: var(--x-green-deep); background: var(--x-green-soft); }
.succ-tl li.live .pill    { color: #fff; background: var(--ink); }
.succ-tl li.pending .pill { color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); }

@media (max-width: 575.98px) {
  .succ-tl li { grid-template-columns: 2.25rem 1fr; }
  .succ-tl .pill { grid-column: 2; margin-top: .5rem; }
}

/* ── Email callout ─────────────────────────────────────────── */
.succ-email {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--x-green);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  align-items: flex-start;
}
.succ-email .ico {
  width: 2.6rem; height: 2.6rem;
  border-radius: .65rem;
  background: var(--x-green-soft);
  color: var(--x-green-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.succ-email h4 {
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 .25rem; color: var(--ink);
}
.succ-email p {
  margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.55;
}

/* ── Data protection strip ─────────────────────────────────── */
.succ-protect {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
}
.succ-protect .ico {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.succ-protect .label {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--x-green); margin-bottom: .15rem;
}
.succ-protect .body {
  font-size: .88rem; color: var(--ink-soft); line-height: 1.5;
}
.succ-protect .body strong { color: var(--ink); font-weight: 700; }
.succ-protect .flag {
  font-size: .72rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .succ-protect { grid-template-columns: auto 1fr; }
  .succ-protect .flag { grid-column: 1 / -1; justify-self: start; }
}

/* ── Support footer line ───────────────────────────────────── */
.succ-help {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  padding: 1rem 0 0;
}
.succ-help a {
  color: var(--x-green);
  font-weight: 600;
  text-decoration: none;
}
.succ-help a:hover {
  color: var(--x-green-deep);
  text-decoration: underline;
}

/* ── Page wrapper ─────────────────────────────────────────── */
.bk-wrap {
  min-height: calc(100vh - 4rem);
  display: flex; align-items: center;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(26,127,79,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(180,83,9,.04), transparent 60%),
    var(--surface);
  padding: 3rem 0;
}

/* ── Success card ─────────────────────────────────────────── */
.bk-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,31,44,.03),
    0 16px 44px -22px rgba(26,31,44,.14);
  position: relative;
}

/* Banner area with check */
.bk-banner {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.bk-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(26,127,79,.10), transparent 70%);
  pointer-events: none;
}
.bk-banner > * { position: relative; }

.bk-check {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: var(--x-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 12px 28px -10px rgba(26,127,79,.5);
  margin-bottom: 1.25rem;
  position: relative;
}
.bk-check::after {
  content: ""; position: absolute; inset: -.6rem;
  border-radius: 50%; border: 2px solid var(--x-green);
  opacity: .25; animation: mca-pulse 2s ease-out infinite;
}

.bk-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;
  margin-bottom: .9rem;
}
.bk-eyebrow::before,
.bk-eyebrow::after {
  content: ""; width: 1.25rem; height: 1px;
  background: var(--x-green); opacity: .5;
}

.bk-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .65rem;
}
.bk-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 auto;
}
.bk-sub strong { color: var(--ink); font-weight: 700; }

/* Bank chip under banner */
.bk-chip {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1.25rem;
  padding: .45rem .85rem .45rem .55rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.bk-chip .bank-glyph {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.bk-chip .sep { color: var(--muted-soft); }
.bk-chip .mask { letter-spacing: .18em; }

/* Body */
.bk-body { padding: 1.75rem 2rem 1.5rem; }

/* What happens next */
.bk-section-head {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--x-green);
  margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .45rem;
}
.bk-section-head i { font-size: .85rem; }

.bk-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.bk-timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem; top: 1.25rem; bottom: 1.25rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--x-green) 0%, var(--x-green) 35%, var(--line) 35%, var(--line) 100%);
  border-radius: 2px;
}
.bk-step {
  display: grid;
  grid-template-columns: 2.15rem 1fr;
  gap: .85rem;
  align-items: flex-start;
  padding: .65rem 0;
  position: relative;
}
.bk-step .bullet {
  width: 2.15rem; height: 2.15rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .92rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.bk-step.is-done .bullet {
  background: var(--x-green);
  border-color: var(--x-green);
  color: #fff;
}
.bk-step.is-active .bullet {
  background: var(--paper);
  border-color: var(--x-green);
  color: var(--x-green);
  box-shadow: 0 0 0 4px rgba(26,127,79,.15);
}
.bk-step.is-active .bullet::after {
  content: ""; position: absolute; inset: -.4rem;
  border-radius: 50%; border: 2px solid var(--x-green);
  opacity: .35; animation: mca-pulse 2s ease-out infinite;
}
.bk-step .copy {
  padding-top: .15rem;
  padding-bottom: .25rem;
}
.bk-step .copy .ttl {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  display: flex; align-items: center; gap: .55rem;
  flex-wrap: wrap;
}
.bk-step .copy .ttl .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  font-weight: 600;
  padding: .15rem .45rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.bk-step .copy .ttl .tag.done { background: var(--x-green-soft); color: var(--x-green-deep); }
.bk-step .copy .ttl .tag.now  {
  background: var(--ink); color: #fff;
  background-image: linear-gradient(90deg, var(--ink) 0%, var(--x-green-deep) 50%, var(--ink) 100%);
  background-size: 200% 100%;
  animation: mca-shimmer 2.5s linear infinite;
}
.bk-step .copy .ttl .tag.next { background: var(--surface-2); color: var(--muted); }
.bk-step .copy .desc {
  margin: .25rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Info row */
.bk-info {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.bk-info-cell {
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .75rem;
}
.bk-info-cell .k {
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: .3rem;
}
.bk-info-cell .v {
  font-size: .92rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: .4rem;
}
.bk-info-cell .v i { color: var(--x-green); }

/* Footer in card */
.bk-foot {
  padding: 1.25rem 2rem 1.6rem;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.bk-foot .note {
  font-size: .85rem;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: .5rem;
}
.bk-foot .note i { color: var(--x-green); }
.bk-foot .actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Trust strip */
.bk-trust {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
}
.bk-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.bk-trust span i { color: var(--x-green); font-size: .85rem; }

@media (max-width: 575.98px) {
  .bk-banner { padding: 2rem 1.25rem 1.5rem; }
  .bk-body, .bk-foot { padding-left: 1.25rem; padding-right: 1.25rem; }
  .bk-info { grid-template-columns: 1fr; }
  .bk-foot { justify-content: center; }
  .bk-foot .actions { width: 100%; }
  .bk-foot .actions .btn { flex: 1; }
}

.s1 {
  --x-green: #1a7f4f;
  --x-green-deep: #0f5a37;
  --x-green-soft: #e8f3ec;
  --ink: #1a1f2c;
  --ink-soft: #2d3344;
  --muted: #6b7280;
  --muted-soft: #9aa1ad;
  --surface: #faf8f4;
  --surface-2: #f3efe8;
  --surface-3: #ebe5da;
  --paper: #ffffff;
  --line: #e8e2d6;
  --line-soft: #f0ebe1;
  --accent: #c2410c;
  --accent-soft: #fdf3ed;
  --danger: #9f1239;
  --danger-soft: #fdecef;

  font-family: "Satoshi", "Inter", system-ui, sans-serif;
  color: var(--ink);
  padding: .25rem .25rem 1rem;
}
/* Header */
.s1-eyebrow {
  font-family:"JetBrains Mono", ui-monospace, 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;
  margin-bottom:.6rem;
}
.s1-eyebrow::before, .s1-eyebrow::after {
  content:""; width:1.25rem; height:1px; background:var(--x-green); opacity:.5;
}
.s1-title {
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.s1-sub {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 1.6rem;
  max-width: 60ch;
}

/* Section heads inside the form */
.s1-section + .s1-section { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px dashed var(--line); }
.s1-section-head {
  font-family:"JetBrains Mono", ui-monospace, monospace;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:600;
  color: var(--x-green);
  margin: 0 0 1rem;
  display:inline-flex; align-items:center; gap:.45rem;
}
.s1-section-head i { font-size:.85rem; }
.s1-section-hint {
  font-size:.88rem; color:var(--ink-soft);
  margin: -.5rem 0 1rem;
}
/* Form controls — override Bootstrap solid look */
.s1 .form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
  letter-spacing: -.005em;
}
.s1 .required-dot { color: var(--accent); margin-left: .15rem; }
.s1 .form-control-solid,
.s1 .form-select-solid {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .65rem;
  padding: .7rem .85rem;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
  box-shadow: none;
}
.s1 .form-control-solid::placeholder { color: var(--muted-soft); }
.s1 .form-control-solid:focus,
.s1 .form-select-solid:focus {
  background: var(--paper);
  border-color: var(--x-green);
  box-shadow: 0 0 0 3px rgba(26,127,79,.15);
  outline: none;
}
.s1 .form-control-solid:hover,
.s1 .form-select-solid:hover { border-color: var(--muted-soft); }

/* Input with leading icon */
.s1-icon { position: relative; display: flex; align-items: center; }
.s1-icon > i {
  position: absolute; left: .85rem;
  color: var(--muted); font-size: 1rem; pointer-events: none;
}
.s1-icon > .form-control-solid { padding-left: 2.55rem; }
.s1-icon > .flatpickr-input + .form-control-solid { padding-left: 2.55rem; }
.s1 .flatpickr-input[type="text"].form-control-solid { padding-left: 2.55rem; }


/* Radio cards */
.s1-radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.s1-radio {
  display: block;
  position: relative;
  padding: .9rem 1rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: .8rem;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  margin: 0;
}
.s1-radio:hover { border-color: var(--muted-soft); }
.s1-radio input { position: absolute; opacity: 0; pointer-events: none; }
.s1-radio .body { display: flex; align-items: center; gap: .65rem; }
.s1-radio .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display:inline-flex; align-items:center; justify-content:center;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.s1-radio .label-text { font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.s1-radio .check {
  position: absolute; top: .5rem; right: .5rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  display:inline-flex; align-items:center; justify-content:center;
  transition: background .15s, border-color .15s;
}
.s1-radio .check i { color: transparent; font-size: .7rem; line-height: 1; }
.s1-radio.active,
.s1-radio:has(input:checked) {
  border-color: var(--x-green);
  background: var(--x-green-soft);
  box-shadow: 0 0 0 3px rgba(26,127,79,.1);
}
.s1-radio.active .ic,
.s1-radio:has(input:checked) .ic {
  background: var(--x-green); color: #fff; border-color: var(--x-green);
}
.s1-radio.active .check,
.s1-radio:has(input:checked) .check {
  background: var(--x-green); border-color: var(--x-green);
}
.s1-radio.active .check i,
.s1-radio:has(input:checked) .check i { color: #fff; }

/* Alert */
.s1-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  padding: 1rem 1.15rem;
  background: var(--danger-soft);
  border: 1px solid rgba(159,18,57,.22);
  border-radius: .85rem;
  margin-bottom: 1.4rem;
}
.s1-alert .ico {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(159,18,57,.22);
  color: var(--danger);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.s1-alert h5 { margin: 0 0 .15rem; font-size: .92rem; font-weight: 700; color: var(--ink); letter-spacing: -.005em; }
.s1-alert ul, .s1-alert p { margin: 0; padding: 0; color: #7a0e2e; font-size: .85rem; line-height: 1.5; list-style: none; }
.s1-alert ul li + li { margin-top: .15rem; }
.s1-alert ul li::before { content: "·"; margin-right: .4rem; color: var(--danger); font-weight: 700; }

.s1 .invalid-feedback.d-block {
  font-size: .78rem; color: var(--danger);
  margin-top: .35rem; font-weight: 500;
}

/* Field hint */
.s1-hint { font-size:.8rem; color: var(--muted); margin-top: .4rem; line-height: 1.4; }
.s1-hint i { color: var(--x-green); }
.s1-hint a { color: var(--x-green-deep); font-weight:600; text-decoration: none; }
.s1-hint a:hover { text-decoration: underline; }



.mw-screen-xl { max-width: 1280px; }
.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(--brand-rose); --bs-btn-color:#fff; --bs-btn-border-color: var(--brand-rose); --bs-btn-hover-bg: var(--brand-rose-deep); --bs-btn-hover-border-color: var(--brand-rose-deep); font-weight:600; box-shadow:0 1px 0 rgba(255,255,255,.18) inset, 0 4px 14px -4px rgba(226,80,111,.4); }

.py-10 { padding-top:4rem !important; padding-bottom:4rem !important; }
.py-14 { padding-top:5rem !important; padding-bottom:5rem !important; }

@keyframes mca-pulse { 0%{transform:scale(.85);opacity:.5} 100%{transform:scale(1.25);opacity:0} }



/* My HMOs Bootstrap landing override: keep MCA nav sticky when combined with Bootstrap .navbar. */
.mca-nav.navbar {
  position: sticky;
  top: 0;
}

.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; }

/* ── Page wrap ────────────────────────────────────────────────── */
.idv-wrap {
  min-height: calc(100vh - 4rem);
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(26,127,79,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(180,83,9,.04), transparent 60%),
    var(--surface);
}

/* ── Hero header ─────────────────────────────────────────────── */
.idv-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;
  margin-bottom:.9rem;
}
.idv-eyebrow::before, .idv-eyebrow::after {
  content:""; width:1.25rem; height:1px; background:var(--x-green); opacity:.5;
}
.idv-title {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: .65rem;
}
.idv-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto;
}
.idv-meta-row {
  display:inline-flex; align-items:center; gap:.75rem;
  margin-top:1.1rem;
  font-family:"JetBrains Mono", monospace;
  font-size:.72rem; color:var(--muted);
  text-transform:uppercase; letter-spacing:.1em;
}
.idv-meta-row .pill {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.4rem .75rem;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:999px;
}
.idv-meta-row .pill i { color:var(--x-green); font-size:.85rem; }
.idv-meta-row .pill .live-dot {
  width:.45rem; height:.45rem; border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,.18);
}

/* ── Main card stack ─────────────────────────────────────────── */
.idv-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,31,44,.03),
    0 12px 32px -16px rgba(26,31,44,.1);
}
.idv-card-head {
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.idv-card-head h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing:-.015em;
  margin: 0; color: var(--ink);
  display: inline-flex; align-items: center; gap:.55rem;
}
.idv-card-head h3 i { color: var(--x-green); font-size:1.05rem; }
.idv-card-head .meta {
  font-family:"JetBrains Mono", monospace;
  font-size:.68rem; color:var(--muted);
  text-transform:uppercase; letter-spacing:.12em;
}
.idv-card-body { padding: 1.4rem 1.6rem; }

/* ── Greeting block ──────────────────────────────────────────── */
.idv-greet {
  display:grid;
  grid-template-columns: auto 1fr;
  gap:1rem;
  align-items:center;
}
.idv-greet .avatar {
  width:3rem; height:3rem;
  border-radius:50%;
  background: var(--ink);
  color: #fff;
  font-weight:800;
  font-size:1.05rem;
  display:inline-flex; align-items:center; justify-content:center;
  letter-spacing:.02em;
}
.idv-greet .hi {
  font-family:"JetBrains Mono", monospace;
  font-size:.68rem; color:var(--muted);
  text-transform:uppercase; letter-spacing:.12em;
  margin-bottom:.15rem;
}
.idv-greet .who {
  font-size:1.25rem; font-weight:800; color:var(--ink);
  letter-spacing:-.015em; line-height:1.2;
}
.idv-partner {
  margin-top:1.1rem;
  padding:1rem 1.15rem;
  border:1px solid var(--line);
  border-left:3px solid var(--x-green);
  border-radius:.85rem;
  background:var(--surface);
  font-size:.95rem;
  color:var(--ink-soft);
  line-height:1.55;
}
.idv-partner strong { color: var(--ink); font-weight: 700; }

/* ── Disclosure block (yoti / biometric) ─────────────────────── */
.idv-discl {
  margin-top:1.4rem;
  padding:1.25rem 1.4rem;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:1rem;
  font-size:.9rem;
  color:var(--ink-soft);
  line-height:1.6;
}
.idv-discl h4 {
  font-size:.7rem;
  font-family:"JetBrains Mono", monospace;
  text-transform:uppercase; letter-spacing:.14em;
  color: var(--x-green);
  font-weight:600;
  margin: 0 0 .6rem;
  display:inline-flex; align-items:center; gap:.4rem;
}
.idv-discl h4 i { font-size:.85rem; }
.idv-discl p + p { margin-top:.7rem; }
.idv-discl .micro {
  margin-top:.85rem;
  padding-top:.85rem;
  border-top:1px dashed var(--line);
  font-size:.78rem;
  display:flex; align-items:center; gap:.6rem;
  color:var(--muted);
  font-family:"JetBrains Mono", monospace;
}
.idv-discl .micro span { display:inline-flex; align-items:center; gap:.35rem; }
.idv-discl .micro i { color: var(--x-green); }

/* Consent checkbox */
.idv-consent {
  margin-top:1.2rem;
  padding:1rem 1.15rem;
  border:1px solid var(--line);
  border-radius:.85rem;
  background:var(--paper);
  display:flex; align-items:flex-start; gap:.85rem;
  transition: border-color .2s, background .2s;
}
.idv-consent:has(input:checked) {
  border-color: var(--x-green);
  background: var(--x-green-soft);
}
.idv-consent .form-check-input {
  width:1.25rem; height:1.25rem;
  margin-top:.1rem;
  border:2px solid var(--muted-soft);
  flex-shrink:0;
  cursor:pointer;
}
.idv-consent .form-check-input:checked {
  background-color: var(--x-green);
  border-color: var(--x-green);
}
.idv-consent .form-check-input:focus {
  border-color: var(--x-green);
  box-shadow: 0 0 0 3px rgba(26,127,79,.18);
}
.idv-consent label {
  font-size:.92rem;
  color:var(--ink);
  font-weight:600;
  cursor:pointer;
  line-height:1.4;
}
.idv-consent label .sub {
  display:block;
  font-weight:400;
  color:var(--ink-soft);
  font-size:.82rem;
  margin-top:.15rem;
}

/* ── Documents table ─────────────────────────────────────────── */
.idv-doc-intro {
  font-size:.95rem; color:var(--ink-soft); line-height:1.55;
  margin:0 0 1.1rem;
}
.idv-table-wrap {
  border:1px solid var(--line);
  border-radius:.85rem;
  overflow:hidden;
}
.idv-table {
  width:100%;
  border-collapse:collapse;
  margin:0;
  background: var(--paper);
}
.idv-table thead th {
  background: var(--surface-2);
  font-family:"JetBrains Mono", monospace;
  font-size:.68rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  color: var(--muted);
  padding: .85rem 1.1rem;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.idv-table thead th:not(:first-child) { text-align:center; }
.idv-table tbody td {
  padding:1rem 1.1rem;
  font-size:.93rem;
  color: var(--ink);
  border-bottom:1px solid var(--line-soft);
  vertical-align:middle;
}
.idv-table tbody tr:last-child td { border-bottom:none; }
.idv-table tbody td:first-child {
  font-weight:600;
  color: var(--ink);
}
.idv-table tbody td:not(:first-child) { text-align:center; }
.idv-table .tick {
  display:inline-flex; align-items:center; justify-content:center;
  width:1.65rem; height:1.65rem;
  border-radius:50%;
  background: var(--x-green);
  color:#fff; font-size:.95rem;
}
.idv-table .cross {
  display:inline-flex; align-items:center; justify-content:center;
  width:1.65rem; height:1.65rem;
  border-radius:50%;
  background:transparent;
  border:1.5px solid var(--line);
  color:var(--muted-soft);
  font-size:.95rem;
}

/* Flag glyph next to country */
.idv-table .country {
  display:inline-flex; align-items:center; gap:.55rem;
}
.idv-table .country .flag {
  font-size:1.05rem;
  filter: saturate(.95);
}

/* ── Warning callout ─────────────────────────────────────────── */
.idv-warn {
  margin-top:1.25rem;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.9rem;
  padding:1rem 1.2rem;
  background: var(--accent-soft);
  border:1px solid rgba(194,65,12,.22);
  border-radius:.85rem;
  align-items:flex-start;
}
.idv-warn .ico {
  width:2.2rem; height:2.2rem;
  border-radius:50%;
  background: var(--paper);
  border:1px solid rgba(194,65,12,.25);
  color: var(--accent);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1rem;
  flex-shrink:0;
}
.idv-warn h5 {
  font-size:.95rem;
  font-weight:700; color: var(--ink);
  margin:0 0 .15rem; letter-spacing:-.01em;
}
.idv-warn p {
  font-size:.88rem;
  color: #7c2d12;
  margin:0;
  line-height:1.5;
}

/* ── Tips list ──────────────────────────────────────────────── */
.idv-tips {
  list-style:none; padding:0; margin: 1.4rem 0 0;
  display:flex; flex-direction:column; gap:.5rem;
}
.idv-tips li {
  display:flex; align-items:flex-start; gap:.7rem;
  padding:.65rem .85rem;
  background: var(--surface);
  border:1px solid var(--line-soft);
  border-radius:.7rem;
  font-size:.92rem;
  color: var(--ink);
  line-height:1.5;
}
.idv-tips li i {
  color: var(--x-green);
  font-size:1rem;
  margin-top:.15rem;
  flex-shrink:0;
}
.idv-tips li a { color: var(--x-green-deep); font-weight:600; text-decoration: none; }
.idv-tips li a:hover { text-decoration: underline; }

/* ── Footer / submit ─────────────────────────────────────────── */
.idv-foot {
  padding: 1.4rem 1.6rem;
  border-top:1px solid var(--line-soft);
  background: var(--surface);
}
.idv-foot .btn-start {
  width:100%;
  padding:.85rem 1.25rem;
  font-size:1rem;
  letter-spacing:-.005em;
  font-weight:700;
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
}
.idv-foot .btn-start:disabled {
  background: var(--surface-3);
  border-color: var(--surface-3);
  color: var(--muted);
  box-shadow:none;
  cursor: not-allowed;
}
.idv-terms {
  margin: .9rem 0 0;
  text-align:center;
  font-size:.78rem;
  color: var(--muted);
}
.idv-terms a {
  color: var(--ink-soft); font-weight:600;
  text-decoration:none;
  border-bottom:1px dashed var(--muted-soft);
}
.idv-terms a:hover { color: var(--x-green-deep); border-color: var(--x-green); }

/* ── Trust strip ─────────────────────────────────────────────── */
.idv-trust {
  margin-top:1.5rem;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:1rem 1.75rem;
  padding:.85rem 1rem;
  font-family:"JetBrains Mono", monospace;
  font-size:.7rem;
  color:var(--muted);
  text-transform:uppercase; letter-spacing:.1em;
}
.idv-trust span { display:inline-flex; align-items:center; gap:.4rem; }
.idv-trust span i { color: var(--x-green); font-size:.85rem; }

@media (max-width: 575.98px) {
  .idv-card-body, .idv-foot { padding-left: 1.15rem; padding-right: 1.15rem; }
  .idv-card-head { padding: 1rem 1.15rem; }
  .idv-greet { grid-template-columns: 1fr; }
}

  .mca-report-shell {
    border-radius: 8px;
    padding: 0;
  }

  .mca-report-preview {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    color: #1d1d1f;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08), 0 16px 40px rgba(15, 23, 42, .10);
    font-size: 13px;
    line-height: 1.5;
  }

  .mca-report-preview .report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mca-report-topline {
    height: 4px;
    background: linear-gradient(90deg, #111827 0%, #34c759 100%);
  }

  .mca-report-header,
  .mca-report-actions-row,
  .mca-report-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .mca-report-header {
    align-items: flex-start;
    padding: 22px 32px 18px;
    border-bottom: 1px solid #e8e8ed;
  }

  .mca-report-brand img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 42px;
    object-fit: contain;
  }

  .mca-report-sub,
  .mca-report-ref,
  .mca-report-line,
  .mca-report-title .subtitle,
  .mca-report-note,
  .mca-report-footer {
    color: #8e8e93;
  }

  .mca-report-sub {
    font-size: 11px;
    margin-top: 2px;
  }

  .mca-report-ref {
    text-align: right;
    font-size: 12px;
  }

  .mca-report-ref strong,
  .mca-report-line strong,
  .mca-report-footer strong {
    color: #1d1d1f;
    font-weight: 600;
  }

  .mca-report-ref strong {
    display: block;
    margin-bottom: 2px;
  }

  .mca-report-title,
  .mca-report-actions-row,
  .mca-applicant-block,
  .mca-report-summary {
    border-bottom: 1px solid #e8e8ed;
  }

  .mca-report-title {
    padding: 22px 32px;
  }

  .mca-report-title h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 650;
  }

  .mca-report-title .subtitle {
    margin-top: 8px;
  }

  .mca-report-actions-row {
    align-items: flex-start;
    padding: 18px 32px;
    background: #fbfbfd;
  }

  .mca-applicant-block,
  .mca-report-pills,
  .mca-report-section {
    display: grid;
  }

  .mca-applicant-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 20px 32px;
  }

  .mca-report-label {
    color: #8e8e93;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 7px;
  }

  .mca-report-line {
    margin-bottom: 4px;
  }

  .mca-report-summary {
    padding: 20px 32px;
  }

  .mca-report-section-title {
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -.01em;
    margin-bottom: 12px;
  }

  .mca-report-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mca-report-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 14px;
    border: 1px solid #d9eadf;
    border-radius: 8px;
    background: #fff;
  }

  .mca-report-pill .pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #34c759;
    font-weight: 700;
    flex: 0 0 auto;
  }

  .mca-report-pill .pill-label {
    color: #8e8e93;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .mca-report-pill .pill-value {
    color: #1a7f45;
    font-size: 14px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
  }

  .mca-report-details {
    padding: 20px 32px 24px;
  }

  .mca-report-section {
    grid-template-columns: 42px minmax(180px, .65fr) 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f2f2f7;
  }

  .mca-report-section:last-child {
    border-bottom: none;
  }

  .mca-report-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f2f2f7;
    color: #1d1d1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
  }

  .mca-report-section h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 650;
  }

  .mca-report-section p {
    color: #8e8e93;
    margin: 0;
    max-width: 360px;
  }

  .mca-status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a7f45;
    font-weight: 650;
    margin-bottom: 8px;
  }

  .mca-status-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: #34c759;
    font-size: 12px;
    flex: 0 0 auto;
  }

  .mca-small-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid #c3e6d0;
    background: #f2faf5;
    color: #1a7f45;
    font-size: 11px;
    font-weight: 650;
  }

  .mca-report-note {
    margin-top: 10px;
    font-size: 12px;
  }

  .mca-report-footer {
    padding: 16px 32px;
    border-top: 1px solid #e8e8ed;
    font-size: 11px;
    background: #fbfbfd;
  }

  @media (max-width: 991.98px) {
    .mca-report-header,
    .mca-report-actions-row,
    .mca-report-footer {
      flex-direction: column;
    }

    .mca-report-ref {
      text-align: left;
    }

    .mca-applicant-block,
    .mca-report-pills,
    .mca-report-section {
      grid-template-columns: 1fr;
    }

    .mca-report-header,
    .mca-report-title,
    .mca-report-actions-row,
    .mca-applicant-block,
    .mca-report-summary,
    .mca-report-details,
    .mca-report-footer {
      padding-left: 18px;
      padding-right: 18px;
    }
  }

/* Bootstrap utility shims (only what the hero uses) */
.text-heading       { color: var(--ink); }
.text-body-secondary{ color: var(--ink-soft); }
.text-sm            { font-size: .875rem; }
.ls-tighter         { letter-spacing: -.025em; }
.lh-xs              { line-height: 1.05; }
.mw-screen-xl       { max-width: 1280px; }
.fw-semibold        { font-weight: 600; }

/* Buttons */
.btn-action {
  background: var(--brand-rose); color: #fff; border: none; font-weight: 600;
  border-radius: .65rem; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-action:hover { background: var(--brand-rose-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(226,80,111,.18); }
.btn-neutral {
  background: #fff; color: var(--ink); border: 1px solid var(--line); font-weight: 600;
  border-radius: .65rem; transition: background .15s, transform .15s;
}
.btn-neutral:hover { background: #f3f4f6; color: var(--ink); }

/* Hero */
.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;
}

.hero-inner { padding: 4rem 1rem 5rem; }
@media (min-width: 992px) { .hero-inner { padding: 6rem 1rem 7rem; } }

.hero-copy { max-width: 1200px; margin: 0 auto 3.5rem; text-align: center; }
.hero-copy h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.hero-copy h1 .ital,
.landing-hero-title .ital {
  color: var(--brand-rose);
  font-weight: 800;
  letter-spacing: -.025em;
}
@media (min-width: 768px) { .hero-copy h1 { font-size: 3.25rem; } }
@media (min-width: 1200px){ .hero-copy h1 { font-size: 3.75rem; } }

.hero-copy .lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 840px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}
.hero-copy .lead strong { color: var(--ink); font-weight: 600; }

.hero-banner {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .9rem;
  border-radius: .65rem;
  background: var(--accent-soft);
  border: 1px solid rgba(194,65,12,.22);
  color: #7c2d12;
  font-size: .875rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 460px;
}
.hero-banner span.icon { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }

.hero-ctas { display: flex; flex-direction: column; gap: .75rem; justify-content: center; margin-bottom: 1.75rem; }
@media (min-width: 576px) { .hero-ctas { flex-direction: row; } }
.hero-ctas .btn { padding: .85rem 2rem; font-size: 1rem; }

.hero-checklist {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: .875rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-checklist span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-checklist i { color: var(--mca-green); }

/* Video */
.hero-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ink) 0%, #2d3344 100%);
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(26,31,44,.35);
  border: 1px solid var(--line);
}
.hero-video .placeholder-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem;
  font-family: ui-monospace, Menlo, monospace;
  text-align: center;
}
.hero-video .placeholder-content i {
  font-size: 3rem; color: #86efac; display: block;
}

.landing-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(194,65,12,.18);
  color: #7c2d12;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.landing-hero-offer {
  background: var(--paper);
  border: 1px solid rgba(26,127,79,.22);
  border-radius: 1rem;
  box-shadow: 0 18px 45px -26px rgba(26,31,44,.28);
}
.landing-hero-offer .price {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: .95;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
}
.landing-agent-strip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: .9rem;
}
.landing-proof-panel {
  background: linear-gradient(140deg, var(--ink) 0%, #232938 100%);
  color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px -24px rgba(26,31,44,.42);
}
.landing-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(460px 230px at 90% 0%, rgba(26,127,79,.32), transparent 62%),
              radial-gradient(360px 180px at 0% 100%, rgba(194,65,12,.14), transparent 60%);
  pointer-events: none;
}
.landing-proof-card {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}
.landing-proof-row {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.landing-proof-row:last-child { border-bottom: 0; }
.landing-proof-row .dot {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #86efac;
  background: rgba(134,239,172,.12);
  border: 1px solid rgba(134,239,172,.25);
}
.landing-proof-row .dot-live {
  color: #fef3c7;
  background: rgba(180,83,9,.16);
  border-color: rgba(251,191,36,.34);
}
.landing-proof-row .dot-muted {
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.notice-spinner {
  width: .85rem;
  height: .85rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.32);
  border-top-color: #fbbf24;
  animation: notice-spin .85s linear infinite;
}
.notice-status {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  white-space: nowrap;
  border-radius: 999px;
  padding: .22rem .55rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.notice-status-spinner {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  border: 1.5px solid rgba(254,243,199,.38);
  border-top-color: #fbbf24;
  animation: notice-spin .7s linear infinite;
}
.notice-status-sending {
  color: #fef3c7;
  background: rgba(180,83,9,.2);
  border: 1px solid rgba(251,191,36,.28);
}
.notice-status-sent {
  color: #dbeafe;
  background: rgba(59,130,246,.16);
  border: 1px solid rgba(147,197,253,.22);
}
.notice-status-delivered {
  color: #dcfce7;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(134,239,172,.24);
}
.notice-status-queued {
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
@keyframes notice-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .demo-agent-message,
  .demo-agent-panel,
  .demo-typing-line,
  .notice-spinner,
  .notice-status-spinner { animation: none; }
  .demo-agent-panel {
    margin-top: 0;
    opacity: 1;
    padding: .55rem 0;
    transform: none;
  }
  .demo-agent-message {
    opacity: 0;
    padding: .55rem .75rem;
    transform: none;
  }
  .demo-final-report-card {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .pricing-title-wrap {
    text-align: center;
  }
  .pricing-title-one-line {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    left: 50%;
    max-width: calc(100vw - 2rem);
    transform: translateX(-50%);
    font-size: clamp(2.35rem, 3.55vw, 3.5rem);
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .landing-hero-title { font-size: 2.45rem; }
  .landing-proof-row .justify-content-between {
    align-items: flex-start !important;
    flex-direction: column;
    gap: .35rem !important;
  }
}

/* Marquee announcement bar */
    .mca-announce {
        background: #0f172a;
        color: rgba(255, 255, 255, .85);
        font-size: .78rem;
        padding: .5rem 1rem;
        text-align: center;
        font-family: ui-monospace, Menlo, monospace;
        letter-spacing: .02em;
    }

    .mca-announce strong {
        color: #fff;
    }

    .mca-announce .dot {
        display: inline-block;
        width: .4rem;
        height: .4rem;
        border-radius: 50%;
        background: var(--brand-rose);
        margin-right: .4rem;
        vertical-align: middle;
        animation: mca-pulse 1.6s infinite;
    }/* Nav */

    /* ──────────────────────────────────────────────────────────────
   Stacked hero — drop-in stylesheet
   Deps: Bootstrap 5.3 + Bootstrap Icons + Satoshi (Fontshare)
   ────────────────────────────────────────────────────────────── */
:root {
  --brand-rose:     #e2506f;
  --brand-rose-deep:#be3453;
  --brand-rose-soft:#fde8ee;
  --x-green:        #1a7f4f;
  --x-green-soft:   rgba(26,127,79,.08);
  --mca-green:      #1a7f4f;
  --accent:         #c2410c;
  --accent-soft:    rgba(194,65,12,.06);
  --ink:            #1a1f2c;
  --ink-soft:       #475569;
  --muted:          #6b7280;
  --line:           rgba(0,0,0,.08);
  --paper:          #ffffff;
  --surface:        #faf8f4;
}

body {
  font-family: "Satoshi", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  margin: 0;
}
