/* Political Action Hub - minimal, fast, text-first */
:root{
  --bg:#0b0d10;
  --bg2:#0f1520;
  --card:#0f141c;
  --text:#e9edf3;
  --muted:#b7c0cc;
  --muted2:#96a3b3;
  --border:#222a35;
  --link:#7ab7ff;
  --accent:#63d2b5;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 700px at 20% -10%, rgba(122,183,255,.18) 0%, rgba(122,183,255,0) 55%),
    radial-gradient(900px 650px at 90% 0%, rgba(99,210,181,.14) 0%, rgba(99,210,181,0) 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  background-attachment: fixed;
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1080px; margin:0 auto; padding:0 20px}
header.site{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(11,13,16,.65);
  border-bottom:1px solid rgba(34,42,53,.7);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:inline-flex; align-items:baseline; gap:10px;
  min-width: 220px;
}
.brand a{ text-decoration:none }
.logotype{
  font-weight:800;
  letter-spacing:-0.03em;
  font-size:18px;
  line-height:1;
  display:inline-block;
  position:relative;
}
.logotype::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-9px;
  height:1px;
  background: linear-gradient(90deg, rgba(122,183,255,0), rgba(122,183,255,.8), rgba(99,210,181,.9), rgba(122,183,255,0));
  opacity:.55;
  transform: translateY(2px);
}
.tagline{
  color:var(--muted2);
  font-size:12px;
  line-height:1.2;
  margin-top:2px;
}
.nav{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:13px;
}
.pill:hover{
  text-decoration:none;
  border-color:rgba(122,183,255,.45);
}
.pill .dot{
  width:8px; height:8px; border-radius:999px; background:rgba(99,210,181,.95);
  box-shadow: 0 0 0 4px rgba(99,210,181,.15);
}

.hero{
  padding:64px 0 18px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}
.h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 6vw, 74px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.h1 .shine{
  background: linear-gradient(90deg, rgba(233,237,243,1), rgba(233,237,243,1), rgba(122,183,255,.95), rgba(99,210,181,.95), rgba(233,237,243,1));
  background-size: 240% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation: shine 8s ease-in-out infinite;
}
@keyframes shine{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.sub{
  margin:0;
  color:var(--muted);
  max-width:78ch;
  font-size:16px;
}
.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  margin-top:22px;
}
@media (max-width: 880px){
  .grid{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  padding:18px;
}
.card h2{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-0.01em;
}
.card p{margin:0; color:var(--muted)}
.card .meta{
  margin-top:10px;
  color:var(--muted2);
  font-size:13px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.card .actions{
  margin-top:14px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:13px;
  text-decoration:none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{
  text-decoration:none;
  border-color:rgba(122,183,255,.5);
  transform: translateY(-1px);
  background:rgba(255,255,255,.05);
}
.btn.primary{
  border-color: rgba(99,210,181,.55);
  background: rgba(99,210,181,.10);
}
.btn.primary:hover{
  border-color: rgba(99,210,181,.85);
}

.section{
  margin-top:16px;
  padding:18px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:rgba(255,255,255,.02);
}
.section h2{margin:0 0 10px; font-size:18px}
.section h3{margin:16px 0 8px; font-size:15px}
.section ul{margin:10px 0 0 18px; padding:0}
.section li{margin:6px 0}

.toc{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.toc a{
  font-size:13px;
  border:1px solid var(--border);
  border-radius:12px;
  padding:8px 10px;
  background:rgba(255,255,255,.02);
}
.toc a:hover{ text-decoration:none; border-color:rgba(122,183,255,.45) }

.breadcrumb{
  margin-top:16px;
  color:var(--muted2);
  font-size:13px;
}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--link); text-decoration:none}

.callout{
  border-left:4px solid var(--accent);
  background: rgba(99,210,181,.07);
  padding:12px 14px;
  border-radius:12px;
  margin:12px 0;
}
.warn{
  border-left:4px solid #ffcc66;
  background: rgba(255,204,102,.08);
  padding:12px 14px;
  border-radius:12px;
  margin:12px 0;
}

table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
}
th,td{
  text-align:left;
  padding:10px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
  font-size:13px;
}
th{
  color:var(--muted);
  background:rgba(255,255,255,.02);
  font-weight:600;
}
tr:last-child td{border-bottom:0}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

footer.site{
  margin-top:20px;
  padding:22px 0 46px;
  color:var(--muted);
  font-size:13px;
}
.footer-inner{
  border-top:1px solid rgba(34,42,53,.7);
  padding-top:14px;
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:flex-start;
}
.small-links{display:flex; gap:14px; flex-wrap:wrap}
.small-links a{color:var(--muted)}
.small-links a:hover{color:var(--link); text-decoration:none}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
