:root {
  --bg: #0b0e14; --bg2: #0e1219; --panel: #151a23; --panel2: #1b212d;
  --line: #262d3a; --line2: #333c4d;
  --fg: #e8ebf1; --dim: #9aa3b6; --faint: #6b7488;
  --acc: #ffb454; --acc-dim: #c98a3c;
  --red: #ff7a7a; --red-bg: #2b1618;
  --green: #5fd97a; --green-bg: #14271a;
  --yellow: #ffd45e; --yellow-bg: #2a2612;
  --blue: #7cc4ff; --blue-bg: #12212f;
  --purple: #b9a3ff;
  --radius: 12px; --radius-sm: 8px;
  --maxw: 860px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background:
    radial-gradient(1200px 600px at 70% -10%, #131a26 0%, transparent 60%),
    var(--bg);
  color: var(--fg);
  font: 16.5px/1.68 ui-sans-serif, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Noto Sans Devanagari", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--acc); color: #14100a; }

/* header */
header {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 5vw; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,14,20,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}
.brand {
  font-weight: 800; font-size: 1.1rem; color: var(--fg); text-decoration: none;
  letter-spacing: .01em; white-space: nowrap; display: flex; align-items: baseline; gap: .5rem;
}
.brand span {
  color: var(--acc); letter-spacing: .18em; font-size: .58em; font-weight: 700;
  border: 1px solid var(--acc-dim); padding: .12rem .4rem; border-radius: 5px;
}
nav { display: flex; flex-wrap: wrap; gap: .1rem; }
nav a {
  color: var(--dim); text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: .3rem .6rem; border-radius: 6px; transition: color .15s, background .15s;
}
nav a:hover { color: var(--fg); background: var(--panel); }

main { max-width: var(--maxw); margin: 0 auto; padding: 2.2rem 5vw 4.5rem; }

/* typography */
h1 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); line-height: 1.15; margin: .3rem 0 1rem; letter-spacing: -.01em; font-weight: 800; }
h2 {
  margin-top: 2.6rem; font-size: 1.32rem; font-weight: 700; letter-spacing: -.005em;
  padding-bottom: .45rem; border-bottom: 1px solid var(--line);
}
h3 { font-size: 1.08rem; font-weight: 700; margin: .4rem 0; }
a { color: var(--blue); text-decoration-color: color-mix(in srgb, var(--blue) 40%, transparent); text-underline-offset: 2px; }
a:hover { text-decoration-color: var(--blue); }
p { margin: .7rem 0; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; color: var(--acc); margin: 0 0 .3rem; font-weight: 700; }
.lede { font-size: 1.12rem; line-height: 1.6; color: #cfd5e2; }
.dim { color: var(--dim); font-size: .92rem; }
.faint { color: var(--faint); }
code { background: var(--panel2); padding: .1rem .4rem; border-radius: 4px; font-size: .88em; border: 1px solid var(--line); }

/* hero */
.hero { padding: 1rem 0 .5rem; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .7rem; margin: 1.8rem 0; }
.stats div {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1rem;
  transition: border-color .18s, transform .18s;
}
.stats div:hover { border-color: var(--line2); transform: translateY(-2px); }
.stats b { display: block; font-size: 2rem; font-weight: 800; color: var(--acc); letter-spacing: -.02em; line-height: 1; margin-bottom: .35rem; }
.stats span { color: var(--dim); font-size: .82rem; line-height: 1.4; }

.btn {
  display: inline-block; margin-top: .5rem;
  background: linear-gradient(180deg, var(--acc) 0%, var(--acc-dim) 100%);
  color: #1a1206; font-weight: 700; padding: .7rem 1.3rem; border-radius: var(--radius-sm);
  text-decoration: none; box-shadow: 0 6px 18px -8px var(--acc);
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px var(--acc); }

/* findings / detail cards */
.finding {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); margin: .7rem 0;
  transition: border-color .18s;
}
.finding:hover { border-color: var(--line2); }
.finding summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; list-style: none; display: flex; align-items: baseline; gap: .5rem; }
.finding summary::-webkit-details-marker { display: none; }
.finding summary::before { content: "+"; color: var(--acc); font-weight: 800; font-size: 1.1em; line-height: 1; }
.finding[open] summary::before { content: "\2013"; }
.finding p, .finding .evidence, .finding h3 { padding: 0 1.2rem; }
.finding[open] { padding-bottom: 1rem; }
.evidence {
  border-left: 3px solid var(--acc); margin: .7rem 1.2rem; background: var(--bg2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: .6rem 1rem !important; font-size: .9rem;
}
.evidence b { color: var(--acc); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.evidence ul { margin: .35rem 0; padding-left: 1.1rem; }
.evidence li { margin: .25rem 0; overflow-wrap: anywhere; }

/* tags */
.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: .16rem .6rem; border-radius: 99px; text-transform: uppercase; vertical-align: middle;
  border: 1px solid transparent; line-height: 1.4;
}
.st-false { background: var(--red-bg); color: var(--red); border-color: color-mix(in srgb, var(--red) 30%, transparent); }
.st-true { background: var(--green-bg); color: var(--green); border-color: color-mix(in srgb, var(--green) 30%, transparent); }
.st-part { background: var(--yellow-bg); color: var(--yellow); border-color: color-mix(in srgb, var(--yellow) 30%, transparent); }
.st-pending { background: var(--panel2); color: var(--dim); border-color: var(--line); }
.st-warn { background: var(--yellow-bg); color: var(--yellow); border-color: color-mix(in srgb, var(--yellow) 30%, transparent); }
.st-ours { background: var(--blue-bg); color: var(--blue); border-color: color-mix(in srgb, var(--blue) 30%, transparent); }

/* claim list */
.claimlist { display: flex; flex-direction: column; gap: .55rem; }
.claimrow {
  display: grid; grid-template-columns: 2.6rem 1fr; gap: .25rem .7rem; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem 1.1rem; text-decoration: none; color: var(--fg);
  transition: border-color .16s, transform .16s, background .16s;
}
a.claimrow:hover { border-color: var(--acc-dim); transform: translateX(3px); background: var(--panel2); }
.cid { color: var(--acc); font-weight: 800; font-size: .95rem; text-transform: uppercase; }
.ctext { line-height: 1.5; }
.badges { grid-column: 2; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }

/* claim detail */
.rgclaim {
  margin: 1.2rem 0; padding: 1.1rem 1.4rem;
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg2) 100%);
  border-left: 4px solid var(--acc); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.14rem; line-height: 1.55;
}
.rgclaim cite { display: block; margin-top: .7rem; font-size: .82rem; color: var(--dim); font-style: normal; }
.verdictbar { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.1rem 0; padding: .9rem 1.1rem; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius); }
.summary { background: var(--panel2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: 1.02rem; line-height: 1.6; }
.axis { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); margin: .55rem 0; transition: border-color .16s; }
.axis:hover { border-color: var(--line2); }
.axis summary { cursor: pointer; padding: .85rem 1.1rem; font-weight: 700; list-style: none; display: flex; align-items: center; gap: .55rem; }
.axis summary::-webkit-details-marker { display: none; }
.axis p, .axis .evidence { margin-left: 1.1rem; margin-right: 1.1rem; }
.points { padding-left: 1.4rem; }
.points li { margin: .75rem 0; line-height: 1.55; }
.refs .ref { color: var(--acc); font-size: .82rem; margin-left: .25rem; font-weight: 600; }

