/* ===========================================================================
   LiveCustomer design system
   One stylesheet for every marketing page. Edit here, not in the pages.

   Scale notes: the type ramp is a 1.15 modular scale anchored at 16px, the
   container is 1160px with 20px gutters, and full-bleed sections sit on white
   while tinted sections are 32px-radius panels inset from the page edge.
   =========================================================================== */

:root{
  --font:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  /* 1.15 modular scale */
  --t-xs:.8125rem;
  --t-sm:.875rem;
  --t-base:1rem;
  --t-md:1.125rem;
  --t-lg:1.29rem;
  --t-xl:1.49rem;
  --t-2xl:1.71rem;
  --t-3xl:1.96rem;
  --t-4xl:2.26rem;
  --t-5xl:2.59rem;

  --ink:#14171f;
  --ink-2:#3d4350;
  --muted:#697086;
  --muted-2:#8b91a1;
  --line:#e5e7ec;
  --line-2:#eef0f4;
  --surface:#f7f8fa;
  --surface-2:#f1f3f7;

  --brand:#1a3a5c;
  --brand-600:#15304c;
  --brand-700:#0c2a4a;
  --brand-tint:#eef4fb;
  --accent:#ff5a1f;
  --accent-tint:#fff1ea;
  --green:#16a34a;
  --green-tint:#e8f8ee;

  --container:1160px;
  --gutter:20px;

  --r-sm:8px;
  --r-md:12px;
  --r-lg:16px;
  --r-xl:24px;
  --r-2xl:32px;
  --r-pill:999px;

  --shadow-sm:0 1px 2px rgba(16,24,40,.05);
  --shadow-md:0 4px 16px rgba(16,24,40,.07);
  --shadow-lg:0 24px 60px -18px rgba(12,42,74,.3);
}

/* --------------------------------------------------------------- reset --- */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  font-family:var(--font);
  font-size:var(--t-base);
  line-height:1.6;
  color:var(--ink);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-wrap:break-word;
}
img,svg,video,canvas{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button,input,textarea{font:inherit;color:inherit;}
ul,ol{list-style:none;}

/* A visible focus ring everywhere, since almost everything here is a link. */
:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:4px;}

/* ---------------------------------------------------------- typography --- */

h1,h2,h3,h4{line-height:1.15;letter-spacing:-.02em;font-weight:700;}

.display{font-size:clamp(2.25rem,1.35rem + 3.6vw,3.9rem);line-height:1.06;letter-spacing:-.035em;}
.h2{font-size:clamp(1.8rem,1.25rem + 1.9vw,2.59rem);letter-spacing:-.03em;}
.h3{font-size:clamp(1.25rem,1.1rem + .6vw,1.49rem);letter-spacing:-.02em;}
.h4{font-size:var(--t-md);letter-spacing:-.015em;}

.lede{font-size:clamp(1.0625rem,1rem + .35vw,1.29rem);color:var(--ink-2);line-height:1.55;}
.sub{font-size:var(--t-md);color:var(--muted);line-height:1.6;}
.small{font-size:var(--t-sm);color:var(--muted);}
.fine{font-size:var(--t-xs);color:var(--muted-2);}

.eyebrow{
  font-size:var(--t-xs);font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--brand);
}
.eyebrow--accent{color:var(--accent);}

/* ------------------------------------------------------------- layout --- */

.container{max-width:var(--container);margin:0 auto;padding:0 var(--gutter);}
.container--narrow{max-width:760px;}

.section{padding:88px 0;}
.section--tight{padding:56px 0;}

/* Tinted sections are inset rounded panels, not full-bleed bands. */
.panel{
  background:var(--surface);
  border-radius:var(--r-2xl);
  margin:0 var(--gutter);
  padding:88px 0;
}
.panel--brand{background:var(--brand);color:#fff;}
.panel--brand .h2{color:#fff;}
.panel--brand .sub,.panel--brand .lede{color:rgba(255,255,255,.75);}

.section-head{max-width:680px;margin:0 auto 52px;text-align:center;}
.section-head .eyebrow{display:block;margin-bottom:14px;}
.section-head .sub{margin-top:14px;}

.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}

/* ------------------------------------------------------------ buttons --- */

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:var(--t-sm);font-weight:600;letter-spacing:-.01em;
  padding:13px 22px;border-radius:var(--r-sm);border:1px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:background .15s ease,border-color .15s ease,transform .15s ease,box-shadow .15s ease;
}
.btn:active{transform:translateY(1px);}

