:root {
  color-scheme: dark;
  --bg: #070806;
  --surface: #10120e;
  --surface-2: #171a14;
  --surface-3: #20261d;
  --ink: #f4f0e6;
  --muted: #a7a091;
  --soft: #d1c8b8;
  --line: rgba(218, 177, 96, 0.18);
  --line-strong: rgba(218, 177, 96, 0.38);
  --blue: #8fb8ff;
  --green: #8fd18f;
  --amber: #dab160;
  --red: #ff5f4f;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

* {
  overflow-wrap: anywhere;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(218, 177, 96, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 177, 96, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #070806 0%, #10120e 48%, #070806 100%);
  background-size: 34px 34px, 34px 34px, auto;
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 34px);
  background: rgba(5, 7, 9, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.36);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.menu-shell {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-width: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 50px;
  height: 44px;
  display: inline-grid;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 50%, rgba(66, 242, 170, 0.3), transparent 38%),
    linear-gradient(145deg, rgba(244, 184, 68, 0.22), rgba(82, 216, 255, 0.14));
  color: var(--green);
  font-weight: 950;
  padding: 7px;
}

.brand-mark-logo {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-color: rgba(143, 184, 255, 0.46);
  border-radius: 50%;
  background: #02060b;
  box-shadow: 0 0 22px rgba(34, 126, 255, 0.24);
}

.brand-mark-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand-core {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

.brand-signal {
  width: 22px;
  height: 26px;
  display: grid;
  align-items: center;
  justify-items: start;
  overflow: hidden;
}

.brand-signal i {
  display: block;
  border: 2px solid var(--green);
  border-left: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 0 10px rgba(66, 242, 170, 0.55);
}

.brand-signal i:nth-child(1) {
  width: 7px;
  height: 9px;
}

.brand-signal i:nth-child(2) {
  width: 13px;
  height: 17px;
}

.brand-signal i:nth-child(3) {
  width: 19px;
  height: 25px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: none;
  width: auto;
  position: fixed;
  top: 74px;
  left: clamp(12px, 3vw, 34px);
  right: clamp(12px, 3vw, 34px);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 7, 9, 0.98);
  box-shadow: var(--shadow);
  padding: 10px;
}

nav.is-open {
  display: flex;
}

.menu-toggle {
  min-width: 76px;
  min-height: 38px;
  position: relative;
  z-index: 2;
  border-color: rgba(218, 177, 96, 0.38);
  background: rgba(218, 177, 96, 0.1);
  color: var(--ink);
}

nav a {
  flex: 1 1 138px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 7px 10px;
}

nav a:hover {
  border-color: var(--line);
  background: rgba(82, 216, 255, 0.07);
  color: var(--ink);
}

nav a.nav-cta {
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-color: rgba(244, 184, 68, 0.55);
  color: #081014;
  font-weight: 950;
}

nav a.nav-cta:hover {
  color: #081014;
  filter: brightness(1.05);
}

main {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px);
}

.site-footer {
  width: min(1280px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  padding: 18px clamp(16px, 3vw, 28px) 28px;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #ffffff;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.96;
  margin-bottom: 14px;
  max-width: 900px;
  text-transform: uppercase;
}

h2 {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.06;
  margin-bottom: 12px;
}

h3 {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.18;
}

p {
  line-height: 1.55;
}

.eyebrow {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.front-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 16px;
}

.request-hero {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
}

.request-hero .hero-copy {
  min-height: 190px;
}

.request-hero .service-card {
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.request-hero .service-card h2 {
  font-size: 22px;
}

.rights-clock {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 184, 68, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.13), rgba(255, 79, 109, 0.06)),
    rgba(10, 14, 16, 0.96);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  padding: 10px;
}

.top-intel-row {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}

.compact-clock {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 0;
  padding: 10px;
}

.compact-clock h2 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.08;
  margin-bottom: 0;
  text-transform: uppercase;
}

.compact-clock p:not(.eyebrow) {
  display: none;
}

.rights-clock h2 {
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 5px;
}

.rights-clock p {
  color: var(--soft);
  margin-bottom: 0;
}

.clock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.clock-grid span {
  min-height: 42px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(244, 184, 68, 0.22);
  border-radius: 7px;
  background: rgba(5, 7, 9, 0.52);
  padding: 6px;
}

.clock-grid strong {
  color: var(--amber);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.clock-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  margin-top: 4px;
  text-transform: uppercase;
}

.timeline-card-top {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}

.timeline-step {
  min-width: 28px;
  min-height: 34px;
  border-color: rgba(218, 177, 96, 0.3);
  border-radius: 6px;
  background: rgba(5, 7, 9, 0.58);
  color: var(--amber);
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

.timeline-note {
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 0;
}

.timeline-source-link {
  width: fit-content;
  border: 1px solid rgba(105, 221, 235, 0.2);
  border-radius: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  padding: 7px 9px;
  text-transform: uppercase;
}

.hero-copy,
.service-card,
.lead-package,
.story-card,
.rail-card,
.panel,
.stats div,
.story-reader {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 17, 20, 0.94);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(115deg, rgba(82, 216, 255, 0.13), transparent 52%),
    linear-gradient(180deg, rgba(66, 242, 170, 0.06), transparent),
    rgba(11, 17, 20, 0.96);
}

.lead-hero-card {
  grid-template-columns: 150px minmax(0, 1fr);
  align-content: stretch;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  margin: 10px 0;
}

.hero-copy p {
  color: var(--soft);
  font-size: 17px;
  max-width: 760px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.hero-actions,
.story-actions,
.lead-actions,
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(244, 184, 68, 0.09), transparent),
    rgba(16, 25, 29, 0.96);
}

.service-card h2 {
  font-size: clamp(21px, 2.8vw, 30px);
}

.service-card h2 {
  color: var(--green);
}

.service-card p {
  color: var(--soft);
}

.service-steps {
  display: grid;
  gap: 7px;
}

.service-steps span {
  border: 1px solid rgba(105, 221, 235, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 10px;
  text-transform: uppercase;
}

.request-hero .service-steps span {
  padding: 7px 9px;
}

.rights-primer,
.petition-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(244, 184, 68, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.12), rgba(66, 242, 170, 0.05)),
    rgba(10, 14, 16, 0.95);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  padding: 16px;
}

