/* ============================================================================
   ASL Design System v2 — the shared visual language for autosecurelogin.com.
   Brand: Obsidian #05090F · Deep Navy #09111B · Signal Cyan #C9FF56 (used
   sparingly, like an active signal) · Ice Cyan #D8FF7D · Steel White #EDF7FF ·
   Muted Steel #9FB2C2 · Trust Green #6CE5B1 · Inter.
   CSP-safe: no remote fonts, no external assets, no inline styles needed.
   v2 (2026-09): long-form reading styles, product sub-nav, FAQ, comparison
   tables, timelines, galleries, pricing, CSS-only mobile menu. Every v1 class
   is preserved so migrated Insights/Solutions/Platform pages keep rendering.
   ========================================================================== */
:root{
  color-scheme: dark;
  --obsidian:#05090F; --navy:#09111B; --panel:#0c1622; --panel-2:#101f2e;
  --line:#1c3346; --line-soft:#16283a;
  --text:#EDF7FF; --muted:#9FB2C2; --dim:#8798aa;
  /* The brand accent is lime as of 2026-09-04. The tokens keep the names --cyan/--ice
     because pages outside this build (the migrated insights and solutions pages, and
     assets/redesign.css) reference them by name; renaming would silently un-style those.
     --green stays a separate MINT: it is the semantic success colour (checkmarks, "yes"
     in the comparison table, the Live badge) and must not collapse into the brand accent. */
  --cyan:#C9FF56; --ice:#D8FF7D; --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(201,255,86,.14), 0 20px 60px -20px rgba(201,255,86,.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%}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important;animation:none!important}}
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(201,255,86,.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}
:focus-visible{outline:2px solid var(--cyan);outline-offset:3px;border-radius:4px}
.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)}
.skip-link{position:absolute;left:-999px;top:0;z-index:100;background:var(--cyan);color:#03151d;padding:.6rem 1rem;border-radius:0 0 10px 0;font-weight:800}
.skip-link:focus{left: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(201,255,86,.12)}
.topbar-inner{display:flex;align-items:center;gap:1.2rem;min-height:68px;flex-wrap:wrap}
.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,.nav a[aria-current="page"]{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)}
/* CSS-only mobile menu (no script): checkbox + label */
.nav-toggle-input{position:absolute;opacity:0;width:0;height:0;pointer-events:none}
.nav-toggle{display:none;margin-left:auto;align-items:center;gap:.45rem;padding:.5rem .85rem;border:1px solid var(--line);border-radius:999px;color:var(--text);font-weight:700;font-size:.9rem;cursor:pointer;user-select:none}
.nav-toggle::before{content:"";width:16px;height:2px;background:currentColor;box-shadow:0 -5px 0 currentColor,0 5px 0 currentColor;display:inline-block}
.nav-toggle-input:focus-visible + .nav-toggle{outline:2px solid var(--cyan);outline-offset:3px}

/* ---- 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(201,255,86,.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-green{background:var(--green);color:#052416}
.btn-green:hover{filter:brightness(1.06)}
.btn-sm{min-height:38px;padding:.5rem .9rem;font-size:.9rem}
/* Buttons are self-contained controls: any container rule that styles descendant links
   (.prose a, .article-content a, the migrated-page rules) ties or beats .btn-primary on
   specificity and would repaint the label to a link colour on a light fill. These
   element-qualified rules restore the button's own contrast in every context. */
