/* ============================================================================
   ASL Design System — the shared visual language for the Auto Secure Login
   platform site. Aligned to the official brand guide:
   Obsidian #05090F · Deep Navy #09111B · Signal Cyan #35D3FF (used sparingly,
   like an active signal) · Ice Cyan #8CECFF · Steel White #EDF7FF ·
   Muted Steel #9FB2C2 · Trust Green #6CE5B1 · Inter.
   CSP-safe: no @import of remote fonts, no external assets.
   ========================================================================== */
:root{
  color-scheme: dark;
  --obsidian:#05090F; --navy:#09111B; --panel:#0c1622; --panel-2:#101f2e;
  --line:#1c3346; --line-soft:#16283a;
  --text:#EDF7FF; --muted:#9FB2C2; --dim:#6b8296;
  --cyan:#35D3FF; --ice:#8CECFF; --green:#6CE5B1; --amber:#FFCE7A; --red:#FF8D9B; --violet:#b79bff;
  --radius:16px; --radius-lg:22px; --radius-sm:10px;
  --shell:1200px;
  --shadow:0 24px 70px -24px rgba(0,0,0,.7);
  --glow:0 0 0 1px rgba(53,211,255,.14), 0 20px 60px -20px rgba(53,211,255,.18);
  --font:"Inter",ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --mono:ui-monospace,"SF Mono",SFMono-Regular,Menlo,Consolas,monospace;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;min-height:100vh;color:var(--text);font-family:var(--font);
  font-size:16px;line-height:1.6;letter-spacing:-.005em;
  background:
    radial-gradient(1100px 620px at 82% -6%, rgba(53,211,255,.10), transparent 60%),
    radial-gradient(900px 560px at 6% 4%, rgba(108,229,177,.06), transparent 55%),
    var(--obsidian);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
h1,h2,h3,h4{margin:0 0 .5em;line-height:1.1;letter-spacing:-.02em;font-weight:800}
p{margin:0 0 1em}
.shell{width:min(var(--shell),calc(100% - 2.4rem));margin-inline:auto}
.eyebrow{margin:0 0 .7rem;color:var(--cyan);text-transform:uppercase;letter-spacing:.16em;font-size:.72rem;font-weight:800}
.muted{color:var(--muted)}
.mono{font-family:var(--mono)}
.center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}

/* ---- header / nav ---- */
.topbar{position:sticky;top:0;z-index:50;backdrop-filter:blur(18px);
  background:rgba(5,9,15,.78);border-bottom:1px solid rgba(53,211,255,.12)}
.topbar-inner{display:flex;align-items:center;gap:1.2rem;min-height:68px}
.brand{display:inline-flex;align-items:center;gap:.6rem;font-weight:800}
.brand img{width:32px;height:32px}
.brand b{font-size:1.02rem;letter-spacing:-.02em}
.brand span{color:var(--muted);font-weight:600;font-size:.86rem}
.nav{margin-left:auto;display:flex;align-items:center;gap:.3rem;flex-wrap:wrap}
.nav a{padding:.5rem .8rem;border-radius:999px;color:var(--muted);font-weight:650;font-size:.92rem;transition:color .15s,background .15s}
.nav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.nav a.cta{color:var(--obsidian);background:var(--cyan);font-weight:750}
.nav a.cta:hover{background:var(--ice)}

/* ---- buttons ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:46px;padding:.72rem 1.25rem;border:0;border-radius:999px;cursor:pointer;
  font-family:inherit;font-weight:750;font-size:.98rem;text-decoration:none;transition:transform .12s,background .15s,border-color .15s}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--cyan);color:#03151d;box-shadow:0 10px 30px -10px rgba(53,211,255,.55)}
.btn-primary:hover{background:var(--ice)}
.btn-ghost{background:transparent;color:var(--text);border:1px solid var(--line)}
.btn-ghost:hover{border-color:var(--cyan);color:var(--ice)}
.btn-sm{min-height:38px;padding:.5rem .9rem;font-size:.9rem}

/* ---- hero ---- */
.hero{padding:clamp(3rem,7vw,6rem) 0 clamp(2rem,4vw,3.5rem)}
.hero h1{font-size:clamp(2.4rem,6.2vw,4.6rem);font-weight:850;letter-spacing:-.035em;max-width:16ch}
.hero h1 .accent{color:var(--cyan)}
.hero .lede{max-width:60ch;color:#c3d6e4;font-size:clamp(1.05rem,2vw,1.32rem);margin-top:1rem}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.8rem}
.hero-metrics{display:flex;gap:2rem;flex-wrap:wrap;margin-top:2.4rem;padding-top:1.6rem;border-top:1px solid var(--line-soft)}
.hero-metric b{display:block;font-size:1.9rem;font-weight:850;color:var(--text);letter-spacing:-.02em}
.hero-metric span{color:var(--muted);font-size:.9rem}

/* ---- section ---- */
.section{padding:clamp(3rem,6vw,5rem) 0}
.section-head{max-width:64ch;margin:0 auto clamp(2rem,4vw,3rem);text-align:center}
.section-head h2{font-size:clamp(1.9rem,4vw,2.9rem);letter-spacing:-.03em}
.section-head p{color:var(--muted);font-size:1.1rem;margin:0}
.divider{height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent);border:0;margin:0}

