:root {
  --ink: #151515;
  --paper: #f6f0e7;
  --paper-strong: #fffaf2;
  --muted: #6d665f;
  --line: #d8cab8;
  --red: #b43d2f;
  --green: #527246;
  --acid: #d7ff19;
  --yellow: #d7ff19;
  --blue: #253b73;
  --shadow: 0 20px 45px rgba(21, 21, 21, 0.12);
  --display-font: Aileron, "Arial Black", Arial, Helvetica, sans-serif;
  --body-font: Aileron, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 240, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 158px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(164px, 17vw, 218px);
  height: auto;
  mix-blend-mode: multiply;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-header nav a {
  border: 1px solid transparent;
  padding: 7px 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.hero-bg {
  display: none;
}

.hero-content {
  width: min(1120px, 100%);
  padding: 78px 56px 170px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.brand-punch {
  display: inline-flex;
  max-width: min(100%, 720px);
  margin: 0 0 18px;
  border: 2px solid rgba(21, 21, 21, 0.16);
  padding: 8px 12px;
  background: var(--acid);
  color: var(--ink);
  font-size: clamp(0.92rem, 1.8vw, 1.15rem);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(21, 21, 21, 0.9);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: 6.4rem;
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: var(--display-font);
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
}

.subheadline {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: 1.45rem;
  color: #2f2a25;
  font-weight: 850;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
}

.quick-filters.compact {
  margin-top: 26px;
}

.chip,
.primary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
  font-weight: 900;
}

.chip {
  border: 2px solid currentColor;
  padding: 8px 13px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero .chip {
  background: #fffaf2;
}

.manifesto-hero .quick-filters {
  max-width: 760px;
}

.corner-mark {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--ink);
}

.corner-mark.top-left {
  top: 38px;
  left: 44px;
}

.corner-mark.top-right {
  top: 38px;
  right: 44px;
}

.corner-mark.bottom-left {
  bottom: 38px;
  left: 44px;
}

.corner-mark.bottom-right {
  right: 44px;
  bottom: 38px;
}

.brand-block {
  position: absolute;
  right: clamp(88px, 8vw, 128px);
  bottom: clamp(82px, 7vw, 112px);
  text-align: right;
}

.brand-block p {
  display: inline-block;
  margin: 0 0 8px;
  padding: 8px 14px;
  background: var(--acid);
  font-family: var(--display-font);
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 0.95;
  box-shadow: 6px 6px 0 var(--ink);
}

.brand-block span {
  display: block;
  font-weight: 950;
  text-transform: uppercase;
}

.chip:hover,
.chip.active {
  transform: translate(2px, 2px);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}

.section,
.page-title,
.event-detail {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto 30px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
}

.stats {
  display: grid;
  gap: 8px;
  min-width: 210px;
}

.source-stats {
  display: flex;
  flex-wrap: wrap;
  width: min(900px, 100%);
  margin-top: 24px;
}

.stats span {
  border-left: 6px solid var(--green);
  padding: 8px 0 8px 12px;
  background: rgba(255, 250, 242, 0.72);
  font-weight: 850;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.editorial-band {
  background: var(--ink);
  color: var(--paper-strong);
}

.editorial-band .eyebrow {
  color: var(--acid);
}

.editorial-band h2 {
  color: var(--paper-strong);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.editorial-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  border: 2px solid var(--paper-strong);
  padding: 20px;
  background: #f6f0e7;
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--acid);
}

.editorial-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--red);
}

.editorial-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--green);
}

.editorial-card .score {
  width: fit-content;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  padding: 6px 9px;
  background: var(--acid);
  font-weight: 950;
}