a.btn-primary{color:#03151d}
a.btn-primary:hover{color:#03151d}
a.btn-ghost{color:var(--text)}
a.btn-ghost:hover{color:var(--ice)}
a.btn-green{color:#052416}
a.btn{text-decoration:none}
.btn-lg{min-height:54px;padding:.9rem 1.6rem;font-size:1.06rem}

/* ---- 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}
.hero-split{display:grid;grid-template-columns:1.1fr .9fr;gap:2.5rem;align-items:center}
.hero-split .shot{transform:rotate(-1deg)}
.hero-note{margin-top:1rem;color:var(--dim);font-size:.88rem}

/* ---- section ---- */
.section{padding:clamp(3rem,6vw,5rem) 0}
.section-tight{padding:clamp(1.6rem,3vw,2.6rem) 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}
.section-head.left{margin-inline:0;text-align:left}
.divider{height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent);border:0;margin:0}
.band{background:linear-gradient(180deg,rgba(9,17,27,.0),rgba(9,17,27,.9) 20%,rgba(9,17,27,.9) 80%,rgba(9,17,27,0));border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft)}

/* ---- 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))}
.grid-align{align-items:center}
.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}
.panel p + p{margin-top:.8rem}
.panel-cyan{border-color:rgba(201,255,86,.35)}
.panel-flat{box-shadow:none;background:rgba(12,22,34,.55)}

/* ---- 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;white-space:nowrap}
.pill-cyan{background:rgba(201,255,86,.12);color:var(--ice);border-color:rgba(201,255,86,.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-violet{background:rgba(183,155,255,.12);color:var(--violet);border-color:rgba(183,155,255,.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}
.chip-row{display:flex;flex-wrap:wrap;gap:.45rem;align-items:center}

/* ---- 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(201,255,86,.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(201,255,86,.1);border:1px solid rgba(201,255,86,.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)}
.card-who{color:var(--dim);font-size:.82rem;margin:0}
.card-feature{grid-column:span 2}
.card-feature .shot{margin-top:.4rem}

/* 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}
.catintro{color:var(--muted);max-width:70ch;margin:-.4rem 0 1.2rem;font-size:.98rem}

/* ---- 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(201,255,86,.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}
.features.two{grid-template-columns:repeat(2,minmax(0,1fr))}

/* ---- 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(201,255,86,.1);border:1px solid rgba(201,255,86,.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}
.feature-list{display:grid;gap:1.1rem}
.feature-list .feature{padding:1.1rem 1.2rem;border:1px solid var(--line-soft);border-radius:var(--radius);background:rgba(12,22,34,.45)}
.feature-list .feature h4{font-size:1.08rem}
.feature-list .feature p{font-size:.97rem;line-height:1.65}
.feature-num{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:rgba(201,255,86,.1);border:1px solid rgba(201,255,86,.22);color:var(--cyan);font-weight:900;font-family:var(--mono);font-size:.9rem}

/* ---- 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)}
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem}
.gallery .shot{transform:none}
.gallery-phone{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}
.gallery-phone .shot img{aspect-ratio:9/19.5;object-fit:cover;object-position:top}

/* ---- 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}
.proof .stat small{display:block;color:var(--dim);font-size:.74rem;margin-top:.2rem}

/* ---- callout ---- */
.callout{border:1px solid var(--line);border-left:3px solid var(--cyan);border-radius:var(--radius);
  padding:1.1rem 1.3rem;background:rgba(201,255,86,.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)}
.callout p:last-child{margin-bottom:0}

/* ---- 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}

/* ---- comparison table ---- */
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);background:rgba(9,17,27,.6)}
.compare{width:100%;border-collapse:separate;border-spacing:0;font-size:.93rem;min-width:720px}
.compare th,.compare td{padding:.8rem .9rem;border-bottom:1px solid var(--line-soft);vertical-align:top;text-align:left}
.compare thead th{position:sticky;top:0;background:var(--panel);color:var(--muted);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;z-index:1}
.compare tbody th{font-weight:750;color:var(--text);white-space:nowrap;background:rgba(12,22,34,.6);position:sticky;left:0}
.compare tbody tr:last-child td,.compare tbody tr:last-child th{border-bottom:0}
.compare td a{color:var(--ice);font-weight:650}
.compare .yes{color:var(--green);font-weight:800}
.compare .no{color:var(--dim)}