.quick-jump {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.headline-ticker {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 95, 79, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 95, 79, 0.14), rgba(218, 177, 96, 0.08) 42%, rgba(66, 242, 170, 0.05)),
    rgba(7, 8, 6, 0.97);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
  padding: 8px 10px;
}

.headline-ticker > span {
  border: 1px solid rgba(255, 95, 79, 0.38);
  border-radius: 999px;
  background: rgba(255, 95, 79, 0.12);
  color: #ffd6d1;
  font-size: 11px;
  font-weight: 950;
  padding: 6px 9px;
  text-transform: uppercase;
}

.headline-ticker div {
  overflow: hidden;
}

.headline-ticker p {
  width: max-content;
  display: flex;
  gap: 24px;
  margin: 0;
  animation: ticker-slide 88s linear infinite;
}

.headline-ticker a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.headline-ticker a::after {
  color: var(--red);
  content: " /";
  padding-left: 24px;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.social-strip {
  border: 1px solid rgba(218, 177, 96, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 95, 79, 0.08), transparent 36%),
    rgba(16, 18, 14, 0.96);
  box-shadow: var(--shadow);
  padding: 12px;
}

.social-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.top-watch-rail .social-post-grid {
  grid-template-columns: 1fr;
}

.social-post {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(218, 177, 96, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 184, 255, 0.08), transparent 42%),
    rgba(7, 8, 6, 0.58);
  padding: 12px;
}

.post-media,
.watch-media {
  min-height: 116px;
  display: grid;
  align-items: end;
  border: 1px solid rgba(105, 221, 235, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(5, 7, 9, 0.08), rgba(5, 7, 9, 0.82)),
    var(--post-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 10px;
}

.post-media span,
.watch-media span {
  width: fit-content;
  border: 1px solid rgba(244, 184, 68, 0.32);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  padding: 5px 8px;
  text-transform: uppercase;
}

.social-post.danger-post {
  border-color: rgba(255, 95, 79, 0.42);
}

.post-source {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-source span {
  border: 1px solid rgba(218, 177, 96, 0.18);
  border-radius: 999px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 950;
  padding: 4px 8px;
  text-transform: uppercase;
}

.social-post p {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 0;
}

.quick-jump a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105, 221, 235, 0.24);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.95);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.quick-jump a:first-child,
.quick-jump a:nth-child(2) {
  border-color: rgba(244, 184, 68, 0.42);
}

.quick-jump a:hover {
  background: rgba(19, 34, 39, 0.96);
  color: var(--green);
}

.rights-primer h2 {
  color: #ffffff;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.12;
  max-width: 920px;
}

.rights-primer p,
.petition-path p {
  color: var(--soft);
  margin-bottom: 0;
}

.story-visual {
  min-height: 118px;
  position: relative;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(105, 221, 235, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(5, 7, 9, 0.18), rgba(5, 7, 9, 0.82)),
    var(--story-image, linear-gradient(135deg, rgba(82, 216, 255, 0.26), rgba(244, 184, 68, 0.16) 48%, rgba(66, 242, 170, 0.16)));
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 10px;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
}

.story-visual > * {
  position: relative;
  z-index: 1;
}

.story-topic-gun-rights {
  --story-image:
    radial-gradient(circle at 76% 24%, rgba(66, 242, 170, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(12, 22, 18, 0.94), rgba(45, 55, 43, 0.78)),
    url("https://images.unsplash.com/photo-1595590424283-b8f17842773f?auto=format&fit=crop&w=1000&q=80");
}

.story-topic-rights-alert {
  --story-image:
    radial-gradient(circle at 82% 18%, rgba(255, 95, 79, 0.22), transparent 21%),
    linear-gradient(135deg, rgba(56, 12, 10, 0.94), rgba(48, 28, 15, 0.78)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1000&q=80");
}

.story-topic-colorado {
  --story-image:
    radial-gradient(circle at 28% 18%, rgba(143, 184, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(18, 38, 52, 0.92), rgba(18, 24, 20, 0.86)),
    url("https://images.unsplash.com/photo-1605980776566-0486c3ac7617?auto=format&fit=crop&w=1000&q=80");
}

.story-topic-courts {
  --story-image:
    linear-gradient(90deg, transparent 0 12%, rgba(244, 240, 230, 0.08) 12% 17%, transparent 17% 28%, rgba(244, 240, 230, 0.08) 28% 33%, transparent 33%),
    linear-gradient(135deg, rgba(32, 26, 20, 0.96), rgba(14, 20, 24, 0.9)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1000&q=80");
}

.story-topic-capitol {
  --story-image:
    radial-gradient(ellipse at 50% 20%, rgba(218, 177, 96, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(20, 30, 34, 0.82), rgba(8, 12, 12, 0.72)),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1000&q=80");
}

.story-topic-signal {
  --story-image:
    radial-gradient(circle at 75% 24%, rgba(143, 184, 255, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(20, 29, 34, 0.94), rgba(20, 26, 18, 0.88)),
    url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1000&q=80");
}

.story-symbol {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(105, 221, 235, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.58);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  padding: 6px 8px;
  text-transform: uppercase;
}

.symbol-mark {
  min-width: 26px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(82, 216, 255, 0.12);
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
}

.story-symbol.priority {
  border-color: rgba(244, 184, 68, 0.5);
  color: #ffe2a3;
}

.story-symbol.priority .symbol-mark,
.story-symbol.alert .symbol-mark {
  background: rgba(244, 184, 68, 0.15);
  color: var(--amber);
}

.story-symbol.gun {
  border-color: rgba(66, 242, 170, 0.42);
  color: #d7ffef;
}

.story-symbol.gun .symbol-mark {
  background: rgba(66, 242, 170, 0.14);
  color: var(--green);
}

.story-symbol.alert {
  border-color: rgba(255, 79, 109, 0.42);
  color: #ffd6de;
}

.story-symbol.economy .symbol-mark {
  color: var(--amber);
}

.story-symbol.tech .symbol-mark {
  color: var(--blue);
}

.story-symbol.local .symbol-mark {
  color: var(--green);
}

.story-visual > span:not(.story-symbol) {
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 100%;
}

.hero-visual span {
  color: var(--green);
  font-size: 13px;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.timeline-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 16, 0.9);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  padding: 12px;
}

.gun-timeline-panel {
  border: 1px solid rgba(244, 184, 68, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.08), transparent 34%),
    rgba(8, 13, 16, 0.92);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  padding: 12px;
}

.priority-timeline {
  border-color: rgba(244, 184, 68, 0.52);
}

.timeline-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.timeline-columns > div > h3 {
  color: var(--green);
  font-size: 15px;
  margin: 10px 0;
  text-transform: uppercase;
}

.gun-timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.timeline-impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.timeline-impact-strip span {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(218, 177, 96, 0.22);
  border-radius: 7px;
  background: rgba(5, 7, 9, 0.46);
  padding: 8px;
}

.timeline-impact-strip strong {
  color: var(--amber);
  font-size: 14px;
  line-height: 1;
}

.timeline-impact-strip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.gun-timeline-item {
  min-height: 138px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  border: 1px solid rgba(244, 184, 68, 0.22);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.94);
  padding: 10px;
}

.petition-path {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
}

.gun-year {
  width: fit-content;
  border: 1px solid rgba(244, 184, 68, 0.38);
  border-radius: 999px;
  background: rgba(244, 184, 68, 0.1);
  color: var(--amber);
  font-size: 10px;
  font-weight: 950;
  padding: 4px 8px;
}

.gun-timeline-item h3 {
  font-size: 12px;
  line-height: 1.22;
  margin-bottom: 5px;
}

.gun-timeline-item p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  margin-bottom: 7px;
}

.gun-timeline-item a {
  color: var(--blue);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-status-list span.complete {
  border-color: rgba(66, 242, 170, 0.36);
  background: rgba(66, 242, 170, 0.08);
  color: #d7ffef;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(105, 221, 235, 0.12);
  padding: 12px 0;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(66, 242, 170, 0.72);
  margin-top: 6px;
}

.timeline-type {
  color: var(--amber);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 15px;
  margin-bottom: 0;
}

.flow-strip div,
.request-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.94);
  box-shadow: var(--shadow);
}

.flow-strip div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
}