.btn--primary{background:var(--brand);color:#fff;box-shadow:var(--shadow-sm);}
.btn--primary:hover{background:var(--brand-700);box-shadow:var(--shadow-md);}

.btn--ghost{background:#fff;color:var(--brand);border-color:var(--line);}
.btn--ghost:hover{border-color:var(--brand);background:var(--brand-tint);}

.btn--light{background:#fff;color:var(--brand);}
.btn--light:hover{background:var(--brand-tint);}

.btn--lg{padding:16px 30px;font-size:var(--t-base);border-radius:10px;}
.btn--block{width:100%;}

/* A quiet inline "learn more" link with a nudging arrow, like LiveChat's. */
.link-arrow{
  display:inline-flex;align-items:center;gap:6px;
  font-size:var(--t-sm);font-weight:600;color:var(--brand);
}
.link-arrow::after{content:"\2192";transition:transform .15s ease;}
.link-arrow:hover::after{transform:translateX(3px);}

/* ---------------------------------------------------------------- nav --- */

.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.85);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line-2);
}
.nav__inner{display:flex;align-items:center;gap:32px;height:64px;}
.nav__logo{display:flex;align-items:center;gap:9px;font-size:var(--t-md);font-weight:700;letter-spacing:-.025em;color:var(--brand);}
.nav__mark{width:26px;height:26px;border-radius:7px;background:var(--brand);display:grid;place-items:center;flex-shrink:0;}
.nav__links{display:flex;align-items:center;gap:26px;font-size:var(--t-sm);font-weight:500;color:var(--ink-2);}
.nav__links a:hover{color:var(--brand);}
.nav__right{margin-left:auto;display:flex;align-items:center;gap:14px;}
.nav__signin{font-size:var(--t-sm);font-weight:600;color:var(--ink-2);}
.nav__signin:hover{color:var(--brand);}
.nav__toggle{display:none;background:none;border:1px solid var(--line);border-radius:var(--r-sm);padding:8px 10px;cursor:pointer;}
.nav__drawer{display:none;border-top:1px solid var(--line-2);padding:12px var(--gutter) 20px;background:#fff;}
.nav__drawer a{display:block;padding:12px 4px;font-size:var(--t-base);font-weight:500;border-bottom:1px solid var(--line-2);}
.nav__drawer[data-open="true"]{display:block;}

/* --------------------------------------------------------------- hero --- */

.hero{padding:76px 0 88px;background:
  radial-gradient(1100px 460px at 50% -180px,var(--brand-tint),transparent 70%);}
.hero__inner{text-align:center;max-width:780px;margin:0 auto;}
.hero .display{margin-bottom:20px;}
.hero .lede{max-width:600px;margin:0 auto 32px;}
.hero__btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.hero__note{margin-top:18px;display:flex;gap:18px;justify-content:center;flex-wrap:wrap;font-size:var(--t-xs);color:var(--muted-2);}
.hero__note span{display:inline-flex;align-items:center;gap:6px;}
.hero__note svg{flex-shrink:0;}

/* --------------------------------------------------------------- card --- */

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:28px;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease;
}
.card--hover:hover{border-color:#d3d8e2;box-shadow:var(--shadow-md);transform:translateY(-2px);}
.card__icon{
  width:42px;height:42px;border-radius:11px;background:var(--brand-tint);
  display:grid;place-items:center;margin-bottom:18px;
}
.card__icon svg{stroke:var(--brand);}
.card .h4{margin-bottom:8px;}
.card p{font-size:var(--t-sm);color:var(--muted);line-height:1.65;}

/* ------------------------------------------------------- product chrome --- */
/* Shared frame that makes an HTML mockup read as a real screenshot. */

.shot{
  border:1px solid var(--line);border-radius:var(--r-lg);
  background:#fff;box-shadow:var(--shadow-lg);overflow:hidden;
}
.shot__bar{
  display:flex;align-items:center;gap:7px;
  padding:11px 14px;background:var(--surface-2);border-bottom:1px solid var(--line);
}
.shot__dot{width:9px;height:9px;border-radius:50%;background:#d6dae3;}
.shot__title{margin-left:8px;font-size:var(--t-xs);color:var(--muted-2);font-weight:500;}
.shot__body{padding:18px;}

/* chat widget mockup */
.widget{max-width:380px;margin:0 auto;border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow-lg);background:#fff;}
.widget__head{background:var(--brand);padding:15px 18px;display:flex;align-items:center;gap:11px;}
.widget__av{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.16);display:grid;place-items:center;flex-shrink:0;}
.widget__name{font-size:var(--t-sm);font-weight:700;color:#fff;letter-spacing:-.01em;}
.widget__status{font-size:11px;color:rgba(255,255,255,.8);display:flex;align-items:center;gap:5px;}
.dot-live{width:6px;height:6px;border-radius:50%;background:#4ade80;box-shadow:0 0 0 3px rgba(74,222,128,.25);}
.widget__msgs{padding:18px 16px;background:var(--surface);min-height:210px;max-height:280px;overflow-y:auto;display:flex;flex-direction:column;gap:12px;}
.msg{display:flex;gap:9px;align-items:flex-end;}
.msg--me{flex-direction:row-reverse;}
.msg__av{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;font-size:10px;font-weight:700;flex-shrink:0;background:var(--brand-tint);color:var(--brand);}
.msg--me .msg__av{background:var(--brand);color:#fff;}
.bubble{padding:10px 14px;border-radius:16px;font-size:var(--t-sm);line-height:1.5;max-width:78%;}
.bubble--bot{background:#fff;border:1px solid var(--line);border-bottom-left-radius:5px;}
.bubble--me{background:var(--brand);color:#fff;border-bottom-right-radius:5px;}
.widget__foot{display:flex;gap:9px;padding:12px;border-top:1px solid var(--line);background:#fff;}
.widget__input{flex:1;border:1px solid var(--line);border-radius:var(--r-pill);padding:10px 16px;font-size:var(--t-sm);outline:none;}
.widget__input:focus{border-color:var(--brand);}
.widget__send{width:38px;height:38px;border-radius:50%;background:var(--brand);border:none;color:#fff;display:grid;place-items:center;cursor:pointer;flex-shrink:0;}
.widget__send:hover{background:var(--brand-700);}
.typing{display:inline-flex;gap:4px;align-items:center;padding:3px 0;}
.typing i{width:6px;height:6px;border-radius:50%;background:var(--muted-2);animation:blink 1.2s infinite;}
.typing i:nth-child(2){animation-delay:.2s;}
.typing i:nth-child(3){animation-delay:.4s;}
@keyframes blink{0%,60%,100%{opacity:.25;}30%{opacity:1;}}

/* dashboard mockups */
.rows{display:flex;flex-direction:column;}
.row{display:flex;align-items:center;gap:12px;padding:12px 4px;border-bottom:1px solid var(--line-2);font-size:var(--t-sm);}
.row:last-child{border-bottom:none;}
.row__av{width:30px;height:30px;border-radius:50%;background:var(--brand-tint);color:var(--brand);display:grid;place-items:center;font-size:11px;font-weight:700;flex-shrink:0;}
.row__main{min-width:0;flex:1;}
.row__name{font-weight:600;letter-spacing:-.01em;}
.row__meta{font-size:var(--t-xs);color:var(--muted-2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.row__side{margin-left:auto;font-size:var(--t-xs);color:var(--muted-2);white-space:nowrap;}

.tag{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;padding:3px 9px;border-radius:var(--r-pill);}
.tag--live{background:var(--green-tint);color:var(--green);}
.tag--new{background:var(--accent-tint);color:var(--accent);}
.tag--quiet{background:var(--surface-2);color:var(--muted);}

.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:16px;}
.stat{background:var(--surface);border-radius:var(--r-md);padding:14px;}
.stat__n{font-size:var(--t-2xl);font-weight:700;letter-spacing:-.03em;line-height:1.1;}
.stat__l{font-size:var(--t-xs);color:var(--muted-2);margin-top:2px;}

/* ------------------------------------------------------------- pricing --- */

.price{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-xl);
  padding:32px 28px;display:flex;flex-direction:column;
}
.price--featured{border:2px solid var(--brand);position:relative;box-shadow:var(--shadow-md);}
.price__badge{
  position:absolute;top:-13px;left:50%;transform:translateX(-50%);
  background:var(--brand);color:#fff;font-size:11px;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;padding:5px 14px;border-radius:var(--r-pill);white-space:nowrap;
}
.price__name{font-size:var(--t-sm);font-weight:700;color:var(--brand);letter-spacing:.02em;}
.price__amt{font-size:2.6rem;font-weight:700;letter-spacing:-.04em;line-height:1.1;margin-top:10px;}
.price__amt span{font-size:var(--t-base);font-weight:500;color:var(--muted);letter-spacing:0;}
.price__desc{font-size:var(--t-sm);color:var(--muted);margin:6px 0 22px;}
.price__list{display:flex;flex-direction:column;gap:11px;margin-bottom:26px;flex:1;}
.price__list li{display:flex;gap:10px;font-size:var(--t-sm);color:var(--ink-2);line-height:1.45;}
.price__list svg{flex-shrink:0;margin-top:3px;stroke:var(--green);}

/* ----------------------------------------------------------------- faq --- */

.faq{max-width:760px;margin:0 auto;border-top:1px solid var(--line);}
.faq__item{border-bottom:1px solid var(--line);}
.faq__q{
  width:100%;background:none;border:none;cursor:pointer;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  padding:22px 0;font-size:var(--t-md);font-weight:600;letter-spacing:-.015em;
}
.faq__q:hover{color:var(--brand);}
.faq__sign{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:var(--surface-2);
  display:grid;place-items:center;font-size:var(--t-md);font-weight:500;line-height:1;transition:transform .2s ease;}
.faq__q[aria-expanded="true"] .faq__sign{transform:rotate(45deg);background:var(--brand);color:#fff;}
.faq__a{display:none;padding:0 0 22px;font-size:var(--t-sm);color:var(--muted);line-height:1.7;max-width:640px;}
.faq__a[data-open="true"]{display:block;}

/* ------------------------------------------------------------ industry --- */

.pill-grid{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-pill);
  padding:10px 18px;font-size:var(--t-sm);font-weight:600;
  transition:border-color .15s ease,background .15s ease;
}
.pill:hover{border-color:var(--brand);background:var(--brand-tint);}
.pill--solid{background:var(--brand);border-color:var(--brand);color:#fff;}
.pill--solid:hover{background:var(--brand-700);border-color:var(--brand-700);}

/* ------------------------------------------------------------- footer --- */

.footer{background:var(--ink);color:#fff;padding:64px 0 32px;}
.footer__top{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:40px;padding-bottom:44px;}
.footer__brand p{font-size:var(--t-sm);color:rgba(255,255,255,.55);margin-top:12px;max-width:260px;line-height:1.65;}
.footer__logo{display:flex;align-items:center;gap:9px;font-size:var(--t-md);font-weight:700;letter-spacing:-.025em;color:#fff;}
.footer__logo .nav__mark{background:rgba(255,255,255,.14);}
.footer__col h4{font-size:var(--t-xs);font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:16px;}
.footer__col a{display:block;font-size:var(--t-sm);color:rgba(255,255,255,.72);padding:5px 0;}
.footer__col a:hover{color:#fff;}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);padding-top:26px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;
  font-size:var(--t-xs);color:rgba(255,255,255,.45);
}
.footer__legal{display:flex;gap:20px;flex-wrap:wrap;}
.footer__legal a:hover{color:#fff;}

/* ------------------------------------------------------------- article --- */
/* Long-form pages: the guides, privacy, terms. */

.article{max-width:760px;margin:0 auto;padding:56px var(--gutter) 88px;}
.article h2{font-size:var(--t-2xl);margin:44px 0 14px;letter-spacing:-.025em;}
.article h3{font-size:var(--t-lg);margin:32px 0 10px;}
.article p{margin-bottom:16px;color:var(--ink-2);line-height:1.75;}
.article ul,.article ol{margin:0 0 18px;padding-left:22px;}
.article ul li{list-style:disc;}
.article ol li{list-style:decimal;}
.article li{margin-bottom:9px;color:var(--ink-2);line-height:1.7;}
.article a:not(.btn):not(.pill){color:var(--brand);text-decoration:underline;text-underline-offset:2px;}
.article strong{color:var(--ink);font-weight:600;}

.callout{
  background:var(--brand);color:#fff;border-radius:var(--r-2xl);
  padding:40px 32px;text-align:center;margin:48px 0 8px;
}
.callout h2{color:#fff;margin:0 0 12px;font-size:var(--t-2xl);}
.callout p{color:rgba(255,255,255,.78);max-width:480px;margin:0 auto 22px;}

/* ----------------------------------------------------------- responsive --- */

@media(max-width:960px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .split{grid-template-columns:1fr;gap:40px;}
  .split--flip .split__media{order:2;}
  .footer__top{grid-template-columns:1fr 1fr 1fr;gap:32px;}
  .footer__brand{grid-column:1 / -1;}
}

@media(max-width:768px){
  .nav__links,.nav__signin{display:none;}
  .nav__toggle{display:block;}
  .section,.panel{padding:60px 0;}
  .panel{margin:0 12px;border-radius:var(--r-xl);}
  .section-head{margin-bottom:36px;text-align:left;}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(3,1fr);gap:8px;}
  .hero{padding:48px 0 60px;}
  .hero__inner{text-align:left;}
  .hero .lede{margin-left:0;}
  .hero__btns{flex-direction:column;}
  .hero__btns .btn{width:100%;}
  .hero__note{justify-content:flex-start;gap:12px;}
  .footer__top{grid-template-columns:1fr 1fr;}
  .price__amt{font-size:2.2rem;}
  .callout{padding:32px 22px;}
  .article{padding:36px var(--gutter) 60px;}
}

@media(max-width:420px){
  .stats{grid-template-columns:1fr;}
  .stat__n{font-size:var(--t-xl);}
}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important;}
}

/* ===========================================================================
   Page-level classes carried over from the per-page stylesheets.
   The guides, legal pages and industry pages still use this older markup;
   these rules render it in the design system above.
   =========================================================================== */

/* Inner-page hero: same treatment as the homepage, centred. */
.hero > h1,
.hero > p{text-align:center;padding-left:var(--gutter);padding-right:var(--gutter);}
.hero > h1{
  font-size:clamp(2rem,1.4rem + 2.4vw,3rem);line-height:1.08;letter-spacing:-.032em;
  max-width:780px;margin:0 auto 16px;
}
.hero > p{font-size:clamp(1.0625rem,1rem + .35vw,1.29rem);color:var(--ink-2);max-width:600px;margin:0 auto 28px;}
.hero > .btn{display:flex;width:max-content;max-width:calc(100% - 2*var(--gutter));margin:0 auto;}

.logo{font-size:var(--t-md);font-weight:700;letter-spacing:-.025em;color:var(--brand);}

/* Table of contents on the two guides. */
.toc{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:24px 28px;margin:8px 0 36px;
}
.toc h2,.toc h3{margin:0 0 12px;font-size:var(--t-sm);font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--muted);}
.toc ul,.toc ol{margin:0;padding:0;}
.toc li{list-style:none;margin-bottom:8px;}
.article .toc a{color:var(--brand);font-weight:500;text-decoration:none;}
.article .toc a:hover{text-decoration:underline;}

/* Card grid inside the guides. */
.article .grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;margin:24px 0 32px;
}
.article .card{padding:24px;}
.article .card h3{margin:0 0 8px;font-size:var(--t-md);letter-spacing:-.015em;}
.article .card p{margin:0;font-size:var(--t-sm);color:var(--muted);line-height:1.65;}

/* Numbered steps in the training guide. */
.step{
  border-left:2px solid var(--line);padding:4px 0 4px 24px;margin:28px 0;
}
.step .n{
  display:inline-block;font-size:var(--t-xs);font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--accent);margin-bottom:8px;
}
.step h2,.step h3{margin-top:0;}

.tip{
  background:var(--accent-tint);border-radius:var(--r-md);
  padding:16px 18px;margin:16px 0 8px;
  font-size:var(--t-sm);color:var(--ink-2);line-height:1.65;
}

.updated{font-size:var(--t-xs);color:var(--muted-2);margin-bottom:8px;}

/* "Other industries" pill row at the foot of each industry page. */
.others{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.article .others a,
.others a{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-pill);
  padding:10px 18px;font-size:var(--t-sm);font-weight:600;
  color:var(--ink);text-decoration:none;
  transition:border-color .15s ease,background .15s ease;
}
.article .others a:hover,
.others a:hover{border-color:var(--brand);background:var(--brand-tint);text-decoration:none;}

/* 404 */
.center{
  max-width:520px;margin:0 auto;padding:96px var(--gutter) 120px;text-align:center;
}
.code{
  font-size:clamp(4rem,3rem + 6vw,7rem);font-weight:700;letter-spacing:-.05em;
  line-height:1;color:var(--brand-tint);margin-bottom:8px;
}
.btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:28px 0 20px;}
.links{font-size:var(--t-sm);color:var(--muted);}
.links a{color:var(--brand);margin:0 8px;}
.btn-p{background:var(--brand);color:#fff;}
.btn-p:hover{background:var(--brand-700);}
.btn-s{background:#fff;color:var(--brand);border-color:var(--line);}
.btn-s:hover{border-color:var(--brand);background:var(--brand-tint);}

/* The callout CTA sits inside .article on these pages; keep its button legible. */
.callout .btn--primary{background:#fff;color:var(--brand);}
.callout .btn--primary:hover{background:var(--brand-tint);}
.article .callout a{text-decoration:none;}

/* ===========================================================================
   Composition pass — matching how livechat.com is actually put together.

   The page ground is grey and each section is a white rounded card floating
   on it, which is the inverse of how this file started. One tinted band
   breaks the rhythm partway down, the way their lavender AI section does.
   =========================================================================== */

:root{
  --page:#ffffff;
  --band-tint:#e8e6f4;
}

body{background:var(--page);}

/* Sections are cards on the page ground, not bands across it. */
.band{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 1px 3px rgba(16,24,40,.04);
  border-radius:var(--r-2xl);
  max-width:1240px;
  margin:0 auto 32px;
  padding:76px 0;
}
.band--tint{background:var(--band-tint);border-color:transparent;}
.band--brand{background:var(--brand);color:#fff;border-color:transparent;}
.band--brand .h2,.band--brand h2{color:#fff;}
.band--brand .sub,.band--brand .lede{color:rgba(255,255,255,.78);}
.band--wide{max-width:1400px;}
.band--flush{padding-top:0;}
.band--strip{padding:30px 0;}

/* The hero sits above the card stack, on white, full width. */
.hero2{background:#fff;padding:48px 0 64px;margin-bottom:32px;}
.hero2__grid{
  display:grid;grid-template-columns:1.02fr .98fr;
  gap:56px;align-items:center;
}
/* The global .display cap (3.9rem) is sized for a heading centred in the full
   container. This one sits in a ~520px column beside the screenshot, where
   62px filled the column edge to edge with no measure and jumped straight to
   18px body copy. Smaller here only — other pages keep the larger display. */
.hero2__copy .display{
  font-size:clamp(2.125rem,1.15rem + 3.05vw,3.3rem);
  line-height:1.08;
  margin-bottom:18px;
}
.hero2__copy .lede{margin-bottom:26px;max-width:480px;}
.hero2__btns{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px;}
.hero2__points{display:flex;flex-direction:column;gap:9px;}
.hero2__points li{display:flex;gap:9px;align-items:center;font-size:var(--t-sm);color:var(--ink-2);}
.hero2__points svg{flex-shrink:0;}

/* Photo slots.
   Drop a real file at the path in --src and the label disappears behind it.
   Until then the slot shows a tinted panel naming the shot it wants, so a
   missing image never renders as a broken-image icon. */
.photo{
  position:relative;overflow:hidden;
  border-radius:20px;
  /* Layer one is the photo, layer two the placeholder drawing underneath it.
     Set --src and the photo covers the placeholder; leave it unset and the
     slot shows what belongs there and where the file goes. */
  background-image:var(--src,none),url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='320'%3E%3Crect width='400' height='320' fill='%23eef1f6'/%3E%3Crect x='16' y='16' width='368' height='288' rx='12' fill='none' stroke='%23c6cedb' stroke-width='2' stroke-dasharray='8 7'/%3E%3Cg fill='none' stroke='%23a3adbe' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='166' y='74' width='68' height='54' rx='7'/%3E%3Ccircle cx='186' cy='95' r='6.5'/%3E%3Cpath d='M166 118l22-20 15 13 13-11 18 17'/%3E%3C/g%3E%3Ctext x='200' y='156' text-anchor='middle' font-family='Inter,Segoe UI,Arial,sans-serif' font-size='14' font-weight='600' fill='%23697086'%3EPhoto goes here%3C/text%3E%3Ctext x='200' y='176' text-anchor='middle' font-family='Inter,Segoe UI,Arial,sans-serif' font-size='12' fill='%239aa4b5'%3E/images/hero.jpg%3C/text%3E%3C/svg%3E");
  background-size:var(--fit,cover),cover;
  background-position:var(--pos,center),center;
  background-repeat:no-repeat,no-repeat;
  min-height:200px;
}
.photo--hero{aspect-ratio:1/1;}
.photo--pillar{aspect-ratio:4/3;}

/* Product UI composited over the photograph, as in their hero. */
.hero2__media{position:relative;}
/* Both sit inside the photo panel now, so nothing overlaps the copy column. */
.hero2__float{
  position:absolute;right:16px;bottom:16px;
  width:66%;max-width:262px;
  box-shadow:var(--shadow-lg);border-radius:var(--r-lg);overflow:hidden;
  background:#fff;border:1px solid var(--line);
}
.hero2__chip{
  position:absolute;right:16px;top:16px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);
  box-shadow:var(--shadow-md);padding:11px 14px;display:flex;align-items:center;gap:10px;
}
.hero2__chip b{font-size:var(--t-sm);letter-spacing:-.01em;}
.hero2__chip span{font-size:var(--t-xs);color:var(--muted);display:block;}

/* Pillar rows get the same photo-plus-UI composite treatment. */
.pillar__media{position:relative;}
.pillar__float{
  position:absolute;right:-22px;bottom:-20px;width:250px;
  box-shadow:var(--shadow-lg);border-radius:var(--r-lg);overflow:hidden;
  background:#fff;border:1px solid var(--line);
}

/* The old panel/section wrappers now inherit the card treatment. */
.panel{background:transparent;margin:0;padding:0;border-radius:0;}

@media(max-width:960px){
  .hero2__grid{grid-template-columns:1fr;gap:40px;}
  .pillar__float{right:0;bottom:-14px;width:210px;}
}

@media(max-width:768px){
  .band{border-radius:var(--r-xl);margin:0 10px 18px;padding:52px 0;}
  .hero2{padding:36px 0 44px;margin-bottom:18px;}
  .hero2 .container{padding-left:30px;padding-right:30px;}
  .hero2__btns .btn{width:100%;}
  .pillar__float{position:static;width:100%;margin-top:14px;box-shadow:var(--shadow-md);}
  .hero2__chip{right:10px;top:10px;padding:9px 12px;}
  .photo--hero,.photo--pillar{aspect-ratio:16/11;}
}

/* Supplied product renders, framed like the built mockups next to them. */
.shot-img{
  width:100%;height:auto;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
}

/* Message entrance for the animated chat demo. The global reduced-motion
   block above already collapses this to nothing. */
.msg--in{animation:msgIn .3s cubic-bezier(.2,.7,.3,1) both;}
@keyframes msgIn{from{opacity:0;transform:translateY(8px) scale(.985);}to{opacity:1;transform:none;}}

/* ---------------------------------------------------- hero composite --- */
/* The person and a live chat side by side, framed as one card. */

.hero-comp{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
}
.hero-comp__brand{
  display:flex;align-items:center;justify-content:center;gap:9px;
  font-size:var(--t-md);font-weight:700;letter-spacing:-.025em;color:var(--brand);
  padding:4px 0 14px;
}
.hero-comp__grid{
  display:grid;grid-template-columns:1fr 1.12fr;gap:12px;align-items:stretch;
}
.photo--person{aspect-ratio:3/4;border-radius:14px;min-height:0;}

.widget--sm{
  display:flex;flex-direction:column;
  max-width:none;margin:0;box-shadow:none;border-radius:14px;
}
.widget--sm .widget__head{padding:11px 13px;gap:9px;}
.widget--sm .widget__av{width:30px;height:30px;}
.widget--sm .widget__name{font-size:var(--t-xs);}
.widget--sm .widget__msgs{
  flex:1;min-height:0;max-height:none;padding:12px 11px;gap:9px;
}
.widget--sm .bubble{font-size:12px;padding:8px 11px;border-radius:13px;max-width:88%;}
.widget--sm .msg{gap:7px;}
.widget--sm .msg__av{width:21px;height:21px;font-size:9px;}
.widget--sm .widget__foot{padding:9px;gap:7px;}
.widget--sm .widget__input{font-size:12px;padding:7px 12px;}
.widget--sm .widget__send{width:30px;height:30px;}

@media(max-width:520px){
  .hero-comp__grid{grid-template-columns:1fr;}
  .photo--person{aspect-ratio:4/5;}
  .widget--sm .widget__msgs{min-height:180px;}
}

/* ===========================================================================
   Mobile overflow fix for the product mockups.

   A grid item and an "1fr" track both default to min-width:auto, so neither
   will shrink below its content. The Leads card (stat tiles + rows of names
   and phone numbers) therefore pushed itself wider than a phone screen,
   which scrolled the whole page sideways and threw every centred section
   below it off-axis. minmax(0,1fr) and explicit min-width:0 let them shrink.
   =========================================================================== */

.split__media{min-width:0;max-width:100%;}
.shot{max-width:100%;}
.shot__body{min-width:0;}
.stats{grid-template-columns:repeat(3,minmax(0,1fr));}
.rows,.row{min-width:0;}
.row__side{min-width:0;}

@media(max-width:560px){
  /* Three stat tiles stop being readable well before they stop fitting. */
  .stats{grid-template-columns:1fr;gap:8px;}
  .stat{display:flex;align-items:baseline;gap:8px;padding:10px 12px;}
  .stat__n{font-size:var(--t-lg);}
  .stat__l{margin-top:0;}
}

/* ===========================================================================
   Collapsed header sizing.

   Logo + "Start free trial" + hamburger needs roughly 430px of row. On a
   360px phone the hamburger, being last, was pushed off the right edge -
   the menu existed but could not be reached. Tighten the row, and below
   420px drop the header CTA in favour of the one inside the drawer.
   =========================================================================== */

@media(max-width:768px){
  .nav__inner{gap:12px;}
  .nav__right{gap:8px;}
  .nav__logo{white-space:nowrap;}
  .nav__right .btn{padding:9px 14px;font-size:var(--t-xs);}
}

@media(max-width:420px){
  .nav__right .btn{display:none;}
  .nav__logo{font-size:var(--t-base);}
}

/* The drawer CTA is a button, not another list row. */
.nav__drawer a.btn{
  border-bottom:none;
  margin-top:14px;
  width:100%;
  color:#fff;
  padding:13px 22px;
  font-size:var(--t-sm);
}

/* On phones the headline leads; the hero composite follows it. */
@media(max-width:768px){
  .hero2__grid{display:flex;flex-direction:column;}
  .hero2__media{order:2;}
  .hero2__copy{order:1;}
}

/* ===========================================================================
   Help centre
   =========================================================================== */

.help-hero{background:linear-gradient(180deg,var(--brand-tint),#fff);padding:56px 0 48px;text-align:center;}
.help-hero h1{font-size:clamp(1.9rem,1.4rem + 2vw,2.6rem);letter-spacing:-.03em;margin-bottom:12px;}
.help-hero p{font-size:var(--t-md);color:var(--muted);max-width:520px;margin:0 auto;}

.help-search{max-width:520px;margin:26px auto 0;position:relative;}
.help-search input{
  width:100%;padding:14px 18px 14px 44px;font-size:var(--t-base);
  border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;outline:none;
  box-shadow:var(--shadow-sm);
}
.help-search input:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(26,58,92,.1);}
.help-search svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);stroke:var(--muted-2);}
.help-results{
  position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:20;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);
  box-shadow:var(--shadow-lg);overflow:hidden;text-align:left;display:none;
}
.help-results[data-open="true"]{display:block;}
.help-results a{display:block;padding:11px 16px;border-bottom:1px solid var(--line-2);}
.help-results a:last-child{border-bottom:none;}
.help-results a:hover,.help-results a:focus{background:var(--surface);}
.help-results .r-title{font-size:var(--t-sm);font-weight:600;}
.help-results .r-cat{font-size:var(--t-xs);color:var(--muted-2);}
.help-results .r-none{padding:14px 16px;font-size:var(--t-sm);color:var(--muted);}

.help-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.help-card{
  display:block;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:24px;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease;
}
.help-card:hover{border-color:#d3d8e2;box-shadow:var(--shadow-md);transform:translateY(-2px);}
.help-card h3{font-size:var(--t-md);letter-spacing:-.015em;margin:14px 0 6px;}
.help-card p{font-size:var(--t-sm);color:var(--muted);line-height:1.6;margin-bottom:12px;}
.help-card .count{font-size:var(--t-xs);color:var(--muted-2);font-weight:600;}

.start-here{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;counter-reset:step;}
.start-here a{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);padding:18px;
  display:block;transition:border-color .15s ease;
}
.start-here a:hover{border-color:var(--brand);}
.start-here .n{
  width:26px;height:26px;border-radius:7px;background:var(--brand);color:#fff;
  display:grid;place-items:center;font-size:var(--t-xs);font-weight:700;margin-bottom:10px;
}
.start-here h4{font-size:var(--t-sm);margin-bottom:4px;}
.start-here p{font-size:var(--t-xs);color:var(--muted);line-height:1.5;}

/* Article pages: sticky contents beside the body. */
.doc{display:grid;grid-template-columns:230px 1fr;gap:56px;align-items:start;padding:44px 0 80px;}
.doc__toc{position:sticky;top:88px;}
.doc__toc h4{
  font-size:var(--t-xs);font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted-2);margin-bottom:12px;
}
.doc__toc a{
  display:block;font-size:var(--t-sm);color:var(--muted);padding:6px 0 6px 12px;
  border-left:2px solid var(--line);line-height:1.4;
}
.doc__toc a:hover{color:var(--brand);border-left-color:var(--brand);}
.doc__body > section{scroll-margin-top:88px;padding-bottom:36px;margin-bottom:36px;border-bottom:1px solid var(--line-2);}
.doc__body > section:last-child{border-bottom:none;}
.doc__body h2{font-size:var(--t-xl);letter-spacing:-.025em;margin-bottom:12px;}
.doc__body h3{font-size:var(--t-md);margin:22px 0 8px;}
.doc__body p{color:var(--ink-2);line-height:1.75;margin-bottom:14px;}
.doc__body ul,.doc__body ol{margin:0 0 16px;padding-left:22px;}
.doc__body li{list-style:inherit;color:var(--ink-2);line-height:1.7;margin-bottom:7px;}
.doc__body ul li{list-style:disc;}
.doc__body ol li{list-style:decimal;}
.doc__body a:not(.btn){color:var(--brand);text-decoration:underline;text-underline-offset:2px;}
.doc__body strong{color:var(--ink);font-weight:600;}
.doc__body code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:.86em;background:var(--surface-2);padding:2px 6px;border-radius:5px;
}
.doc__body pre{
  background:var(--ink);color:#e6e9ef;border-radius:var(--r-md);
  padding:16px;overflow-x:auto;margin-bottom:16px;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:var(--t-xs);line-height:1.6;
}
.doc__body pre code{background:none;padding:0;color:inherit;}
.note{
  background:var(--brand-tint);border-left:3px solid var(--brand);
  border-radius:0 var(--r-md) var(--r-md) 0;padding:14px 16px;margin-bottom:16px;
}
.note p{margin:0;font-size:var(--t-sm);}
.note strong{color:var(--brand);}

.crumb{font-size:var(--t-sm);color:var(--muted);padding:20px 0 0;}
.crumb a{color:var(--brand);}
.crumb a:hover{text-decoration:underline;}

.doc-foot{
  margin-top:8px;padding:24px;background:var(--surface);border-radius:var(--r-lg);
  display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;
}
.doc-foot p{margin:0;font-size:var(--t-sm);color:var(--muted);}

@media(max-width:900px){
  .help-grid{grid-template-columns:repeat(2,1fr);}
  .start-here{grid-template-columns:repeat(2,1fr);}
  .doc{grid-template-columns:1fr;gap:0;padding-top:24px;}
  .doc__toc{position:static;margin-bottom:32px;padding-bottom:24px;border-bottom:1px solid var(--line);}
}
@media(max-width:600px){
  .help-grid,.start-here{grid-template-columns:1fr;}
  .help-hero{padding:40px 0 36px;}
}

/* ===========================================================================
   Feature / benefit table
   Left column states what the product does; right column, tinted, states what
   that means for the business owner. The tint is what makes the benefit side
   read as the answer rather than more description.
   =========================================================================== */

.fb{border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff;}
.fb__labels{display:grid;grid-template-columns:1fr 1.1fr;background:var(--surface);border-bottom:1px solid var(--line);}
.fb__labels span{
  padding:11px 22px;font-size:var(--t-xs);font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--muted-2);
}
.fb__labels span + span{border-left:1px solid var(--line);color:var(--brand);}
.fb__r{display:grid;grid-template-columns:1fr 1.1fr;border-top:1px solid var(--line-2);}
.fb__r:first-of-type{border-top:none;}
.fb__c{padding:20px 22px;}
.fb__c + .fb__c{border-left:1px solid var(--line);background:var(--brand-tint);}
.fb__t{font-weight:600;letter-spacing:-.01em;margin-bottom:5px;line-height:1.35;}
.fb__d{font-size:var(--t-sm);color:var(--muted);line-height:1.6;}
.fb__c + .fb__c .fb__t{color:var(--brand);}
.fb__c + .fb__c .fb__d{color:var(--ink-2);}

.bottomline{
  display:flex;gap:14px;align-items:flex-start;
  background:var(--ink);color:#fff;border-radius:var(--r-lg);
  padding:24px 26px;margin-top:28px;
}
.bottomline svg{flex-shrink:0;margin-top:3px;}
.bottomline strong{display:block;font-size:var(--t-xs);letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:6px;}
.bottomline p{margin:0;font-size:var(--t-md);line-height:1.55;color:#fff;}

@media(max-width:700px){
  .fb__labels{display:none;}
  .fb__r{grid-template-columns:1fr;}
  .fb__c + .fb__c{border-left:none;border-top:1px solid var(--line);}
  .fb__c + .fb__c .fb__t::before{
    content:"What it means for you";
    display:block;font-size:var(--t-xs);font-weight:700;letter-spacing:.1em;
    text-transform:uppercase;color:var(--brand);opacity:.7;margin-bottom:6px;
  }
}

/* ===========================================================================
   Feature page layout
   Copy and a product visual side by side, so the page shows the thing it
   describes instead of running as a column of text down the middle.
   =========================================================================== */

.f-hero{padding:52px 0 8px;}
.f-hero__grid{display:grid;grid-template-columns:1fr 1.05fr;gap:56px;align-items:center;}
/* Grid items default to min-width:auto, so the mockup refused to shrink and
   pushed the container 3px past the viewport on a phone. */
.f-hero__grid > *{min-width:0;}
.f-hero h1{font-size:clamp(1.85rem,1.3rem + 2.1vw,2.7rem);letter-spacing:-.032em;margin:14px 0 16px;text-wrap:balance;}
.f-hero .lede{margin-bottom:26px;}
.f-hero__btns{display:flex;gap:12px;flex-wrap:wrap;}

/* Sibling features as a compact row, not a second wall of cards. */
.f-more{display:flex;flex-wrap:wrap;gap:10px;}
.f-more a{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--line);border-radius:var(--r-pill);
  padding:9px 16px;font-size:var(--t-sm);font-weight:600;background:#fff;
  transition:border-color .15s ease,background .15s ease;
}
.f-more a:hover{border-color:var(--brand);background:var(--brand-tint);}
.f-more svg{stroke:var(--brand);flex-shrink:0;}

/* Hub cards: icon, even heights, a real link at the foot. */
.help-grid--4{grid-template-columns:repeat(4,1fr);}
.help-card{display:flex;flex-direction:column;height:100%;}
.help-card p{flex:1;}
.help-card .count{
  color:var(--brand);font-weight:600;font-size:var(--t-sm);
  display:inline-flex;align-items:center;gap:6px;
}
.help-card .count::after{content:"\2192";transition:transform .15s ease;}
.help-card:hover .count::after{transform:translateX(3px);}

@media(max-width:1100px){
  .help-grid--4{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:960px){
  .f-hero__grid{grid-template-columns:1fr;gap:36px;}
  .f-hero{padding-top:36px;}
}
@media(max-width:900px){
  .help-grid--4{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .help-grid--4{grid-template-columns:1fr;}
}

/* The widget on a feature page is a static picture, not a live scroller —
   a 280px cap clipped the last reply mid-sentence. */
.f-hero__grid .widget__msgs{max-height:none;}

/* ── Industries hub ───────────────────────────────────────────────────
   46 links in one flat pile, each reading "AI chatbot for <industry>",
   could not be scanned: the distinguishing word sat at the end of every
   label. Grouped, given uniform cards, and filterable. */
.ind-search{max-width:520px;margin:0 auto 36px;}
.ind-search input{
  width:100%;padding:13px 16px;font:inherit;font-size:15px;color:var(--ink);
  background:#fff;border:1px solid var(--line);border-radius:12px;
  box-shadow:0 1px 2px rgba(20,23,31,.04);
}
.ind-search input:focus{outline:2px solid var(--brand);outline-offset:1px;border-color:transparent;}
.ind-search input::placeholder{color:var(--muted-2);}
.ind-count{margin:8px 2px 0;font-size:13px;color:var(--muted);}

.ind-group + .ind-group{margin-top:34px;}
.ind-group__title{
  margin:0 0 14px;font-size:12px;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:var(--muted);
}
.ind-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;}

/* Uniform cards: same height and the icon in the same place on every row,
   so the eye can run down a column instead of re-reading each label. */
.ind-card{
  display:flex;align-items:center;gap:11px;min-width:0;
  padding:13px 15px;background:#fff;border:1px solid var(--line);
  border-radius:12px;text-decoration:none;color:var(--ink);
  transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease;
}
.ind-card:hover{border-color:var(--brand);box-shadow:0 4px 14px rgba(20,23,31,.07);transform:translateY(-1px);}
.ind-card:focus-visible{outline:2px solid var(--brand);outline-offset:2px;}
.ind-card__icon{font-size:17px;line-height:1;flex-shrink:0;}
.ind-card__name{font-size:14px;font-weight:500;line-height:1.35;min-width:0;}

.ind-empty{margin:28px 0 0;text-align:center;font-size:15px;color:var(--muted);}
.ind-empty a{color:var(--brand);font-weight:600;}

@media(max-width:1000px){.ind-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media(max-width:720px){.ind-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:430px){
  .ind-grid{grid-template-columns:1fr;}
  .ind-card{padding:12px 14px;}
}

/* A label styled as a button: the chat widget is a checkbox toggle, so this is
   what opens it without script. Needs the button's own cursor and focus ring
   back, since a label gets neither. */
.chat-open{cursor:pointer;-webkit-user-select:none;user-select:none;}
.chat-open:focus-visible{outline:2px solid var(--brand);outline-offset:2px;}
.card__alt{margin-top:10px;font-size:14px;color:var(--muted);}
.card__alt a{color:var(--brand);font-weight:500;}
/* Secondary link inside a brand-coloured band. */
.band__alt{color:rgba(255,255,255,.82);font-size:15px;text-decoration:underline;text-underline-offset:3px;}
.band__alt:hover{color:#fff;}
.doc-foot__actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
