:root {
  --ink: #090909;
  --ink-2: #11110f;
  --ink-3: #1b1a16;
  --paper: #f1ecdf;
  --paper-2: #ded5c3;
  --gold: #d7a928;
  --gold-bright: #f0c94f;
  --rust: #a83a25;
  --red: #d64535;
  --green: #55b878;
  --white: #fffdf7;
  --muted: #aaa69b;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(9, 9, 9, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  --shell: min(1180px, calc(100% - 40px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(215, 169, 40, 0.07), transparent 28rem),
    var(--ink);
  font: 400 1rem/1.62 var(--sans);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.018) 3px 4px);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vertical-align: -0.18em;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.narrow-wide {
  max-width: 1000px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.network-bar {
  min-height: 42px;
  color: var(--paper);
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.network-bar__inner,
.network-mark,
.network-links,
.masthead,
.masthead__right,
.primary-nav__inner,
.button,
.button-row,
.feature__top,
.section-head,
.feed-status,
.truth-band__inner,
.footer-bottom,
.policy-strip,
.check-list li,
.device-row,
.market-tabs,
.status-service {
  display: flex;
  align-items: center;
}

.network-bar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
}

.network-mark {
  gap: 9px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.network-mark span {
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--ink);
  background: var(--gold);
  font: 900 0.72rem/1 var(--sans);
  place-items: center;
}

.network-mark strong {
  font-size: 0.77rem;
}

.network-mark small {
  color: var(--muted);
  font-size: 0.68rem;
}

.network-links {
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.network-links a {
  color: var(--paper-2);
  text-decoration: none;
}

.network-links a:hover {
  color: var(--gold-bright);
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 184, 120, 0.12);
}

.status-dot--waiting {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 169, 40, 0.12);
}

.status-dot--error {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(214, 69, 53, 0.12);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(9, 9, 9, 0.96);
  border-bottom: 1px solid var(--line);
}

.masthead {
  min-height: 142px;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-grid;
  color: var(--white);
  line-height: 0.83;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__eyebrow {
  color: var(--gold);
  font: 900 1rem/1 var(--sans);
  letter-spacing: 0.24em;
}

.brand__name {
  margin-top: 5px;
  font: 900 clamp(3rem, 7vw, 5.6rem)/0.77 var(--display);
  letter-spacing: -0.035em;
}

.brand__tagline {
  margin-top: 13px;
  font: 800 0.8rem/1 var(--sans);
  letter-spacing: 0.12em;
}

.masthead__right {
  gap: 24px;
}

.coverage {
  padding-left: 24px;
  text-align: right;
  border-left: 1px solid var(--line);
}

.coverage span,
.coverage strong {
  display: block;
}

.coverage span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coverage strong {
  margin-top: 3px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  place-items: center;
}

.nav-toggle svg {
  width: 25px;
  height: 25px;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: inline;
}

.primary-nav {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}

.primary-nav__inner {
  min-height: 51px;
  gap: 2px;
  justify-content: space-between;
}

.primary-nav a {
  position: relative;
  padding: 17px 12px 15px;
  color: #c7c1b6;
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.primary-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.live-desk {
  color: var(--ink);
  background: var(--gold);
  border-bottom: 5px solid #7e6010;
}

.live-desk__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 245px;
}

.live-desk__intro {
  padding: 34px 42px 32px 0;
  border-right: 2px solid rgba(9, 9, 9, 0.45);
}

.live-desk h2 {
  margin: 5px 0 4px;
  font: 900 clamp(2.2rem, 4vw, 3.7rem)/0.96 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.live-desk p {
  max-width: 52ch;
  margin: 0 0 18px;
  font-weight: 650;
  line-height: 1.45;
}

.live-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 58, 37, 0.25);
}

.mini-feed {
  padding: 30px 0 28px 38px;
}

.mini-feed .feed-status {
  color: rgba(9, 9, 9, 0.68);
}