/* ---- panels & grid ---- */
.grid{display:grid;gap:1.1rem}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.panel{background:linear-gradient(160deg,rgba(16,31,46,.9),rgba(9,17,27,.92));
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.4rem;box-shadow:var(--shadow)}
.panel h3{font-size:1.15rem}
.panel p{color:var(--muted);margin:0}

/* ---- pills / badges ---- */
.pill{display:inline-flex;align-items:center;gap:.4rem;border-radius:999px;padding:.3rem .7rem;
  font-weight:750;font-size:.76rem;letter-spacing:.02em;border:1px solid transparent}
.pill-cyan{background:rgba(53,211,255,.12);color:var(--ice);border-color:rgba(53,211,255,.28)}
.pill-green{background:rgba(108,229,177,.12);color:var(--green);border-color:rgba(108,229,177,.28)}
.pill-amber{background:rgba(255,206,122,.12);color:var(--amber);border-color:rgba(255,206,122,.28)}
.pill-muted{background:rgba(159,178,194,.1);color:var(--muted);border-color:rgba(159,178,194,.22)}
.badge-dot{width:7px;height:7px;border-radius:50%;background:currentColor;box-shadow:0 0 8px currentColor}

/* ---- product cards (hub) ---- */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(310px,1fr));gap:1.1rem}
.card{position:relative;display:flex;flex-direction:column;gap:.7rem;
  background:linear-gradient(160deg,rgba(16,31,46,.7),rgba(9,17,27,.85));
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.3rem;
  transition:transform .16s,border-color .16s,box-shadow .16s}
.card:hover{transform:translateY(-4px);border-color:rgba(53,211,255,.4);box-shadow:var(--glow)}
.card-top{display:flex;align-items:center;justify-content:space-between;gap:.6rem}
.card-ic{width:40px;height:40px;border-radius:11px;display:grid;place-items:center;
  background:rgba(53,211,255,.1);border:1px solid rgba(53,211,255,.25);color:var(--cyan);font-weight:900;font-size:1.05rem}