.flow-strip strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.flow-strip span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.request-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.request-card .stack {
  margin-top: 4px;
}

.request-card textarea {
  min-height: 90px;
}

.request-card h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.request-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.lead-package {
  margin-bottom: 14px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.14), rgba(255, 79, 109, 0.06)),
    rgba(11, 17, 20, 0.98);
}

.priority-label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: end;
}

.lead-story h2 {
  font-size: clamp(24px, 3.4vw, 38px);
  max-width: 960px;
}

.lead-story p {
  color: var(--soft);
  max-width: 860px;
}

.lead-actions {
  justify-content: flex-end;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  background: rgba(16, 25, 29, 0.92);
}

.stats strong {
  color: var(--blue);
  display: block;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stats span,
.state-tile span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.front-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.lead-news-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.lower-action-layout {
  grid-template-columns: 360px minmax(0, 1fr);
}

.main-feed,
.side-rail {
  display: grid;
  gap: 14px;
}

.main-feed {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 16, 0.82);
  box-shadow: var(--shadow);
  padding: 10px;
}

.section-heading,
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.section-heading h2,
.split-heading h2 {
  margin-bottom: 0;
}

.section-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.story-card {
  min-height: 310px;
  background: transparent;
  box-shadow: none;
}

.story-card:first-child {
  grid-column: span 2;
  min-height: 310px;
}

.story-card.needs-review .story-face {
  border-color: rgba(244, 184, 68, 0.42);
}

.story-card.urgent-story .story-face {
  border-color: rgba(255, 79, 109, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 79, 109, 0.12), transparent 42%),
    rgba(13, 21, 25, 0.97);
}

.story-card-inner {
  min-height: inherit;
  height: 100%;
}

.story-face {
  min-height: inherit;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.95);
  box-shadow: var(--shadow);
  padding: 12px;
}

.story-front {
  position: static;
}

.story-card h3 {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-card p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.flip-hint {
  color: var(--amber);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card .why {
  color: var(--soft);
  font-size: 10px;
  -webkit-line-clamp: 4;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-meta span {
  max-width: 100%;
  border: 1px solid rgba(105, 221, 235, 0.16);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  padding: 4px 8px;
  text-transform: uppercase;
}

.card-meta .state-chip {
  border-color: rgba(218, 177, 96, 0.45);
  background: rgba(218, 177, 96, 0.12);
  color: #ffe2a3;
}

.card-meta .state-chip.has-state {
  border-color: rgba(66, 242, 170, 0.38);
  background: rgba(66, 242, 170, 0.1);
  color: #d7ffef;
}

.card-meta .state-chip.national-state {
  border-color: rgba(143, 184, 255, 0.34);
  background: rgba(143, 184, 255, 0.1);
  color: #dbe8ff;
}

.story-actions {
  margin-top: 2px;
}

.story-actions a {
  color: var(--blue);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-actions a:first-child,
.story-actions a:nth-child(2) {
  border: 1px solid rgba(105, 221, 235, 0.2);
  border-radius: 6px;
  padding: 6px 8px;
}

.story-actions a:nth-child(2) {
  color: var(--green);
}

.compact-actions {
  gap: 6px;
}

.compact-actions a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.command-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 310px;
  gap: 12px;
  align-items: start;
}

.command-sidebar,
.command-context,
.command-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.command-sidebar,
.command-context {
  position: sticky;
  top: 92px;
}

.command-context {
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.command-context::-webkit-scrollbar {
  width: 8px;
}

.command-context::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.command-context::-webkit-scrollbar-thumb {
  background: rgba(218, 177, 96, 0.38);
  border-radius: 999px;
}

.command-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 16, 0.92);
  box-shadow: var(--shadow);
  padding: 11px;
}

.section-tabs {
  display: grid;
  gap: 7px;
}

.section-tabs a {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(105, 221, 235, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
  padding: 9px;
}

.section-tabs a:hover {
  border-color: rgba(66, 242, 170, 0.42);
  background: rgba(66, 242, 170, 0.08);
  color: #ffffff;
}

.section-tabs strong {
  font-size: 12px;
  line-height: 1.1;
}

.section-tabs span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.alert-overview {
  border: 1px solid rgba(218, 177, 96, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(218, 177, 96, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(13, 21, 25, 0.98), rgba(7, 10, 12, 0.96));
  box-shadow: var(--shadow);
  padding: 15px;
}

.alert-overview h1 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
  margin-bottom: 0;
  text-transform: none;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.signal-metrics a {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(105, 221, 235, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  padding: 9px;
}

.signal-metrics strong {
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
}

.signal-metrics span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.priority-alert,
.bill-alert-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(244, 184, 68, 0.22);
  border-radius: 8px;
  background: rgba(7, 10, 12, 0.72);
  padding: 12px;
}

.priority-alert h2 {
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.18;
  margin-bottom: 0;
}

.priority-alert p,
.bill-alert-card p {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 0;
}

.issue-band {
  border-color: rgba(66, 242, 170, 0.24);
}

.story-strip,
.bill-alert-grid,
.command-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.story-strip .story-card,
.compact-story-grid .story-card {
  min-height: 250px;
}

.compact-story-grid .story-card:first-child,
.story-strip .story-card:first-child {
  grid-column: auto;
}

.bill-alert-card h3 {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 0;
}

.rights-mini-card {
  border-color: rgba(66, 242, 170, 0.28);
}

.rights-event-line {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 1fr);
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 14px 2px 3px;
}

.rights-event-line::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 23px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
  opacity: 0.6;
}

.rights-event-line button {
  position: relative;
  display: grid;
  gap: 5px;
  justify-items: center;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  text-transform: none;
}

.rights-event-line button::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--amber);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(7, 8, 6, 0.9);
}