.feed-results--compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feed-results--compact .incident-card {
  padding: 14px 16px;
  background: rgba(9, 9, 9, 0.92);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px),
    var(--ink);
  background-size: 72px 100%;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  top: 0;
  right: -7vw;
  width: 31vw;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(215, 169, 40, 0.08) 18px 20px);
  transform: skewX(-9deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 8vw, 110px);
  padding-block: clamp(72px, 10vw, 136px);
}

.kicker,
.eyebrow,
.label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.kicker,
.eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 840px;
  margin: 17px 0 24px;
  font: 900 clamp(3.8rem, 8.2vw, 7.8rem)/0.82 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.gold-text {
  color: var(--gold);
}

.lede {
  max-width: 680px;
  margin: 0;
  color: #d5d0c4;
  font: 400 clamp(1.1rem, 2vw, 1.34rem)/1.55 var(--serif);
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  width: fit-content;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.button--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button--outline {
  color: currentColor;
  background: transparent;
  border-color: currentColor;
}

.button--quiet {
  color: var(--white);
  background: var(--ink-3);
  border-color: var(--line);
}

.button--ink {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.live-desk .button--outline {
  min-height: 40px;
  padding-block: 9px;
}

.hero__rail {
  display: grid;
  align-content: center;
  gap: 16px;
}

.stamp {
  position: relative;
  display: grid;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--gold);
  transform: rotate(-1.5deg);
  text-align: center;
  text-transform: uppercase;
}

.stamp::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 2px solid var(--ink);
}

.stamp span,
.stamp strong {
  position: relative;
}

.stamp span {
  font: 900 1.05rem/1.2 var(--sans);
  letter-spacing: 0.08em;
}

.stamp strong {
  margin-top: 6px;
  font: 900 1.75rem/1 var(--display);
}

