
/* ─── RESET & BASE ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0B1426;--navy2:#0F1E36;--navy3:#162544;
  --ink:#0F172A;--body:#334155;--muted:#64748B;--faint:#94A3B8;
  --rule:#E2E8F0;--bg:#F1F5F9;--white:#FFFFFF;
  --red:#B91C1C;--red-bg:#FEF2F2;--red-border:#FECACA;--red-vivid:#EF4444;
  --amber:#92400E;--amber-bg:#FFFBEB;--amber-border:#FDE68A;--amber-vivid:#F59E0B;
  --green:#065F46;--green-bg:#ECFDF5;--green-border:#A7F3D0;--green-vivid:#10B981;
  --blue:#1E3A8A;--blue-bg:#EFF6FF;--blue-border:#BFDBFE;--blue-vivid:#3B82F6;
  --cyan:#0E7490;--cyan-bg:#ECFEFF;--cyan-border:#A5F3FC;
  --sans:'IBM Plex Sans',system-ui,sans-serif;
  --mono:'IBM Plex Mono',monospace;
  --r:10px;--r-lg:16px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow:0 4px 16px rgba(0,0,0,.1),0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:0 12px 40px rgba(0,0,0,.15),0 4px 12px rgba(0,0,0,.1);
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{overflow-x:hidden}
body{font-family:var(--sans);background:var(--bg);color:var(--body);-webkit-font-smoothing:antialiased;line-height:1.6;font-size:15px}

/* ─── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:#CBD5E1;border-radius:3px}

/* ─── NAV ──────────────────────────────────────────────────── */
body>nav{
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:flex-start;
  padding:0 clamp(1rem,5vw,2.5rem);height:76px;
  position:sticky;top:0;z-index:300;
}
.nav-logo{
  display:flex;align-items:center;gap:12px;text-decoration:none;
  position:relative;z-index:1;
}
.nav-logo-icon{width:46px;height:46px}
.nav-logo-text{
  font-family:var(--mono);font-size:26px;font-weight:700;
  color:#fff;letter-spacing:-.03em;line-height:1;
}
.nav-logo-text span{
  color:#60A5FA;
  text-shadow:0 0 24px rgba(96,165,250,.45);
}
.nav-right{
  display:flex;align-items:center;gap:12px;
  position:absolute;right:clamp(1rem,5vw,2.5rem);top:50%;transform:translateY(-50%);
}
.nav-link{font-size:14px;color:rgba(255,255,255,.8);text-decoration:none;transition:color .15s;letter-spacing:.01em}
.nav-link:hover{color:#fff}
@media(max-width:700px){
  .nav-link{display:none}
  .nav-logo-text{font-size:20px}
  .nav-logo-icon{width:36px;height:36px}
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero{
  background:var(--navy);
  padding:clamp(3rem,7vw,5.5rem) clamp(1rem,5vw,2.5rem) clamp(2.5rem,5vw,4.5rem);
  text-align:center;position:relative;overflow:hidden;
}
.hero-glow{
  position:absolute;bottom:-60px;left:50%;transform:translateX(-50%);
  width:700px;height:350px;
  background:radial-gradient(ellipse at center,rgba(29,78,216,.2) 0%,rgba(239,68,68,.08) 40%,transparent 70%);
  pointer-events:none;
}
.hero-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;
  pointer-events:none;
}

.news-pill{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(239,68,68,.1);
  border:1px solid rgba(239,68,68,.22);
  color:#FCA5A5;
  font-size:11px;font-weight:500;
  font-family:var(--mono);
  letter-spacing:.07em;text-transform:uppercase;
  padding:5px 14px;border-radius:999px;
  margin-bottom:1.5rem;cursor:default;
  white-space:nowrap;max-width:calc(100% - 2rem);
  overflow:hidden;text-overflow:ellipsis;
}
.pulse{
  width:6px;height:6px;background:#EF4444;border-radius:50%;
  animation:pulseAnim 2s ease-in-out infinite;
}
@keyframes pulseAnim{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(.6)}}