.rights-event-line button.is-active::before,
.rights-event-line button:hover::before {
  border-color: var(--green);
  background: var(--green);
}

.rights-event-line span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 950;
}

.rights-event-line strong {
  max-width: 100%;
  color: var(--soft);
  font-size: 9px;
  line-height: 1.15;
  text-align: center;
}

.rail-card {
  padding: 13px;
  background: rgba(13, 21, 25, 0.95);
}

.rail-card h2 {
  color: var(--green);
  font-size: 15px;
  line-height: 1.2;
}

.rail-intro {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
}

.action-focus {
  border-color: rgba(244, 184, 68, 0.36);
}

.social-watch-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-watch-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.95);
  box-shadow: var(--shadow);
  padding: 12px;
}

.social-watch-card.danger-post {
  border-color: rgba(255, 95, 79, 0.48);
}

.watch-media {
  min-height: 220px;
}

.social-watch-card h2 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.22;
  margin-bottom: 0;
}

.social-watch-card p {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 0;
}

.mini-response {
  padding: 10px;
}

.mini-response h3 {
  font-size: 11px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.admin-queue-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.admin-queue-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.94);
  padding: 12px;
}

.admin-queue-item.status-needs_review {
  border-color: rgba(244, 184, 68, 0.42);
}

.admin-queue-item.status-ready_to_send,
.admin-queue-item.status-approved {
  border-color: rgba(66, 242, 170, 0.38);
}

.admin-queue-item.status-hold,
.admin-queue-item.status-rejected {
  border-color: rgba(255, 95, 79, 0.42);
}

.queue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.muted-note {
  color: var(--muted);
  font-size: 11px;
}

.review-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.review-checklist span {
  border: 1px solid rgba(218, 177, 96, 0.18);
  border-radius: 6px;
  background: rgba(5, 7, 9, 0.38);
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  padding: 8px;
}

.provider-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-color: rgba(66, 242, 170, 0.24);
}

.provider-status h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

.provider-status p {
  font-size: 12px;
  margin-bottom: 0;
}

.readiness-grid,
.event-list {
  display: grid;
  gap: 10px;
}

.readiness-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.readiness-item,
.event-list article {
  border: 1px solid rgba(105, 221, 235, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 9, 0.42);
  padding: 10px;
}

.readiness-item h3 {
  font-size: 13px;
  line-height: 1.25;
  margin: 8px 0 5px;
}

.readiness-item p,
.event-list p {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 0;
}

.readiness-ready,
.readiness-seeded {
  border-color: rgba(66, 242, 170, 0.28);
}

.readiness-blocked {
  border-color: rgba(255, 95, 79, 0.34);
}

.rep-pulse-card {
  border-color: rgba(255, 79, 109, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 79, 109, 0.08), transparent 46%),
    rgba(13, 21, 25, 0.95);
}

.rights-mini-card {
  border-color: rgba(244, 184, 68, 0.28);
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.08), transparent),
    rgba(13, 21, 25, 0.95);
}

.daily-brief-card {
  border-color: rgba(66, 242, 170, 0.3);
}

.mini-story {
  border-top: 1px solid rgba(105, 221, 235, 0.13);
  margin-top: 12px;
  padding-top: 12px;
}

.mini-story h3 {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.mini-story p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  margin-bottom: 5px;
}

.quiet-card {
  background: rgba(9, 14, 17, 0.92);
}

button,
.button-link,
select,
input,
textarea {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--ink);
  color-scheme: dark;
  font: inherit;
  padding: 9px 12px;
}

select option {
  background: #101a20;
  color: #f8f3e9;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 241, 231, 0.56);
  opacity: 1;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-color: rgba(105, 221, 235, 0.48);
  color: #001014;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

button:hover,
.button-link:hover {
  color: #001014;
  filter: brightness(1.08);
}

.button-link.ghost {
  background: rgba(82, 216, 255, 0.07);
  border-color: var(--line);
  color: var(--blue);
}

.button-link.ghost:hover {
  color: var(--green);
}

.panel {
  padding: 18px;
}

.admin-panel {
  margin-top: 16px;
}

.story,
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(105, 221, 235, 0.14);
}

.story:first-of-type,
.row:first-of-type {
  border-top: 0;
}

.review-row {
  grid-template-columns: minmax(0, 1fr) 170px;
}