.card h3{font-size:1.16rem;margin:0}
.card .tag{color:var(--cyan);font-size:.74rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.card p{color:var(--muted);font-size:.94rem;margin:0;flex:1}
.card .card-foot{display:flex;align-items:center;gap:.5rem;margin-top:.3rem;color:var(--ice);font-weight:700;font-size:.9rem}
.card .card-foot .arrow{transition:transform .16s}
.card:hover .card-foot .arrow{transform:translateX(4px)}

/* category header */
.cathead{display:flex;align-items:baseline;gap:.8rem;margin:2.4rem 0 1.1rem}
.cathead h3{font-size:1.35rem;margin:0}
.cathead .rule{flex:1;height:1px;background:var(--line-soft)}
.cathead .count{color:var(--dim);font-size:.85rem;font-weight:700}

/* ---- feature list ---- */
.features{display:grid;gap:.85rem;padding:0;margin:0;list-style:none}
.features li{position:relative;padding-left:1.7rem;color:#cddced}
.features li::before{content:"";position:absolute;left:0;top:.55em;width:8px;height:8px;border-radius:2px;
  background:var(--cyan);box-shadow:0 0 10px rgba(53,211,255,.6)}
.features li b{color:var(--text)}
.features.check li::before{content:"✓";top:0;width:auto;height:auto;background:none;box-shadow:none;color:var(--green);font-weight:900}
.features.block li::before{content:"×";top:0;width:auto;height:auto;background:none;box-shadow:none;color:var(--red);font-weight:900}

/* ---- feature blocks (icon + title + body) ---- */
.feature{display:grid;grid-template-columns:44px 1fr;gap:.9rem;align-items:start}
.feature .fic{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:rgba(53,211,255,.1);border:1px solid rgba(53,211,255,.22);color:var(--cyan);font-weight:900}
.feature h4{margin:0 0 .25rem;font-size:1.02rem}
.feature p{margin:0;color:var(--muted);font-size:.94rem}

/* ---- screenshot frame ---- */
.shot{border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;background:var(--navy);box-shadow:var(--shadow)}
.shot img{width:100%;display:block}
.shot-cap{padding:.7rem 1rem;color:var(--muted);font-size:.85rem;border-top:1px solid var(--line-soft)}
.shot-mock{aspect-ratio:16/10;display:grid;place-items:center;color:var(--dim);
  background:repeating-linear-gradient(135deg,rgba(255,255,255,.02) 0 12px,transparent 12px 24px),var(--navy)}

/* ---- stat / proof band ---- */
.proof{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1rem;
  padding:1.6rem;border:1px solid var(--line);border-radius:var(--radius-lg);background:rgba(9,17,27,.6)}
.proof .stat b{display:block;font-size:1.7rem;font-weight:850;color:var(--cyan)}
.proof .stat span{color:var(--muted);font-size:.88rem}

/* ---- callout ---- */
.callout{border:1px solid var(--line);border-left:3px solid var(--cyan);border-radius:var(--radius);
  padding:1.1rem 1.3rem;background:rgba(53,211,255,.05);color:#cddced}
.callout.green{border-left-color:var(--green);background:rgba(108,229,177,.05)}
.callout.amber{border-left-color:var(--amber);background:rgba(255,206,122,.05)}
.callout b{color:var(--text)}

/* ---- spec table ---- */
.spec{width:100%;border-collapse:collapse;font-size:.95rem}
.spec td{padding:.7rem .9rem;border-bottom:1px solid var(--line-soft);vertical-align:top}
.spec td:first-child{color:var(--muted);white-space:nowrap;width:1%;font-weight:650}
.spec tr:last-child td{border-bottom:0}

/* ---- CTA band ---- */
.ctaband{position:relative;overflow:hidden;border:1px solid rgba(53,211,255,.28);border-radius:var(--radius-lg);
  padding:clamp(2rem,4vw,3.2rem);text-align:center;
  background:radial-gradient(600px 300px at 50% -20%,rgba(53,211,255,.16),transparent),linear-gradient(160deg,rgba(16,31,46,.9),rgba(9,17,27,.95))}
.ctaband h2{font-size:clamp(1.6rem,3.4vw,2.4rem)}
.ctaband p{color:var(--muted);max-width:52ch;margin:0 auto 1.6rem}

/* ---- product hero (per-page) ---- */
.phero{padding:clamp(2.4rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.5rem)}
.phero .kicker{display:inline-flex;gap:.5rem;align-items:center;margin-bottom:1rem}
.phero h1{font-size:clamp(2.1rem,5vw,3.8rem);letter-spacing:-.035em;max-width:18ch}
.phero .lede{max-width:58ch;color:#c3d6e4;font-size:clamp(1.05rem,1.8vw,1.28rem);margin-top:.9rem}
.breadcrumb{color:var(--dim);font-size:.85rem;margin-bottom:1.4rem}
.breadcrumb a{color:var(--muted)}.breadcrumb a:hover{color:var(--cyan)}

/* ---- footer ---- */
.foot{border-top:1px solid var(--line-soft);padding:2.6rem 0;margin-top:3rem;color:var(--muted)}
.foot-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:1.6rem 1.4rem}
.foot h5{color:var(--text);font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;margin:0 0 .8rem}
.foot a{display:block;color:var(--muted);padding:.22rem 0;font-size:.92rem}
.foot a:hover{color:var(--cyan)}
.foot-note{margin-top:2rem;padding-top:1.4rem;border-top:1px solid var(--line-soft);font-size:.85rem;color:var(--dim);display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}

/* ---- responsive ---- */
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
  .nav{display:none}
}
@media(max-width:560px){
  .foot-grid{grid-template-columns:1fr}
  .hero-metrics{gap:1.2rem}
}

/* Legal & compliance footer bar (SMS/A2P consent, terms, privacy) */
.foot-legal{display:flex;flex-wrap:wrap;gap:.5rem 1.15rem;padding-bottom:1.1rem;margin-bottom:1.1rem;border-bottom:1px solid var(--line)}
.foot-legal a{color:var(--muted);font-size:.85rem;text-decoration:none;white-space:nowrap}
.foot-legal a:hover{color:var(--ice)}
.foot-compliance{color:var(--muted);font-size:.8rem;line-height:1.5;max-width:80ch;margin-top:.9rem}

/* ============ Migrated content compatibility (Insights / Solutions / Platform) ============ */
.article-shell,.guide-content,.narrow{max-width:880px;margin-inline:auto}
.page-hero,.article-hero{padding:2.6rem 0 1rem}
.hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:2rem;align-items:center}
.split{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
@media(max-width:820px){.hero-grid,.split{grid-template-columns:1fr}}
.hero-copy{min-width:0}
.hero-actions,.action-row,.related-actions{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.2rem}
.section.alt{background:var(--navy)}
.section.compact{padding:2.4rem 0}
.section-tint{background:var(--panel)}
.section-head{max-width:64ch;margin-bottom:1.4rem}
.breadcrumbs,.breadcrumb{display:flex;gap:.5rem;flex-wrap:wrap;color:var(--muted);font-size:.85rem;margin-bottom:1rem}
.breadcrumbs a,.breadcrumb a{color:var(--muted);text-decoration:none}
.breadcrumbs a:hover,.breadcrumb a:hover{color:var(--ice)}
.article-page h1,.guide-content h1{font-size:2.25rem;line-height:1.15;margin:.4rem 0}
.article-content h2,.guide-content h2,.guide-section h2,.section h2{font-size:1.5rem;margin:1.9rem 0 .6rem}
.article-content h3,.guide-content h3{font-size:1.15rem;margin:1.4rem 0 .5rem}
.lead,.article-page .lede{font-size:1.14rem;color:var(--ice);line-height:1.6;max-width:72ch}
.byline{color:var(--muted);font-size:.9rem;margin-top:.5rem}
.editorial-note{color:var(--muted);font-size:.88rem;border-left:2px solid var(--line);padding-left:1rem;margin:1.2rem 0}
.article-content p,.guide-content p,.guide-section p,.hero-copy p{color:var(--muted);line-height:1.75;margin:.75rem 0;max-width:76ch}
.article-content ul,.article-content ol,.guide-content ul{color:var(--muted);line-height:1.7;padding-left:1.2rem;max-width:76ch}
.article-content li,.guide-content li{margin:.35rem 0}
.text-link{color:var(--cyan);text-decoration:none}
.text-link:hover{text-decoration:underline}
.article-page time,.guide-content time{color:var(--ice)}
.card,.product-card,.outcome-card,.problem-card,.quote-card,.numbered-card,.hero-panel,.related-panel,.cta-panel,.decision-box,.answer-box{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:1.25rem 1.4rem}
.card-grid,.product-grid,.proof-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin-top:1.2rem}
.card h3,.product-card h3,.outcome-card h3,.problem-card h3{margin-bottom:.4rem;font-size:1.1rem}
.card p,.product-card p,.outcome-card p,.problem-card p{color:var(--muted);line-height:1.6;font-size:.94rem}
.card-topline,.kicker{color:var(--cyan);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.4rem;display:block}
.answer-box>span,.decision-box>span{display:block;color:var(--cyan);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.4rem}
.signal-number,.guide-number{display:inline-flex;align-items:center;justify-content:center;min-width:2rem;height:2rem;padding:0 .4rem;border-radius:8px;background:rgba(53,211,255,.12);color:var(--cyan);font-weight:800;font-size:.9rem;margin-bottom:.5rem}
.badge,.status{display:inline-flex;align-items:center;gap:.4rem;padding:.15rem .6rem;border-radius:999px;border:1px solid var(--line);background:var(--panel);color:var(--ice);font-size:.72rem;font-weight:700}
.button{display:inline-flex;align-items:center;gap:.4rem;padding:.72rem 1.15rem;border-radius:12px;font-weight:700;font-size:.92rem;text-decoration:none;border:1px solid var(--line);color:var(--text)}
.button.primary{background:var(--cyan);color:#04121b;border-color:transparent}
.button.secondary{background:transparent;color:var(--ice)}
.button:hover{border-color:var(--cyan)}
.screenshot-frame{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:var(--panel);margin:1.2rem 0}
.screenshot-frame img{width:100%;display:block}
.screen-label{color:var(--muted);font-size:.85rem;padding:.6rem .9rem}
.cta-band,.cta-panel{background:linear-gradient(120deg,var(--panel),var(--navy));border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;text-align:center;margin-top:1.5rem}
.check-list{list-style:none;padding-left:0;color:var(--muted);line-height:1.7}
.check-list li{position:relative;padding-left:1.6rem;margin:.5rem 0}
.check-list li::before{content:"\2713";position:absolute;left:0;color:var(--green);font-weight:800}
/* Insights blog listing cards */
.post-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem;margin-top:1.5rem}
.post-card{display:block;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:1.3rem;text-decoration:none;transition:border-color .15s,transform .15s}
.post-card:hover{border-color:var(--cyan);transform:translateY(-2px)}
.post-card .post-date{color:var(--cyan);font-size:.78rem;font-weight:700;letter-spacing:.04em}
.post-card h3{color:var(--text);font-size:1.06rem;margin:.4rem 0 .3rem;line-height:1.3}
.post-card p{color:var(--muted);font-size:.9rem;line-height:1.55;margin:0}

/* ============ Grounded product-help assistant widget ============ */
.asl-assist-launch{position:fixed;right:20px;bottom:20px;z-index:9998;display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1rem;border:1px solid var(--line);border-radius:999px;background:var(--cyan);color:#04121b;font-family:var(--font);font-weight:800;font-size:.92rem;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.35)}
.asl-assist-launch:hover{filter:brightness(1.06)}
.asl-assist-launch.asl-assist-hidden{display:none}
.asl-assist-launch svg{display:block}
.asl-assist-panel{position:fixed;right:20px;bottom:20px;z-index:9999;width:min(380px,calc(100vw - 40px));height:min(560px,calc(100vh - 40px));display:none;flex-direction:column;background:var(--navy);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:0 16px 48px rgba(0,0,0,.5);font-family:var(--font)}
.asl-assist-panel.asl-assist-open{display:flex}
.asl-assist-head{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1rem;border-bottom:1px solid var(--line);background:var(--panel)}
.asl-assist-title{color:var(--text);font-weight:800;font-size:.95rem}
.asl-assist-close{background:none;border:none;color:var(--muted);font-size:1.5rem;line-height:1;cursor:pointer;padding:0 .2rem}
.asl-assist-close:hover{color:var(--ice)}
.asl-assist-log{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.7rem}
.asl-assist-msg{display:flex}
.asl-assist-msg.user{justify-content:flex-end}
.asl-assist-col{display:flex;flex-direction:column;max-width:85%;gap:.4rem}
.asl-assist-msg.user .asl-assist-col{align-items:flex-end}
.asl-assist-bubble{max-width:100%;padding:.6rem .8rem;border-radius:12px;font-size:.9rem;line-height:1.5;white-space:pre-wrap}
.asl-assist-msg.bot .asl-assist-bubble{background:var(--panel);color:var(--text);border:1px solid var(--line);border-top-left-radius:3px}
.asl-assist-msg.user .asl-assist-bubble{background:var(--cyan);color:#04121b;border-top-right-radius:3px;font-weight:600}
.asl-assist-loading{color:var(--muted);letter-spacing:3px}
.asl-assist-cites{margin-top:.5rem;display:flex;flex-wrap:wrap;gap:.35rem;align-items:center}
.asl-assist-cites-label{color:var(--muted);font-size:.75rem}
.asl-assist-cite{display:inline-block;padding:.2rem .55rem;border:1px solid var(--line);border-radius:999px;color:var(--cyan);font-size:.76rem;text-decoration:none}
.asl-assist-cite:hover{border-color:var(--cyan)}
.asl-assist-hint{margin-top:.5rem;font-size:.82rem;color:var(--muted)}
.asl-assist-link{color:var(--cyan);text-decoration:none}
.asl-assist-form{display:flex;gap:.5rem;padding:.75rem;border-top:1px solid var(--line);background:var(--panel)}
.asl-assist-input{flex:1;padding:.6rem .75rem;border:1px solid var(--line);border-radius:10px;background:var(--navy);color:var(--text);font-family:var(--font);font-size:.9rem}
.asl-assist-input:focus{outline:none;border-color:var(--cyan)}
.asl-assist-send{padding:.6rem .9rem;border:none;border-radius:10px;background:var(--cyan);color:#04121b;font-weight:800;font-size:.85rem;cursor:pointer}
.asl-assist-send:disabled{opacity:.5;cursor:default}
.asl-assist-feedback{margin-top:.5rem;display:flex;align-items:center;gap:.4rem;flex-wrap:wrap;font-size:.78rem;color:var(--muted)}
.asl-assist-fb-q{color:var(--muted)}
.asl-assist-fb-btn{padding:.15rem .55rem;border:1px solid var(--line);border-radius:999px;background:none;color:var(--cyan);font-size:.75rem;cursor:pointer;font-family:var(--font)}
.asl-assist-fb-btn:hover{border-color:var(--cyan)}
.asl-assist-fb-btn:disabled{opacity:.5;cursor:default}
@media(max-width:520px){.asl-assist-panel{right:10px;bottom:10px;width:calc(100vw - 20px);height:calc(100vh - 20px)}}