/* ---- CTA band ---- */
.ctaband{position:relative;overflow:hidden;border:1px solid rgba(201,255,86,.28);border-radius:var(--radius-lg);
  padding:clamp(2rem,4vw,3.2rem);text-align:center;
  background:radial-gradient(600px 300px at 50% -20%,rgba(201,255,86,.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}
.cta-inline{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;padding:1.1rem 1.3rem;border:1px solid var(--line);border-radius:var(--radius);background:rgba(12,22,34,.6)}
.cta-inline p{margin:0;color:var(--muted)}
.cta-inline b{color:var(--text)}

/* ---- 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;flex-wrap:wrap}
.phero h1{font-size:clamp(2.1rem,5vw,3.8rem);letter-spacing:-.035em;max-width:18ch}
.phero h1 .accent{color:var(--cyan)}
.phero .lede{max-width:58ch;color:#c3d6e4;font-size:clamp(1.05rem,1.8vw,1.28rem);margin-top:.9rem}
.phero .who{margin-top:1.2rem;color:var(--muted);font-size:.95rem}
.phero .who b{color:var(--text)}
.breadcrumb{color:var(--dim);font-size:.85rem;margin-bottom:1.4rem}
.breadcrumb a{color:var(--muted)}.breadcrumb a:hover{color:var(--cyan)}

/* ---- product sub-navigation (sticky, under topbar) ---- */
.subnav{position:sticky;top:68px;z-index:40;background:rgba(5,9,15,.86);backdrop-filter:blur(14px);border-bottom:1px solid var(--line-soft)}
.subnav-inner{display:flex;gap:.2rem;overflow-x:auto;scrollbar-width:none;padding:.35rem 0}
.subnav-inner::-webkit-scrollbar{display:none}
.subnav a{flex:0 0 auto;padding:.45rem .8rem;border-radius:999px;color:var(--muted);font-size:.86rem;font-weight:650;white-space:nowrap}
.subnav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.subnav a.cta{color:var(--obsidian);background:var(--cyan);margin-left:auto}

/* ---- long-form prose ---- */
.prose{max-width:74ch;color:#cddced;font-size:1.04rem;line-height:1.75}
.prose p{margin:0 0 1.1em}
.prose h2{font-size:clamp(1.5rem,3vw,2.1rem);margin:2.2rem 0 .7rem;color:var(--text)}
.prose h3{font-size:1.22rem;margin:1.8rem 0 .5rem;color:var(--text)}
.prose ul,.prose ol{padding-left:1.3rem;margin:0 0 1.1em}
.prose li{margin:.35rem 0}
.prose b,.prose strong{color:var(--text)}
/* :not(.btn) matters. A descendant link rule beats .btn-primary on specificity, so a
   button placed inside prose was rendering ice-cyan text on a cyan fill — 1.3:1, which
   is effectively invisible. Buttons keep their own colours everywhere. */
.prose a:not(.btn){color:var(--ice);text-decoration:underline;text-decoration-color:rgba(216,255,125,.35);text-underline-offset:3px}
.prose a:not(.btn):hover{text-decoration-color:var(--ice)}
.prose blockquote{margin:1.4rem 0;padding:.9rem 1.2rem;border-left:3px solid var(--cyan);background:rgba(201,255,86,.05);border-radius:0 var(--radius) var(--radius) 0;color:var(--text)}
.prose-wide{max-width:none}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.lead-in{font-size:1.16rem;color:var(--ice);line-height:1.65;max-width:70ch}

/* ---- FAQ (native details, no script) ---- */
.faq{display:grid;gap:.6rem}
.faq details{border:1px solid var(--line);border-radius:var(--radius);background:rgba(12,22,34,.55);overflow:hidden}
.faq summary{list-style:none;cursor:pointer;padding:1rem 3rem 1rem 1.2rem;font-weight:750;font-size:1.02rem;position:relative;color:var(--text)}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:1.1rem;top:.85rem;color:var(--cyan);font-size:1.4rem;font-weight:400;transition:transform .15s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details[open] summary{border-bottom:1px solid var(--line-soft)}
.faq .faq-a{padding:.9rem 1.2rem 1.1rem;color:var(--muted);line-height:1.7}
.faq .faq-a p:last-child{margin-bottom:0}

/* ---- timeline ---- */
.timeline{list-style:none;margin:0;padding:0 0 0 1.4rem;border-left:2px solid var(--line);display:grid;gap:1.1rem}
.timeline li{position:relative;padding-left:.6rem}
.timeline li::before{content:"";position:absolute;left:-1.85rem;top:.45em;width:12px;height:12px;border-radius:50%;background:var(--obsidian);border:2px solid var(--cyan);box-shadow:0 0 10px rgba(201,255,86,.5)}
.timeline time{display:block;color:var(--cyan);font-family:var(--mono);font-size:.78rem;letter-spacing:.04em;margin-bottom:.15rem}
.timeline p{margin:0;color:var(--muted)}
.timeline b{color:var(--text)}

/* ---- steps ---- */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;counter-reset:step}
.step{position:relative;padding:1.3rem 1.2rem 1.2rem;border:1px solid var(--line);border-radius:var(--radius);background:rgba(12,22,34,.55)}
.step::before{counter-increment:step;content:"0" counter(step);display:block;font-family:var(--mono);color:var(--cyan);font-size:.8rem;letter-spacing:.1em;margin-bottom:.5rem}
.step h4{margin:0 0 .35rem;font-size:1.04rem}
.step p{margin:0;color:var(--muted);font-size:.94rem}

/* ---- maturity ---- */
.mat{display:inline-flex;align-items:center;gap:.4rem;border-radius:999px;padding:.3rem .7rem;font-weight:750;font-size:.76rem;border:1px solid transparent;white-space:nowrap}
.mat-live{background:rgba(108,229,177,.12);color:var(--green);border-color:rgba(108,229,177,.28)}
.mat-available{background:rgba(201,255,86,.12);color:var(--ice);border-color:rgba(201,255,86,.28)}
.mat-early{background:rgba(255,206,122,.12);color:var(--amber);border-color:rgba(255,206,122,.28)}
.mat-dev{background:rgba(159,178,194,.1);color:var(--muted);border-color:rgba(159,178,194,.22)}
.mat-internal{background:rgba(135,152,170,.14);color:var(--dim);border-color:rgba(135,152,170,.32)}
.mat-research{background:rgba(183,155,255,.12);color:var(--violet);border-color:rgba(183,155,255,.28)}

/* ---- surfaces (where it runs) ---- */
.surfaces{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:.8rem}
.surface{display:flex;gap:.8rem;align-items:flex-start;padding:.9rem 1rem;border:1px solid var(--line-soft);border-radius:var(--radius-sm);background:rgba(12,22,34,.5)}
.surface .sic{width:36px;height:36px;border-radius:9px;display:grid;place-items:center;background:rgba(201,255,86,.1);color:var(--cyan);font-weight:900;font-size:.72rem;letter-spacing:.06em;flex:0 0 36px}
.surface b{display:block;font-size:.95rem}
.surface span{display:block;color:var(--muted);font-size:.84rem}
.surface a{color:var(--ice);font-size:.84rem;font-weight:650}

/* ---- audience / solutions ---- */
.audience-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.1rem}
.audience{display:flex;flex-direction:column;gap:.6rem;padding:1.4rem;border:1px solid var(--line);border-radius:var(--radius-lg);background:linear-gradient(160deg,rgba(16,31,46,.7),rgba(9,17,27,.85));transition:transform .16s,border-color .16s,box-shadow .16s}
.audience:hover{transform:translateY(-3px);border-color:rgba(201,255,86,.4);box-shadow:var(--glow)}
.audience .for{color:var(--cyan);font-size:.74rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.audience h3{margin:0;font-size:1.2rem}
.audience p{margin:0;color:var(--muted);font-size:.95rem;flex:1}
.audience .products{color:var(--dim);font-size:.84rem}
.audience .products b{color:var(--muted);font-weight:650}

/* ---- pricing ---- */
.pricing{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.1rem;align-items:stretch}
.price{display:flex;flex-direction:column;gap:.7rem;padding:1.5rem;border:1px solid var(--line);border-radius:var(--radius-lg);background:linear-gradient(160deg,rgba(16,31,46,.9),rgba(9,17,27,.92))}
.price.featured{border-color:rgba(201,255,86,.45);box-shadow:var(--glow)}
.price .tier{color:var(--cyan);font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.price .amount{font-size:2rem;font-weight:850;letter-spacing:-.02em}
.price .amount small{font-size:.9rem;color:var(--muted);font-weight:600}
.price p{color:var(--muted);margin:0;font-size:.94rem}
.price ul{margin:.4rem 0 0;padding:0;list-style:none;display:grid;gap:.4rem;color:#cddced;font-size:.92rem}
.price li::before{content:"✓ ";color:var(--green);font-weight:900}
.price .btn{margin-top:auto}

/* ---- notice (honest limits) ---- */
.notice{display:grid;gap:.5rem;padding:1.1rem 1.3rem;border:1px dashed var(--line);border-radius:var(--radius);color:var(--muted);font-size:.94rem}
.notice h4{margin:0;color:var(--text);font-size:.95rem}
.notice ul{margin:0;padding-left:1.2rem}
.notice li{margin:.25rem 0}

/* ---- key-value strip ---- */
.kv{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:.8rem}
.kv div{padding:.9rem 1rem;border:1px solid var(--line-soft);border-radius:var(--radius-sm);background:rgba(12,22,34,.5)}
.kv dt{color:var(--dim);font-size:.74rem;text-transform:uppercase;letter-spacing:.1em;font-weight:750;margin:0 0 .3rem}
.kv dd{margin:0;color:var(--text);font-weight:650;font-size:.95rem}

/* ---- quote ---- */
.quote{padding:1.6rem 1.8rem;border:1px solid var(--line);border-radius:var(--radius-lg);background:rgba(12,22,34,.55);font-size:1.15rem;line-height:1.6;color:var(--text)}
.quote footer{margin-top:.8rem;color:var(--muted);font-size:.9rem}

/* ---- forms ---- */
.form{display:grid;gap:1rem}
.form label{display:grid;gap:.35rem;font-weight:650;font-size:.92rem;color:var(--text)}
.form input,.form select,.form textarea{width:100%;padding:.75rem .9rem;border:1px solid var(--line);border-radius:var(--radius-sm);background:var(--navy);color:var(--text);font-family:var(--font);font-size:.98rem}
.form input:focus,.form select:focus,.form textarea:focus{outline:none;border-color:var(--cyan);box-shadow:0 0 0 3px rgba(201,255,86,.15)}
.form textarea{min-height:150px;resize:vertical}
.form .hint{color:var(--dim);font-size:.82rem;font-weight:500}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form .hp{position:absolute;left:-9999px;opacity:0;height:0;width:0}
.form-status{margin-top:.6rem;color:var(--muted);font-size:.92rem;min-height:1.4em}
.form-status.ok{color:var(--green)}
.form-status.err{color:var(--red)}

/* ---- 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}
.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}
.foot-compliance a{display:inline;color:var(--ice);padding:0}

/* ---- utilities ---- */
.mt-0{margin-top:0}.mt-1{margin-top:.6rem}.mt-2{margin-top:1.2rem}.mt-3{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:1.2rem}
.pt-0{padding-top:0}.pb-0{padding-bottom:0}
.justify-center{justify-content:center}
.maxw{max-width:70ch}
.text-ice{color:var(--ice)}.text-green{color:var(--green)}.text-amber{color:var(--amber)}
.h2-lg{font-size:2rem}
.small{font-size:.88rem}
.list-plain{list-style:none;margin:0;padding:0}
.inline-links a{color:var(--ice);font-weight:650}
.inline-links a + a::before{content:" · ";color:var(--dim);font-weight:400}

/* ---- responsive ---- */
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4,.two-col,.features.two{grid-template-columns:1fr}
  .hero-split{grid-template-columns:1fr}
  .hero-split .shot{transform:none}
  .foot-grid{grid-template-columns:1fr 1fr}
  .card-feature{grid-column:span 1}
  .form .row{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav{display:none;flex-basis:100%;flex-direction:column;align-items:stretch;gap:.1rem;padding:.4rem 0 .8rem;margin-left:0}
  .nav a{padding:.7rem .8rem;border-radius:10px}
  .nav a.cta{text-align:center;margin-top:.3rem}
  .nav-toggle-input:checked ~ .nav{display:flex}
  .subnav{top:68px}
}
@media(max-width:560px){
  .foot-grid{grid-template-columns:1fr}
  .hero-metrics{gap:1.2rem}
  .compare{min-width:640px}
}

/* ============ 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}
.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)}
.breadcrumbs{display:flex;gap:.5rem;flex-wrap:wrap;color:var(--muted);font-size:.85rem;margin-bottom:1rem}
.breadcrumbs a{color:var(--muted);text-decoration:none}
.breadcrumbs 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{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)}
.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}
.product-card h3,.outcome-card h3,.problem-card h3{margin-bottom:.4rem;font-size:1.1rem}
.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}
.phero .kicker{display:inline-flex;text-transform:none;letter-spacing:0;font-size:inherit;color:inherit}
.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(201,255,86,.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)}
/* Same protection as .btn: the migrated pages use .button, and a container link rule
   would otherwise repaint a filled button's label to a link colour. */
a.button.primary,a.button.primary:hover{color:#04121b}
a.button.secondary{color:var(--ice)}
.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}
.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(400px,calc(100vw - 40px));height:min(600px,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:88%;gap:.4rem}
.asl-assist-msg.user .asl-assist-col{align-items:flex-end}
.asl-assist-bubble{max-width:100%;padding:.65rem .85rem;border-radius:12px;font-size:.92rem;line-height:1.55;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-suggest{display:flex;flex-wrap:wrap;gap:.35rem;padding:0 1rem .6rem}
.asl-assist-chip{padding:.3rem .65rem;border:1px solid var(--line);border-radius:999px;background:none;color:var(--ice);font-family:var(--font);font-size:.78rem;cursor:pointer}
.asl-assist-chip:hover{border-color:var(--cyan)}
.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)}}

/* Feature, step and notice headings are h3 for document structure (they sit under an h2)
   but keep the smaller visual weight the layout was designed around. */
.feature h3.fh,.panel .feature h3.fh{margin:0 0 .25rem;font-size:1.02rem;font-weight:800}
.feature-list .feature h3.fh{font-size:1.08rem}
.step h3.sh{margin:0 0 .35rem;font-size:1.04rem;font-weight:800}
.notice h3.nh{margin:0;color:var(--text);font-size:.95rem;font-weight:800}
.foot .foot-h{color:var(--text);font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;margin:0 0 .8rem;font-weight:800}
.card-who b{color:var(--muted);font-weight:750}