.meta,
.row p,
.hero p {
  color: var(--muted);
}

.meta {
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.risk {
  border-left: 3px solid var(--amber);
  background: rgba(244, 184, 68, 0.09);
  color: #ffd98b;
  font-weight: 850;
  padding: 8px 10px;
}

.review {
  display: grid;
  align-content: start;
  gap: 8px;
}

.review input,
.review select {
  width: 100%;
}

.markdown,
.draft pre {
  white-space: pre-wrap;
  background: #050709;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  overflow: auto;
  padding: 14px;
}

.draft {
  border-top: 1px solid rgba(105, 221, 235, 0.14);
  padding-top: 16px;
}

.notice {
  background: rgba(244, 184, 68, 0.1);
  border: 1px solid rgba(244, 184, 68, 0.46);
  border-radius: 8px;
  color: #ffd98b;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stack,
.draft-form {
  display: grid;
  gap: 12px;
}

.stack label,
.draft-form label {
  color: #f8f3e9;
  display: grid;
  font-weight: 850;
  gap: 6px;
}

.stack input,
.stack select,
.stack textarea,
.draft-form input,
.draft-form select,
.draft-form textarea {
  width: 100%;
  background: #071016;
  color: #f8f3e9;
  -webkit-text-fill-color: #f8f3e9;
}

.stack input:focus,
.stack select:focus,
.stack textarea:focus,
.draft-form input:focus,
.draft-form select:focus,
.draft-form textarea:focus {
  border-color: rgba(66, 242, 170, 0.66);
  box-shadow: 0 0 0 3px rgba(66, 242, 170, 0.12);
  outline: none;
}

.draft-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.draft-form button {
  align-self: end;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.state-tile {
  min-height: 94px;
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.94);
  color: var(--ink);
}

.state-tile span {
  color: var(--soft);
  font-size: 11px;
}

.state-excellent,
.state-friendly {
  border-color: rgba(66, 242, 170, 0.32);
}

.state-mixed {
  border-color: rgba(218, 177, 96, 0.28);
}

.state-contested,
.state-restricted {
  border-color: rgba(255, 95, 79, 0.34);
}

.state-tile:hover {
  border-color: var(--line-strong);
  background: rgba(19, 34, 39, 0.96);
}

.checkline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  font-size: clamp(12px, 1.9vw, 13px);
  line-height: 1.32;
}

.checkline input {
  min-height: auto;
  margin-top: 3px;
  width: auto;
}

.checkline span {
  min-width: 0;
}

.checkline a {
  display: inline;
  white-space: normal;
}

.legal-consent {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(218, 177, 96, 0.24);
  border-radius: 8px;
  background: rgba(5, 7, 9, 0.42);
  padding: 12px;
}

.legal-consent .checkline {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.legal-links,
.profile-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-links a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-action-row {
  margin-top: 12px;
}

.logout-form {
  border-top: 1px solid rgba(105, 221, 235, 0.12);
  margin-top: 14px;
  padding-top: 12px;
}

.logout-form button {
  min-height: 34px;
  border-color: rgba(255, 95, 79, 0.28);
  color: #ffd6de;
  font-size: 12px;
  padding: 7px 10px;
}

.rights-map-panel {
  border-color: rgba(66, 242, 170, 0.24);
}

.rights-map-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}

.map-state {
  min-height: 58px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border: 1px solid rgba(105, 221, 235, 0.12);
  border-radius: 7px;
  background: rgba(13, 21, 25, 0.95);
  color: var(--ink);
  text-align: center;
}

.map-state strong {
  font-size: 13px;
  line-height: 1;
}

.map-state span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
}

.map-state em {
  color: #ffd6de;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.map-excellent {
  background: linear-gradient(180deg, rgba(66, 242, 170, 0.24), rgba(13, 21, 25, 0.96));
}

.map-friendly {
  background: linear-gradient(180deg, rgba(119, 229, 150, 0.18), rgba(13, 21, 25, 0.96));
}

.map-mixed {
  background: linear-gradient(180deg, rgba(218, 177, 96, 0.2), rgba(13, 21, 25, 0.96));
}

.map-contested {
  background: linear-gradient(180deg, rgba(255, 132, 72, 0.2), rgba(13, 21, 25, 0.96));
}

.map-restricted {
  background: linear-gradient(180deg, rgba(255, 79, 109, 0.24), rgba(13, 21, 25, 0.96));
}

.full-span {
  grid-column: 1 / -1;
}

.official-workbench {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.selector-panel,
.composer-panel,
.message-editor-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 25, 0.94);
  box-shadow: var(--shadow);
  padding: 16px;
}

.selector-panel {
  position: sticky;
  top: 92px;
}

.muted-copy {
  color: var(--muted);
  font-size: 14px;
}

