@charset "UTF-8";
/* ==========================================================================
   Marketcall Help Center
   Brand tokens taken from marketcall.com (v3 theme) so the help center reads
   as the same product, not a bolted-on third-party widget.
   ========================================================================== */

/* ------------------------------------------------------------------ fonts */
@font-face{font-family:Gilroy;src:url(/assets/fonts/392470_1_0.woff2) format("woff2"),url(/assets/fonts/392470_1_0.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Gilroy;src:url(/assets/fonts/392470_2_0.woff2) format("woff2"),url(/assets/fonts/392470_2_0.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:Gilroy;src:url(/assets/fonts/392470_0_0.woff2) format("woff2"),url(/assets/fonts/392470_0_0.woff) format("woff");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:Gilroy;src:url(/assets/fonts/392470_3_0.woff2) format("woff2"),url(/assets/fonts/392470_3_0.woff) format("woff");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:Lato;src:url(/assets/fonts/Lato-Regular.woff2) format("woff2"),url(/assets/fonts/Lato-Regular.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Lato;src:url(/assets/fonts/Lato-Semibold.woff2) format("woff2"),url(/assets/fonts/Lato-Semibold.woff) format("woff");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:Lato;src:url(/assets/fonts/Lato-Bold.woff2) format("woff2"),url(/assets/fonts/Lato-Bold.woff) format("woff");font-weight:700;font-style:normal;font-display:swap}

/* ----------------------------------------------------------------- tokens */
:root{
  --mc-primary:#4755dc;
  --mc-primary-dark:#3a46bd;
  --mc-primary-light:#7378fb;
  --mc-primary-wash:#eef0fc;
  --mc-violet:#5d3ece;
  --mc-ink:#141530;
  --mc-body:#41455c;
  --mc-muted:#6b7089;
  --mc-faint:#9096ad;
  --mc-line:#e4e7f1;
  --mc-line-soft:#eef0f7;
  --mc-surface:#ffffff;
  --mc-surface-2:#f7f8fc;
  --mc-surface-3:#eef1fa;
  --mc-dark:#31244a;
  --mc-dark-2:#241a38;
  --mc-shadow-sm:0 1px 2px rgba(20,21,48,.05),0 2px 6px rgba(20,21,48,.05);
  --mc-shadow-md:0 4px 12px rgba(20,21,48,.06),0 12px 28px rgba(20,21,48,.07);
  --mc-shadow-lg:0 18px 46px rgba(20,21,48,.14);
  --mc-radius:14px;
  --mc-radius-sm:10px;
  --mc-shell:1200px;
  --mc-measure:70ch;
  --mc-ease:cubic-bezier(.2,.7,.3,1);
  --icon-search:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.6-3.6'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ reset */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:100px}
body.hc-body{
  margin:0;background:var(--mc-surface);color:var(--mc-body);
  font:400 17px/1.65 Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto}
h1,h2,h3,h4,h5{font-family:Gilroy,Lato,sans-serif;color:var(--mc-ink);margin:0;line-height:1.24;letter-spacing:-.015em}
p{margin:0}
a{color:var(--mc-primary);text-decoration:none}
a:hover{text-decoration:underline}
ul,ol{margin:0;padding:0}
button{font:inherit}
mark{background:#fff1b8;color:inherit;border-radius:3px;padding:.1em .05em;box-decoration-break:clone;-webkit-box-decoration-break:clone}
:focus-visible{outline:3px solid var(--mc-primary-light);outline-offset:2px;border-radius:4px}

.hc-shell{width:100%;max-width:var(--mc-shell);margin-inline:auto;padding-inline:24px}
.hc-section{margin-top:56px}
.hc-section-title{font-size:25px;font-weight:700;margin-bottom:20px}
.hc-dot{color:var(--mc-faint);margin:0 7px;display:inline-block}
.hc-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

.hc-skip{position:absolute;left:-9999px;top:0;background:#fff;color:var(--mc-primary);padding:12px 18px;z-index:200;border-radius:0 0 8px 0;font-weight:700}
.hc-skip:focus{left:0}

/* ---------------------------------------------------------------- buttons */
.hc-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:46px;padding:0 22px;border:1px solid transparent;border-radius:9px;
  font-family:Gilroy,sans-serif;font-weight:600;font-size:15px;cursor:pointer;
  transition:background .18s var(--mc-ease),border-color .18s var(--mc-ease),transform .18s var(--mc-ease),box-shadow .18s var(--mc-ease);
  white-space:nowrap;text-decoration:none;
}
.hc-btn:hover{text-decoration:none;transform:translateY(-1px)}
.hc-btn:active{transform:translateY(0)}
.hc-btn-primary{background:var(--mc-primary);color:#fff;box-shadow:0 6px 16px rgba(71,85,220,.26)}
.hc-btn-primary:hover{background:var(--mc-primary-dark);color:#fff}
.hc-btn-ghost{background:transparent;color:var(--mc-ink);border-color:var(--mc-line)}
.hc-btn-ghost:hover{border-color:var(--mc-primary);color:var(--mc-primary);background:#fff}
.hc-btn-lg{height:54px;padding:0 30px;font-size:16px}

/* ----------------------------------------------------------------- header */
.hc-header{position:sticky;top:0;z-index:100;background:var(--mc-dark);color:#fff}
.hc-header-inner{display:flex;align-items:center;gap:24px;min-height:72px}
.hc-logo{display:flex;align-items:center;gap:12px;flex:0 0 auto}
.hc-logo:hover{text-decoration:none}
.hc-logo img{display:block;width:150px;height:auto}
.hc-logo-sep{width:1px;height:22px;background:rgba(255,255,255,.28)}
.hc-logo-tag{font-family:Gilroy,sans-serif;font-weight:600;font-size:14px;color:rgba(255,255,255,.86);letter-spacing:.01em;white-space:nowrap}
.hc-nav{display:flex;align-items:center;gap:28px;margin-left:auto}
.hc-nav-list{display:flex;align-items:center;gap:26px;list-style:none}
.hc-nav-list a{color:rgba(255,255,255,.82);font-size:15px;font-family:Gilroy,sans-serif;font-weight:500;transition:color .16s}
.hc-nav-list a:hover{color:#fff;text-decoration:none}
.hc-nav-cta{display:flex;align-items:center;gap:10px}
.hc-nav-cta .hc-btn{height:40px;padding:0 18px;font-size:14px}
.hc-nav-cta .hc-btn-ghost{color:#fff;border-color:rgba(255,255,255,.34)}
.hc-nav-cta .hc-btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}
.hc-burger{display:none;margin-left:auto;width:44px;height:44px;background:none;border:0;cursor:pointer;flex-direction:column;justify-content:center;gap:5px;padding:0}
.hc-burger span{display:block;height:2px;width:22px;margin-inline:auto;background:#fff;border-radius:2px;transition:transform .2s var(--mc-ease),opacity .2s}
.hc-burger[aria-expanded=true] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hc-burger[aria-expanded=true] span:nth-child(2){opacity:0}
.hc-burger[aria-expanded=true] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ------------------------------------------------------------------- hero */
.hc-hero{
  position:relative;padding:72px 0 82px;text-align:center;color:#fff;
  background:
    radial-gradient(1100px 420px at 50% -12%,rgba(115,120,251,.5),transparent 62%),
    linear-gradient(135deg,#3b2c58 0%,#31244a 46%,#2b2350 100%);
  overflow:hidden;
}
.hc-hero::after{content:"";position:absolute;inset:auto 0 -1px 0;height:56px;background:linear-gradient(to bottom,transparent,var(--mc-surface))}
.hc-hero>.hc-shell{position:relative;z-index:2}
.hc-hero-eyebrow{font-family:Gilroy,sans-serif;font-weight:600;font-size:13px;letter-spacing:.13em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:14px}
.hc-hero h1{color:#fff;font-size:clamp(30px,4.4vw,48px);font-weight:700;margin-bottom:14px}
.hc-hero-sub{color:rgba(255,255,255,.76);font-size:18px;max-width:600px;margin:0 auto 32px}
.hc-hero-meta{margin-top:20px;font-size:14px;color:rgba(255,255,255,.55)}

/* -----------------------------------------------------------------  search
   One control: icon + input + submit share a single rounded field, so it can
   never fall apart when it wraps. Nothing is positioned against the form
   itself — that is what put the icon on top of the button on phones. */
.hc-search{position:relative;max-width:680px;margin-inline:auto;text-align:left}
.hc-search-field{
  display:flex;align-items:center;background:#fff;border:1px solid transparent;
  border-radius:12px;box-shadow:var(--mc-shadow-md);
  padding:6px 6px 6px 16px;transition:box-shadow .18s,border-color .18s;
}
.hc-search-field:focus-within{border-color:var(--mc-primary);box-shadow:0 0 0 4px rgba(71,85,220,.15),var(--mc-shadow-md)}
.hc-search-icon{
  flex:0 0 auto;width:19px;height:19px;margin-right:12px;background:var(--mc-faint);
  -webkit-mask:var(--icon-search) center/contain no-repeat;mask:var(--icon-search) center/contain no-repeat;
}
.hc-search-field:focus-within .hc-search-icon{background:var(--mc-primary)}
.hc-search input[type=search]{
  flex:1 1 auto;min-width:0;height:46px;padding:0;border:0;background:none;
  color:var(--mc-ink);font:400 16px/1 Lato,sans-serif;-webkit-appearance:none;appearance:none;
}
.hc-search input[type=search]:focus{outline:none}
.hc-search input[type=search]::placeholder{color:var(--mc-faint)}
.hc-search input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}
.hc-search-submit{
  flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;
  height:46px;padding:0 24px;border:0;border-radius:9px;cursor:pointer;
  background:var(--mc-primary);color:#fff;font-family:Gilroy,sans-serif;font-weight:600;font-size:15px;
  transition:background .18s var(--mc-ease);
}
.hc-search-submit:hover{background:var(--mc-primary-dark)}
.hc-search-submit-icon{display:none;width:19px;height:19px;background:#fff;
  -webkit-mask:var(--icon-search) center/contain no-repeat;mask:var(--icon-search) center/contain no-repeat}
/* inline variants sit on white, so they need a visible edge */
.hc-article-shell .hc-search,.hc-section .hc-search{margin-inline:0}
.hc-article-shell .hc-search-field,.hc-section .hc-search-field,.hc-error .hc-search-field{border-color:var(--mc-line);box-shadow:var(--mc-shadow-sm)}
.hc-error .hc-search{margin-inline:auto}

.hc-suggest{
  position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:60;
  background:#fff;border:1px solid var(--mc-line);border-radius:12px;box-shadow:var(--mc-shadow-lg);
  overflow:hidden;max-height:min(60vh,420px);overflow-y:auto;
}
.hc-suggest[hidden]{display:none}
.hc-suggest a{display:block;padding:12px 18px;border-bottom:1px solid var(--mc-line-soft);color:var(--mc-ink)}
.hc-suggest a:last-child{border-bottom:0}
.hc-suggest a:hover,.hc-suggest a.is-active{background:var(--mc-surface-2);text-decoration:none}
.hc-suggest-title{display:block;font-family:Gilroy,sans-serif;font-weight:600;font-size:15px;line-height:1.35}
.hc-suggest-cat{font-size:13px;color:var(--mc-muted);margin-top:3px;line-height:1.45;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hc-suggest-empty{padding:16px 18px;color:var(--mc-muted);font-size:14.5px}

/* ------------------------------------------------------------- categories */
.hc-cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:18px}
.hc-cat-card{
  position:relative;display:flex;align-items:flex-start;gap:16px;padding:24px 58px 24px 24px;
  background:#fff;border:1px solid var(--mc-line);border-radius:var(--mc-radius);
  box-shadow:var(--mc-shadow-sm);transition:transform .2s var(--mc-ease),box-shadow .2s var(--mc-ease),border-color .2s;
}
.hc-cat-card:hover{transform:translateY(-3px);box-shadow:var(--mc-shadow-md);border-color:#d3daf5;text-decoration:none}
.hc-cat-icon{flex:0 0 auto;width:44px;height:44px;border-radius:12px;position:relative;
  background:linear-gradient(140deg,rgba(71,85,220,.13),rgba(93,62,206,.16))}
.hc-cat-icon::after{content:"";position:absolute;inset:0;margin:auto;width:22px;height:22px;background:var(--mc-primary);
  -webkit-mask:var(--i) center/contain no-repeat;mask:var(--i) center/contain no-repeat}
.hc-cat-icon-lg{width:58px;height:58px;border-radius:16px}
.hc-cat-icon-lg::after{width:29px;height:29px}
[data-icon=rocket]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 15c-1.5 1.5-2 5-2 5s3.5-.5 5-2c.9-.9.9-2.3 0-3.2a2.2 2.2 0 0 0-3 .2z'/%3E%3Cpath d='M12.5 14.5 9.5 11.5c1-3 3-6 8-8 0 5-2 7-5 8z'/%3E%3Cpath d='M9.5 11.5 6 12l-2-2 3-2z'/%3E%3Cpath d='M12.5 14.5 12 18l2 2 2-3z'/%3E%3C/svg%3E")}
[data-icon=target]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='4.4'/%3E%3Ccircle cx='12' cy='12' r='1.2' fill='%23000' stroke='none'/%3E%3C/svg%3E")}
[data-icon=plug]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 3v5M14 3v5'/%3E%3Cpath d='M7 8h10v3a5 5 0 0 1-5 5 5 5 0 0 1-5-5z'/%3E%3Cpath d='M12 16v5'/%3E%3C/svg%3E")}
[data-icon=shield]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.4-3 7.7-7 9-4-1.3-7-4.6-7-9V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E")}
[data-icon=wallet]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath d='M16 12h5v4h-5a2 2 0 0 1 0-4z'/%3E%3C/svg%3E")}
[data-icon=chart]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16'/%3E%3Crect x='6' y='11' width='3.4' height='7' rx='1'/%3E%3Crect x='11.6' y='7' width='3.4' height='11' rx='1'/%3E%3Crect x='17' y='14' width='3' height='4' rx='1'/%3E%3C/svg%3E")}
[data-icon=book]{--i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h11v18H6a2 2 0 0 1-2-2z'/%3E%3Cpath d='M8 7h6M8 11h6'/%3E%3C/svg%3E")}
.hc-cat-body{display:flex;flex-direction:column;gap:5px;min-width:0}
.hc-cat-name{font-family:Gilroy,sans-serif;font-weight:700;font-size:18px;color:var(--mc-ink)}
.hc-cat-desc{font-size:14.5px;line-height:1.55;color:var(--mc-muted)}
.hc-cat-count{position:absolute;top:24px;right:22px;min-width:28px;height:24px;padding:0 8px;
  display:inline-flex;align-items:center;justify-content:center;border-radius:99px;
  background:var(--mc-surface-3);color:var(--mc-primary);font-family:Gilroy,sans-serif;font-weight:600;font-size:13px}

/* -------------------------------------------------------- lists / columns */
.hc-two-col{display:grid;grid-template-columns:1fr 330px;gap:44px;align-items:start}
.hc-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.hc-list a{display:flex;flex-direction:column;gap:4px;padding:16px 20px;
  border:1px solid var(--mc-line);border-radius:var(--mc-radius-sm);background:#fff;
  transition:border-color .18s,box-shadow .18s,transform .18s var(--mc-ease)}
.hc-list a:hover{border-color:var(--mc-primary);box-shadow:var(--mc-shadow-sm);transform:translateX(2px);text-decoration:none}
.hc-list-title{font-family:Gilroy,sans-serif;font-weight:600;font-size:16.5px;color:var(--mc-ink);line-height:1.4}
.hc-list-meta{font-size:13.5px;color:var(--mc-faint)}
.hc-aside{background:var(--mc-surface-2);border-radius:var(--mc-radius);padding:24px}
.hc-aside .hc-section-title{font-size:19px;margin-bottom:14px}
.hc-list-compact a{padding:12px 14px;background:#fff}

/* ----------------------------------------------------------- article grid */
.hc-art-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px}
.hc-art-card{display:flex;flex-direction:column;gap:8px;padding:22px;background:#fff;
  border:1px solid var(--mc-line);border-radius:var(--mc-radius);box-shadow:var(--mc-shadow-sm);
  transition:transform .2s var(--mc-ease),box-shadow .2s var(--mc-ease),border-color .2s}
.hc-art-card:hover{transform:translateY(-3px);box-shadow:var(--mc-shadow-md);border-color:#d3daf5;text-decoration:none}
.hc-art-title{font-family:Gilroy,sans-serif;font-weight:700;font-size:17px;color:var(--mc-ink);line-height:1.38}
.hc-art-excerpt{font-size:14.5px;line-height:1.6;color:var(--mc-muted);
  display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.hc-art-meta{margin-top:auto;padding-top:8px;font-size:13px;color:var(--mc-faint)}

/* ------------------------------------------------------------- crumbs/tag */
.hc-article-shell{padding-top:26px;padding-bottom:64px}
.hc-crumbs{margin-bottom:20px}
.hc-crumbs ol{list-style:none;display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:13.5px}
.hc-crumbs li+li::before{content:"/";color:var(--mc-faint);margin-right:8px}
.hc-crumbs a{color:var(--mc-muted)}
.hc-crumbs a:hover{color:var(--mc-primary)}
.hc-crumbs [aria-current=page] span{color:var(--mc-ink);font-weight:600}
.hc-tag{display:inline-block;padding:5px 12px;border-radius:99px;background:var(--mc-surface-3);
  color:var(--mc-primary);font-family:Gilroy,sans-serif;font-weight:600;font-size:12.5px;
  letter-spacing:.02em;margin-bottom:14px}
.hc-tag:hover{background:var(--mc-primary);color:#fff;text-decoration:none}

/* -------------------------------------------------------- category header */
.hc-cat-head{display:flex;gap:20px;align-items:flex-start;margin-bottom:28px}
.hc-cat-head h1{font-size:clamp(28px,3.4vw,38px);font-weight:700;margin-bottom:8px}
.hc-cat-head-desc{color:var(--mc-muted);font-size:17px;max-width:660px}
.hc-cat-head-count{margin-top:8px;font-size:13.5px;color:var(--mc-faint)}

/* ---------------------------------------------------------------- article */
.hc-article-layout{display:grid;grid-template-columns:minmax(0,1fr) 250px;gap:60px;align-items:start}
/* No headings means no sidebar; centre the column so the page does not sit
   in the left third of a wide screen with a dead void beside it. */
.hc-article-layout-notoc{grid-template-columns:minmax(0,1fr)}
.hc-article-layout-notoc .hc-article{max-width:790px;margin-inline:auto;width:100%}
.hc-article-head{margin-bottom:34px;padding-bottom:26px;border-bottom:1px solid var(--mc-line)}
.hc-article-head h1{font-size:clamp(29px,3.5vw,40px);font-weight:700;margin-bottom:14px;max-width:24ch}
.hc-article-meta{font-size:14px;color:var(--mc-faint)}

.hc-toc-wrap{position:sticky;top:100px;max-height:calc(100vh - 130px);overflow-y:auto}
.hc-toc{border-left:2px solid var(--mc-line);padding-left:18px}
.hc-toc-head{font-family:Gilroy,sans-serif;font-weight:600;font-size:12px;letter-spacing:.11em;text-transform:uppercase;color:var(--mc-faint);margin-bottom:14px}
.hc-toc ul{list-style:none;display:flex;flex-direction:column;gap:2px}
.hc-toc li{position:relative}
.hc-toc a{color:var(--mc-muted);font-size:14px;line-height:1.45;padding:5px 0;transition:color .15s;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hc-toc a:hover{color:var(--mc-primary);text-decoration:none}
.hc-toc li.is-active>a{color:var(--mc-primary);font-weight:600}
.hc-toc li.is-active::before{content:"";position:absolute;left:-20px;top:6px;bottom:6px;width:2px;background:var(--mc-primary);border-radius:2px}
.hc-toc-h3 a{padding-left:14px;font-size:13.5px}

/* ------------------------------------------------------------------ prose
   Section rhythm is the point: an h2 opens a new section with a hairline rule
   above it, so a long guide reads as discrete blocks instead of one wall. */
.hc-prose{font-size:17px;line-height:1.72;color:var(--mc-body);max-width:var(--mc-measure)}
.hc-prose>*+*{margin-top:1.1em}

.hc-prose h2{font-size:24px;font-weight:700;line-height:1.3;
  margin-top:2.6em;padding-top:1.5em;border-top:1px solid var(--mc-line);scroll-margin-top:100px}
.hc-prose>h2:first-child{margin-top:0;padding-top:0;border-top:0}
.hc-prose h2+*{margin-top:1em}
.hc-prose h3{font-size:19.5px;font-weight:600;margin-top:2em;color:var(--mc-ink);scroll-margin-top:100px}
.hc-prose h3+*{margin-top:.7em}
.hc-prose h4{font-size:17.5px;font-weight:600;margin-top:1.7em;color:var(--mc-ink)}
.hc-prose h4+*{margin-top:.6em}

.hc-prose a{color:var(--mc-primary);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px;
  text-decoration-color:rgba(71,85,220,.4);transition:text-decoration-color .15s,color .15s;word-break:break-word}
.hc-prose a:hover{color:var(--mc-primary-dark);text-decoration-color:currentColor}
.hc-prose strong,.hc-prose b{color:var(--mc-ink);font-weight:700}

/* A paragraph that is entirely bold is an author's lead-in, not shouting.
   The import tags those with .mc-lead — a CSS :only-child test would also
   catch "<strong>Label</strong>: text" run-ins and strand the colon. */
.hc-prose p.mc-lead{
  font-family:Gilroy,sans-serif;font-weight:600;font-size:1.06em;
  line-height:1.55;color:var(--mc-ink);letter-spacing:-.005em;
}
.hc-prose p.mc-lead strong,.hc-prose p.mc-lead b{font-weight:600}

/* ---- lists ---- */
.hc-prose ul,.hc-prose ol{padding-left:0;list-style:none;display:flex;flex-direction:column;gap:.6em}
.hc-prose li{position:relative;padding-left:1.9em}
.hc-prose ul>li::before{content:"";position:absolute;left:.45em;top:.62em;width:6px;height:6px;border-radius:50%;background:var(--mc-primary)}
.hc-prose ol{counter-reset:hcnum}
.hc-prose ol>li{counter-increment:hcnum}
.hc-prose ol>li::before{
  content:counter(hcnum);position:absolute;left:0;top:.08em;
  width:1.45em;height:1.45em;border-radius:50%;
  background:var(--mc-primary-wash);color:var(--mc-primary);
  font-family:Gilroy,sans-serif;font-weight:600;font-size:.82em;
  display:flex;align-items:center;justify-content:center;
}
.hc-prose li>ul,.hc-prose li>ol{margin-top:.55em}
.hc-prose li>ul>li::before{background:none;border:1.5px solid var(--mc-primary);width:6px;height:6px}
.hc-prose li p{margin:0}
.hc-prose li p+p{margin-top:.5em}

.hc-prose blockquote{margin:1.6em 0;padding:16px 22px;border-left:3px solid var(--mc-primary);
  background:var(--mc-surface-2);border-radius:0 10px 10px 0;color:var(--mc-body)}
.hc-prose blockquote p+p{margin-top:.7em}

.hc-prose code,.hc-prose .mc-code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:.86em;
  background:var(--mc-primary-wash);border:1px solid rgba(71,85,220,.16);
  color:var(--mc-violet);padding:.14em .42em;border-radius:5px;word-break:break-word;
}
.hc-prose pre,.hc-prose .mc-pre{background:#1e1b33;color:#e8e6f5;padding:18px 20px;border-radius:12px;
  overflow-x:auto;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:14px;line-height:1.6}
.hc-prose pre code{background:none;border:0;color:inherit;padding:0}

/* ---- media ---- */
.hc-prose img{display:block;width:100%;height:auto;border:1px solid var(--mc-line);
  border-radius:12px;box-shadow:var(--mc-shadow-sm);background:var(--mc-surface-2)}
.hc-prose .mc-figure{display:block;margin:1.7em 0}
.hc-prose hr{border:0;border-top:1px solid var(--mc-line);margin:2.4em 0}

.hc-embed{position:relative;margin:1.7em 0;padding-top:56.25%;border-radius:12px;overflow:hidden;
  background:#1e1b33;box-shadow:var(--mc-shadow-sm)}
.hc-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}

.hc-table-wrap{overflow-x:auto;border:1px solid var(--mc-line);border-radius:12px;background:#fff;margin:1.6em 0}
.hc-prose table{border-collapse:collapse;width:100%;font-size:15px}
.hc-prose th,.hc-prose td{padding:12px 16px;border-bottom:1px solid var(--mc-line-soft);text-align:left;vertical-align:top}
.hc-prose thead th{background:var(--mc-surface-2);font-family:Gilroy,sans-serif;font-weight:600;color:var(--mc-ink);white-space:nowrap}
.hc-prose tbody tr:last-child td{border-bottom:0}

/* --------------------------------------------------------------- feedback */
.hc-feedback{margin-top:56px;padding:22px 26px;background:var(--mc-surface-2);
  border:1px solid var(--mc-line);border-radius:var(--mc-radius);
  display:flex;flex-wrap:wrap;align-items:center;gap:16px}
.hc-feedback-q{font-family:Gilroy,sans-serif;font-weight:600;color:var(--mc-ink);font-size:16px}
.hc-feedback-actions{display:flex;gap:10px;margin-left:auto}
.hc-feedback .hc-btn{height:40px;padding:0 24px;background:#fff}
.hc-feedback-thanks,.hc-feedback-more{width:100%;font-size:15px;color:var(--mc-muted);margin:0}
.hc-feedback.is-done .hc-feedback-q,.hc-feedback.is-done .hc-feedback-actions{display:none}

/* ------------------------------------------------------------------ pager */
.hc-pager{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:36px}
.hc-pager-link{display:flex;flex-direction:column;gap:5px;padding:18px 20px;background:#fff;
  border:1px solid var(--mc-line);border-radius:var(--mc-radius);transition:border-color .18s,box-shadow .18s}
.hc-pager-link:hover{border-color:var(--mc-primary);box-shadow:var(--mc-shadow-sm);text-decoration:none}
.hc-pager-next{text-align:right}
.hc-pager-label{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--mc-faint);font-family:Gilroy,sans-serif;font-weight:600}
.hc-pager-title{font-family:Gilroy,sans-serif;font-weight:600;color:var(--mc-ink);font-size:15.5px;line-height:1.4}

/* ----------------------------------------------------------- search page */
.hc-search-h1{font-size:clamp(25px,3vw,33px);font-weight:700;margin-bottom:22px}
.hc-results{list-style:none;display:flex;flex-direction:column;gap:12px;margin-top:32px}
.hc-results a{display:flex;flex-direction:column;gap:6px;padding:20px 22px;background:#fff;
  border:1px solid var(--mc-line);border-radius:var(--mc-radius);transition:border-color .18s,box-shadow .18s,transform .18s var(--mc-ease)}
.hc-results a:hover{border-color:var(--mc-primary);box-shadow:var(--mc-shadow-sm);transform:translateX(2px);text-decoration:none}
.hc-result-cat{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--mc-primary);font-family:Gilroy,sans-serif;font-weight:600}
.hc-result-title{font-family:Gilroy,sans-serif;font-weight:700;font-size:18px;color:var(--mc-ink);line-height:1.35}
.hc-result-snippet{font-size:15px;line-height:1.6;color:var(--mc-muted)}
.hc-empty{margin-top:34px;padding:34px;background:var(--mc-surface-2);border-radius:var(--mc-radius);display:flex;flex-direction:column;gap:10px}
.hc-empty-title{font-family:Gilroy,sans-serif;font-weight:700;font-size:19px;color:var(--mc-ink)}

.hc-chiplist{list-style:none;display:flex;flex-wrap:wrap;gap:10px}
.hc-chip{display:inline-flex;align-items:center;gap:8px;padding:9px 16px;border-radius:99px;
  border:1px solid var(--mc-line);background:#fff;color:var(--mc-ink);
  font-family:Gilroy,sans-serif;font-weight:600;font-size:14.5px;transition:all .18s var(--mc-ease)}
.hc-chip span{color:var(--mc-faint);font-weight:500;font-size:13px}
.hc-chip:hover{border-color:var(--mc-primary);color:var(--mc-primary);text-decoration:none;transform:translateY(-1px)}
.hc-chip:hover span{color:var(--mc-primary-light)}

/* ------------------------------------------------------------------ error */
.hc-error{padding:80px 24px 90px;text-align:center;max-width:720px}
.hc-error-code{font-family:Gilroy,sans-serif;font-weight:700;font-size:76px;line-height:1;color:var(--mc-surface-3)}
.hc-error h1{font-size:32px;font-weight:700;margin:10px 0 12px}
.hc-error-sub{color:var(--mc-muted);font-size:17px;margin-bottom:28px}
.hc-error .hc-chiplist{justify-content:center}

/* -------------------------------------------------------------------- cta */
.hc-cta{margin-top:72px;background:linear-gradient(135deg,#3b2c58,#31244a 55%,#2b2350);color:#fff}
.hc-cta-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:26px;padding:52px 24px}
.hc-cta h2{color:#fff;font-size:28px;font-weight:700;margin-bottom:8px}
.hc-cta p{color:rgba(255,255,255,.74);font-size:16.5px;max-width:560px}
.hc-cta-actions{display:flex;flex-wrap:wrap;gap:12px}
.hc-cta .hc-btn-ghost{color:#fff;border-color:rgba(255,255,255,.36)}
.hc-cta .hc-btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}

/* ----------------------------------------------------------------- footer */
.hc-footer{background:var(--mc-dark);color:rgba(255,255,255,.72);font-size:15px;padding:52px 0 30px}
.hc-footer a{color:rgba(255,255,255,.72);transition:color .15s}
.hc-footer a:hover{color:#fff;text-decoration:none}
.hc-footer-top{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:24px;padding-bottom:30px;border-bottom:1px solid rgba(255,255,255,.12)}
.hc-footer-logo{width:160px;height:auto}
.hc-footer-contact{display:flex;flex-wrap:wrap;align-items:center;gap:10px 26px}
.hc-footer-phone{font-family:Gilroy,sans-serif;font-weight:600;font-size:18px;color:#fff!important}
.hc-footer-contact ul{list-style:none;display:flex;flex-wrap:wrap;gap:22px;font-size:14.5px}
.hc-awards{display:flex;flex-wrap:wrap;gap:26px 34px;padding:28px 0;border-bottom:1px solid rgba(255,255,255,.12)}
.hc-award{display:flex;align-items:center;gap:12px;min-width:210px}
.hc-award img{height:56px;width:auto;flex:0 0 auto}
.hc-award p{font-size:12.5px;line-height:1.45;color:rgba(255,255,255,.78);margin-bottom:3px}
.hc-award a{font-size:12.5px;color:var(--mc-primary-light)!important;text-decoration:underline}
.hc-footer-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:30px;padding:34px 0}
.hc-footer-head{font-family:Gilroy,sans-serif;font-weight:600;font-size:15.5px;color:#fff;margin-bottom:14px}
.hc-footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px;font-size:14.5px}
.hc-footer-social a{display:inline-flex;align-items:center;gap:9px}
.hc-footer-social img{opacity:.72}
.hc-copyright{padding-top:22px;border-top:1px solid rgba(255,255,255,.12);font-size:13.5px;color:rgba(255,255,255,.5)}

/* ------------------------------------------------------------- responsive */
@media (max-width:1080px){
  .hc-article-layout{grid-template-columns:minmax(0,1fr);gap:0}
  .hc-toc-wrap{position:static;order:-1;margin-bottom:32px;max-height:none;overflow:visible}
  .hc-toc{border-left:0;border:1px solid var(--mc-line);border-radius:var(--mc-radius);padding:18px 20px;background:var(--mc-surface-2)}
  .hc-toc li.is-active::before{display:none}
  .hc-toc a{-webkit-line-clamp:1}
  .hc-two-col{grid-template-columns:minmax(0,1fr);gap:40px}
  .hc-prose{max-width:none}
}
@media (max-width:860px){
  .hc-burger{display:flex}
  .hc-nav{position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;gap:0;
    background:var(--mc-dark-2);padding:0 24px;max-height:0;overflow:hidden;
    transition:max-height .28s var(--mc-ease),padding .28s var(--mc-ease)}
  .hc-nav.is-open{max-height:76vh;overflow-y:auto;padding:12px 24px 22px;box-shadow:var(--mc-shadow-lg)}
  .hc-nav-list{flex-direction:column;align-items:stretch;gap:0}
  .hc-nav-list a{display:block;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:16px}
  .hc-nav-cta{margin-top:16px}
  .hc-nav-cta .hc-btn{flex:1;height:46px}
  .hc-header-inner{position:relative}
}
@media (max-width:680px){
  body.hc-body{font-size:16px}
  .hc-shell{padding-inline:18px}
  .hc-hero{padding:48px 0 58px}
  .hc-hero-sub{font-size:16.5px;margin-bottom:26px}

  /* the search stays ONE row — the button collapses to its icon */
  .hc-search-field{padding:5px 5px 5px 14px;border-radius:11px}
  .hc-search input[type=search]{height:44px;font-size:16px}
  .hc-search-icon{margin-right:10px}
  .hc-search-submit{width:44px;height:44px;padding:0;border-radius:8px}
  .hc-search-submit-text{display:none}
  .hc-search-submit-icon{display:block}

  .hc-cat-grid,.hc-art-grid{grid-template-columns:1fr}
  .hc-cat-card{padding:20px 52px 20px 20px}
  .hc-pager{grid-template-columns:1fr}
  .hc-pager-next{text-align:left}
  .hc-cta-inner{padding:40px 18px}
  .hc-cta-actions{width:100%}
  .hc-cta-actions .hc-btn{flex:1}
  .hc-feedback{padding:20px}
  .hc-feedback-actions{margin-left:0;width:100%}
  .hc-feedback-actions .hc-btn{flex:1}
  .hc-cat-head{flex-direction:column;gap:14px}
  .hc-logo-tag,.hc-logo-sep{display:none}
  /* the last crumb repeats the <h1> directly below it — drop it on phones */
  .hc-crumbs li[aria-current]{display:none}

  .hc-prose{font-size:16.5px;line-height:1.7}
  .hc-prose h2{font-size:21px;margin-top:2.2em;padding-top:1.3em}
  .hc-prose h3{font-size:18px;margin-top:1.7em}
  .hc-prose li{padding-left:1.7em}
  .hc-article-head h1{max-width:none}
  .hc-article-head{margin-bottom:28px}
}

/* --------------------------------------------------------------- printing */
@media print{
  .hc-header,.hc-footer,.hc-cta,.hc-toc-wrap,.hc-feedback,.hc-pager,.hc-search,.hc-crumbs{display:none!important}
  body.hc-body{font-size:12pt;color:#000}
  .hc-prose{max-width:none}
  .hc-prose img{border:1px solid #ccc;box-shadow:none;page-break-inside:avoid}
  .hc-prose h2,.hc-prose h3{page-break-after:avoid}
  .hc-article-layout{display:block}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .hc-btn:hover,.hc-cat-card:hover,.hc-art-card:hover,.hc-list a:hover,.hc-results a:hover{transform:none}
}