/* tables */
.srctable { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1rem 0; }
.srctable th { text-align: left; padding: .5rem .65rem; border-bottom: 2px solid var(--line2); color: var(--dim); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.srctable td { text-align: left; padding: .5rem .65rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.srctable tr:hover td { background: var(--panel); }
.urlcell { max-width: 440px; overflow-wrap: anywhere; }

/* tiers */
.tier { font-size: .68rem; font-weight: 800; padding: .12rem .5rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .03em; }
.tier-gov-press { background: var(--red-bg); color: var(--red); }
.tier-gov-body, .tier-parliament { background: var(--yellow-bg); color: var(--yellow); }
.tier-gov-stats { background: var(--green-bg); color: var(--green); }
.tier-intl { background: var(--blue-bg); color: var(--blue); }
.tier-media { background: var(--panel2); color: #cfd5e2; }
.tier-research { background: #1e1833; color: var(--purple); }
.tier-industry { background: var(--yellow-bg); color: var(--yellow); }
.tier-junk { background: var(--red-bg); color: var(--red); }
.ok { color: var(--green); font-weight: 700; }
.bad { color: var(--red); font-weight: 700; }

/* misc */
.pager { display: flex; justify-content: space-between; margin-top: 2.4rem; gap: 1rem; }
.pager a { padding: .5rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; color: var(--dim); transition: border-color .15s, color .15s; }
.pager a:hover { border-color: var(--acc-dim); color: var(--fg); }
.pager .next { margin-left: auto; }
.crumb { color: var(--dim); font-size: .9rem; }
.crumb a { color: var(--dim); }
.method { padding-left: 1.3rem; }
.method li { margin: .6rem 0; line-height: 1.55; }
blockquote { margin-inline: 0; }

footer { border-top: 1px solid var(--line); padding: 1.6rem 5vw 3rem; color: var(--dim); font-size: .88rem; max-width: var(--maxw); margin: 0 auto; }
footer strong { color: var(--fg); }

@media (max-width: 700px) {
  header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  nav { gap: 0; }
  nav a { padding: .3rem .5rem; font-size: .86rem; }
  .verdictbar { gap: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