.editorial-card h3 {
  max-width: 92%;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.editorial-card p {
  color: #3b3630;
  font-size: 1.02rem;
  font-weight: 750;
}

.editorial-card small {
  margin-top: auto;
  color: var(--muted);
  font-weight: 850;
}

.event-card {
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  min-height: 365px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.event-card:nth-child(3n + 1) {
  border-top: 8px solid var(--red);
}

.event-card:nth-child(3n + 2) {
  border-top: 8px solid var(--green);
}

.event-card:nth-child(3n + 3) {
  border-top: 8px solid var(--blue);
}

.event-card-main {
  text-decoration: none;
}

.event-card-date,
.event-place {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.event-card p {
  color: #3b3630;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.card-meta span {
  border: 1px solid var(--line);
  padding: 5px 8px;
  background: #fff;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--ink);
  padding: 3px 7px;
  background: #edf7ee;
  font-size: 0.82rem;
  font-weight: 850;
}

.text-action {
  justify-content: flex-start;
  margin-top: 12px;
  color: var(--red);
}

.text-action:hover {
  color: var(--blue);
}

.page-title {
  max-width: 1180px;
  margin: 0 auto;
}

.page-title h1 {
  color: var(--ink);
  font-size: 4.8rem;
}

.page-title p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.tonight-title {
  padding-bottom: 26px;
}

.tonight-title h1 {
  max-width: 960px;
}

.tonight-dashboard {
  padding-top: 0;
}

.tonight-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.65fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 2px solid var(--ink);
  padding: clamp(22px, 4vw, 36px);
  background: var(--acid);
  box-shadow: 10px 10px 0 var(--ink);
}

.tonight-panel h2 {
  max-width: 760px;
}

.tonight-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 1.1rem;
  font-weight: 850;
}

.signal-grid {
  display: grid;
  gap: 10px;
  align-content: start;
}

.signal-grid span {
  display: grid;
  gap: 2px;
  border: 2px solid var(--ink);
  padding: 12px;
  background: var(--paper-strong);
  font-weight: 900;
}

.signal-grid strong {
  font-size: 2rem;
  line-height: 1;
}

.tonight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  grid-column: 1 / -1;
}

.tonight-empty {
  width: min(1180px, 100%);
  border-style: solid;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--blue);
}

.save-later-band {
  background: #fffaf2;
}

.choice-principles-band {
  background: #fffaf2;
}

.choice-principle-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.choice-principle {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 2px solid var(--ink);
}

.choice-principle h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.choice-principle p {
  margin: 0;
  color: #3b3630;
  font-weight: 800;
  font-size: 1.02rem;
}

.zone40-home-band {
  background: #f5ebdd;
}

.zone40-home-band .section-heading {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-top: 18px;
  padding-bottom: 18px;
}

.zone40-rubric-card {
  cursor: default;
}

.zone40-rubric-card .text-action {
  display: inline-flex;
  margin-top: 14px;
}

.budget-fallback {
  width: min(1180px, 100%);
  margin: 24px auto 0;
}

.budget-fallback .eyebrow,
.tonight-home-fallback .eyebrow {
  margin-bottom: 14px;
}

.budget-fallback h3,
.tonight-home-fallback h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.budget-fallback > p:not(.eyebrow),
.tonight-home-fallback > p:not(.eyebrow) {
  margin: 0 0 18px;
  max-width: 680px;
  color: #3b3630;
  font-weight: 800;
}

.tonight-home-fallback {
  width: min(1180px, 100%);
  margin: 28px auto 0;
}

.fallback-plan-band {
  background: var(--paper-strong);
}

.fallback-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.fallback-plan-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--green);
}

.fallback-plan-card:nth-child(3n + 2) {
  box-shadow: 7px 7px 0 var(--blue);
}

.fallback-plan-card:nth-child(3n + 3) {
  box-shadow: 7px 7px 0 var(--red);
}

.plan-type {
  width: fit-content;
  margin-bottom: 14px;
  border: 2px solid var(--ink);
  padding: 5px 8px;
  background: var(--acid);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fallback-plan-card h3 {
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.fallback-plan-card p {
  color: #3b3630;
  font-weight: 750;
}

.event-detail {
  max-width: 1180px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 850;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}

.event-main h1 {
  color: var(--ink);
  font-size: 4.8rem;
}

.event-main h2 {
  margin-top: 28px;
  font-size: 1.8rem;
}

.event-summary-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.event-summary-line span {
  border: 2px solid var(--ink);
  padding: 6px 9px;
  background: var(--acid);
  font-weight: 950;
  text-transform: uppercase;
}

.event-description {
  max-width: 760px;
  font-size: 1.3rem;
}

.event-facts {
  display: grid;
  gap: 12px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: #fffaf2;
  box-shadow: 8px 8px 0 var(--ink);
}

.fact {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  overflow-wrap: anywhere;
}

.primary-action {
  border: 2px solid var(--ink);
  padding: 11px 15px;
  background: var(--red);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font: inherit;
}

.primary-action:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.primary-action.inline {
  width: fit-content;
  margin-top: 18px;
}

.resolver-teaser {
  background: var(--acid);
}

.resolver-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.resolver-teaser h2 {
  max-width: 860px;
}

.resolver-teaser p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.resolver-title h1 {
  max-width: 1020px;
}

.resolver-section {
  padding-top: 12px;
}

.resolver-form {
  display: grid;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.resolver-question {
  min-width: 0;
  margin: 0;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper-strong);
}

.resolver-question legend {
  padding: 0 8px;
  font-size: 1.05rem;
  font-weight: 950;
}

.resolver-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 8px 12px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill:hover,
.choice-pill.selected,
.choice-pill:has(input:checked) {
  transform: translate(2px, 2px);
  background: var(--acid);
  box-shadow: 1px 1px 0 var(--ink);
}

.resolver-form.is-loading .primary-action {
  background: var(--blue);
}

.resolver-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.resolver-results {
  background: #fffaf2;
}

.resolver-results .section-heading {
  align-items: start;
}

.resolver-results .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 750;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.plan-card {
  display: grid;
  align-content: start;
  min-height: 310px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--blue);
}

.plan-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--red);
}