.selector-help {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.selector-help h3 {
  margin-bottom: 6px;
}

.selector-help p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.action-composer {
  display: grid;
  gap: 16px;
}

.rep-section {
  display: grid;
  gap: 10px;
}

.rep-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.rep-section-heading h3 {
  color: #fff;
  margin: 0;
}

.rep-section-heading span,
.district-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.district-note {
  border: 1px solid rgba(218, 177, 96, 0.22);
  border-radius: 7px;
  background: rgba(218, 177, 96, 0.08);
  padding: 9px 10px;
}

.official-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.senators-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.official-option {
  cursor: pointer;
}

.official-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.official-option-body {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(105, 221, 235, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.official-option input:checked + .official-option-body {
  border-color: rgba(66, 242, 170, 0.62);
  background:
    linear-gradient(135deg, rgba(66, 242, 170, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
}

.select-pill {
  width: fit-content;
  border: 1px solid rgba(66, 242, 170, 0.34);
  border-radius: 999px;
  background: rgba(66, 242, 170, 0.08);
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  padding: 5px 8px;
  text-transform: uppercase;
}

.official-option input:checked + .official-option-body .select-pill {
  background: var(--green);
  color: #07110c;
}

.official-option-body strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.12;
}

.official-option-body small {
  color: var(--muted);
  font-weight: 800;
}

.official-option-body a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.message-editor-panel {
  display: grid;
  gap: 12px;
  border-color: rgba(66, 242, 170, 0.24);
}

.story-reader {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
}

.story-reader-news {
  width: min(1180px, 100%);
}

.story-reader h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.02;
  max-width: 820px;
  text-transform: none;
}

.action-reader {
  width: min(980px, 100%);
}

.action-reader h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  max-width: 860px;
}

.action-reader .reader-summary {
  font-size: 15px;
  max-width: 860px;
}

.reader-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.reader-main,
.reader-side {
  display: grid;
  gap: 14px;
}

.reader-hero-image {
  min-height: 260px;
  display: grid;
  align-items: end;
  border: 1px solid rgba(105, 221, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 7, 9, 0.05), rgba(5, 7, 9, 0.86)),
    var(--story-image);
  background-position: center;
  background-size: cover;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 14px;
}

.reader-hero-image span {
  width: fit-content;
  border: 1px solid rgba(244, 184, 68, 0.32);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.76);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.reader-summary {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.45;
}

.reader-block {
  border-top: 1px solid rgba(105, 221, 235, 0.15);
  margin-top: 18px;
  padding-top: 18px;
}

.signal-story-block {
  border-top: 0;
  border: 1px solid rgba(105, 221, 235, 0.2);
  border-radius: 8px;
  background: rgba(8, 13, 16, 0.72);
  margin-top: 0;
  padding: 16px;
}

.reader-block h2 {
  color: #ffffff;
  font-size: clamp(20px, 2.8vw, 30px);
}

.reader-block p {
  color: var(--soft);
  line-height: 1.55;
}

.reader-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.reader-facts span {
  border: 1px solid rgba(105, 221, 235, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  padding: 8px;
}

.reader-side {
  position: sticky;
  top: 92px;
}

.action-reader-block {
  border: 1px solid rgba(244, 184, 68, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 184, 68, 0.1), rgba(66, 242, 170, 0.05)),
    rgba(13, 21, 25, 0.94);
  padding: 16px;
}

.source-story-callout {
  border: 1px solid rgba(105, 221, 235, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(105, 221, 235, 0.1), rgba(244, 184, 68, 0.06)),
    rgba(8, 13, 16, 0.94);
  padding: 14px;
}

.source-story-callout h2 {
  color: #ffffff;
  font-size: clamp(20px, 3vw, 30px);
}

.back-link {
  color: var(--muted);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .topbar {
    align-items: center;
    flex-direction: row;
  }

  nav {
    justify-content: flex-end;
  }

  .front-hero,
  .top-intel-row,
  .command-layout,
  .rights-clock,
  .quick-jump,
  .rights-primer,
  .petition-path,
  .lead-hero-card,
  .front-layout,
  .reader-news-layout,
  .lead-story,
  .timeline-columns,
  .official-workbench,
  .flow-strip,
  .request-grid,
  .story,
  .row,
  .grid-two,
  .draft-form {
    grid-template-columns: 1fr;
  }

  .clock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selector-panel {
    position: static;
  }

  .lead-actions {
    justify-content: flex-start;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .social-post-grid,
  .state-grid,
  .timeline-list,
  .gun-timeline-list {
    grid-template-columns: 1fr;
  }

  .rights-map-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .story-card:first-child {
    grid-column: auto;
  }

  .reader-side {
    position: static;
  }

  .command-sidebar,
  .command-context {
    position: static;
  }

  .command-context {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .section-tabs,
  .signal-metrics,
  .story-strip,
  .bill-alert-grid,
  .command-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card,
  .story-card:first-child {
    min-height: 310px;
  }
}

@media (max-width: 560px) {
  main {
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  nav {
    width: min(300px, calc(100vw - 24px));
  }

  nav a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .headline-ticker {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(34px, 13vw, 52px);
  }

  .hero-copy {
    min-height: 0;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section-tabs,
  .signal-metrics,
  .story-strip,
  .bill-alert-grid,
  .command-social-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .rights-clock,
  .service-card,
  .lead-package,
  .story-card,
  .rail-card,
  .panel,
  .story-reader {
    padding: 14px;
  }

  .story-card,
  .story-card:first-child {
    min-height: 318px;
  }

  .hero-visual {
    min-height: 100px;
  }

  .clock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gun-timeline-list {
    grid-auto-columns: minmax(240px, 86vw);
  }
}

/* Readability override: keep form controls and representative cards legible. */
.panel,
.request-card,
.selector-panel,
.composer-panel,
.message-editor-panel,
.official-option-body,
.reader-block,
.notice {
  color: #f8f3e9 !important;
}

.panel h1,
.panel h2,
.panel h3,
.request-card h1,
.request-card h2,
.request-card h3,
.official-option-body strong,
.reader-block h1,
.reader-block h2,
.reader-block h3,
.notice,
.draft-form label,
.stack label {
  color: #ffffff !important;
}

.panel p,
.request-card p,
.official-option-body small,
.reader-block p,
.draft-form label,
.stack label,
.checkline {
  color: #efe7d8 !important;
}

select,
input:not([type="checkbox"]):not([type="radio"]),
textarea,
.draft-form select,
.draft-form input:not([type="checkbox"]):not([type="radio"]),
.draft-form textarea,
.stack select,
.stack input:not([type="checkbox"]):not([type="radio"]),
.stack textarea {
  background: #fffaf0 !important;
  color: #071016 !important;
  -webkit-text-fill-color: #071016 !important;
  border: 2px solid rgba(218, 177, 96, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

select option,
select optgroup {
  background: #fffaf0 !important;
  color: #071016 !important;
}

input::placeholder,
textarea::placeholder {
  color: #5b6470 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #5b6470 !important;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #42f2aa;
}

.card-meta span,
.section-link,
.back-link {
  color: #f5d28b !important;
}

/* Public Signal Desk site refresh */
:root {
  --patriot-navy: #08111f;
  --patriot-blue: #1f5f9f;
  --patriot-red: #b83a35;
  --paper: #f6f1e7;
  --gold: #d7aa4f;
}

body {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(7, 8, 6, 0.98) 46%, rgba(12, 18, 24, 1)),
    radial-gradient(circle at 12% 0%, rgba(31, 95, 159, 0.18), transparent 30%);
}

main {
  width: min(1180px, 100%);
}

.topbar {
  background: rgba(6, 12, 22, 0.96);
  border-bottom-color: rgba(215, 170, 79, 0.22);
}

.brand-mark {
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.12), transparent),
    linear-gradient(135deg, rgba(31, 95, 159, 0.58), rgba(184, 58, 53, 0.22));
  border-color: rgba(246, 241, 231, 0.28);
}

.brand-copy strong {
  letter-spacing: 0;
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: stretch;
  margin: 8px 0 16px;
}

.hero-story-panel,
.paid-action-card,
.lead-news-card,
.info-strip,
.timeline-preview,
.news-card {
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.hero-story-panel {
  min-height: clamp(360px, 34vw, 430px);
  position: relative;
  display: block;
  padding: clamp(18px, 4vw, 36px);
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.96), rgba(8, 17, 31, 0.74) 48%, rgba(8, 17, 31, 0.42)),
    linear-gradient(180deg, rgba(184, 58, 53, 0.12), transparent 45%),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: clamp(18px, 4vw, 36px) clamp(58px, 7vw, 92px) clamp(38px, 5vw, 58px) clamp(18px, 4vw, 36px);
  display: grid;
  grid-template-rows: auto minmax(0, auto) minmax(0, auto) auto;
  align-content: end;
  gap: 8px;
  max-width: 860px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 1.25s ease, transform 1.25s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-story-panel h1 {
  max-width: 820px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.02;
  text-transform: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-lede {
  max-width: 720px;
  color: rgba(246, 241, 231, 0.86);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.42;
  display: -webkit-box;
  min-height: calc(1.42em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  min-height: 0;
  border: 1px solid rgba(246, 241, 231, 0.54);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.18);
  padding: 0;
}

.hero-dots button.is-active {
  width: 24px;
  background: var(--green);
  border-color: var(--green);
}

.paid-action-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(215, 170, 79, 0.12), transparent 40%),
    rgba(13, 22, 31, 0.96);
}

.paid-action-card h2 {
  color: var(--paper);
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1.05;
}

.paid-action-card p,
.paid-action-card li {
  color: rgba(246, 241, 231, 0.78);
}

.paid-action-card ol,
.mini-flow {
  display: grid;
  gap: 7px;
  margin: 0;
}

.paid-action-card ol {
  padding-left: 22px;
}

.mini-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-flow span {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 6px;
  background: rgba(246, 241, 231, 0.055);
  color: rgba(246, 241, 231, 0.82);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.rights-clock-wide {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) auto;
  align-items: center;
  gap: 16px;
  border-color: rgba(215, 170, 79, 0.38);
  background:
    linear-gradient(90deg, rgba(184, 58, 53, 0.14), rgba(31, 95, 159, 0.1)),
    rgba(10, 17, 25, 0.96);
  padding: 16px;
  transition: border-color 0.9s ease, background 0.9s ease, opacity 0.9s ease;
}

.rights-clock-wide h2 {
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.08;
  min-height: calc(1.08em * 2);
  margin-bottom: 6px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rights-clock-wide p {
  color: rgba(246, 241, 231, 0.75);
  min-height: calc(1.4em * 2);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: opacity 0.9s ease;
}

.rights-clock-wide.is-changing h2,
.rights-clock-wide.is-changing p {
  opacity: 0.38;
}

.stay-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.stay-lane {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 9px;
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 95, 159, 0.1), transparent 48%),
    rgba(12, 20, 28, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.stay-lane:hover {
  border-color: rgba(66, 242, 170, 0.42);
  background:
    linear-gradient(180deg, rgba(66, 242, 170, 0.1), transparent 48%),
    rgba(12, 20, 28, 0.98);
  color: var(--paper);
}

.stay-lane-primary {
  border-color: rgba(215, 170, 79, 0.36);
  background:
    linear-gradient(180deg, rgba(215, 170, 79, 0.14), transparent 52%),
    rgba(12, 20, 28, 0.96);
}

.lane-icon {
  width: 42px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 231, 0.18);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.07);
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
}

.stay-lane strong {
  color: var(--paper);
  font-size: 17px;
  line-height: 1.1;
}

.stay-lane small {
  color: rgba(246, 241, 231, 0.68);
  font-size: 12px;
  line-height: 1.38;
}

.lead-news-section {
  margin-bottom: 18px;
}

.lead-news-card {
  display: grid;
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  min-height: 360px;
  height: 360px;
  overflow: hidden;
  background: rgba(12, 20, 28, 0.96);
}

.lead-image {
  display: grid;
  align-items: end;
  min-height: 280px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.06), rgba(8, 17, 31, 0.88)),
    url("https://images.unsplash.com/photo-1595590424283-b8f17842773f?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
}

.lead-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 0;
  padding: clamp(20px, 4vw, 34px);
}