.hero h1{
  font-family:var(--sans);
  font-size:clamp(1.75rem,5vw,3rem);
  font-weight:700;
  color:#fff;
  line-height:1.12;
  max-width:660px;
  margin:0 auto .85rem;
  letter-spacing:-.02em;
}
.hero h1 .accent{
  background:linear-gradient(135deg,#60A5FA 0%,#818CF8 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-sub{
  font-size:clamp(14px,2vw,16px);
  color:rgba(255,255,255,.5);
  max-width:430px;margin:0 auto 2rem;
  font-weight:300;line-height:1.75;letter-spacing:.01em;
  text-wrap:balance;
}

/* ─── SEARCH ───────────────────────────────────────────────── */
.search-outer{max-width:620px;margin:0 auto;position:relative}

.search-box{
  display:flex;align-items:center;
  background:var(--white);
  border-radius:var(--r-lg);
  box-shadow:0 0 0 1px rgba(255,255,255,.06),var(--shadow-lg);
  overflow:visible;position:relative;
  border:1.5px solid transparent;
  transition:border-color .2s;
}
.search-box:focus-within{border-color:rgba(96,165,250,.5)}

.si-icon{
  padding:0 0 0 16px;
  display:flex;align-items:center;
  color:#94A3B8;flex-shrink:0;
}
#q{
  flex:1;padding:15px 10px 15px 12px;
  font-size:15px;font-family:var(--sans);font-weight:400;
  border:none;outline:none;background:transparent;
  color:var(--ink);min-width:0;letter-spacing:-.01em;
}
#q::placeholder{color:#94A3B8}
.search-btn{
  margin:6px;padding:10px 18px;
  background:linear-gradient(135deg,#1D4ED8 0%,#2563EB 100%);
  color:#fff;border:none;border-radius:10px;
  font-family:var(--sans);font-size:13.5px;font-weight:600;
  cursor:pointer;white-space:nowrap;flex-shrink:0;
  transition:opacity .15s,transform .1s;
  letter-spacing:.01em;
}
.search-btn:hover{opacity:.9}
.search-btn:active{transform:scale(.98)}

/* dropdown */
#drop{
  position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:var(--white);border-radius:var(--r-lg);
  border:1px solid var(--rule);
  box-shadow:var(--shadow-lg);
  overflow:hidden;z-index:500;display:none;
  max-height:340px;overflow-y:auto;
}
.di{
  padding:11px 16px;cursor:pointer;
  display:flex;align-items:center;gap:10px;
  border-bottom:1px solid var(--rule);
  transition:background .1s;
}
.di:last-child{border-bottom:none}
.di:hover{background:#F8FAFC}
.di-brand{font-weight:600;font-size:14px;color:var(--ink);flex-shrink:0}
.di-model{font-size:13px;color:var(--muted);flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.di-risk-label{font-size:10.5px;font-weight:600;padding:2px 8px;border-radius:999px;flex-shrink:0}
.rl-3{background:#FEE2E2;color:#991B1B}
.rl-2{background:#FFFBEB;color:#92400E}
.rl-1,.rl-0{background:#ECFDF5;color:#065F46}
.isp-tag{font-size:10px;background:var(--blue-bg);color:var(--blue);padding:2px 7px;border-radius:999px;font-weight:600;flex-shrink:0}
.di-notfound{cursor:default;flex-direction:column;align-items:flex-start;gap:8px;background:#FAFBFD}
.di-notfound:hover{background:#FAFBFD}
.di-nf-text{font-size:13px;color:var(--muted)}
.di-nf-text strong{color:var(--ink)}
.di-nf-btn{display:inline-flex;align-items:center;gap:5px;font-size:12.5px;font-weight:600;color:#fff;background:#1E40AF;border:none;border-radius:6px;padding:6px 13px;cursor:pointer;transition:background .15s;font-family:var(--sans)}
.di-nf-btn:hover{background:#1D4ED8}
.di-nf-btn:disabled{opacity:.6;cursor:wait}
.di-nf-btn.analyzing::after{content:' ⏳';animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* hint row */
.search-hint{
  display:flex;align-items:center;justify-content:center;gap:16px;
  margin-top:10px;flex-wrap:wrap;
}
.hint-item{
  display:flex;align-items:center;gap:5px;
  font-size:11.5px;color:rgba(255,255,255,.35);cursor:pointer;
  transition:color .15s;
}
.hint-item:hover{color:rgba(255,255,255,.65)}
.hint-item svg{flex-shrink:0}

/* don't know modal */
.help-bubble{
  position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:var(--white);border-radius:var(--r-lg);
  border:1px solid var(--rule);box-shadow:var(--shadow-lg);
  padding:1.25rem 1.5rem;z-index:500;display:none;
}
.hb-title{font-size:13px;font-weight:600;color:var(--ink);margin-bottom:.6rem}
.hb-steps{font-size:13px;color:var(--body);line-height:1.7}
.hb-steps li{margin-bottom:.4rem}
.hb-close{float:right;font-size:12px;color:var(--muted);cursor:pointer;text-decoration:underline}

/* hero trust strip */
.hero-trust{
  display:flex;align-items:center;justify-content:center;
  gap:clamp(.75rem,3vw,2rem);margin-top:2rem;flex-wrap:wrap;
}
.ht-item{
  display:flex;align-items:center;gap:6px;
  font-family:var(--mono);
  font-size:13px;color:rgba(255,255,255,.75);
  letter-spacing:.02em;
}
.ht-sep{width:1px;height:18px;background:rgba(255,255,255,.1)}

/* ─── QUICK SELECT ──────────────────────────────────────────── */
.qs-wrap{margin-top:14px}
.qs-label{font-size:10.5px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.3);margin-bottom:8px;text-align:center}
.brand-row{display:flex;flex-wrap:wrap;justify-content:center;gap:7px;margin-bottom:10px;padding:2px 0}
.brand-subrow{display:flex;align-items:center;gap:7px}
.brand-btn{
  display:flex;align-items:center;gap:6px;
  padding:7px 13px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  font-family:var(--sans);font-size:12.5px;font-weight:500;
  color:rgba(255,255,255,.75);cursor:pointer;
  transition:background .15s,border-color .15s,color .15s;
  white-space:nowrap;
}
.brand-btn:hover,.brand-btn.active{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.22);color:#fff}
.brand-btn.active{background:rgba(96,165,250,.15);border-color:rgba(96,165,250,.35);color:#93C5FD}
.brand-risk-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}
.brd-0{background:#16A34A}.brd-1{background:#2563EB}.brd-2{background:#F59E0B}.brd-3{background:#EF4444}

.models-row{
  display:flex;justify-content:center;gap:6px;flex-wrap:wrap;
  min-height:0;
  animation:fadeUp .2s ease;
}
.model-chip{
  padding:5px 12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  font-family:var(--sans);font-size:12px;font-weight:400;
  color:rgba(255,255,255,.65);cursor:pointer;
  transition:background .15s,border-color .15s,color .15s;
  white-space:nowrap;
}
.model-chip:hover{background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.2);color:#fff}
.model-chip.risk-3{border-color:rgba(239,68,68,.3);color:#FCA5A5}
.model-chip.risk-3:hover{background:rgba(239,68,68,.12)}
.model-chip.risk-2{border-color:rgba(245,158,11,.25);color:#FDE68A}
.model-chip.risk-2:hover{background:rgba(245,158,11,.1)}
.model-chip.risk-1,.model-chip.risk-0{border-color:rgba(16,185,129,.25);color:#6EE7B7}
.model-chip.risk-1:hover,.model-chip.risk-0:hover{background:rgba(16,185,129,.08)}

/* ─── MAIN ─────────────────────────────────────────────────── */
main{max-width:800px;margin:0 auto;padding:0}

/* ─── RESULT ───────────────────────────────────────────────── */
#result{display:none}

.page-report-header{margin:.25rem 0 1.5rem}
.prh-eyebrow{font-family:var(--mono);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.18em;color:var(--faint);margin-bottom:5px}
.prh-title{font-size:2rem;font-weight:800;color:var(--ink);line-height:1.15;margin:0;letter-spacing:-.025em}
@media(max-width:480px){.prh-title{font-size:1.55rem}}

/* grade header */
.grade-card{
  background:var(--white);border-radius:var(--r-lg);
  border:1px solid var(--rule);overflow:hidden;
  margin-bottom:1rem;box-shadow:var(--shadow-sm);
}
.gc-header{
  display:grid;
  grid-template-columns:1fr 220px;
  border-bottom:1px solid var(--rule);
  min-height:155px;
}
.gc-left{
  padding:1.5rem 1.75rem 1.25rem;
  display:flex;flex-direction:column;
  gap:0;
}
.gc-name-row{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:8px}
.gc-name-row .gc-model{margin:0;flex:1;min-width:0}
.gc-model{font-size:1.4rem;font-weight:700;color:var(--ink);line-height:1.15;letter-spacing:-.025em;margin:0 0 8px}
.gc-meta{display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-bottom:.5rem}
.gc-tag{
  font-size:11px;color:var(--muted);
  background:var(--bg);border:1px solid var(--rule);
  border-radius:6px;padding:2px 9px;letter-spacing:.01em;
}
.gc-tag.isp{background:var(--blue-bg);border-color:var(--blue-border);color:var(--blue)}

/* image panel - right column of gc-header */
.gc-img-panel{
  border-left:1px solid var(--rule);
  background:#F4F7FA;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;position:relative;
}
.gc-img-panel img.router-img{
  width:100%;height:100%;
  object-fit:contain;
  padding:1.5rem;
  display:block;
}
.gc-img-panel .router-img-fallback{
  opacity:.18;width:72px;height:52px;
}
/* keep old router-img-wrap for the main-page search result which still uses inline images */
.router-img-wrap{
  width:96px;height:96px;flex-shrink:0;
  border-radius:10px;background:var(--bg);
  border:1px solid var(--rule);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.router-img-wrap img.router-img{width:100%;height:100%;object-fit:contain;padding:6px;display:block}
.router-img-fallback{opacity:.25}

/* grade badge */
.grade-badge{
  flex-shrink:0;width:72px;height:72px;border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;
}
.gbA,.gbProt{background:var(--green-bg);border:2px solid var(--green-border)}
.gbB{background:var(--blue-bg);border:2px solid var(--blue-border)}
.gbC{background:var(--amber-bg);border:2px solid var(--amber-border)}
.gbD{background:#FFF7ED;border:2px solid #FED7AA}
.gbF{background:var(--red-bg);border:2px solid var(--red-border)}
.gb-letter{font-family:var(--mono);font-size:1.6rem;line-height:1;font-weight:700;letter-spacing:-.03em}
.gbA .gb-letter,.gbProt .gb-letter{color:var(--green)}.gbB .gb-letter{color:var(--blue)}
.gbC .gb-letter{color:var(--amber)}
.gbD .gb-letter{color:#C2410C}
.gbF .gb-letter{color:var(--red)}
.gb-word{font-size:8.5px;font-family:var(--sans);font-weight:700;letter-spacing:.07em;text-transform:uppercase;margin-top:1px}
.gbA .gb-word,.gbProt .gb-word{color:var(--green)}.gbB .gb-word{color:var(--blue)}
.gbC .gb-word{color:var(--amber)}
.gbD .gb-word{color:#C2410C}
.gbF .gb-word{color:var(--red)}

/* ─── TOOLTIP ───────────────────────────────────────────────── */
[data-tip]{
  position:relative;cursor:help;
  border-bottom:1px dashed rgba(100,116,139,.5);
  display:inline;
}
[data-tip]::after{
  content:attr(data-tip);
  position:absolute;
  bottom:calc(100% + 10px);
  left:50%;transform:translateX(-50%) translateY(4px);
  /* reset ALL inherited text formatting */
  text-transform:none;font-variant:normal;font-style:normal;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:12.5px;font-weight:400;line-height:1.6;
  letter-spacing:0;text-align:left;
  color:#F1F5F9;
  background:#1B2537;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 8px 24px rgba(0,0,0,.35),0 2px 6px rgba(0,0,0,.2);
  padding:9px 12px;border-radius:8px;
  width:max-content;max-width:240px;white-space:normal;
  word-wrap:break-word;
  opacity:0;pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;
  z-index:9999;
}
[data-tip]::before{
  content:'';
  position:absolute;
  bottom:calc(100% + 4px);left:50%;transform:translateX(-50%) translateY(4px);
  border:5px solid transparent;
  border-top-color:#1B2537;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.08));
  opacity:0;pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;
  z-index:9999;
}
[data-tip]:hover::after{
  opacity:1;transform:translateX(-50%) translateY(0);
}
[data-tip]:hover::before{
  opacity:1;transform:translateX(-50%) translateY(0);
}

/* verdict */
.verdict-strip{
  padding:1.1rem 1.75rem 1.2rem;
  font-size:14px;line-height:1.7;
  border-bottom:1px solid var(--rule);
}
.verdict-strip::before{
  content:'VERDICT';display:block;font-family:var(--mono);
  font-size:10px;font-weight:700;letter-spacing:.1em;opacity:.5;margin-bottom:.55rem;
}
.verdict-strip ul{margin:.55rem 0 0;padding:0;list-style:none}
.verdict-strip li{font-size:13.5px;line-height:1.55;padding:.18rem 0 .18rem 1.15rem;position:relative}
.verdict-strip li::before{content:'→';position:absolute;left:0;opacity:.5;font-size:11px;top:.28rem}
.vs-red{background:var(--red-bg);color:#7F1D1D}
.vs-amber{background:var(--amber-bg);color:#78350F}
.vs-green{background:var(--green-bg);color:#064E3B}
.vs-blue{background:var(--blue-bg);color:#1E3A8A}
.verdict-strip li.li-pos::before{content:'✓';color:#15803d;font-weight:700}
.verdict-strip li.li-warn::before{content:'⚠';color:#b45309;font-weight:700}
.verdict-strip li.li-neg::before{content:'✗';color:#b91c1c;font-weight:700}

/* risk bar */
.rbar-section{padding:1.25rem 1.75rem}
.rbar-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.rbar-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--faint);font-family:var(--mono)}
.rbar-value{font-size:12px;font-weight:600;color:var(--body)}
.rbar-track{
  height:8px;background:var(--bg);border-radius:999px;overflow:hidden;
  border:1px solid var(--rule);
}
.rbar-fill{height:100%;border-radius:999px;transition:width .8s cubic-bezier(.4,0,.2,1)}
.rf-red{background:linear-gradient(90deg,#FCA5A5,#DC2626)}
.rf-amber{background:linear-gradient(90deg,#FCD34D,#D97706)}
.rf-green{background:linear-gradient(90deg,#6EE7B7,#059669)}
.rbar-ticks{display:flex;justify-content:space-between;margin-top:5px}
.rbar-tick{font-size:10px;color:var(--faint)}

/* stat grid */
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:1rem}
@media(max-width:480px){.stat-grid{grid-template-columns:1fr}}

.stat-card{
  background:var(--white);border-radius:var(--r);
  border:1px solid var(--rule);padding:1.1rem 1.25rem;
  box-shadow:var(--shadow-sm);
}
.sc-icon-row{display:flex;align-items:center;gap:8px;margin-bottom:7px}
.sc-icon{
  width:30px;height:30px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;font-size:14px;
  flex-shrink:0;
}
.sci-red{background:var(--red-bg)}.sci-amber{background:var(--amber-bg)}.sci-green{background:var(--green-bg)}.sci-blue{background:var(--blue-bg)}.sci-gray{background:var(--bg)}
.sc-label{font-size:10.5px;text-transform:uppercase;letter-spacing:.08em;color:var(--faint);font-weight:600;font-family:var(--mono)}
.sc-value{font-size:14px;font-weight:600;color:var(--ink);line-height:1.3;margin-bottom:3px}
.sc-sub{font-size:12px;color:var(--muted);line-height:1.5}
.danger{color:var(--red)}.warn{color:#B45309}.good{color:var(--green)}

/* sections */
.section{
  background:var(--white);border-radius:var(--r-lg);
  border:1px solid var(--rule);overflow:hidden;
  margin-bottom:1rem;box-shadow:var(--shadow-sm);
}
.sec-hd{
  padding:.9rem 1.4rem;
  border-bottom:1px solid var(--rule);
  display:flex;align-items:center;gap:8px;
}
.sec-hd-icon{font-size:15px;flex-shrink:0}
.sec-title{font-size:12.5px;font-weight:700;color:var(--ink);letter-spacing:.01em;flex:1;font-family:var(--mono)}
.sec-count{
  font-size:10.5px;font-weight:700;
  padding:2px 9px;border-radius:999px;flex-shrink:0;
}
.sct-red{background:var(--red-bg);color:var(--red)}
.sct-amber{background:var(--amber-bg);color:var(--amber)}
.sct-green{background:var(--green-bg);color:var(--green)}
.sct-gray{background:var(--bg);color:var(--muted)}

/* findings */
.finding{
  padding:.9rem 1.4rem;border-bottom:1px solid var(--rule);
  display:grid;grid-template-columns:70px 1fr;gap:12px;
  align-items:start;
}
.finding:last-child{border-bottom:none}
.sev-badge{
  padding:3px 0;border-radius:6px;font-size:9.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.06em;text-align:center;
  margin-top:2px;
}
.sb-critical{background:#FEE2E2;color:#991B1B}
.sb-high{background:var(--red-bg);color:var(--red)}
.sb-medium{background:var(--amber-bg);color:var(--amber)}
.sb-low{background:#F0FDF4;color:#166534}
.sb-ok{background:var(--green-bg);color:var(--green)}
.f-name{font-size:13px;font-weight:600;color:var(--ink);margin-bottom:3px}
.f-plain{font-size:13.5px;color:var(--body);line-height:1.75}
.f-ref{font-size:10.5px;color:var(--faint);margin-top:4px;font-family:var(--mono);letter-spacing:.02em}
.ref-link{color:var(--blue);text-decoration:none;border-bottom:1px solid var(--blue-border);transition:color .15s}
.ref-link:hover{color:#1e40af;border-bottom-color:#1e40af}

/* todos */
.todo-item{
  padding:.85rem 1.4rem;border-bottom:1px solid var(--rule);
  display:flex;align-items:flex-start;gap:12px;
}
.todo-item:last-child{border-bottom:none}
.todo-num{
  width:22px;height:22px;border-radius:50%;
  background:var(--navy);color:#fff;
  font-size:11px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;font-family:var(--sans);
}
.todo-text{font-size:13.5px;color:var(--body);line-height:1.75}
.todo-text strong{color:var(--ink)}

/* method note */
.method-note{
  background:var(--blue-bg);border:1px solid var(--blue-border);
  border-radius:var(--r);padding:.9rem 1.25rem;
  margin-bottom:1rem;
  display:flex;align-items:flex-start;gap:10px;
  font-size:12.5px;color:#1E3A5F;line-height:1.6;
}
.method-note a{color:var(--blue);font-weight:500}

/* ACTION GUIDE CARD */
.action-guide-card{
  background:var(--navy);border-radius:var(--r-lg);
  padding:1.4rem 1.5rem;margin-bottom:1rem;
  border:1px solid rgba(96,165,250,.2);
  display:flex;align-items:flex-start;gap:1rem;
}
.agc-icon{font-size:1.75rem;flex-shrink:0;line-height:1;padding-top:2px}
.agc-body{flex:1}
.agc-heading{font-size:15px;font-weight:700;color:#fff;margin-bottom:.4rem;line-height:1.45;letter-spacing:-.01em}
.agc-sub{font-size:12.5px;color:rgba(255,255,255,.5);margin-bottom:.85rem;line-height:1.6}
.agc-btn{
  display:inline-flex;align-items:center;
  padding:9px 18px;border-radius:8px;
  background:linear-gradient(135deg,#1D4ED8,#2563EB);
  color:#fff;text-decoration:none;font-size:13px;font-weight:700;
  transition:opacity .15s;letter-spacing:.01em;
}
.agc-btn:hover{opacity:.88}
@media(max-width:640px){.action-guide-card{flex-direction:column;gap:.65rem}}
.plan-capture-card{
  background:var(--navy);border-radius:var(--r-lg);
  padding:1.4rem 1.5rem;margin-bottom:1rem;
  border:1px solid rgba(96,165,250,.2);
}
.pcc-top{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1rem}
.pcc-icon{font-size:1.6rem;flex-shrink:0;line-height:1;padding-top:2px}
.pcc-body{flex:1}
.pcc-heading{font-size:15px;font-weight:700;color:#fff;margin-bottom:.3rem;line-height:1.4;letter-spacing:-.01em}
.pcc-sub{font-size:12.5px;color:rgba(255,255,255,.5);line-height:1.6}
.pcc-form{display:flex;gap:.6rem;flex-wrap:wrap}
.pcc-input{flex:1;min-width:200px;padding:.65rem 1rem;border-radius:8px;border:1.5px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:#fff;font-size:13px;font-family:var(--sans);outline:none;transition:border-color .15s}
.pcc-input::placeholder{color:rgba(255,255,255,.3)}
.pcc-input:focus{border-color:rgba(96,165,250,.6)}
.pcc-send{padding:.65rem 1.25rem;background:#1D4ED8;color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:700;cursor:pointer;font-family:var(--sans);transition:background .15s;white-space:nowrap}
.pcc-send:hover{background:#1E40AF}
.pcc-send:disabled{opacity:.5;cursor:not-allowed}
.pcc-or{display:flex;align-items:center;gap:.6rem;margin:.6rem 0;color:rgba(255,255,255,.25);font-size:11.5px;font-family:var(--mono)}
.pcc-or::before,.pcc-or::after{content:'';flex:1;height:1px;background:rgba(255,255,255,.1)}
.pcc-preview-btn{width:100%;padding:.65rem 1rem;background:rgba(255,255,255,.06);color:rgba(255,255,255,.7);border:1.5px solid rgba(255,255,255,.1);border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;font-family:var(--sans);transition:all .15s;text-decoration:none;display:block;text-align:center}
.pcc-preview-btn:hover{background:rgba(255,255,255,.1);color:#fff}
.pcc-status{font-size:12px;font-family:var(--mono);margin-top:.5rem}
.pcc-status-ok{color:#34D399}
.pcc-status-err{color:#FCA5A5}
.pcc-privacy{font-size:10.5px;color:rgba(255,255,255,.25);margin-top:.5rem;line-height:1.5}

/* CTA */
.cta-strip{
  border-radius:var(--r-lg);padding:1.4rem 1.6rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;flex-wrap:wrap;margin-bottom:1rem;
}
.cs-red{background:var(--red-bg);border:1px solid var(--red-border)}
.cs-amber{background:var(--amber-bg);border:1px solid var(--amber-border)}
.cs-green{background:var(--green-bg);border:1px solid var(--green-border)}
.cs-hed{font-size:14px;font-weight:700;color:var(--ink);margin-bottom:3px;letter-spacing:-.01em}
.cs-sub{font-size:12.5px;color:var(--muted);line-height:1.6;max-width:420px}
.cs-sub a{color:var(--blue)}
.cs-btn{
  flex-shrink:0;padding:10px 20px;border-radius:8px;
  font-size:13px;font-weight:700;text-decoration:none;
  font-family:var(--sans);cursor:pointer;border:none;
  white-space:nowrap;display:inline-block;
  transition:opacity .15s;letter-spacing:.01em;
}
.cs-btn:hover{opacity:.85}
.btn-red{background:var(--red);color:#fff}
.btn-amber{background:#B45309;color:#fff}
.btn-green{background:var(--green);color:#fff}

/* share */
.share-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:2rem}
.shr-btn{
  display:flex;align-items:center;gap:6px;
  padding:8px 14px;background:var(--white);
  border:1px solid var(--rule);border-radius:8px;
  font-size:12.5px;color:var(--body);
  font-family:var(--sans);cursor:pointer;
  transition:background .1s,border-color .1s;
  letter-spacing:.01em;
}
.shr-btn:hover{background:var(--bg);border-color:#CBD5E1}

/* ─── EXPLAINER ────────────────────────────────────────────── */
#explainer{padding-top:.25rem}

/* ─── WHAT'S HAPPENING - REDESIGNED ──────────────────────── */
.news-section{
  background:#fff;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:clamp(3rem,6vw,5.5rem) clamp(1rem,5vw,2.5rem);
}
.news-inner{max-width:1060px;margin:0 auto}
.news-label{
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--faint);
  text-align:center;margin-bottom:.6rem;font-family:var(--mono);
}
.news-title{
  font-size:clamp(1.5rem,3vw,2rem);font-weight:800;
  color:var(--ink);text-align:center;
  letter-spacing:-.035em;margin-bottom:clamp(2.5rem,5vw,4rem);
  line-height:1.2;text-wrap:balance;
}
.news-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem 4.5rem;align-items:center;
  padding:3.5rem 0;border-bottom:1px solid var(--rule);
}
.news-row:last-child{border-bottom:none;padding-bottom:0}
.news-row:first-of-type{padding-top:0}
.news-row-flip{direction:rtl}
.news-row-flip>*{direction:ltr}
@media(max-width:720px){
  .news-row{grid-template-columns:1fr;gap:1.75rem;padding:2.5rem 0}
  .news-row-flip{direction:ltr}
  .news-row-flip .news-visual{order:-1}
  .news-section{padding-top:2rem;padding-bottom:2rem}
  .news-title{margin-bottom:1rem}
}
@media(max-width:480px){
  .news-section{padding-top:1.5rem;padding-bottom:1.5rem}
  .news-title{margin-bottom:.85rem}
  .news-row{padding:1.75rem 0}
}
.news-text{display:flex;flex-direction:column;justify-content:center}
.news-tag{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--mono);font-size:10.5px;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;
  padding:5px 14px;border-radius:999px;margin-bottom:1rem;width:fit-content;
}
.nwt-red{background:#FEF2F2;color:#991B1B;border:1.5px solid #FECACA}
.nwt-amber{background:#FFFBEB;color:#92400E;border:1.5px solid #FDE68A}
.nwt-blue{background:#EFF6FF;color:#1E40AF;border:1.5px solid #BFDBFE}
.news-hed{
  font-size:clamp(1.2rem,2.5vw,1.6rem);font-weight:800;
  color:var(--ink);margin:0 0 .75rem;line-height:1.25;letter-spacing:-.03em;
  text-wrap:balance;
}
.news-body{font-size:14px;color:var(--body);line-height:1.85;margin:0 0 1.25rem;max-width:420px;text-wrap:pretty}
.news-link{
  font-size:13px;font-weight:700;color:var(--blue);text-decoration:none;
  display:inline-flex;align-items:center;gap:5px;letter-spacing:.01em;
  transition:gap .15s;
}
.news-link:hover{gap:9px}
/* panel container */
.news-visual{display:flex;align-items:center;justify-content:center}
.nw-panel{
  width:100%;max-width:480px;background:#060D1A;
  border-radius:18px;border:1px solid rgba(255,255,255,.07);
  padding:1.75rem;
  box-shadow:0 24px 64px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.04) inset;
  position:relative;overflow:hidden;
}
.nw-panel::before{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:28px 28px;pointer-events:none;
}
.nw-panel-label{
  font-size:10px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
  color:rgba(255,255,255,.5);margin-bottom:1.1rem;font-family:var(--mono);
}
/* fcc doc panel */
.nwp-doc{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);
  border-radius:10px;padding:.85rem 1rem;margin-bottom:1rem;
}
.nwp-doc-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:.38rem 0;border-bottom:1px solid rgba(255,255,255,.07);font-size:12px;
}
.nwp-doc-row:last-child{border-bottom:none}
.nwp-field{color:rgba(255,255,255,.52);font-family:var(--mono);font-size:11px}
.nwp-val{color:rgba(255,255,255,.88);font-size:12px}
.nwp-status-wrap{display:flex;align-items:center;gap:6px}
.nwp-status-was{color:rgba(255,255,255,.45);font-size:11px;text-decoration:line-through}
.nwp-status-arrow{color:rgba(255,255,255,.40);font-size:10px}
.nwp-status-now{color:#EF4444;font-weight:700;font-size:12px;font-family:var(--mono);animation:nwp-blink 2s ease-in-out infinite}
@keyframes nwp-blink{0%,100%{opacity:1}50%{opacity:.55}}
.nwp-stamp{
  position:absolute;top:50%;right:1.5rem;transform:translateY(-70%) rotate(-18deg);
  font-size:20px;font-weight:900;font-family:var(--mono);
  color:rgba(239,68,68,.16);border:3px solid rgba(239,68,68,.16);
  border-radius:6px;padding:4px 10px;letter-spacing:.12em;pointer-events:none;
}
/* threat feed panel */
.nwp-terminal{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1rem}
.nwp-log{
  display:flex;align-items:center;justify-content:space-between;
  opacity:0;animation:nwp-fade-up .45s ease forwards;
}
.nwp-log-1{animation-delay:.15s}
.nwp-log-2{animation-delay:.65s}
.nwp-log-3{animation-delay:1.15s}
.nwp-log-4{animation-delay:1.8s}
.nwp-log-5{animation-delay:2.3s}
.nwp-op{font-size:12px;font-weight:700;font-family:var(--mono)}
.nwp-op-red{color:#F87171}
.nwp-log-detail{font-size:11px;color:rgba(255,255,255,.60);font-family:var(--mono)}
.nwp-divider{border-top:1px solid rgba(255,255,255,.06);margin:.25rem 0}
.nwp-target{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:rgba(255,255,255,.50);font-family:var(--mono)}
.nwp-highlight{color:#FCD34D!important}
@keyframes nwp-fade-up{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:translateY(0)}}
/* risk factors panel */
.nwp-factors{display:flex;flex-direction:column;gap:1rem;margin-bottom:1rem}
.nwp-factor-label{font-size:12px;font-weight:600;color:rgba(255,255,255,.65);margin-bottom:.35rem}
.nwp-factor-bar-track{height:4px;background:rgba(255,255,255,.07);border-radius:2px;overflow:hidden;margin-bottom:.3rem}
.nwp-factor-bar{height:100%;border-radius:2px;width:0;animation:nwp-bar-grow 1.1s cubic-bezier(.22,1,.36,1) forwards}
.nwpb-red{background:linear-gradient(90deg,#EF4444,#F87171);animation-delay:.3s}
.nwpb-amber{background:linear-gradient(90deg,#F59E0B,#FCD34D);animation-delay:.6s}
.nwpb-green{background:linear-gradient(90deg,#10B981,#34D399);animation-delay:.9s}
@keyframes nwp-bar-grow{to{width:var(--pct)}}
.nwp-factor-note{font-size:11px;color:rgba(255,255,255,.28);font-family:var(--mono)}
/* alert footer row */
.nwp-alert-row{
  display:flex;align-items:center;gap:.5rem;
  padding-top:.85rem;border-top:1px solid rgba(255,255,255,.06);
}
.nwp-dot{width:7px;height:7px;border-radius:50%;background:#EF4444;flex-shrink:0;animation:nwp-pulse 1.6s ease-in-out infinite}
.nwp-dot-amber{background:#F59E0B}
.nwp-dot-blue{background:#60A5FA}
@keyframes nwp-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.75)}}
.nwp-alert-text{font-size:11px;color:rgba(255,255,255,.55);font-family:var(--mono)}

/* context brief */
.context-brief{
  background:var(--white);border:1px solid var(--rule);
  border-radius:var(--r-lg);overflow:hidden;
  margin-bottom:1.5rem;box-shadow:var(--shadow-sm);
}
.cb-header{
  padding:1rem 1.4rem;border-bottom:1px solid var(--rule);
  display:flex;align-items:center;gap:10px;
}
.cb-header-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--muted)}
.cb-row{
  display:grid;grid-template-columns:auto 1fr auto;
  align-items:center;gap:14px;
  padding:.95rem 1.4rem;border-bottom:1px solid var(--rule);
  text-decoration:none;transition:background .12s;
}
.cb-row:last-child{border-bottom:none}
.cb-row:hover{background:#FAFBFC}
.cb-num{
  width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;font-family:var(--sans);
  flex-shrink:0;
}
.cbn-red{background:var(--red-bg);color:var(--red)}
.cbn-amber{background:var(--amber-bg);color:var(--amber)}
.cbn-blue{background:var(--blue-bg);color:var(--blue)}
.cbn-green{background:var(--green-bg);color:var(--green)}
.cb-text{}
.cb-hed{font-size:14px;font-weight:600;color:var(--ink);line-height:1.35;letter-spacing:-.015em;margin-bottom:3px}
.cb-sub{font-size:13px;color:var(--muted);line-height:1.7}
.cb-arrow{font-size:11px;color:var(--faint);flex-shrink:0;padding-left:4px}

/* ── Deep Dives full-width section ── */
.dd-section{
  background:#F8FAFC;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:clamp(3rem,6vw,5.5rem) clamp(1rem,5vw,2.5rem);
}
.dd-inner{max-width:1060px;margin:0 auto}
.dd-eyebrow{
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--faint);font-family:var(--mono);
  text-align:center;margin-bottom:.6rem;
}
.dd-heading{
  font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;
  color:var(--ink);text-align:center;
  letter-spacing:-.03em;line-height:1.2;
  margin-bottom:.65rem;
}
.dd-subhead{
  font-size:15px;color:var(--muted);text-align:center;
  max-width:560px;margin:0 auto clamp(2rem,4vw,3rem);
  line-height:1.6;text-wrap:balance;
}
.dd-meta-row{
  display:flex;align-items:center;justify-content:flex-end;
  margin-bottom:1.4rem;
}
.art-top10-link{
  font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  font-family:var(--mono);
  color:var(--blue);text-decoration:none;
  display:inline-flex;align-items:center;gap:5px;
  transition:gap .15s;
}
.art-top10-link:hover{gap:9px}
.art-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media(max-width:620px){.art-grid{grid-template-columns:1fr;gap:14px}}
.art-card{
  background:var(--white);border:1px solid var(--rule);
  border-radius:var(--r-lg);overflow:hidden;
  text-decoration:none;display:flex;flex-direction:column;
  transition:box-shadow .2s,border-color .2s;
  box-shadow:var(--shadow-sm);
}
.art-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);border-color:#CBD5E1}
.art-hero-img{width:100%;aspect-ratio:16/9;overflow:hidden;background:#1E293B;display:block;flex-shrink:0}
.art-hero-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease}
.art-card:hover .art-hero-img img{transform:scale(1.04)}
.art-body{padding:1.1rem 1.25rem 1.25rem;display:flex;flex-direction:column;gap:6px;flex:1}
.art-tag{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--blue)}
.art-title{font-size:16px;font-weight:700;color:var(--ink);line-height:1.35;letter-spacing:-.02em}
.art-excerpt{font-size:14px;color:var(--muted);line-height:1.6;margin-top:3px}
.art-arrow{font-size:13px;color:var(--blue);font-weight:600;margin-top:auto;padding-top:10px}

/* ─── HOW IT WORKS - REDESIGNED ────────────────────────────── */
.how-section{
  background:#F8FAFC;
  border-bottom:1px solid var(--rule);
  padding:clamp(3rem,6vw,5.5rem) clamp(1rem,5vw,2.5rem);
}
.how-inner{max-width:1060px;margin:0 auto}
.how-label{
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--faint);
  text-align:center;margin-bottom:.6rem;
}
.how-title{
  font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;
  color:var(--ink);text-align:center;
  letter-spacing:-.03em;margin-bottom:clamp(2.5rem,5vw,4rem);
  line-height:1.2;
}

/* ── Step rows ── */
.how-step-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem 4.5rem;
  align-items:center;
  padding:3.5rem 0;
  border-bottom:1px solid var(--rule);
}
.how-step-row:last-child{border-bottom:none;padding-bottom:0}
.how-step-row:first-of-type{padding-top:0}
.how-step-row-flip{direction:rtl}
.how-step-row-flip>*{direction:ltr}
@media(max-width:720px){
  .how-step-row{grid-template-columns:1fr;gap:1.75rem;padding:2.5rem 0}
  .how-step-row-flip{direction:ltr}
  /* on mobile always show visual first */
  .how-step-row-flip .hsr-visual{order:-1}
  .how-section{padding-top:2.5rem;padding-bottom:2.5rem}
  .how-title{margin-bottom:1.5rem}
}

/* ── Text side ── */
.hsr-text{display:flex;flex-direction:column;justify-content:center;gap:0}
.hs-step-badge{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--mono);
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  padding:5px 14px;border-radius:999px;margin-bottom:1rem;width:fit-content;
}
.hsn-1{background:#EFF6FF;color:#1D4ED8;border:1.5px solid #BFDBFE}
.hsn-2{background:#F5F3FF;color:#6D28D9;border:1.5px solid #DDD6FE}
.hsn-3{background:#ECFDF5;color:#065F46;border:1.5px solid #A7F3D0}
.hs-head{
  font-size:clamp(1.35rem,2.5vw,1.75rem);font-weight:800;
  color:var(--ink);margin-bottom:.75rem;line-height:1.2;letter-spacing:-.03em;
  text-wrap:balance;
}
.hs-body{font-size:14.5px;color:var(--muted);line-height:1.85;max-width:420px;text-wrap:pretty}
.hs-subpoints{list-style:none;margin:1rem 0 0;padding:0;display:flex;flex-direction:column;gap:.4rem}
.hs-subpoints li{
  font-size:13px;color:var(--muted);display:flex;align-items:baseline;gap:.5rem;
}
.hs-subpoints li::before{
  content:"→";color:var(--blue);font-weight:700;flex-shrink:0;font-size:11px;
}

/* ── Visual demo panels ── */
.hsr-visual{display:flex;align-items:center;justify-content:center}
.hw-demo{
  width:100%;max-width:480px;
  background:#0D1526;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.07);
  padding:1.75rem 1.75rem 1.75rem;
  box-shadow:0 24px 64px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.04) inset;
  position:relative;overflow:hidden;
}
/* subtle grid bg */
.hw-demo::before{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:28px 28px;pointer-events:none;
}

/* ─── STEP 1: Search typewriter ─────── */
.hw-demo-label{
  font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.3);margin-bottom:.85rem;
}
.hw-search-bar{
  display:flex;align-items:center;gap:.6rem;
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.12);
  border-radius:10px;padding:.7rem 1rem;
  margin-bottom:1rem;
}
.hw-search-icon{color:rgba(255,255,255,.35);flex-shrink:0}
.hw-typed-text{
  flex:1;font-size:13.5px;color:#E2E8F0;letter-spacing:-.01em;
  font-family:var(--mono);min-height:20px;
}
.hw-cursor{
  display:inline-block;width:2px;height:14px;
  background:#60A5FA;border-radius:1px;
  animation:hwBlink .85s step-end infinite;
  vertical-align:middle;margin-left:1px;
}
@keyframes hwBlink{0%,100%{opacity:1}50%{opacity:0}}
.hw-check-btn{
  flex-shrink:0;background:#2563EB;color:#fff;
  border:none;border-radius:7px;padding:.45rem .9rem;
  font-size:12px;font-weight:700;cursor:default;
  transition:background .2s;white-space:nowrap;
}
.hw-chips{display:flex;gap:.5rem;flex-wrap:wrap}
.hw-chip{
  font-size:11.5px;font-weight:600;
  padding:4px 11px;border-radius:999px;
  border:1px solid;cursor:default;
}
.hw-chip-red{color:#FCA5A5;border-color:rgba(239,68,68,.3);background:rgba(239,68,68,.08)}
.hw-chip-blue{color:#93C5FD;border-color:rgba(59,130,246,.3);background:rgba(59,130,246,.08)}
.hw-chip-green{color:#6EE7B7;border-color:rgba(16,185,129,.3);background:rgba(16,185,129,.08)}
.hw-hint{
  font-size:11px;color:rgba(255,255,255,.25);margin-top:.85rem;
  text-align:center;letter-spacing:.01em;
}

/* ─── STEP 2: Database scan ─────────── */
.hw-db-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:1rem;
}
.hw-db-title{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.3)}
.hw-db-status{font-size:11px;color:#34D399;font-weight:600;font-family:var(--mono)}
.hw-db-rows{display:flex;flex-direction:column;gap:.65rem}
.hw-db-row{display:flex;flex-direction:column;gap:.3rem}
.hw-db-row-top{display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.hw-db-name{font-size:12px;font-weight:600;color:rgba(255,255,255,.7)}
.hw-db-result{
  font-size:11px;font-weight:700;font-family:var(--mono);
  opacity:0;transition:opacity .3s;white-space:nowrap;
}
.hw-db-result.vis{opacity:1}
.hw-db-bar-track{height:3px;background:rgba(255,255,255,.07);border-radius:2px;overflow:hidden}
.hw-db-bar-fill{
  height:100%;border-radius:2px;width:0%;
  animation:dbFill 1s ease-out forwards;
}
/* staggered delays */
.hw-db-row:nth-child(1) .hw-db-bar-fill{animation-delay:0.1s}
.hw-db-row:nth-child(2) .hw-db-bar-fill{animation-delay:0.6s}
.hw-db-row:nth-child(3) .hw-db-bar-fill{animation-delay:1.1s}
.hw-db-row:nth-child(4) .hw-db-bar-fill{animation-delay:1.6s}
.hw-db-row:nth-child(5) .hw-db-bar-fill{animation-delay:2.1s}
.hw-db-row:nth-child(1) .hw-db-result{transition-delay:.9s}
.hw-db-row:nth-child(2) .hw-db-result{transition-delay:1.4s}
.hw-db-row:nth-child(3) .hw-db-result{transition-delay:1.9s}
.hw-db-row:nth-child(4) .hw-db-result{transition-delay:2.4s}
.hw-db-row:nth-child(5) .hw-db-result{transition-delay:2.9s}
@keyframes dbFill{0%{width:0%}100%{width:100%}}
.hw-db-fill-1{background:linear-gradient(90deg,#EF4444,#F87171)}
.hw-db-fill-2{background:linear-gradient(90deg,#F59E0B,#FCD34D)}
.hw-db-fill-3{background:linear-gradient(90deg,#8B5CF6,#A78BFA)}
.hw-db-fill-4{background:linear-gradient(90deg,#3B82F6,#93C5FD)}
.hw-db-fill-5{background:linear-gradient(90deg,#10B981,#6EE7B7)}
.hw-summary{
  margin-top:1.1rem;padding:.75rem 1rem;
  background:rgba(239,68,68,.08);border:1px solid rgba(239,68,68,.2);
  border-radius:8px;
  font-size:12px;color:#FCA5A5;font-weight:600;
  opacity:0;transition:opacity .4s;
}
.hw-summary.vis{opacity:1;transition-delay:3.2s}

/* ─── STEP 3: Report generation ─────── */
.hw-report-bar{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1rem;
}
.hw-report-router{font-size:13px;font-weight:700;color:#E2E8F0}
.hw-report-brand{font-size:11px;color:rgba(255,255,255,.4)}
.hw-grade-ring{
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  background:rgba(239,68,68,.12);border:2px solid rgba(239,68,68,.4);
  font-size:22px;font-weight:900;color:#EF4444;
}
@keyframes gradeIn{0%{transform:scale(0);opacity:0}100%{transform:scale(1);opacity:1}}
.hw-verdict-box{
  padding:.65rem .85rem;border-radius:8px;
  background:rgba(239,68,68,.08);border-left:3px solid #EF4444;
  font-size:12px;color:#FCA5A5;line-height:1.5;margin-bottom:.85rem;
}
@keyframes fadeSlideIn{0%{opacity:0;transform:translateY(6px)}100%{opacity:1;transform:translateY(0)}}
.hw-cve-list{display:flex;flex-direction:column;gap:.4rem;margin-bottom:.85rem}
.hw-cve-item{
  display:flex;align-items:center;gap:.5rem;
  font-size:11.5px;color:rgba(255,255,255,.6);
}
.hw-sev-dot{
  width:7px;height:7px;border-radius:50%;flex-shrink:0;
}
.sev-critical{background:#EF4444}
.sev-high{background:#F59E0B}
.sev-medium{background:#A78BFA}
.hw-action-box{
  padding:.6rem .85rem;border-radius:8px;
  background:rgba(59,130,246,.08);border:1px solid rgba(59,130,246,.2);
  display:flex;flex-direction:column;gap:.3rem;
}
.hw-action-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.3);margin-bottom:.15rem}
.hw-action-item{
  font-size:11.5px;color:#93C5FD;display:flex;align-items:baseline;gap:.4rem;
}
.hw-action-item::before{content:"→";font-size:10px;flex-shrink:0}

/* ─── STEP 4 BONUS: Live scan animation ─────────────────── */
.hsn-bonus{
  background:linear-gradient(135deg,#FFFBEB,#FEF3C7);
  color:#92400E;border:1.5px solid #FCD34D;
  box-shadow:0 0 14px rgba(252,211,77,.3),0 0 0 3px rgba(252,211,77,.08);
  text-transform:uppercase;letter-spacing:.12em;
}
.hw-demo-4{padding:1.4rem 1.6rem}
.hw-scan-hd{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.1rem}
.hw-scan-hd-lbl{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:.15em;color:rgba(255,255,255,.28);text-transform:uppercase}
.hw-live-pill{display:flex;align-items:center;gap:5px;font-family:var(--mono);font-size:9.5px;font-weight:700;letter-spacing:.12em;color:#4ADE80;background:rgba(34,197,94,.08);border:1px solid rgba(34,197,94,.2);padding:2px 9px;border-radius:99px}
.hw-live-pill::before{content:"";width:5px;height:5px;border-radius:50%;background:#4ADE80;box-shadow:0 0 6px #4ADE80;animation:hwLiveDot 1.2s ease-in-out infinite}
@keyframes hwLiveDot{0%,100%{opacity:1;box-shadow:0 0 6px #4ADE80}50%{opacity:.3;box-shadow:0 0 2px #4ADE80}}
/* Radar */
.hw-radar-area{position:relative;height:88px;display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem}
.hw-radar-rings{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.hw-radar-ring{position:absolute;border-radius:50%;border:1.5px solid rgba(34,197,94,.7);width:22px;height:22px;animation:hwRingExpand 2.6s cubic-bezier(.22,1,.36,1) infinite}
.hw-radar-ring:nth-child(1){animation-delay:0s}
.hw-radar-ring:nth-child(2){animation-delay:.85s}
.hw-radar-ring:nth-child(3){animation-delay:1.7s}
@keyframes hwRingExpand{
  0%{width:22px;height:22px;opacity:.95;border-color:rgba(34,197,94,.85)}
  100%{width:130px;height:130px;opacity:0;border-color:rgba(34,197,94,0)}
}
.hw-radar-core{width:22px;height:22px;border-radius:50%;background:radial-gradient(circle at 40% 35%,#4ADE80,#16A34A);box-shadow:0 0 16px #22C55E99,0 0 40px #22C55E33;position:relative;z-index:3;display:flex;align-items:center;justify-content:center;animation:hwCorePulse 1.6s ease-in-out infinite}
.hw-radar-core-inner{width:7px;height:7px;border-radius:50%;background:#fff;opacity:.9}
@keyframes hwCorePulse{0%,100%{box-shadow:0 0 16px #22C55E99,0 0 40px #22C55E33}50%{box-shadow:0 0 24px #22C55Ecc,0 0 56px #22C55E66}}
/* Scan lines */
.hw-scan-lines{display:flex;flex-direction:column;gap:.42rem}
.hw-scan-line{
  display:flex;align-items:center;gap:.5rem;
  padding:6px 9px;border-radius:7px;
  background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.05);
  opacity:0;transform:translateX(-5px);
  transition:opacity .3s ease,transform .3s ease;
}
.hw-scan-line.hsl-vis{opacity:1;transform:translateX(0)}
.hsl-ico{width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:8px;font-weight:900}
.hsl-ico-ok{background:rgba(34,197,94,.14);border:1px solid rgba(34,197,94,.3);color:#4ADE80}
.hsl-lbl{flex:1;font-family:var(--mono);font-size:11px;color:#94A3B8}
.hsl-tag{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.07em;padding:1px 7px;border-radius:4px;background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.22);color:#4ADE80}
/* Result bar */
.hw-scan-result-bar{
  margin-top:.85rem;padding:9px 13px;border-radius:9px;
  background:rgba(34,197,94,.07);border:1px solid rgba(34,197,94,.18);
  display:flex;align-items:center;gap:.6rem;
  opacity:0;transition:opacity .5s ease;
}
.hw-scan-result-bar.hsl-vis{opacity:1}
.hw-srb-ico{font-size:15px;line-height:1;color:#4ADE80}
.hw-srb-title{font-size:12px;font-weight:700;color:#4ADE80;letter-spacing:-.01em}
.hw-srb-sub{font-size:10px;color:rgba(255,255,255,.32);margin-top:1px;font-family:var(--mono)}

/* ─── YOUTUBE SECTION ──────────────────────────────────────── */
/* ── Community full-width section ── */
.comm-section{
  background:#fff;
  border-bottom:1px solid var(--rule);
  padding:clamp(3rem,6vw,5.5rem) clamp(1rem,5vw,2.5rem);
}
.comm-inner{max-width:1060px;margin:0 auto}
.yt-eyebrow{
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--faint);font-family:var(--mono);
  text-align:center;margin-bottom:.6rem;
}
.yt-heading{
  font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;
  color:var(--ink);text-align:center;
  letter-spacing:-.03em;line-height:1.2;margin-bottom:.65rem;
}
.yt-subhead{
  font-size:15px;color:var(--muted);text-align:center;
  max-width:560px;margin:0 auto clamp(2rem,4vw,3rem);
  line-height:1.6;
}
.yt-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:760px){.yt-grid{grid-template-columns:1fr 1fr;gap:14px}}
@media(max-width:440px){.yt-grid{grid-template-columns:1fr;gap:12px}}
.yt-card{
  border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--rule);
  background:var(--white);
  box-shadow:var(--shadow-sm);
  transition:box-shadow .15s,transform .15s;
  cursor:pointer;
}
.yt-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.yt-thumb-wrap{
  position:relative;width:100%;padding-bottom:56.25%;
  background:var(--navy);overflow:hidden;
}
.yt-thumb-wrap img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .3s ease;
}
.yt-card:hover .yt-thumb-wrap img{transform:scale(1.04)}
.yt-play-btn{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(0,0,0,.72);
  border:2px solid rgba(255,255,255,.3);
  display:flex;align-items:center;justify-content:center;
  transition:background .15s,transform .15s;
  pointer-events:none;
}
.yt-card:hover .yt-play-btn{
  background:#FF0000;
  border-color:transparent;
  transform:translate(-50%,-50%) scale(1.1);
}
.yt-play-btn svg{margin-left:3px}
.yt-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.55) 0%,transparent 50%);
  pointer-events:none;
}
.yt-info{
  padding:.7rem .9rem .85rem;
}
.yt-channel{
  font-size:10px;font-weight:600;text-transform:uppercase;
  letter-spacing:.1em;color:var(--faint);margin-bottom:4px;font-family:var(--mono);
}
.yt-vid-title{
  font-size:12.5px;font-weight:600;color:var(--ink);
  line-height:1.4;letter-spacing:-.01em;
}

/* ─── SECURITY CAPABILITIES MATRIX ─────────────────────────── */
.caps-section{
  background:var(--white);border-radius:var(--r-lg);
  border:1px solid var(--rule);overflow:hidden;
  margin-bottom:1rem;box-shadow:var(--shadow-sm);
}
.caps-hd{
  padding:1rem 1.5rem;border-bottom:1px solid var(--rule);
  display:flex;align-items:center;gap:10px;
}
.caps-title{font-size:14px;font-weight:700;color:var(--ink);flex:1}
.caps-sub{font-size:12px;color:var(--muted)}
.cap-row{
  display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:12px;
  padding:.75rem 1.5rem;border-bottom:1px solid var(--rule);
}
.cap-row:last-child{border-bottom:none}
.cap-label{font-size:13.5px;color:var(--body);line-height:1.4}
.cap-label strong{color:var(--ink);display:block;font-weight:600;font-size:14px}
.cap-label span{font-size:12px;color:var(--muted)}
.cap-this{
  font-size:11px;font-weight:700;text-align:center;
  padding:4px 10px;border-radius:6px;white-space:nowrap;min-width:64px;
}
.cap-yes{background:#ECFDF5;color:#065F46}
.cap-partial{background:#FFFBEB;color:#92400E}
.cap-no{background:#FEF2F2;color:#B91C1C}

/* ─── RIO SOLUTION STRIP ────────────────────────────────────── */
.rio-strip{
  background:linear-gradient(135deg,#0B1426 0%,#0F1E36 100%);
  border-radius:var(--r-lg);padding:1.5rem 1.75rem;
  margin-bottom:1rem;
  border:1px solid rgba(96,165,250,.15);
  display:flex;align-items:center;justify-content:space-between;
  gap:1.25rem;flex-wrap:wrap;
}
.rio-strip-left{display:flex;align-items:center;gap:14px}
.rio-shield{
  width:44px;height:44px;border-radius:12px;
  background:rgba(96,165,250,.1);border:1px solid rgba(96,165,250,.2);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.rio-strip-text{}
.rio-strip-eyebrow{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.35);margin-bottom:3px}
.rio-strip-hed{font-size:15px;font-weight:700;color:#fff;line-height:1.3;letter-spacing:-.01em}
.rio-strip-sub{font-size:13px;color:rgba(255,255,255,.5);margin-top:2px;line-height:1.5}
.rio-strip-btn{
  flex-shrink:0;padding:10px 20px;
  background:linear-gradient(135deg,#1D4ED8,#2563EB);
  color:#fff;border-radius:8px;font-family:var(--sans);
  font-size:13.5px;font-weight:700;text-decoration:none;
  white-space:nowrap;transition:opacity .15s;
}
.rio-strip-btn:hover{opacity:.88}
@media(max-width:560px){
  .rio-strip{flex-direction:column;align-items:flex-start}
  .cap-row{grid-template-columns:1fr auto;gap:8px}
}

/* ─── DUAL SCORE ROW ────────────────────────────────────────── */
.score-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--rule);
}
.score-block{
  padding:.9rem 1.5rem;
  display:flex;flex-direction:column;gap:4px;
  border-right:1px solid var(--rule);
}
.score-block:last-child{border-right:none}
.sb-label{
  font-size:9.5px;font-weight:600;text-transform:uppercase;
  letter-spacing:.11em;color:var(--faint);font-family:var(--mono);
  margin-bottom:4px;
}
.sb-score-row{display:flex;align-items:center;gap:8px}
.sb-num{
  font-family:var(--mono);font-size:1.3rem;font-weight:700;
  line-height:1;flex-shrink:0;min-width:2.2ch;
}
.sb-bar{flex:1;height:4px;background:var(--bg);border-radius:999px;overflow:hidden}
.sb-fill{height:100%;border-radius:999px;transition:width .8s cubic-bezier(.4,0,.2,1)}
.sb-tag{
  font-size:10px;font-weight:600;font-family:var(--mono);
  padding:2px 6px;border-radius:4px;white-space:nowrap;flex-shrink:0;
}
.sbt-a{background:#ECFDF5;color:#065F46}
.sbt-b{background:#F0FDF4;color:#166534}
.sbt-c{background:#FFFBEB;color:#92400E}
.sbt-d{background:#FFF7ED;color:#C2410C}
.sbt-f{background:#FEF2F2;color:#991B1B}
.sb-desc{font-size:11px;color:var(--muted);margin-top:3px}
@media(max-width:480px){
  .score-row{grid-template-columns:1fr}
  .score-block{border-right:none;border-bottom:1px solid var(--rule)}
  .score-block:last-child{border-bottom:none}
  .gc-header{grid-template-columns:1fr 140px;min-height:150px}
  .gc-model{font-size:1.2rem}
}
.gc-name-row .grade-badge{flex-shrink:0}
/* fallback placeholder panel */
.gc-img-fallback{background:#F0F4F8}
.gc-img-fallback .router-img-fallback{opacity:.15}

footer{
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,.06);
  padding:clamp(2.5rem,5vw,4rem) clamp(1rem,5vw,2.5rem) 3rem;
  position:relative;
}
footer::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(96,165,250,.25) 30%,rgba(96,165,250,.25) 70%,transparent);
}
.footer-inner{max-width:1060px;margin:0 auto}
.footer-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand-col{padding-right:1rem}
.footer-logo-row{display:flex;align-items:center;gap:9px;margin-bottom:.65rem;text-decoration:none}
.footer-logo-text{font-family:var(--mono);font-size:17px;font-weight:700;color:#fff;letter-spacing:-.03em}
.footer-logo-text span{color:#60A5FA;text-shadow:0 0 18px rgba(96,165,250,.35)}
.footer-tagline{font-size:13px;color:rgba(255,255,255,.38);line-height:1.7;margin-bottom:1.25rem;max-width:230px}
.footer-cta-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;font-weight:600;color:#60A5FA;text-decoration:none;
  border:1px solid rgba(96,165,250,.22);border-radius:6px;
  padding:6px 12px;transition:all .15s;font-family:var(--mono);letter-spacing:.01em;
  background:rgba(96,165,250,.04);
}
.footer-cta-link:hover{background:rgba(96,165,250,.1);border-color:rgba(96,165,250,.4);color:#93C5FD}
.footer-col-title{
  font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.13em;
  color:rgba(255,255,255,.28);font-family:var(--mono);
  margin-bottom:1rem;padding-bottom:.6rem;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.footer-links{display:flex;flex-direction:column;gap:.55rem}
.footer-links a{font-size:13px;color:rgba(255,255,255,.5);text-decoration:none;transition:color .15s;line-height:1.4}
.footer-links a:hover{color:#fff}
.footer-data-items{display:flex;flex-direction:column;gap:.55rem}
.footer-data-item{font-size:11.5px;color:rgba(255,255,255,.28);line-height:1.5;font-family:var(--mono)}
.footer-rio{text-align:center;padding:1.25rem 0 1.5rem;font-size:12px;color:rgba(255,255,255,.28);font-family:var(--mono);letter-spacing:.02em}
.footer-rio a{color:rgba(255,255,255,.48);text-decoration:none;transition:color .15s}
.footer-rio a:hover{color:#fff}
.sticky-rio-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:rgba(10,15,28,.82);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid rgba(255,255,255,.07);text-align:center;padding:8px 16px;font-size:12px;color:rgba(255,255,255,.55);letter-spacing:.02em}.sticky-rio-bar a{color:rgba(255,255,255,.72);text-decoration:none;font-weight:500}.sticky-rio-bar a:hover{color:#fff}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:.75rem;
  padding:1.25rem 0 1.75rem;
  font-size:11.5px;color:rgba(255,255,255,.2);line-height:1.6;
}
.footer-bottom a{color:rgba(255,255,255,.35);text-decoration:none;transition:color .15s}
.footer-bottom a:hover{color:rgba(255,255,255,.65)}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
.anim{animation:fadeUp .35s ease both}
.d1{animation-delay:.04s}.d2{animation-delay:.08s}.d3{animation-delay:.12s}.d4{animation-delay:.16s}

/* ─── MOBILE ───────────────────────────────────────────────── */
@media(max-width:640px){
  .hero h1{font-size:1.55rem}
  .gc-header{padding:1.25rem 1.25rem 1rem}
  .gc-model{font-size:1.2rem}
  .verdict-strip,.rbar-section{padding-left:1.25rem;padding-right:1.25rem}
  .finding{grid-template-columns:60px 1fr;gap:8px}
  .finding,.todo-item,.sec-hd{padding-left:1.1rem;padding-right:1.1rem}
  .stat-grid{grid-template-columns:1fr}
  .cta-strip{flex-direction:column;align-items:flex-start}
  .ht-sep{display:none}
  .qs-wrap{position:relative}
  .qs-wrap::after{content:'';position:absolute;right:0;top:0;bottom:0;width:50px;background:linear-gradient(to right,transparent,var(--navy));pointer-events:none;z-index:2}
  .brand-row{flex-wrap:nowrap;justify-content:flex-start;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;gap:5px;padding:4px 2px}
  .brand-row::-webkit-scrollbar{display:none}
  .brand-btn{font-size:11.5px;padding:6px 10px;flex-shrink:0}
  .hero-trust{margin-top:1.25rem}
  .footer-top{grid-template-columns:1fr 1fr;gap:1.75rem 2rem}
  .footer-brand-col{grid-column:1/-1}
  .footer-top>div:last-child{grid-column:1/-1}
}
@media(max-width:480px){
  .footer-top{grid-template-columns:1fr;gap:0}
  .footer-top>div:not(.footer-brand-col){border-top:1px solid rgba(255,255,255,.07);padding-top:1.1rem;margin-top:1.1rem}
  .footer-brand-col{padding-bottom:.5rem}
  .footer-col-title{color:rgba(255,255,255,.42)}
  .news-pill{font-size:10px;padding:4px 10px;letter-spacing:.04em}
}
@media(max-width:400px){
  .grade-badge{width:52px;height:52px}
  .gb-letter{font-size:1.4rem}
}

/* ─── SKIP LINK ────────────────────────────────────────────── */
.skip-link{
  position:absolute;left:-9999px;
  background:#1D4ED8;color:#fff;
  padding:8px 16px;border-radius:4px;
  font-size:14px;font-weight:600;z-index:9999;
  text-decoration:none;
}
.skip-link:focus{left:16px;top:16px;position:fixed}

/* ─── FOCUS STYLES ─────────────────────────────────────────── */
:focus-visible{outline:2px solid #60A5FA;outline-offset:3px}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{outline:2px solid #60A5FA;outline-offset:3px}

/* ─── HAMBURGER NAV ─────────────────────────────────────────── */
.nav-ham{
  display:none;margin-left:auto;
  background:none;border:none;cursor:pointer;
  flex-direction:column;justify-content:center;gap:5px;
  padding:8px;border-radius:6px;
  transition:background .15s;
}
.nav-ham:hover,.nav-ham:focus-visible{background:rgba(255,255,255,.07);outline:none}
.nav-ham span{
  display:block;width:20px;height:2px;
  background:rgba(255,255,255,.65);border-radius:1px;
  transition:transform .25s,opacity .25s;
}
.nav-ham.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-ham.open span:nth-child(2){opacity:0}
.nav-ham.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-mobile{
  display:none;
  position:fixed;top:76px;left:0;right:0;
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-direction:column;gap:.2rem;
  z-index:290;padding:.75rem 1.25rem 1rem;
}
.nav-mobile.open{display:flex;animation:mobileSlide .2s ease}
@keyframes mobileSlide{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.nav-mobile a{
  display:block;padding:.55rem .75rem;
  font-size:14px;color:rgba(255,255,255,.65);
  text-decoration:none;border-radius:6px;
  transition:background .12s,color .12s;
}
.nav-mobile a:hover,.nav-mobile a.active-page{background:rgba(255,255,255,.07);color:#fff}
@media(max-width:700px){.nav-ham{display:flex}}

/* ─── FAQ SECTION ──────────────────────────────────────────── */
.faq-section{
  background:var(--navy);
  padding:clamp(3.5rem,6vw,5rem) clamp(1.25rem,5vw,2.5rem);
}
.faq-inner{max-width:1060px;margin:0 auto}
.faq-eyebrow{
  font-family:var(--mono);font-size:11px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:#60A5FA;margin-bottom:1rem;
}
.faq-heading{
  font-size:clamp(1.5rem,3.5vw,2rem);font-weight:700;
  color:#fff;margin-bottom:.5rem;line-height:1.25;
}
.faq-subhead{
  font-size:15px;color:rgba(255,255,255,.5);
  margin-bottom:2.5rem;max-width:560px;line-height:1.6;
}
.faq-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:3rem;
  align-items:start;
}
.faq-col{display:flex;flex-direction:column;gap:0;border-top:1px solid rgba(255,255,255,.07)}
.faq-item{
  border-bottom:1px solid rgba(255,255,255,.07);
}
@media(max-width:700px){.faq-list{grid-template-columns:1fr}}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;width:100%;
  padding:1.1rem 0;
  background:none;border:none;cursor:pointer;text-align:left;
  font-family:var(--sans);font-size:15px;font-weight:600;
  color:rgba(255,255,255,.9);line-height:1.45;
  transition:color .15s;
}
.faq-q:hover{color:#fff}
.faq-q[aria-expanded="true"]{color:#60A5FA}
.faq-icon{
  flex-shrink:0;width:22px;height:22px;
  border-radius:50%;border:1.5px solid rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .2s,transform .25s,background .2s;
}
.faq-q[aria-expanded="true"] .faq-icon{
  border-color:#60A5FA;background:rgba(96,165,250,.12);transform:rotate(45deg);
}
.faq-icon svg{display:block}
.faq-body{
  overflow:hidden;
  max-height:0;
  transition:max-height .28s ease,padding .28s ease;
}
.faq-body-inner{
  padding:0 0 1.25rem;
  font-size:14.5px;color:rgba(255,255,255,.6);
  line-height:1.7;
}
.faq-body-inner a{color:#60A5FA;text-decoration:none}
.faq-body-inner a:hover{text-decoration:underline}
.faq-body-inner strong{color:rgba(255,255,255,.85);font-weight:600}


/* Sticky Rio bar */
.sticky-rio-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:rgba(10,15,28,.82);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid rgba(255,255,255,.07);text-align:center;padding:8px 16px;font-size:12px;color:rgba(255,255,255,.55);letter-spacing:.02em}.sticky-rio-bar a{color:rgba(255,255,255,.72);text-decoration:none;font-weight:500}.sticky-rio-bar a:hover{color:#fff}
/* Router page nav search */
.rp-nav-search{position:relative;max-width:320px}
.rp-nav-input{width:100%;padding:7px 12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:8px;font-family:var(--sans);font-size:13px;color:#fff;outline:none;transition:border-color .2s;}
.rp-nav-input::placeholder{color:rgba(255,255,255,.35)}
.rp-nav-input:focus{border-color:rgba(96,165,250,.5)}
.rp-nav-drop{position:absolute;top:calc(100% + 6px);left:0;right:0;background:var(--white);border:1px solid var(--rule);border-radius:var(--r);box-shadow:var(--shadow-lg);z-index:500;display:none;overflow:hidden;max-height:280px;overflow-y:auto;}
.rp-nav-di{padding:9px 13px;cursor:pointer;border-bottom:1px solid var(--rule);font-size:13px;color:var(--body);}
.rp-nav-di:last-child{border-bottom:none}
.rp-nav-di:hover{background:var(--bg)}
.rp-nav-di strong{color:var(--ink)}
.rp-back{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--muted);text-decoration:none;margin-bottom:1.25rem;transition:color .15s;}
.rp-back:hover{color:var(--ink)}
@media(max-width:640px){.rp-nav-search{display:none}}
/* Social proof ownership estimate */
.sp-line{display:flex;align-items:center;flex-wrap:wrap;gap:.3rem .5rem;padding:14px 24px;background:#0A1220;border-top:1px solid rgba(255,255,255,.09)}
.sp-count{font-family:var(--mono);font-size:12px;font-weight:700;color:#94A3B8}
.sp-label{font-size:12px;color:#64748B}
.sp-footnote{font-family:var(--mono);font-size:10.5px;color:#4B8FCC;text-decoration:none;opacity:.7;margin-left:auto}
.sp-footnote:hover{opacity:1;text-decoration:underline}

/* ── UNIFIED GRADE CARD ─────────────────── */
.gc-unified{background:#0A1220;border:1px solid var(--gc-border,rgba(255,255,255,.1));border-radius:16px;overflow:hidden;margin-bottom:20px;transition:border-color .3s}
.gc-header-new{display:flex;align-items:center;padding:24px 24px 20px;gap:20px}
.gc-img-left{flex-shrink:0;width:110px;height:80px;display:flex;align-items:center;justify-content:center}
.gc-img-left img{max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 4px 16px rgba(0,0,0,.65))}
.gc-title-col{flex:1;min-width:0}
.gc-eyebrow{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.22em;color:#94A3B8;text-transform:uppercase;margin-bottom:6px}
.gc-model-name{font-size:clamp(18px,3vw,26px);font-weight:900;letter-spacing:-.03em;color:#F8FAFC;margin:0 0 3px;line-height:1.1}
.gc-meta-new{font-family:var(--mono);font-size:11px;color:#64748B;margin:0 0 10px}
.gc-tags-new{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:10px}
.gc-tag-new{font-family:var(--mono);font-size:10px;color:#CBD5E1;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);border-radius:20px;padding:3px 10px}
.gc-perm-new{display:flex;align-items:center;gap:6px;font-family:var(--mono);font-size:10px;color:#94A3B8;flex-wrap:wrap}
.gc-perm-new a{color:#94A3B8;text-decoration:underline;white-space:nowrap}
@media(max-width:420px){.gc-perm-new{display:none}}
.gc-grade-col{flex-shrink:0;display:flex;flex-direction:column;align-items:center;gap:8px}
.gc-circle{width:100px;height:100px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .3s;position:relative}
.gc-letter{font-size:54px;font-weight:900;line-height:1;letter-spacing:-.04em;transition:color .3s}
.gc-grade-lbl{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.15em;border-radius:20px;padding:3px 12px;transition:all .3s;text-transform:uppercase;white-space:nowrap}

/* Verdict strip inside card */
.gc-verdict-strip{padding:16px 24px;border-top:1px solid rgba(255,255,255,.07)}
.gc-verdict-headline{font-size:13.5px;color:#CBD5E1;line-height:1.75;margin:0}
.gc-verdict-headline ul{list-style:none;margin:10px 0 0;padding:0;display:flex;flex-direction:column;gap:6px}
.gc-verdict-headline ul li{display:flex;gap:8px;font-size:13px;color:#94A3B8;line-height:1.55;align-items:flex-start}
.gc-verdict-headline ul li::before{content:"";flex-shrink:0;width:6px;height:6px;border-radius:50%;margin-top:5px}
.gc-verdict-headline ul li.li-pos{color:#CBD5E1}.gc-verdict-headline ul li.li-pos::before{background:#4ADE80}
.gc-verdict-headline ul li.li-warn{color:#CBD5E1}.gc-verdict-headline ul li.li-warn::before{background:#FCD34D}
.gc-verdict-headline ul li.li-neg{color:#CBD5E1}.gc-verdict-headline ul li.li-neg::before{background:#F87171}
.gc-verdict-list{margin:12px 0 0;padding:0;list-style:none}
.gc-verdict-list li{display:flex;gap:10px;margin-bottom:7px;font-size:13px;color:#E2E8F0;line-height:1.6}
.gc-verdict-icon{flex-shrink:0;margin-top:2px;font-size:11px;font-weight:700}

/* Score bars inside card */
.gc-scores-row{display:flex;gap:12px;padding:16px 24px}
.gc-score-block{flex:1;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:10px;padding:14px 16px}
.gc-score-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:.14em;color:#94A3B8;margin-bottom:10px}
.gc-score-nums{display:flex;align-items:baseline;gap:10px;margin-bottom:8px}
.gc-score-num{font-family:var(--mono);font-size:26px;font-weight:700;line-height:1}
.gc-score-denom{font-family:var(--mono);font-size:12px;color:#94A3B8}
.gc-score-tag{font-family:var(--mono);font-size:13px;font-weight:700;margin-left:auto;border-radius:6px;padding:2px 10px}
.gc-score-bar-bg{height:5px;border-radius:3px;background:rgba(255,255,255,.06);overflow:hidden}
.gc-score-bar-fill{height:100%;border-radius:3px}
.gc-score-sub{font-family:var(--mono);font-size:9.5px;color:#94A3B8;margin-top:7px}

/* ── STAT GRID DARK ─────────────────── */
.sg-dark-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:28px}
.sg-dark-card{background:#0A1220;border:1px solid rgba(255,255,255,.09);border-radius:10px;padding:14px 16px}
.sg-eyebrow{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.14em;color:#94A3B8;margin-bottom:8px;text-transform:uppercase}
.sg-value-good{font-size:13px;font-weight:700;color:#4ADE80;margin-bottom:4px}
.sg-value-warn{font-size:13px;font-weight:700;color:#FCD34D;margin-bottom:4px}
.sg-value-danger{font-size:13px;font-weight:700;color:#F87171;margin-bottom:4px}
.sg-value-dim{font-size:13px;font-weight:700;color:#E2E8F0;margin-bottom:4px}
.sg-sub-new{font-size:12px;color:#94A3B8;line-height:1.45}
.sg-divider{border-top:1px solid rgba(255,255,255,.07);margin-top:6px;padding-top:6px}

/* ── LIVE NETWORK CHECK TEASER ─────── */
.lc-teaser{background:#0A1220;border:1px solid rgba(245,158,11,.25);border-radius:12px;padding:18px 20px;margin-bottom:4px;box-shadow:0 0 32px rgba(245,158,11,.08),0 0 8px rgba(245,158,11,.06)}
.lc-teaser-hd{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.lc-teaser-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:.16em;color:#94A3B8;text-transform:uppercase}
.lc-beta{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.1em;color:#60A5FA;background:rgba(96,165,250,.1);border:1px solid rgba(96,165,250,.22);border-radius:20px;padding:1px 7px}
.lc-last-ok{font-family:var(--mono);font-size:9px;font-weight:700;color:#4ADE80;margin-left:auto}
.lc-last-warn{font-family:var(--mono);font-size:9px;font-weight:700;color:#F87171;margin-left:auto}
.lc-intro{font-size:13px;color:#94A3B8;line-height:1.7;margin:0 0 14px}
.lc-probe-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.lc-probe-item{background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.07);border-radius:9px;padding:12px 13px}
.lc-probe-icon{font-size:16px;margin-bottom:5px}
.lc-probe-title{font-family:var(--mono);font-size:9.5px;font-weight:700;letter-spacing:.1em;color:#60A5FA;margin-bottom:5px}
.lc-probe-desc{font-size:11.5px;color:#64748B;line-height:1.5}
.lc-run-btn{width:100%;padding:14px;border-radius:11px;border:none;color:#fff;font-family:var(--mono);font-size:13px;font-weight:700;letter-spacing:.06em;cursor:pointer;transition:opacity .15s}
.lc-run-btn:hover{opacity:.88}
.lc-no-data-note{text-align:center;margin-top:9px;font-family:var(--mono);font-size:10px;color:#64748B}
.lc-banner-clean{display:flex;align-items:center;gap:10px;padding:11px 14px;background:rgba(74,222,128,.06);border:1px solid rgba(74,222,128,.2);border-radius:9px;margin-top:12px}
.lc-banner-flagged{display:flex;align-items:center;gap:10px;padding:11px 14px;background:rgba(220,38,38,.08);border:1px solid rgba(220,38,38,.25);border-radius:9px;margin-top:12px}
.lc-banner-text-hd{font-family:var(--mono);font-size:12px;font-weight:700;margin-bottom:2px}
.lc-banner-text-sub{font-size:11.5px;color:#64748B}
.lc-view-details{font-family:var(--mono);font-size:10px;font-weight:700;color:#60A5FA;background:none;border:none;cursor:pointer;margin-left:auto;white-space:nowrap;padding:0}

/* ── LIVE CHECK MODAL ─────────────── */
.lc-overlay{position:fixed;inset:0;z-index:9998;display:none;align-items:center;justify-content:center;background:rgba(2,6,14,.85);backdrop-filter:blur(14px);padding:24px}
.lc-overlay.lc-open{display:flex}
.lc-modal{width:100%;max-width:575px;background:#070E1C;border:1px solid rgba(255,255,255,.12);border-radius:20px;box-shadow:0 40px 100px rgba(0,0,0,.9),0 0 0 1px rgba(255,255,255,.04);overflow:hidden;transition:border-color .4s}
.lc-modal-hd{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.09);gap:8px}
.lc-modal-hd>div{min-width:0;overflow:hidden}
.lc-modal-title{font-family:var(--mono);font-size:12px;font-weight:700;color:#E2E8F0;letter-spacing:.07em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lc-modal-close{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:#94A3B8;cursor:pointer;padding:6px 10px;display:flex;align-items:center;border-radius:8px;flex-shrink:0;font-family:var(--mono);font-size:12px;gap:4px;white-space:nowrap}
.lc-modal-close:hover{background:rgba(255,255,255,.14);color:#fff}
.lc-modal-body{padding:24px 26px}
.lc-router-pill{display:flex;align-items:center;gap:10px;margin-bottom:20px;padding:10px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:10px}
.lc-pill-badge{width:28px;height:28px;border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:var(--sans);font-size:13px;font-weight:900}
.lc-pill-name{font-family:var(--mono);font-size:12.5px;color:#94A3B8;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lc-pill-probe{font-family:var(--mono);font-size:11.5px;color:#94A3B8;margin-left:auto;white-space:nowrap}
.lc-idle-intro{font-size:15.5px;color:#CBD5E1;line-height:1.72;margin:0 0 20px}
.lc-check-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:24px}
.lc-check-item{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.09);border-radius:11px;padding:16px}
.lc-check-icon{font-size:20px;margin-bottom:7px}
.lc-check-title{font-family:var(--mono);font-size:11px;font-weight:700;letter-spacing:.1em;color:#60A5FA;margin-bottom:6px}
.lc-check-desc{font-size:13px;color:#94A3B8;line-height:1.55}
.lc-modal-btn{width:100%;padding:16px;border-radius:12px;border:none;color:#fff;font-family:var(--mono);font-size:14.5px;font-weight:700;letter-spacing:.06em;cursor:pointer;transition:opacity .15s}
.lc-modal-btn:hover{opacity:.88}
.lc-modal-hint{text-align:center;margin-top:10px;font-family:var(--mono);font-size:12px;color:#94A3B8}
.lc-steps{border-left:2px solid rgba(255,255,255,.1);margin-left:12px;padding-left:22px;margin-bottom:18px}
.lc-step{display:flex;align-items:flex-start;gap:14px;padding:13px 0;transition:opacity .4s}
.lc-step-wait{opacity:.28}
.lc-step-dot{width:26px;height:26px;border-radius:50%;flex-shrink:0;margin-top:1px;display:flex;align-items:center;justify-content:center}
.lc-step-label{font-family:var(--mono);font-size:14px;color:#E2E8F0;letter-spacing:.01em;line-height:1.35}
.lc-step-sub{font-family:var(--mono);font-size:11.5px;color:#94A3B8;margin-top:4px;letter-spacing:.04em}
.lc-running-note{display:flex;align-items:center;justify-content:center;gap:8px;padding:11px;background:rgba(255,255,255,.03);border-radius:9px}
.lc-running-lbl{font-family:var(--mono);font-size:12px;color:#94A3B8}
.lc-clean-banner{display:flex;align-items:center;gap:12px;padding:14px 18px;background:rgba(74,222,128,.07);border:1px solid rgba(74,222,128,.22);border-radius:12px;margin-bottom:18px}
.lc-flagged-banner{display:flex;align-items:center;gap:12px;padding:14px 18px;background:rgba(220,38,38,.08);border:1px solid rgba(220,38,38,.28);border-radius:12px;margin-bottom:18px}
.lc-bnr-title{font-family:var(--mono);font-size:13.5px;font-weight:700;margin-bottom:3px}
.lc-bnr-sub{font-size:13px;color:#94A3B8}
.lc-rcard{border-radius:11px;padding:15px 17px;margin-bottom:10px}
.lc-rcard-ok{background:rgba(74,222,128,.05);border:1px solid rgba(74,222,128,.2)}
.lc-rcard-fail{background:rgba(220,38,38,.07);border:1px solid rgba(220,38,38,.25)}
.lc-rcard-hd{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.lc-rcard-lbl-ok{display:flex;align-items:center;gap:8px;font-family:var(--mono);font-size:12px;font-weight:700;letter-spacing:.1em;color:#4ADE80}
.lc-rcard-lbl-fail{display:flex;align-items:center;gap:8px;font-family:var(--mono);font-size:12px;font-weight:700;letter-spacing:.1em;color:#F87171}
.lc-rcard-sev-ok{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:.07em;color:#16A34A;background:rgba(22,163,74,.14);border:1px solid rgba(22,163,74,.25);border-radius:5px;padding:2px 8px;text-transform:uppercase}
.lc-rcard-sev-hi{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:.07em;color:#EA580C;background:rgba(234,88,12,.14);border:1px solid rgba(234,88,12,.25);border-radius:5px;padding:2px 8px;text-transform:uppercase}
.lc-rcard-desc{font-size:14px;color:#CBD5E1;line-height:1.65;margin:0}
.lc-rcard-action{margin-top:11px;padding:10px 13px;border-radius:8px;background:rgba(220,38,38,.1);border:1px solid rgba(220,38,38,.22);font-family:var(--mono);font-size:12.5px;color:#FCA5A5;line-height:1.6}
.lc-disclaimer{display:flex;align-items:flex-start;gap:10px;padding:13px 15px;background:rgba(245,158,11,.06);border:1px solid rgba(245,158,11,.18);border-radius:10px;margin-top:6px;font-size:13.5px;color:#94A3B8;line-height:1.65}
.lc-actions-box{padding:15px 17px;background:rgba(220,38,38,.07);border:1px solid rgba(220,38,38,.22);border-radius:10px;margin-top:6px}
.lc-actions-title{font-family:var(--mono);font-size:11px;font-weight:700;letter-spacing:.14em;color:#DC2626;margin-bottom:11px;text-transform:uppercase}
.lc-action-item{display:flex;gap:10px;margin-bottom:8px;font-size:14px;color:#FCA5A5;line-height:1.55}
.lc-action-num{font-family:var(--mono);font-size:12.5px;color:#DC2626;flex-shrink:0;font-weight:700}
.lc-modal-actions{display:flex;gap:9px;margin-top:18px}
.lc-btn-again{flex:1;padding:12px;border-radius:10px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);color:#94A3B8;font-family:var(--mono);font-size:12.5px;font-weight:700;cursor:pointer}
.lc-btn-done{flex:2;padding:12px;border-radius:10px;border:none;color:#fff;font-family:var(--mono);font-size:12.5px;font-weight:700;cursor:pointer}

/* ── CAPS TABLE NEW ─────────────────── */
.caps-hd-new{display:flex;align-items:center;gap:8px;margin-bottom:6px}
.caps-title-new{font-size:16px;font-weight:700;color:#E2E8F0}
.caps-sub-new{font-size:12px;color:#94A3B8;margin-bottom:16px}
.caps-table-wrap{background:#0A1220;border:1px solid rgba(255,255,255,.09);border-radius:12px;overflow:hidden;margin-bottom:12px}
.caps-col-hd-row{display:flex;align-items:center;padding:10px 16px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025)}
.caps-col-flex{flex:1}
.caps-col-router-hd{flex-shrink:0;width:114px;text-align:center;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.12em;color:#94A3B8;text-transform:uppercase}
.caps-col-rio-hd{flex-shrink:0;width:114px;text-align:right;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.12em;color:#4ADE80}
.caps-row-new{display:flex;align-items:center;padding:13px 16px}
.caps-row-new+.caps-row-new{border-top:1px solid rgba(255,255,255,.07)}
.caps-row-label-col{flex:1}
.caps-row-name{font-size:13px;font-weight:600;color:#E2E8F0;margin-bottom:2px}
.caps-row-desc{font-size:11px;color:#94A3B8;line-height:1.4}
.caps-router-val{flex-shrink:0;width:114px;display:flex;justify-content:center}
.caps-rio-val{flex-shrink:0;width:114px;display:flex;justify-content:flex-end}
.cv-avail{font-family:var(--mono);font-size:10px;font-weight:700;color:#4ADE80;background:rgba(74,222,128,.1);border:1px solid rgba(74,222,128,.3);border-radius:5px;padding:3px 10px;white-space:nowrap}
.cv-partial{font-family:var(--mono);font-size:10px;font-weight:700;color:#FCD34D;background:rgba(252,211,77,.1);border:1px solid rgba(252,211,77,.3);border-radius:5px;padding:3px 10px;white-space:nowrap}
.cv-none{font-family:var(--mono);font-size:10px;font-weight:700;color:#F87171;background:rgba(248,113,113,.1);border:1px solid rgba(248,113,113,.3);border-radius:5px;padding:3px 10px;white-space:nowrap}
.cv-locked{font-family:var(--mono);font-size:10px;font-weight:700;color:#94A3B8;background:rgba(148,163,184,.1);border:1px solid rgba(148,163,184,.3);border-radius:5px;padding:3px 10px;white-space:nowrap}
.caps-rio-note{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;padding:10px 14px;background:rgba(74,222,128,.04);border:1px solid rgba(74,222,128,.12);border-radius:8px}
.caps-rio-note-text{font-size:12px;color:#94A3B8;line-height:1.5}
.caps-rio-note-link{font-family:var(--mono);font-size:10px;font-weight:700;color:#4ADE80;text-decoration:none;white-space:nowrap;margin-left:16px}
.caps-brand-link{font-size:12px;color:#64748B}
.caps-brand-link a{color:#4B8FCC}

/* ── TODO LIST NEW ─────────────────── */
.todo-list-new{margin-bottom:28px}
.todo-hd-new{display:flex;align-items:center;gap:8px;margin-bottom:16px}
.todo-hd-icon{font-size:16px}
.todo-hd-title{font-size:16px;font-weight:700;color:#E2E8F0}
.todo-item-new{display:flex;gap:14px;margin-bottom:10px;align-items:flex-start}
.todo-num-new{width:26px;height:26px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:var(--mono);font-size:11px;font-weight:700}
.todo-text-new{font-size:13.5px;color:#E2E8F0;line-height:1.6;padding-top:3px}

/* ── CTA STRIP NEW ─────────────────── */
.cta-strip-new{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 22px;border-radius:12px;margin-bottom:28px}
.cta-strip-hed{font-size:15px;font-weight:800;margin-bottom:5px}
.cta-strip-sub{font-size:13px;color:#94A3B8}
.cta-strip-btn-new{font-family:var(--mono);font-size:11px;font-weight:700;color:#F8FAFC;border:none;border-radius:8px;padding:10px 18px;text-decoration:none;white-space:nowrap;flex-shrink:0}

/* ── METHOD NOTE NEW ─────────────────── */
.method-note-new{display:flex;align-items:flex-start;gap:10px;padding:13px 16px;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.09);border-radius:10px;margin-bottom:20px}
.method-note-txt{font-size:12.5px;color:#94A3B8;line-height:1.6}
.method-note-txt strong{color:#CBD5E1}
.method-note-txt a{color:#60A5FA}

/* ── SHARE CTA NEW ─────────────────── */
.share-cta-new{background:#0A1220;border:1px solid rgba(255,255,255,.09);border-radius:14px;padding:22px 24px;margin-bottom:28px}
.share-cta-inner{display:flex;align-items:flex-start;gap:16px}
.share-cta-icon-new{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.share-cta-texts{flex:1}
.share-cta-eyebrow-new{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.14em;color:rgba(148,163,184,.65);margin-bottom:4px;text-transform:uppercase}
.share-cta-title-new{font-size:16px;font-weight:800;color:#F1F5F9;margin:0 0 6px}
.share-cta-desc-new{font-size:13px;color:#94A3B8;line-height:1.65;margin:0 0 14px}
.share-cta-btns-new{display:flex;gap:8px;flex-wrap:wrap}
.shr-primary-new{display:inline-flex;align-items:center;gap:7px;font-family:var(--mono);font-size:11px;font-weight:700;color:#F8FAFC;border:none;border-radius:8px;padding:9px 16px;cursor:pointer;transition:opacity .15s}
.shr-primary-new:hover{opacity:.88}
.shr-ghost-new{display:inline-flex;align-items:center;gap:7px;font-family:var(--mono);font-size:11px;font-weight:700;color:#94A3B8;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:9px 16px;cursor:pointer;transition:background .15s}
.shr-ghost-new:hover{background:rgba(255,255,255,.1)}
.share-cta-hint-new{font-family:var(--mono);font-size:10px;color:rgba(148,163,184,.45);margin-top:8px}
.share-util-row-new{display:flex;gap:.5rem;margin-bottom:1.5rem;flex-wrap:wrap}
.shr-btn-new{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem 1rem;border:1px solid rgba(255,255,255,.09);border-radius:8px;font-size:13px;color:#94A3B8;background:rgba(255,255,255,.025);cursor:pointer;text-decoration:none;font-family:var(--sans);transition:border-color .15s,color .15s}
.shr-btn-new:hover{border-color:#4B8FCC;color:#60A5FA}

/* ── BIBLIOGRAPHY ZONE ─────────────── */
.bib-divider{height:1px;background:rgba(255,255,255,.08);margin:8px 0 24px}
.bib-zone-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:.18em;color:#475569;margin-bottom:20px;text-transform:uppercase}
.bib-section-hd{font-family:var(--mono);font-size:9.5px;font-weight:700;letter-spacing:.14em;color:#64748B;margin-bottom:10px;text-transform:uppercase}
.bib-intro{font-size:11.5px;color:#64748B;margin-bottom:10px;line-height:1.5}
.bib-intro a{color:#4B8FCC;text-decoration:none}
.bib-intro a:hover{text-decoration:underline}
.bib-cve-list{border:1px solid rgba(255,255,255,.08);border-radius:8px;overflow:hidden}
.bib-cve-item{padding:10px 14px;background:rgba(255,255,255,.015)}
.bib-cve-item+.bib-cve-item{border-top:1px solid rgba(255,255,255,.07)}
.bib-cve-hd{display:flex;align-items:center;gap:7px;margin-bottom:4px;flex-wrap:wrap}
.bib-cve-id{font-family:var(--mono);font-size:10.5px;font-weight:700;color:#4B8FCC;text-decoration:none}
.bib-cve-id:hover{text-decoration:underline}
.bib-cve-sev-crit{font-family:var(--mono);font-size:8.5px;font-weight:700;letter-spacing:.06em;color:#DC2626;background:rgba(220,38,38,.1);border:1px solid rgba(220,38,38,.18);border-radius:3px;padding:1px 5px;text-transform:uppercase}
.bib-cve-sev-high{font-family:var(--mono);font-size:8.5px;font-weight:700;letter-spacing:.06em;color:#EA580C;background:rgba(234,88,12,.1);border:1px solid rgba(234,88,12,.18);border-radius:3px;padding:1px 5px;text-transform:uppercase}
.bib-cve-sev-med{font-family:var(--mono);font-size:8.5px;font-weight:700;letter-spacing:.06em;color:#D97706;background:rgba(217,119,6,.1);border:1px solid rgba(217,119,6,.18);border-radius:3px;padding:1px 5px;text-transform:uppercase}
.bib-cve-desc{font-size:11.5px;color:#64748B;line-height:1.55}
.bib-nvd-link{font-size:12px;color:#64748B;margin-top:8px}
.bib-nvd-link a{color:#4B8FCC;text-decoration:none}
.bib-nvd-link a:hover{text-decoration:underline}
.bib-other-wrap{border:1px solid rgba(255,255,255,.08);border-radius:8px;overflow:hidden}
.bib-other-item{display:flex;align-items:center;padding:9px 14px;background:rgba(255,255,255,.015)}
.bib-other-item+.bib-other-item{border-top:1px solid rgba(255,255,255,.07)}
.bib-other-link{font-size:12.5px;font-weight:500;color:#4B8FCC;text-decoration:none;flex:1}
.bib-other-link:hover{text-decoration:underline}
.bib-other-grade{font-weight:700;font-size:13px;margin:0 12px}
.bib-other-support{font-size:11px;color:#64748B;font-family:var(--mono)}
.bib-brand-link{font-size:12px;color:#64748B;margin-top:8px}
.bib-brand-link a{color:#4B8FCC;text-decoration:none}
.bib-brand-link a:hover{text-decoration:underline}
.bib-src-list{margin:.5rem 0 0;padding-left:1.15rem;display:flex;flex-direction:column;gap:.35rem}
.bib-src-list li{font-size:12.5px;color:#64748B}
.bib-src-list li a{color:#4B8FCC;text-decoration:none;word-break:break-all}
.bib-src-list li a:hover{text-decoration:underline}
.bib-src-note{font-size:11.5px;color:#64748B;margin:.65rem 0 0}
.bib-src-note a{color:#4B8FCC;text-decoration:none}
.bib-mb{margin-bottom:22px}

/* ── DARK PAGE OVERRIDE ──────────────── */
html{overflow-x:hidden}
body{background-color:#050C18;color:#F1F5F9;overflow-x:hidden}
::-webkit-scrollbar-track{background:#050C18}
::-webkit-scrollbar-thumb{background:#1e2d48;border-radius:3px}

/* ── DOT GRID + GLOW ─────────────────── */
.page-dot-grid{position:fixed;inset:0;width:100%;height:100%;pointer-events:none;z-index:0}
.page-glow{position:fixed;top:16%;left:50%;transform:translateX(-50%);width:500px;height:500px;border-radius:50%;filter:blur(100px);pointer-events:none;z-index:0}

/* ── SECTION DIVIDER (bibliography) ─── */
.sec-divider{height:1px;background:rgba(255,255,255,.08);margin:20px 0}

@media(max-width:640px){
  .gc-header-new{flex-wrap:wrap}
  .gc-img-left{width:80px;height:70px;order:-1}
  .gc-grade-col{order:-1;flex-direction:row;gap:12px;width:100%;align-items:center}
  .gc-circle{width:64px;height:64px}
  .gc-letter{font-size:36px}
  .gc-scores-row{flex-direction:column}
  .sg-dark-grid{grid-template-columns:1fr}
  .lc-probe-grid{grid-template-columns:1fr}
  .caps-col-router-hd,.caps-col-rio-hd,.caps-router-val,.caps-rio-val{width:70px}
  .lc-check-grid{grid-template-columns:1fr}
  .cta-strip-new{flex-direction:column}
  .share-cta-inner{flex-direction:column}
  .share-cta-icon-new{display:none}
  .share-util-row-new{flex-direction:column}
  .shr-btn-new{justify-content:center}
  .cv-tip[data-tip]::after{max-width:200px}
  .footer-top{grid-template-columns:1fr;gap:1.5rem}
}

@media(max-width:480px){
  /* ── CAPS TABLE: label full-width, badges in row below ── */
  .caps-col-flex{display:none}
  .caps-col-hd-row{padding:7px 14px}
  .caps-col-router-hd{flex:1;width:auto;text-align:left}
  .caps-col-rio-hd{flex:1;width:auto;text-align:right}
  .caps-row-new{flex-wrap:wrap;gap:7px 0;padding:10px 14px;align-items:flex-start}
  .caps-row-label-col{width:100%;flex:none}
  .caps-router-val{flex:1;width:auto;justify-content:flex-start}
  .caps-rio-val{flex:1;width:auto;justify-content:flex-end}
}

/* ── BADGE TOOLTIPS ────────────────── */
.cv-tip{position:relative;cursor:help}
.cv-tip[data-tip]::after{
  content:attr(data-tip);
  position:absolute;
  bottom:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  background:#0F1E36;
  border:1px solid rgba(255,255,255,.15);
  color:#CBD5E1;
  font-family:var(--sans);
  font-size:11px;
  font-weight:400;
  letter-spacing:0;
  line-height:1.55;
  white-space:normal;
  width:max-content;
  max-width:240px;
  text-align:left;
  padding:8px 12px;
  border-radius:7px;
  pointer-events:none;
  opacity:0;
  transition:opacity .18s ease;
  z-index:200;
  box-shadow:0 4px 18px rgba(0,0,0,.55)
}
.cv-tip[data-tip]::before{
  content:'';
  position:absolute;
  bottom:calc(100% + 3px);
  left:50%;
  transform:translateX(-50%);
  border:5px solid transparent;
  border-top-color:#0F1E36;
  pointer-events:none;
  opacity:0;
  transition:opacity .18s ease;
  z-index:200
}
.cv-tip[data-tip]:hover::after,.cv-tip[data-tip]:hover::before{opacity:1}

/* ── LEGIBILITY BOOST: +25% sizes (10%+15%), higher contrast ────────────── */
body{font-size:19px}
.gc-eyebrow{font-size:11.5px;color:#CBD5E1}
.gc-model-name{font-size:clamp(23px,3.5vw,33px)}
.gc-meta-new{font-size:14px;color:#CBD5E1}
.gc-tag-new{font-size:12.5px;color:#E2E8F0}
.gc-perm-new,.gc-perm-new a{font-size:12.5px;color:#CBD5E1}
.gc-grade-lbl{font-size:11.5px}
@media(min-width:641px){.gc-letter{font-size:69px}}
.gc-verdict-headline{font-size:17px;color:#E2E8F0}
.gc-verdict-headline ul li{font-size:16.5px;color:#CBD5E1}
.gc-verdict-list li{font-size:16.5px;color:#E2E8F0}
.gc-score-label{font-size:12.5px;color:#B8C4D0}
.gc-score-num{font-size:33px}
.gc-score-denom{font-size:15px;color:#94A3B8}
.gc-score-tag{font-size:16px}
.gc-score-sub{font-size:12px;color:#94A3B8}
.sg-eyebrow{font-size:11.5px;color:#94A3B8}
.sg-value-good,.sg-value-warn,.sg-value-danger,.sg-value-dim{font-size:16px}
.sg-sub-new{font-size:15px;color:#CBD5E1}
.lc-teaser-label{font-size:12.5px}
.lc-intro{font-size:16px;color:#CBD5E1}
.lc-probe-title{font-size:12px}
.lc-probe-desc{font-size:14.5px;color:#94A3B8}
.lc-idle-intro{font-size:17px;color:#CBD5E1}
.lc-check-desc{font-size:14.5px;color:#94A3B8}
.lc-step-label{font-size:16px}
.lc-step-sub{font-size:12.5px;color:#94A3B8}
.lc-rcard-desc{font-size:16px;color:#CBD5E1}
.lc-banner-text-sub{font-size:14.5px;color:#94A3B8}
.lc-bnr-sub{font-size:14.5px;color:#94A3B8}
.lc-action-item{font-size:16px}
.lc-disclaimer{font-size:15px;color:#94A3B8}
.caps-title-new{font-size:21px}
.caps-sub-new{font-size:15px;color:#94A3B8}
.caps-col-router-hd,.caps-col-rio-hd{font-size:11.5px}
.caps-row-name{font-size:16px}
.caps-row-desc{font-size:14px;color:#CBD5E1}
.cv-avail,.cv-partial,.cv-none,.cv-locked{font-size:13px;padding:4px 13px}
.caps-rio-note-text{font-size:15px;color:#94A3B8}
.caps-rio-note-link{font-size:12.5px}
.caps-brand-link{font-size:15px;color:#94A3B8}
.todo-hd-title{font-size:21px}
.todo-num-new{font-size:14px}
.todo-text-new{font-size:17px}
.cta-strip-hed{font-size:19px}
.cta-strip-sub{font-size:16px;color:#CBD5E1}
.cta-strip-btn-new{font-size:14px}
.method-note-txt{font-size:16px;color:#CBD5E1}
.method-note-txt strong{color:#E2E8F0}
.share-cta-desc-new{font-size:16px;color:#CBD5E1}
.share-cta-title-new{font-size:21px}
.shr-ghost-new{color:#CBD5E1}
.sp-count{font-size:15px;color:#E2E8F0}
.sp-label{font-size:15px;color:#CBD5E1}
.sp-footnote{font-size:13px;color:#60A5FA;opacity:1}
.bib-zone-label{font-size:11.5px}
.bib-section-hd{font-size:12px;color:#94A3B8}
.bib-intro{font-size:14.5px;color:#94A3B8}
.bib-cve-id{font-size:13px}
.bib-cve-desc{font-size:14.5px;color:#94A3B8}
.bib-other-link{font-size:16px}
.bib-other-support{font-size:14px;color:#94A3B8}
.bib-src-list li{font-size:15.5px;color:#94A3B8}
.bib-src-note{font-size:14.5px;color:#94A3B8}
.bib-nvd-link{font-size:15px;color:#94A3B8}
.rp-back{font-size:16px;color:#94A3B8}
.sticky-rio-bar{font-size:15px;color:#94A3B8}
.sticky-rio-bar a{color:#CBD5E1}
.share-cta-hint-new{font-size:12.5px;color:#94A3B8}
/* ── EMAIL CAPTURE WIDGET ─────────── */
.email-capture{background:linear-gradient(135deg,rgba(30,41,59,.9),rgba(15,23,42,.9));border:1px solid rgba(99,102,241,.3);border-radius:14px;padding:1.25rem 1.5rem;margin:0 0 1rem}
.email-capture-hd{display:flex;align-items:center;gap:.6rem;margin-bottom:.45rem}
.email-capture-icon{font-size:1.2rem;line-height:1}
.email-capture-title{font-size:12px;font-weight:700;color:#C7D2FE;letter-spacing:.06em;text-transform:uppercase}
.email-capture-desc{font-size:13.5px;color:rgba(203,213,225,.75);margin-bottom:.85rem;line-height:1.55}
.email-capture-form{display:flex;gap:.5rem;flex-wrap:wrap}
.email-capture-input{flex:1;min-width:180px;padding:.55rem .85rem;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:8px;font-size:13px;color:#fff;outline:none;font-family:var(--sans)}
.email-capture-input::placeholder{color:rgba(255,255,255,.3)}
.email-capture-input:focus{border-color:rgba(99,102,241,.65);box-shadow:0 0 0 3px rgba(99,102,241,.15)}
.email-capture-btn{padding:.55rem 1.15rem;background:#4F46E5;color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;font-family:var(--sans);transition:background .15s;white-space:nowrap}
.email-capture-btn:hover{background:#4338CA}
.email-capture-btn:disabled{opacity:.55;cursor:default}
.email-capture-msg{margin-top:.6rem;font-size:12.5px;font-weight:500}