.plan-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--green);
}

.plan-kicker {
  width: fit-content;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  padding: 5px 8px;
  background: var(--acid);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.plan-card p {
  color: #3b3630;
  font-weight: 750;
}

.plan-card small {
  margin-top: auto;
  color: var(--muted);
  font-weight: 850;
}

.live-status,
.expired {
  color: var(--green);
}

.expired {
  color: var(--red);
}

.empty-state,
.prose {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 2px dashed var(--ink);
  padding: 26px;
  background: rgba(255, 250, 242, 0.7);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: end;
  min-height: calc(100svh - 68px);
  padding: 76px clamp(18px, 4vw, 56px) 92px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.about-hero-copy {
  width: min(920px, 100%);
  padding-right: 16px;
}

.about-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 5.35rem;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2a25;
  font-size: 1.35rem;
  font-weight: 850;
}

.about-stamp {
  align-self: center;
  justify-self: end;
  width: min(360px, 100%);
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 10px 10px 0 var(--acid);
}

.about-stamp strong {
  display: block;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 0.9;
}

.about-stamp span {
  display: block;
  font-weight: 950;
  text-transform: uppercase;
}

.about-manifesto-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper-strong);
}

.about-manifesto-copy {
  display: grid;
  gap: 10px;
}

.about-manifesto-copy p {
  margin: 0;
  font-family: var(--display-font);
  font-size: 3.6rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-highlight {
  border: 2px solid var(--paper-strong);
  padding: 22px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

.about-highlight span,
.about-highlight strong {
  display: block;
  font-family: var(--display-font);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-highlight span {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.about-highlight strong {
  font-size: 3.1rem;
}

.about-rules-section {
  background: #fffaf2;
}

.about-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-rule-card {
  min-height: 300px;
  border: 2px solid var(--ink);
  padding: 20px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--green);
}

.about-rule-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--blue);
}

.about-rule-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--red);
}

.about-rule-card span {
  display: inline-flex;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  padding: 6px 9px;
  background: var(--acid);
  font-weight: 950;
}

.about-rule-card h3 {
  font-size: 2.05rem;
  text-transform: uppercase;
}

.about-rule-card p {
  color: #3b3630;
  font-weight: 800;
}

.about-closer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: var(--acid);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.about-closer h2 {
  max-width: 900px;
}

.about-closer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  min-width: 250px;
}

.about-closer-actions .text-action {
  color: var(--ink);
}

pre {
  overflow-x: auto;
  border: 1px solid var(--line);
  padding: 16px;
  background: #151515;
  color: #fffaf2;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 720px;
  margin: 0 0 10px;
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
}

.site-footer nav a {
  font-weight: 900;
  color: var(--ink);
}

.human-filter-band {
  background: var(--acid);
}

.human-filter-band .quick-filters {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.food-band {
  background: #fffaf2;
}

.radar-overview-band {
  background: var(--ink);
  color: var(--paper-strong);
}

.radar-overview-band .eyebrow,
.radar-overview-band .text-action {
  color: var(--acid);
}

.radar-overview-band .radar-health-card .text-action {
  color: var(--red);
}

.radar-overview-band h2,
.radar-overview-band .section-heading p:not(.eyebrow) {
  color: var(--paper-strong);
}

.radar-health-grid,
.radar-source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.radar-health-card,
.radar-source-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--acid);
}

.radar-health-card:nth-child(3n + 2),
.radar-source-card:nth-child(3n + 2) {
  box-shadow: 8px 8px 0 var(--green);
}

.radar-health-card:nth-child(3n + 3),
.radar-source-card:nth-child(3n + 3) {
  box-shadow: 8px 8px 0 var(--blue);
}