.lead-copy h2 {
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.02;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.lead-copy p:not(.eyebrow) {
  color: rgba(246, 241, 231, 0.76);
  font-size: 15px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  gap: 18px;
  align-items: start;
}

.main-feed {
  display: grid;
  gap: 18px;
}

.site-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.clean-heading {
  border-bottom-color: rgba(246, 241, 231, 0.14);
  margin-bottom: 0;
}

.clean-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-card {
  min-height: 250px;
  height: 250px;
  display: grid;
  grid-template-rows: auto minmax(0, auto) minmax(0, 1fr) auto;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(31, 95, 159, 0.08), transparent 42%),
    rgba(12, 20, 28, 0.94);
  padding: 15px;
}

.news-card-top,
.news-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-card-top > span:not(.issue-badge),
.news-card-footer span {
  color: rgba(246, 241, 231, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.18;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card p {
  color: rgba(246, 241, 231, 0.72);
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-card-footer a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.issue-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(246, 241, 231, 0.18);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.07);
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  padding: 6px 9px;
  text-transform: uppercase;
}

.issue-badge strong {
  min-width: 28px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(215, 170, 79, 0.18);
  color: var(--gold);
  font-size: 11px;
}

.badge-gun {
  border-color: rgba(66, 242, 170, 0.34);
}

.badge-gun strong {
  background: rgba(66, 242, 170, 0.14);
  color: #8ff0c6;
}

.badge-alert {
  border-color: rgba(184, 58, 53, 0.48);
}

.badge-alert strong {
  background: rgba(184, 58, 53, 0.24);
  color: #ffb8b2;
}

.badge-local strong,
.badge-speech strong {
  background: rgba(31, 95, 159, 0.25);
  color: #9fcaff;
}

.info-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(184, 58, 53, 0.12), rgba(31, 95, 159, 0.08)),
    rgba(12, 20, 28, 0.94);
  padding: 18px;
}