.schedule-card {
  padding: 19px 20px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

.schedule-card__time {
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.schedule-card h2 {
  margin: 5px 0 4px;
  font: 900 1.12rem/1.15 var(--sans);
  text-transform: uppercase;
}

.schedule-card p {
  margin: 0;
  color: #bdb7aa;
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.section--tight {
  padding-top: 48px;
}

.section--flush-top {
  padding-top: 0;
}

.section--paper {
  color: var(--ink);
  background:
    linear-gradient(rgba(9, 9, 9, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 28px;
}

.section--rules {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}

.section--support {
  background: linear-gradient(100deg, #17140c, #080808 60%);
}

.section-head {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 3px 0 0;
  font: 900 clamp(2.1rem, 4vw, 3.5rem)/0.95 var(--display);
  text-transform: uppercase;
}

.section-head--dark .kicker,
.feed-panel--ink .kicker {
  color: #7a5a0d;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.story-card,
.feed-panel,
.feature,
.side-card,
.notice,
.tool-card,
.bot-card,
.device-grid article,
.auth-card,
.receipt-card,
.member-card,
.weather-now,
.access-gate {
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.story-card {
  min-height: 390px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
}

.story-card--lead {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(155deg, transparent 0 45%, rgba(215, 169, 40, 0.15) 45% 46%, transparent 46%),
    var(--ink);
}

.story-card--lead::before {
  position: absolute;
  top: -60px;
  right: -30px;
  content: "HB";
  color: rgba(215, 169, 40, 0.08);
  font: 900 14rem/1 var(--display);
}

.story-card__label,
.label {
  width: fit-content;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--gold);
}

.story-card h3 {
  position: relative;
  max-width: 560px;
  margin: 16px 0 10px;
  font: 900 clamp(2.1rem, 4vw, 4rem)/0.95 var(--display);
  text-transform: uppercase;
}

.story-card p {
  position: relative;
  max-width: 58ch;
  color: #c7c1b5;
}

.story-card a,
.side-card a,
.text-link {
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-grid__feed {
  display: grid;
}

.empty-state {
  display: grid;
  min-height: 170px;
  padding: 28px;
  align-content: center;
  color: #c9c3b6;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.empty-state strong {
  color: var(--white);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.empty-state p {
  margin: 5px 0 0;
}

.empty-state--small {
  min-height: 120px;
  color: rgba(9, 9, 9, 0.7);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(9, 9, 9, 0.34);
}

.empty-state--small strong,
.empty-state--ink strong {
  color: var(--ink);
}

.empty-state--ink {
  min-height: 260px;
  color: rgba(9, 9, 9, 0.7);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(9, 9, 9, 0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  position: relative;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
}

.feature::after {
  position: absolute;
  right: -26px;
  bottom: -25px;
  width: 120px;
  height: 120px;
  content: "";
  border: 18px solid rgba(215, 169, 40, 0.08);
  transform: rotate(20deg);
}

.feature__top {
  gap: 12px;
}

.icon-box,
.feature__monogram {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  place-items: center;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.feature h2 {
  max-width: 330px;
  margin: 30px 0 12px;
  font: 900 2.15rem/0.98 var(--display);
  text-transform: uppercase;
}

.feature p {
  position: relative;
  z-index: 1;
  color: #bdb7aa;
}

.feature .button {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.feature--weather {
  background: #17222b;
}

.feature--market {
  background: #1b1710;
}

.feature--money {
  background: #171717;
}

.rules-grid,
.support-callout,
.about-grid,
.support-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.rules-grid h2,
.support-callout h2,
.support-copy h2,
.about-grid h2 {
  margin: 8px 0 0;
  font: 900 clamp(2.7rem, 5vw, 5rem)/0.9 var(--display);
  text-transform: uppercase;
}

.check-list,
.plain-list,
.number-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.check-list svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.check-list span {
  color: #bdb7aa;
}

.check-list strong {
  color: var(--white);
}

.support-callout {
  grid-template-columns: 1.2fr 0.8fr;
}

.support-callout p {
  max-width: 62ch;
  color: #beb8ac;
}

.support-callout .button-row {
  justify-content: flex-end;
}

.truth-band {
  color: var(--ink);
  background: var(--gold);
}

.truth-band__inner {
  min-height: 62px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  color: #bcb6aa;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr);
  gap: clamp(30px, 5vw, 70px);
  padding-block: 70px 54px;
}

.brand--footer .brand__name {
  font-size: 4rem;
}

.footer-brand p {
  max-width: 430px;
}

.footer-brand .signature {
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 9px 0;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 70px;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(65px, 9vw, 120px);
  background: var(--ink-2);
  border-bottom: 7px solid var(--gold);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: -5vw;
  width: 38vw;
  height: 100%;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(215, 169, 40, 0.08) 24px 27px);
  transform: skewX(-10deg);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 12px 0 20px;
  font: 900 clamp(3.5rem, 8vw, 7.5rem)/0.84 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.page-hero .lede {
  max-width: 790px;
}

.page-hero--paper,
.page-hero--legal {
  color: var(--ink);
  background: var(--paper-2);
  border-color: var(--ink);
}

.page-hero--paper .kicker,
.page-hero--legal .kicker {
  color: #795b0a;
}

.page-hero--paper .lede,
.page-hero--legal .lede {
  color: rgba(9, 9, 9, 0.72);
}

.page-hero--alert {
  background: linear-gradient(110deg, #23110e, var(--ink) 62%);
  border-color: var(--red);
}

.page-hero--weather {
  background: linear-gradient(110deg, #162936, #080a0b 65%);
  border-color: #66a8c8;
}

.page-hero--money {
  background: linear-gradient(110deg, #27200b, #080808 65%);
}

.page-hero--market {
  background: linear-gradient(110deg, #2b1f0d, #080808 65%);
}

.page-hero--radio,
.page-hero--tv {
  background: linear-gradient(110deg, #191124, #080808 65%);
  border-color: #9b69c5;
}

.page-hero--member {
  background: linear-gradient(110deg, #11251c, #080808 65%);
  border-color: var(--green);
}

.page-hero--take,
.page-hero--support,
.page-hero--about {
  background: linear-gradient(110deg, #261a0a, #080808 65%);
}

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.split-banner > div {
  padding: 30px;
}

.split-banner > div + div {
  border-left: 2px solid var(--ink);
}

.split-banner h2 {
  margin: 14px 0 4px;
  font: 900 2.4rem/1 var(--display);
  text-transform: uppercase;
}

.split-banner p {
  margin: 0;
}

.label--take {
  color: var(--paper);
  background: var(--rust);
}

.feed-panel {
  padding: clamp(22px, 4vw, 36px);
}

.feed-panel--ink {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
  border-color: var(--line-dark);
}

.feed-panel--ink .button--quiet {
  color: var(--paper);
  background: var(--ink);
}

.feed-status {
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.incident-list,
.content-list,
.money-list,
.listing-grid {
  display: grid;
  gap: 10px;
}

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

.incident-list--compact {
  grid-template-columns: repeat(2, 1fr);
}

.weather-data__temp {
  margin: 18px 0 6px;
  color: var(--gold-bright);
  font: 900 clamp(4.5rem, 9vw, 8rem)/0.85 var(--display);
}

.weather-data h2 {
  margin: 0 0 10px;
  font: 900 clamp(2rem, 4vw, 3.5rem)/1 var(--display);
  text-transform: uppercase;
}

.weather-data small,
.money-card small {
  display: block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-list {
  display: grid;
  gap: 12px;
}

.incident-card,
.content-card,
.money-card,
.listing-card {
  padding: 18px;
  color: var(--paper);
  background: var(--ink-3);
  border: 1px solid var(--line);
}

.listing-card__image {
  width: calc(100% + 36px);
  height: 190px;
  margin: -18px -18px 18px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.incident-card__top,
.content-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.incident-card h3,
.content-card h3,
.money-card h3,
.listing-card h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.incident-card p,
.content-card p,
.money-card p,
.listing-card p {
  margin: 0;
  color: #c0baae;
}

.incident-card small,
.content-card small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.73rem;
  text-transform: uppercase;
}

.policy-strip {
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px 20px;
  color: var(--paper);
  background: #28210b;
  border: 1px solid rgba(215, 169, 40, 0.4);
}

.policy-strip > span {
  color: var(--gold);
}

.policy-strip svg {
  width: 32px;
  height: 32px;
}

.policy-strip p {
  margin: 0;
}

.dashboard-grid,
.weather-layout,
.form-layout,
.member-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.dashboard-grid--money {
  margin-top: 30px;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 24px;
}

.side-card h2 {
  margin: 5px 0 13px;
  font: 900 2rem/1 var(--display);
  text-transform: uppercase;
}

.side-card p {
  color: #bdb7aa;
}

.side-card--paper {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-dark);
}

.side-card--paper p {
  color: rgba(9, 9, 9, 0.7);
}

.plain-list {
  display: grid;
  gap: 7px;
}

.plain-list li {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}

.side-card--paper .plain-list li {
  border-color: var(--line-dark);
}

.presumption {
  margin-bottom: 24px;
  padding: 24px 28px;
  color: var(--paper);
  background: var(--rust);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.presumption strong {
  font: 900 1.65rem/1 var(--display);
  text-transform: uppercase;
}

.presumption p {
  margin: 5px 0 0;
}

.weather-now {
  min-height: 300px;
  padding: clamp(26px, 5vw, 48px);
  background: #14232d;
}

.weather-side {
  display: grid;
  gap: 18px;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  margin-top: 20px;
  padding: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(102, 168, 200, 0.18), transparent 22%),
    repeating-linear-gradient(35deg, transparent 0 70px, rgba(102, 168, 200, 0.06) 70px 72px),
    #101820;
  border: 1px solid rgba(102, 168, 200, 0.3);
  place-items: center;
  text-align: center;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  width: 52%;
  height: 64%;
  content: "";
  border: 2px solid rgba(215, 169, 40, 0.24);
  border-radius: 48% 52% 43% 57% / 54% 43% 57% 46%;
  transform: rotate(16deg);
}

.map-placeholder::after {
  width: 34%;
  height: 40%;
  border-color: rgba(102, 168, 200, 0.28);
  transform: translate(22%, -12%) rotate(-12deg);
}

.map-placeholder > div {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.map-placeholder h2 {
  margin: 18px 0 8px;
  font: 900 2.5rem/1 var(--display);
  text-transform: uppercase;
}

.notice {
  margin-top: 20px;
  padding: 20px 22px;
}

.notice strong {
  color: var(--gold-bright);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.notice p {
  margin: 5px 0 0;
  color: #bbb5a9;
}

.notice--gold {
  color: var(--ink);
  background: var(--gold);
  border-color: #8d6b13;
}

.notice--gold strong,
.notice--ink strong {
  color: var(--ink);
}

.notice--gold p,
.notice--ink p {
  color: rgba(9, 9, 9, 0.75);
}

.notice--ink {
  color: var(--ink);
  background: var(--paper-2);
  border-color: var(--line-dark);
}

.notice--danger {
  margin-top: 0;
  background: #331512;
  border-color: rgba(214, 69, 53, 0.55);
}

.notice--danger strong {
  color: #ff8b7e;
}

.money-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.money-step {
  position: relative;
  min-height: 120px;
  padding: 18px;
  background: var(--ink-3);
  border-top: 4px solid var(--gold);
}

.money-step::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 1;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
}

.money-step:last-child::after {
  display: none;
}

.money-step span {
  display: block;
  color: var(--gold);
  font: 900 1.5rem/1 var(--display);
}

.money-step strong {
  display: block;
  margin-top: 20px;
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.chip {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.chip.is-active,
.chip:hover {
  color: var(--paper);
  background: var(--ink);
}

.market-tabs {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.radio-console {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 370px;
  overflow: hidden;
  background: #15101d;
  border: 1px solid rgba(155, 105, 197, 0.4);
  box-shadow: var(--shadow);
}

.radio-console__dial {
  position: relative;
  display: grid;
  padding: 45px;
  align-content: center;
  color: var(--ink);
  background: var(--gold);
  text-align: center;
}

.radio-console__dial svg {
  width: 90px;
  height: 90px;
  margin: auto;
}

.radio-console__dial strong {
  font: 900 7rem/0.8 var(--display);
}

.radio-console__dial small {
  font-weight: 900;
  letter-spacing: 0.35em;
}

.radio-console__content {
  padding: clamp(30px, 6vw, 70px);
  align-self: center;
}

.radio-player {
  width: min(100%, 560px);
  margin-top: 22px;
  accent-color: var(--gold);
}

.radio-console__content h2 {
  margin: 5px 0 8px;
  font: 900 clamp(2.7rem, 5vw, 5rem)/0.9 var(--display);
  text-transform: uppercase;
}

.schedule-list {
  margin-top: 20px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.access-gate,
.auth-card {
  max-width: 790px;
  margin-inline: auto;
  padding: clamp(32px, 7vw, 76px);
  text-align: center;
  box-shadow: var(--shadow);
}

.access-gate__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  color: var(--ink);
  background: var(--gold);
  place-items: center;
}

.access-gate__icon svg {
  width: 40px;
  height: 40px;
}

.access-gate h2,
.auth-card h2 {
  margin: 8px 0 12px;
  font: 900 clamp(2.6rem, 6vw, 5rem)/0.9 var(--display);
  text-transform: uppercase;
}

.access-gate .button-row {
  justify-content: center;
}

.member-preview {
  grid-template-columns: 0.6fr 1.4fr;
}

.member-card {
  padding: 30px;
  text-align: center;
}

.member-avatar {
  display: grid;
  width: 110px;
  height: 110px;
  margin: 0 auto 23px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font: 900 2rem/1 var(--display);
  place-items: center;
}

.member-card h2 {
  font: 900 2.3rem/1 var(--display);
  text-transform: uppercase;
}

.member-tools,
.values-grid,
.bot-grid,
.device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tool-card,
.values-grid article {
  min-height: 210px;
  padding: 26px;
}

.tool-card > span,
.values-grid article > span {
  color: var(--gold);
  font: 900 1.5rem/1 var(--display);
}

.tool-card h3,
.values-grid h3 {
  margin: 36px 0 7px;
  font: 900 1.4rem/1 var(--sans);
  text-transform: uppercase;
}

.tool-card p,
.values-grid p {
  margin: 0;
  color: #aaa497;
}

.device-row {
  margin-top: 18px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.device-row a {
  display: grid;
  flex: 1;
  min-height: 135px;
  padding: 18px;
  align-content: center;
  text-align: center;
  text-decoration: none;
  background: var(--ink-2);
}

.device-row a:hover {
  background: var(--ink-3);
}

.device-row a > span {
  color: var(--gold);
  font: 900 1.7rem/1 var(--display);
}

.device-row strong {
  margin-top: 9px;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.device-row small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.bot-card {
  min-height: 285px;
  padding: 28px;
  color: var(--paper);
}

.bot-card > span {
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--ink);
  background: var(--gold);
  font: 900 1.2rem/1 var(--display);
  place-items: center;
}

.bot-card h2 {
  margin: 28px 0 8px;
  font: 900 1.75rem/1 var(--display);
  text-transform: uppercase;
}

.bot-card p {
  color: #bbb5a9;
}

.bot-card small {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.device-grid article {
  min-height: 280px;
  padding: 34px;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.show-grid article {
  position: relative;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.show-grid article::after {
  position: absolute;
  right: -22px;
  bottom: -45px;
  content: "HB";
  color: rgba(215, 169, 40, 0.06);
  font: 900 9rem/1 var(--display);
}

.show-day {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.show-grid h2 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 44px 0 9px;
  font: 900 clamp(2.1rem, 4vw, 3.5rem)/0.95 var(--display);
  text-transform: uppercase;
}

.show-grid p {
  position: relative;
  z-index: 1;
  max-width: 55ch;
  color: #bbb5a9;
}

.device-grid article > span {
  color: var(--gold);
  font: 900 3rem/1 var(--display);
}

.device-grid h2 {
  margin: 52px 0 7px;
  font: 900 2.2rem/1 var(--display);
  text-transform: uppercase;
}

.device-grid p {
  color: #bbb5a9;
}

.device-grid small {
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.support-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.receipt-card {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border: 8px double var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
  transform: rotate(1deg);
}

.receipt-card > span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.receipt-card ul {
  padding: 0;
  margin: 25px 0;
  list-style: none;
  border-top: 1px dashed var(--ink);
}

.receipt-card li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--ink);
}

.about-grid {
  align-items: start;
}

.about-grid p {
  color: #c2bcb0;
}

.about-grid blockquote {
  margin: 0;
  padding: 38px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 10px 10px 0 var(--paper);
  transform: rotate(-1deg);
}

.about-grid blockquote p {
  margin: 0 0 15px;
  color: var(--ink);
  font: 700 clamp(2rem, 4vw, 3.5rem)/1.1 var(--serif);
}

.about-grid cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
}

.values-grid article {
  background: var(--ink-2);
  border-top: 4px solid var(--gold);
}

.form-layout {
  grid-template-columns: 1.35fr 0.65fr;
}

.bo-form {
  padding: clamp(24px, 5vw, 45px);
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.bo-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.bo-form input,
.bo-form select,
.bo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8f5ed;
  border: 1px solid rgba(9, 9, 9, 0.45);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.bo-form textarea {
  resize: vertical;
}

.bo-form input:focus,
.bo-form select:focus,
.bo-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(215, 169, 40, 0.55);
  outline-offset: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-help {
  color: rgba(9, 9, 9, 0.7);
  font-size: 0.83rem;
}

.form-result {
  min-height: 26px;
  margin-top: 14px;
  font-weight: 800;
}

.form-result.is-error {
  color: #98291d;
}

.form-result.is-success {
  color: #1c6937;
}

.form-aside {
  display: grid;
  gap: 0;
}

.number-list {
  counter-reset: steps;
}

.number-list li {
  position: relative;
  padding: 10px 0 10px 40px;
  border-bottom: 1px solid var(--line-dark);
  counter-increment: steps;
}

.number-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: #795b0a;
  content: counter(steps, decimal-leading-zero);
  font-weight: 900;
}

.legal-document {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 1fr);
  gap: 50px;
  color: var(--ink);
}

.legal-toc {
  position: sticky;
  top: 20px;
  height: fit-content;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line-dark);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-content {
  max-width: 780px;
}

.legal-content section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
  scroll-margin-top: 20px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font: 900 clamp(1.8rem, 3vw, 2.6rem)/1 var(--display);
  text-transform: uppercase;
}

.legal-content p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.75;
}

.status-board {
  display: grid;
  max-width: 840px;
  gap: 12px;
}

.status-list {
  display: grid;
  gap: 12px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.search-form input {
  min-width: 0;
  padding: 12px 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1.05rem;
}

.search-form input:focus {
  outline: 3px solid rgba(215, 169, 40, 0.6);
  outline-offset: -3px;
}

.status-service {
  gap: 18px;
  padding: 22px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.status-service strong {
  text-transform: uppercase;
}

.status-service p {
  margin: 2px 0 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1000px) {
  .primary-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .primary-nav a {
    flex: 0 0 auto;
  }

  .hero__grid,
  .rules-grid,
  .support-callout,
  .about-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .stamp {
    grid-row: span 2;
  }

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

  .feature:last-child {
    grid-column: span 2;
  }

  .support-callout .button-row {
    justify-content: flex-start;
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

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

  .money-step:nth-child(3)::after,
  .money-step:last-child::after {
    display: none;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .network-mark small,
  .network-links a:not(:last-child),
  .coverage {
    display: none;
  }

  .masthead {
    min-height: 110px;
  }

  .brand__name {
    font-size: 3.8rem;
  }

  .brand__tagline {
    max-width: 230px;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__inner {
    display: grid;
    padding-block: 10px;
    overflow: visible;
  }

  .primary-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    right: auto;
    bottom: 3px;
    left: 8px;
    width: 80px;
  }

  .live-desk__grid,
  .story-grid,
  .dashboard-grid,
  .weather-layout,
  .form-layout,
  .member-preview,
  .radio-console,
  .legal-document {
    grid-template-columns: 1fr;
  }

  .live-desk__intro {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 2px solid rgba(9, 9, 9, 0.45);
  }

  .mini-feed {
    padding: 24px 0;
  }

  .feed-results--compact {
    grid-template-columns: 1fr;
  }

  .incident-list--compact {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-block: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

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

  .stamp {
    grid-row: auto;
  }

  .section {
    padding-block: 64px;
  }

  .section--flush-top {
    padding-top: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .bot-grid,
  .device-grid,
  .values-grid,
  .member-tools,
  .split-banner,
  .listing-grid,
  .show-grid {
    grid-template-columns: 1fr;
  }

  .feature:last-child {
    grid-column: auto;
  }

  .split-banner > div + div {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .rules-grid,
  .support-callout,
  .about-grid,
  .support-grid {
    gap: 42px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .money-flow {
    grid-template-columns: 1fr;
  }

  .money-step::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .money-step:nth-child(3)::after {
    display: block;
  }

  .radio-console__dial {
    min-height: 270px;
  }

  .device-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .device-row a:last-child {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .incident-list--compact,
  .search-form {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 3.2rem;
  }

  .brand__tagline {
    display: none;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .truth-band__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .device-row {
    grid-template-columns: 1fr;
  }

  .device-row a:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media print {
  .network-bar,
  .site-header,
  .truth-band,
  .site-footer,
  .button,
  .legal-toc {
    display: none !important;
  }

  body,
  .page-hero,
  .section,
  .section--paper {
    color: #000;
    background: #fff;
  }

  .page-hero {
    padding-block: 20px;
    border-bottom: 2px solid #000;
  }

  .page-hero h1 {
    font-size: 34pt;
  }

  .page-hero .lede,
  .legal-content p {
    color: #000;
  }

  .legal-document {
    display: block;
  }
}