.radar-health-card h3 {
  margin: 8px 0 10px;
  font-size: 4rem;
  line-height: 0.9;
}

.radar-health-card p,
.radar-source-card p {
  color: #3b3630;
  font-weight: 800;
}

.radar-source-band {
  background: #efe7da;
}

.radar-source-card {
  min-height: 310px;
  background: var(--paper-strong);
}

.radar-source-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.radar-source-card header strong {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  background: var(--acid);
  font-size: 1.2rem;
  font-weight: 950;
}

.radar-source-card h3 {
  margin-top: 10px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.place-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 340px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--red);
}

.place-card:nth-child(3n + 2) {
  box-shadow: 8px 8px 0 var(--green);
}

.place-card:nth-child(3n + 3) {
  box-shadow: 8px 8px 0 var(--blue);
}

.place-card h3 {
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.place-card p {
  color: #3b3630;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.place-facts {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 14px 0;
}

.place-facts span {
  min-width: 0;
  max-width: 100%;
  border-left: 6px solid var(--acid);
  padding: 6px 0 6px 10px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.place-card .tag,
.place-card .text-action {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.food-radar-promise {
  background: var(--ink);
  color: var(--paper-strong);
}

.food-radar-promise .eyebrow,
.food-radar-promise .section-heading p:not(.eyebrow),
.food-radar-promise h2 {
  color: var(--paper-strong);
}

.food-radar-promise .primary-action {
  background: var(--acid);
  color: var(--ink);
}

.food-radar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.food-radar-grid article {
  min-height: 150px;
  border: 2px solid var(--paper-strong);
  padding: 16px;
  background: #151515;
  box-shadow: 7px 7px 0 var(--acid);
}

.food-radar-grid article:nth-child(2) {
  box-shadow: 7px 7px 0 var(--green);
}

.food-radar-grid article:nth-child(3) {
  box-shadow: 7px 7px 0 var(--blue);
}

.food-radar-grid article:nth-child(4) {
  box-shadow: 7px 7px 0 var(--red);
}

.food-radar-grid span {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 0.9;
}

.food-radar-grid p,
.food-radar-note {
  color: var(--paper-strong);
  font-weight: 850;
}

.food-radar-note {
  width: min(1180px, 100%);
  margin: 20px auto 0;
  border-left: 8px solid var(--acid);
  padding-left: 12px;
}

.drink-band {
  background: #efe7da;
}

.drink-radar-promise .food-radar-grid article {
  box-shadow: 7px 7px 0 var(--green);
}

.drink-radar-promise .food-radar-grid article:nth-child(2) {
  box-shadow: 7px 7px 0 var(--acid);
}

.drink-radar-promise .food-radar-grid article:nth-child(3) {
  box-shadow: 7px 7px 0 var(--blue);
}

.soul-band {
  background: #fffaf2;
}

.home-soul-band {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.soul-title h1 {
  max-width: 900px;
}

.soul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.soul-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 360px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--acid);
}

.soul-card:nth-child(3n + 2) {
  box-shadow: 8px 8px 0 var(--green);
}

.soul-card:nth-child(3n + 3) {
  box-shadow: 8px 8px 0 var(--blue);
}

.soul-card h3 {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.soul-card p {
  color: #3b3630;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.soul-card .soul-memory {
  margin: 4px 0 10px;
  border-left: 8px solid var(--acid);
  padding-left: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.soul-card small {
  display: block;
  margin: 4px 0 12px;
  color: var(--muted);
  font-weight: 900;
}

.section-link {
  flex: 0 0 auto;
}

.submit-event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(940px, 100%);
  margin: 0 auto;
  border: 2px solid var(--ink);
  padding: 22px;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--ink);
}

.submit-event-form label {
  display: grid;
  gap: 6px;
  font-weight: 950;
}

.submit-event-form input {
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 8px 10px;
  background: #fff;
  font: inherit;
}

.submit-event-form textarea,
.submit-event-form select,
.source-form input,
.source-form textarea,
.source-form select {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 8px 10px;
  background: #fff;
  font: inherit;
}

.submit-event-form .primary-action,
.submit-event-form p {
  grid-column: 1 / -1;
}

.submit-event-form .wide,
.submit-event-form .form-errors,
.submit-event-form .hp-field {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.field-error {
  color: #9d1f16;
  font-weight: 900;
}

.form-errors {
  border: 2px solid #9d1f16;
  padding: 12px;
  background: #fff4ef;
}

.form-errors p {
  margin: 4px 0 0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-band {
  background: var(--acid);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) auto;
  gap: 12px;
  align-items: end;
  width: min(980px, 100%);
  margin: 0 auto;
}

.newsletter-form label {
  display: grid;
  gap: 6px;
  font-weight: 950;
}

.newsletter-form input[type="email"] {
  min-height: 48px;
  border: 2px solid var(--ink);
  padding: 8px 10px;
  background: #fff;
  font: inherit;
}

.newsletter-form .form-errors,
.newsletter-form .hp-field {
  grid-column: 1 / -1;
}

.admin-actions,
.source-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.source-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.source-card {
  display: grid;
  gap: 14px;
  min-height: 410px;
  border: 2px solid var(--ink);
  padding: 18px;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--green);
}

.source-card:nth-child(3n + 2) {
  box-shadow: 8px 8px 0 var(--blue);
}

.source-card:nth-child(3n + 3) {
  box-shadow: 8px 8px 0 var(--red);
}

.source-card.is-inactive {
  opacity: 0.62;
  box-shadow: 8px 8px 0 var(--muted);
}

.source-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.source-card header > strong {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 2px solid var(--ink);
  background: var(--acid);
  font-size: 1.25rem;
  font-weight: 950;
}

.source-card h3 {
  margin: 4px 0 4px;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.source-card p {
  color: #3b3630;
  font-weight: 750;
}

.source-type {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.source-score-grid {
  display: grid;
  gap: 8px;
}

.score-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.score-track {
  height: 12px;
  border: 2px solid var(--ink);
  background: #fff;
}

.score-track i {
  display: block;
  height: 100%;
  background: var(--acid);
}

.source-tags,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.source-tags span,
.source-links a,
.saved-message {
  border: 1px solid var(--ink);
  padding: 4px 7px;
  background: #edf7ee;
  font-size: 0.82rem;
  font-weight: 850;
}

.source-links a {
  background: #fff;
  color: var(--ink);
}

.saved-message {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  background: var(--acid);
}

.source-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1040px, 100%);
  margin: 0 auto;
  border: 2px solid var(--ink);
  padding: 22px;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--ink);
}

.source-form label {
  display: grid;
  gap: 6px;
  font-weight: 950;
}

.source-form .wide,
.source-form .checkbox-field,
.source-form-actions {
  grid-column: 1 / -1;
}

.source-form .checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-form .checkbox-field input {
  width: 22px;
  min-height: 22px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 184px;
  }

  .site-header nav {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 82px 22px 190px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2,
  .page-title h1,
  .event-main h1 {
    font-size: 2.35rem;
  }

  .subheadline {
    font-size: 1.1rem;
  }

  .brand-block {
    right: 42px;
    bottom: 82px;
  }

  .brand-block p {
    font-size: 1.8rem;
  }

  .corner-mark {
    width: 18px;
    height: 18px;
  }

  .corner-mark.top-left,
  .corner-mark.bottom-left {
    left: 18px;
  }

  .corner-mark.top-right,
  .corner-mark.bottom-right {
    right: 18px;
  }

  .corner-mark.top-left,
  .corner-mark.top-right {
    top: 24px;
  }

  .corner-mark.bottom-left,
  .corner-mark.bottom-right {
    bottom: 24px;
  }

  .section-heading,
  .event-detail-grid,
  .site-footer,
  .resolver-teaser-inner,
  .tonight-panel,
  .about-hero,
  .about-manifesto-band,
  .about-closer {
    display: block;
  }

  .about-hero {
    min-height: auto;
    padding: 78px 22px 84px;
  }

  .about-hero-copy h1 {
    font-size: 2.95rem;
  }

  .about-hero-copy p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .about-stamp {
    width: 100%;
    margin-top: 30px;
  }

  .about-stamp strong {
    font-size: 2.25rem;
  }

  .about-manifesto-copy p {
    font-size: 2.15rem;
  }

  .about-highlight {
    margin-top: 26px;
  }

  .about-highlight span {
    font-size: 1.55rem;
  }

  .about-highlight strong {
    font-size: 2.2rem;
  }

  .about-rule-grid {
    grid-template-columns: 1fr;
  }

  .about-rule-card {
    min-height: 0;
  }

  .about-rule-card h3 {
    font-size: 1.65rem;
  }

  .choice-principle {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-closer-actions {
    margin-top: 20px;
  }

  .submit-event-form,
  .source-form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .tonight-actions {
    margin-top: 22px;
  }

  .stats {
    margin-top: 22px;
  }

  .event-facts {
    margin-top: 24px;
  }
}