.info-strip h2,
.timeline-preview h2 {
  margin-bottom: 8px;
}

.info-strip p {
  color: rgba(246, 241, 231, 0.76);
  margin-bottom: 0;
}

.reader-loop {
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 95, 159, 0.1), rgba(184, 58, 53, 0.08)),
    rgba(12, 20, 28, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.reader-loop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.reader-loop-grid article {
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: 8px;
  background: rgba(246, 241, 231, 0.045);
  padding: 14px;
}

.reader-loop-grid strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.reader-loop-grid h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.16;
  margin: 8px 0;
}

.reader-loop-grid p {
  color: rgba(246, 241, 231, 0.68);
  font-size: 13px;
  line-height: 1.42;
  margin-bottom: 0;
}

.timeline-preview {
  background: rgba(12, 20, 28, 0.94);
  padding: 18px;
}

.timeline-preview-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.timeline-preview-list article {
  border-top: 3px solid rgba(215, 170, 79, 0.55);
  background: rgba(246, 241, 231, 0.045);
  border-radius: 0 0 8px 8px;
  padding: 12px;
}

.timeline-preview-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.timeline-preview-list h3 {
  font-size: 14px;
  line-height: 1.22;
  margin: 8px 0;
}

.timeline-preview-list p {
  color: rgba(246, 241, 231, 0.68);
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 0;
}

.action-rail-card {
  border-color: rgba(215, 170, 79, 0.36);
  background:
    linear-gradient(180deg, rgba(215, 170, 79, 0.13), transparent 44%),
    rgba(12, 20, 28, 0.96);
}

.rights-watch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 16px;
  align-items: stretch;
  margin: 8px 0 16px;
}

.rights-watch-hero > div,
.rights-loss-card,
.rights-action-strip article,
.rights-story-card {
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rights-watch-hero > div {
  min-height: 330px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.96), rgba(8, 17, 31, 0.72)),
    linear-gradient(180deg, rgba(184, 58, 53, 0.15), transparent 50%),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  padding: clamp(22px, 5vw, 46px);
}

.rights-watch-hero h1 {
  max-width: 880px;
  font-size: clamp(36px, 6vw, 68px);
  text-transform: none;
}

.rights-watch-hero p {
  max-width: 720px;
  color: rgba(246, 241, 231, 0.82);
  font-size: clamp(16px, 2vw, 20px);
}

.rights-loss-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(215, 170, 79, 0.16), transparent 46%),
    rgba(12, 20, 28, 0.96);
  padding: 22px;
}

.rights-action-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.rights-action-strip article {
  background: rgba(12, 20, 28, 0.94);
  padding: 16px;
}

.rights-action-strip strong {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(66, 242, 170, 0.14);
  color: var(--green);
  margin-bottom: 10px;
}

.rights-action-strip h2,
.rights-loss-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.rights-action-strip p {
  color: rgba(246, 241, 231, 0.72);
  margin-bottom: 0;
}

.rights-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.rights-story-card {
  display: grid;
  align-content: space-between;
  gap: 13px;
  background:
    linear-gradient(180deg, rgba(31, 95, 159, 0.1), transparent 48%),
    rgba(12, 20, 28, 0.94);
  padding: 16px;
}

.rights-story-card h3 {
  font-size: 20px;
  line-height: 1.18;
  margin: 0;
}

.rights-story-card p,
.rights-loss-card p {
  color: rgba(246, 241, 231, 0.74);
}

.rights-story-card .hero-actions {
  align-self: end;
}

.rights-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 16px;
  align-items: start;
}

.rights-timeline-list {
  display: grid;
  gap: 10px;
}

.rights-timeline-list article {
  border-left: 4px solid rgba(215, 170, 79, 0.55);
  background: rgba(246, 241, 231, 0.045);
  border-radius: 0 8px 8px 0;
  padding: 12px;
}

.rights-timeline-list span {
  color: var(--gold, var(--amber));
  font-size: 12px;
  font-weight: 950;
}

.rights-timeline-list h3 {
  font-size: 16px;
  margin: 6px 0;
}

.rights-timeline-list p {
  color: rgba(246, 241, 231, 0.68);
  font-size: 13px;
  margin-bottom: 0;
}

.rail-card h2 {
  color: var(--paper);
  font-size: 20px;
}

.rail-intro,
.mini-story p {
  color: rgba(246, 241, 231, 0.68);
}

@media (max-width: 980px) {
  .site-hero,
  .rights-watch-hero,
  .rights-action-strip,
  .rights-story-grid,
  .rights-two-column,
  .public-grid,
  .lead-news-card,
  .rights-clock-wide,
  .info-strip,
  .stay-lanes,
  .reader-loop-grid {
    grid-template-columns: 1fr;
  }

  .site-rail {
    position: static;
  }

  .news-grid,
  .timeline-preview-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-story-panel {
    min-height: 360px;
  }

  .lead-news-card {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero-story-panel {
    min-height: 390px;
    padding: 20px;
  }

  .hero-slide {
    inset: 20px 20px 54px;
  }

  .hero-story-panel h1 {
    font-size: clamp(25px, 8.4vw, 36px);
    line-height: 1.05;
  }

  .hero-lede {
    font-size: 14px;
  }

  .news-grid,
  .timeline-preview-list,
  .reader-loop-grid {
    grid-template-columns: 1fr;
  }

  .paid-action-card,
  .lead-copy,
  .timeline-preview,
  .info-strip {
    padding: 15px;
  }

  .rights-clock-wide .clock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card {
    min-height: 235px;
    height: 235px;
  }
}
