@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/rubik-700.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/rubik-800.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/nunito-900.ttf") format("truetype");
}

:root {
  --ink: #171614;
  --paper: #fff8e8;
  --paper-deep: #f3ead0;
  --teal: #157a7a;
  --teal-dark: #0c5151;
  --coral: #e6533c;
  --mustard: #f2bd2f;
  --sky: #a8d8ea;
  --plum: #51335f;
  --mint: #d8f0dc;
  --line: #171614;
  --shadow: 6px 6px 0 var(--ink);
  --soft-shadow: 0 18px 50px rgba(23, 22, 20, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 189, 47, 0.22), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(168, 216, 234, 0.5), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, var(--paper) 58%, #f7f1df 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  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: 24px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 248, 232, 0.92);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.22em;
  line-height: 1;
}

.brand-word {
  color: var(--teal-dark);
  font-family: Rubik, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-amp {
  color: var(--teal-dark);
  font-family: Nunito, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.brand-project {
  margin-left: 0.4rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
}

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

.site-nav a {
  padding: 8px 12px;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #fff;
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-shelf,
.comic-shelf,
.examples-intro,
.page-hero,
.evidence-summary,
.evidence-list,
.pilot-plan,
.legal-grid,
.policy-section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.examples-intro {
  padding: 34px 0 24px;
  border-top: 5px solid var(--ink);
}

.examples-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.examples-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.hero-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: 58px 0 52px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy,
.page-hero > div:first-child {
  min-width: 0;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.eyebrow,
.shelf-label,
.source-type {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary,
.button.shelf-cta {
  background: #fff;
}

.shelf-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 189, 47, 0.18), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(168, 216, 234, 0.52), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, var(--paper) 58%, #f7f1df 100%);
}

.funding-hero,
.home-shelf {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.funding-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) 0 clamp(34px, 6vw, 72px);
}

.funding-hero .hero-copy h1 {
  max-width: 740px;
  font-size: clamp(2.75rem, 5.4vw, 5.25rem);
  line-height: 0.94;
}

.funding-hero .hero-copy p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-art {
  position: relative;
  margin: 0;
  transform: rotate(1deg);
}

.hero-art::before {
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: 0;
  content: "";
  background: var(--ink);
}

.hero-art img,
.shelf-media img,
.quote-art img,
.partner-panel img,
.steps-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-art img {
  position: relative;
  z-index: 1;
  border: 6px solid var(--ink);
  background: #fff;
}

.home-shelf {
  padding: clamp(42px, 7vw, 84px) 0;
  border-top: 5px solid var(--ink);
}

.shelf-heading {
  margin-bottom: 22px;
}

.shelf-heading h2,
.shelf-home .shelf-copy h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.steps-grid article {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 16px;
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.steps-grid article > span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
}

.steps-grid img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.steps-grid h3,
.funding-grid h3 {
  margin: 18px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1;
  text-transform: uppercase;
}

.steps-grid p,
.shelf-home .shelf-copy p,
.trust-bar p,
.partner-shelf p,
.quote-layout .research-note p {
  font-size: 1.03rem;
}

.deep-dive-shelf,
.partner-shelf {
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.deep-dive-shelf {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.partner-shelf {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  padding-bottom: clamp(52px, 8vw, 96px);
}

.deep-dive-shelf .shelf-copy,
.partner-shelf .shelf-copy {
  max-width: 700px;
}

.deep-dive-shelf .button,
.partner-shelf .button {
  margin-top: 18px;
}

.shelf-media,
.partner-panel,
.quote-art {
  position: relative;
  margin: 0;
}

.shelf-media::before,
.partner-panel::before,
.quote-art::before {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: 0;
  content: "";
  background: var(--ink);
}

.shelf-media img,
.partner-panel img,
.quote-art img {
  position: relative;
  z-index: 1;
  border: 5px solid var(--ink);
  background: #fff;
}

.affirmation-shelf {
  padding-bottom: clamp(46px, 7vw, 86px);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.quote-layout .research-note {
  position: relative;
  margin: 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.quote-layout .research-note p {
  margin: 0;
  font-weight: 850;
}

.quote-layout cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 900;
}

.trust-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 18px;
  color: #fff;
  background: var(--ink);
}

.trust-bar p {
  max-width: 760px;
  margin: 0;
  font-weight: 850;
}

.trust-bar .button.secondary {
  flex: 0 0 auto;
  color: var(--ink);
}

.partner-shelf .shelf-copy {
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.pitch-comic-main {
  padding: clamp(24px, 4vw, 58px) 0 78px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72) 0 0),
    radial-gradient(circle at 10% 18%, rgba(230, 83, 60, 0.16), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(21, 122, 122, 0.18), transparent 28%);
}

.pitch-comic-page {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(12px, 2vw, 20px);
  background: #fffdf4;
  border: 8px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.pitch-cover-panel,
.method-strip article,
.comic-card,
.funding-brief {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
}

.pitch-cover-panel::before,
.method-strip article::before,
.comic-card::before,
.funding-brief::before,
.cover-frame::before {
  position: absolute;
  inset: 9px;
  z-index: 0;
  pointer-events: none;
  content: "";
  border: 2px solid rgba(23, 22, 20, 0.12);
}

.pitch-cover-panel > *,
.method-strip article > *,
.comic-card > *,
.funding-brief > *,
.cover-frame > * {
  position: relative;
  z-index: 1;
}

.pitch-cover-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  padding: clamp(20px, 3.4vw, 38px);
  color: #fff;
  background:
    repeating-conic-gradient(from 8deg at 82% 44%, rgba(255, 255, 255, 0.17) 0 9deg, transparent 9deg 18deg),
    linear-gradient(135deg, var(--teal) 0 38%, var(--mustard) 38% 62%, var(--coral) 62%);
}

.pitch-cover-copy {
  align-self: center;
}

.issue-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-cover-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--ink);
}

.pitch-cover-copy p:not(.issue-tag) {
  max-width: 720px;
  margin: 22px 0 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 850;
}

.pitch-comic-page .button.secondary {
  color: var(--ink);
}

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

.cover-frame {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20px 20px, rgba(23, 22, 20, 0.16) 0 2px, transparent 3px) 0 0 / 14px 14px,
    #fff;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.cover-frame-large {
  grid-column: 1 / -1;
  min-height: 230px;
  background:
    radial-gradient(circle at 78% 18%, #fff 0 12%, transparent 13%),
    linear-gradient(135deg, #a8d8ea 0 50%, #f5a38f 50%);
}

.cover-frame-dark {
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(230, 83, 60, 0.75), transparent 32%),
    #1d1720;
}

.cover-frame strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.25rem, 2.4vw, 2.05rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.cover-frame p {
  margin: 10px 0 0;
  font-weight: 850;
}

.comic-burst,
.sound-effect {
  display: inline-grid;
  width: max-content;
  min-width: 112px;
  min-height: 72px;
  place-items: center;
  padding: 8px 16px;
  color: #ef2f89;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: clamp(1.55rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-5deg);
}

.sound-effect {
  color: var(--mustard);
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: 4px 4px 0 var(--ink);
}

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

.method-strip article {
  min-height: 180px;
  padding: 18px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.method-strip span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
}

.method-strip h2,
.funding-brief h2,
.comic-card h2 {
  margin: 12px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.method-strip p,
.comic-card p,
.funding-brief p {
  margin: 12px 0 0;
  font-weight: 760;
}

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

.comic-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.panel-label {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 9px;
  color: #fff;
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.comic-card h2 {
  max-width: 18ch;
  margin-top: 0;
}

.panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  gap: 18px;
  align-items: center;
}

.dialogue-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.dialogue-row span {
  position: relative;
  max-width: 250px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.dialogue-row span::after {
  position: absolute;
  bottom: -12px;
  left: 32px;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

.care-note,
.journal-line {
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid var(--ink);
}

.comic-prop {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(2deg);
}

.prop-journal span {
  font-weight: 900;
  text-transform: uppercase;
}

.prop-journal i {
  display: block;
  height: 14px;
  border-bottom: 4px solid var(--ink);
}

.resource-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.resource-pills li {
  padding: 10px;
  background: #fff;
  border: 3px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 8px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid var(--ink);
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.checklist span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 3px solid var(--ink);
}

.checklist label:first-child span::after,
.checklist label:nth-child(2) span::after {
  content: "";
  width: 13px;
  height: 7px;
  border-bottom: 4px solid var(--teal);
  border-left: 4px solid var(--teal);
  transform: rotate(-45deg);
}

.card-adherence {
  grid-column: span 7;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0 48%, transparent 48%),
    #a8d8ea;
}

.card-shortcut {
  grid-column: span 5;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(230, 83, 60, 0.72), transparent 32%),
    linear-gradient(135deg, #161318 0 60%, #51335f 60%);
}

.card-learning {
  grid-column: span 5;
  background:
    radial-gradient(circle at 18px 18px, rgba(23, 22, 20, 0.12) 0 2px, transparent 3px) 0 0 / 14px 14px,
    #fff0a8;
}

.card-triggers {
  grid-column: span 7;
  background:
    radial-gradient(circle at 16px 16px, rgba(23, 22, 20, 0.14) 0 2px, transparent 3px) 0 0 / 13px 13px,
    #f5a38f;
}

.card-symptoms {
  grid-column: span 6;
  background:
    linear-gradient(170deg, transparent 0 58%, rgba(94, 76, 48, 0.18) 58% 64%, rgba(94, 76, 48, 0.1) 64%),
    #f9f2df;
}

.card-journal {
  grid-column: span 6;
  background:
    repeating-linear-gradient(180deg, #fff 0 34px, #e9f3f2 34px 38px),
    #fff;
}

.card-review {
  grid-column: span 5;
  background: #d8f0dc;
}

.card-future {
  grid-column: span 7;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 189, 47, 0.75), transparent 24%),
    linear-gradient(135deg, #0c5151 0 52%, #51335f 52%);
}

.funding-brief {
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.funding-brief h2 {
  max-width: 900px;
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 4rem);
}

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

.funding-grid article {
  padding: 16px;
  background: var(--paper);
  border: 3px solid var(--ink);
}

.funding-grid h3 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.home-comic-main {
  padding: clamp(22px, 4vw, 56px) 0 74px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.7) 0 0),
    radial-gradient(circle at 10% 18%, rgba(230, 83, 60, 0.18), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(21, 122, 122, 0.2), transparent 26%);
}

.comic-page-home {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 76px;
  gap: 12px;
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  padding: clamp(12px, 2vw, 18px);
  background: #fffdf4;
  border: 8px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.story-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 24px);
  background: #fff;
  border: 4px solid var(--ink);
}

.story-panel::before {
  position: absolute;
  inset: 8px;
  z-index: 0;
  pointer-events: none;
  content: "";
  border: 2px solid rgba(23, 22, 20, 0.12);
}

.story-panel h2,
.story-panel p,
.story-panel a,
.story-panel ul,
.story-panel div,
.story-panel span {
  position: relative;
  z-index: 1;
}

.story-panel h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 2.08rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.caption {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.comic-masthead {
  display: flex;
  grid-column: 1 / -1;
  grid-row: span 4;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  min-height: 320px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, #fff 0 6%, transparent 6.5%),
    repeating-conic-gradient(from 15deg at 78% 45%, rgba(255, 255, 255, 0.18) 0 8deg, transparent 8deg 16deg),
    linear-gradient(135deg, var(--teal) 0 38%, var(--mustard) 38% 62%, var(--coral) 62%);
}

.comic-masthead h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3.3rem, 8.4vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--ink);
}

.comic-masthead .masthead-copy p:not(.comic-kicker) {
  max-width: 610px;
  margin: 18px 0 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 900;
}

.comic-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-cta {
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
}

.cover-burst {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  clip-path: polygon(50% 0, 61% 28%, 90% 12%, 74% 42%, 100% 50%, 74% 59%, 90% 90%, 59% 75%, 50% 100%, 40% 75%, 10% 90%, 26% 59%, 0 50%, 25% 42%, 10% 12%, 39% 28%);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.panel-morning {
  grid-column: span 7;
  grid-row: span 7;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54) 0 48%, transparent 48%),
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.78) 0 11%, transparent 12%),
    #a8d8ea;
}

.panel-morning h2 {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 520px;
  padding: 12px;
  background: #fff;
  border: 3px solid var(--ink);
}

.panel-villain {
  grid-column: span 5;
  grid-row: span 3;
  color: #fff;
  background:
    radial-gradient(circle at 74% 42%, rgba(230, 83, 60, 0.82), transparent 28%),
    linear-gradient(135deg, #161318 0 58%, #4c2635 58%);
}

.panel-villain h2 {
  max-width: 24ch;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.8vw, 1.72rem);
}

.panel-routine {
  grid-column: span 5;
  grid-row: span 4;
  background:
    radial-gradient(circle at 18px 18px, rgba(23, 22, 20, 0.14) 0 2px, transparent 3px) 0 0 / 15px 15px,
    #fff0a8;
}

.panel-routine h2 {
  max-width: 18ch;
  margin-top: 18px;
}

.panel-triggers,
.panel-affirm,
.panel-journal {
  grid-column: span 4;
  grid-row: span 5;
}

.panel-triggers {
  background:
    radial-gradient(circle at 16px 16px, rgba(23, 22, 20, 0.15) 0 2px, transparent 3px) 0 0 / 13px 13px,
    #f5a38f;
}

.panel-affirm {
  color: #2b241f;
  background:
    linear-gradient(170deg, transparent 0 58%, rgba(94, 76, 48, 0.23) 58% 64%, rgba(94, 76, 48, 0.13) 64%),
    #f9f2df;
}

.panel-journal {
  background:
    repeating-linear-gradient(180deg, #fff 0 34px, #e9f3f2 34px 38px),
    #fff;
}

.panel-resources {
  grid-column: span 5;
  grid-row: span 5;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.7) 0 26%, transparent 27%),
    #d8f0dc;
}

.panel-pilot {
  grid-column: span 7;
  grid-row: span 5;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 189, 47, 0.76), transparent 24%),
    linear-gradient(135deg, #0c5151 0 52%, #51335f 52%);
}

.panel-pilot h2 {
  max-width: 21ch;
  font-size: clamp(1.55rem, 2.6vw, 2.75rem);
}

.panel-pilot p:not(.caption) {
  max-width: 660px;
  margin: 12px 0 0;
  font-weight: 800;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.panel-pilot .button.secondary {
  color: var(--ink);
}

.comic-kid {
  position: absolute;
  top: 190px;
  bottom: auto;
  right: 150px;
  left: auto;
  width: 138px;
  height: 138px;
  background: #ffd2ac;
  border: 5px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 92px 0 18px var(--coral);
}

.comic-kid::before {
  position: absolute;
  top: -18px;
  left: 12px;
  width: 118px;
  height: 52px;
  content: "";
  background: #8a3f1f;
  border: 4px solid var(--ink);
  border-radius: 60% 50% 35% 35%;
  transform: rotate(-7deg);
}

.comic-kid::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 45px;
  height: 20px;
  content: "";
  border-bottom: 5px solid var(--ink);
  border-radius: 50%;
}

.journal-prop {
  position: absolute;
  right: 34px;
  top: 92px;
  display: grid;
  width: 205px;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(3deg);
}

.journal-prop i {
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-prop b {
  height: 13px;
  border-bottom: 4px solid var(--ink);
}

.speech {
  position: absolute;
  display: block;
  max-width: min(250px, 52%);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.speech::after {
  position: absolute;
  bottom: -13px;
  width: 20px;
  height: 20px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

.speech-left {
  top: 70px;
  left: 24px;
}

.speech-left::after {
  left: 34px;
}

.speech-right {
  right: 20px;
  bottom: 22px;
}

.speech-right::after {
  right: 34px;
}

.sound-word {
  display: block;
  max-width: 260px;
  color: var(--mustard);
  font-size: clamp(2rem, 4.3vw, 4.8rem);
  font-weight: 900;
  line-height: 0.85;
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-6deg);
}

.dust-cloud {
  position: absolute;
  right: 28px;
  top: 32px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  background: var(--plum);
  border: 4px solid #fff;
  border-radius: 50%;
  font-weight: 900;
  transform: rotate(8deg);
}

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

.medicine-strip span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 8px;
  background: #fff;
  border: 3px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pop-boom {
  display: grid;
  width: min(210px, 88%);
  min-height: 94px;
  place-items: center;
  margin: 22px auto 16px;
  color: #ef2f89;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-3deg);
}

.trigger-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.trigger-list li {
  padding: 7px 9px;
  background: #fff;
  border: 3px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.panel-affirm .speech-left {
  top: 218px;
  left: 52px;
}

.panel-affirm .speech-right {
  top: 294px;
  bottom: auto;
  left: 26px;
  right: auto;
  max-width: 230px;
}

.panel-affirm h2 {
  position: absolute;
  right: 18px;
  bottom: auto;
  left: 18px;
  top: 74px;
  max-width: none;
  font-size: clamp(1.08rem, 1.65vw, 1.75rem);
  line-height: 1.02;
}

.journal-card {
  display: grid;
  gap: 12px;
  margin: 24px 0 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid var(--ink);
}

.journal-card strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.journal-card label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.journal-card label span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 3px solid var(--ink);
}

.journal-card label:first-of-type span::after,
.journal-card label:nth-of-type(2) span::after {
  content: "";
  width: 13px;
  height: 7px;
  border-bottom: 4px solid var(--teal);
  border-left: 4px solid var(--teal);
  transform: rotate(-45deg);
}

.resource-stack {
  display: grid;
  gap: 8px;
  max-width: 380px;
  margin: 22px 0 16px;
}

.resource-stack span {
  display: block;
  padding: 12px 14px;
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.resource-stack span:nth-child(2) {
  margin-left: 32px;
  background: var(--sky);
}

.resource-stack span:nth-child(3) {
  margin-left: 64px;
  background: var(--mustard);
}

.panel-resources h2 {
  max-width: 18ch;
  font-size: clamp(1.2rem, 1.7vw, 1.78rem);
}

.journal-visual {
  position: relative;
  min-height: 510px;
}

.cover-page,
.note-page {
  position: absolute;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
}

.cover-page {
  right: 8%;
  top: 0;
  width: min(360px, 80vw);
  min-height: 470px;
  padding: 22px;
  background:
    radial-gradient(circle at 80% 20%, #fff 0 7%, transparent 8%),
    linear-gradient(135deg, var(--mustard) 0 43%, var(--coral) 43% 64%, var(--teal) 64%);
  transform: rotate(2deg);
}

.cover-page strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 3.2rem;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--ink);
}

.cover-page p {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 3px solid var(--ink);
  font-weight: 900;
}

.issue {
  display: inline-block;
  padding: 6px 9px;
  background: #fff;
  border: 3px solid var(--ink);
  font-weight: 900;
}

.cover-scene {
  position: relative;
  min-height: 215px;
  margin-top: 18px;
}

.hero-head {
  position: absolute;
  left: 24px;
  top: 45px;
  width: 98px;
  height: 98px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 50%;
}

.hero-head::before,
.hero-head::after {
  position: absolute;
  top: 34px;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.hero-head::before {
  left: 25px;
}

.hero-head::after {
  right: 25px;
}

.inhaler-beam {
  position: absolute;
  right: 72px;
  top: 82px;
  width: 145px;
  height: 46px;
  background: repeating-linear-gradient(90deg, #fff 0 16px, var(--sky) 16px 28px);
  border: 4px solid var(--ink);
  transform: rotate(-9deg);
}

.dust-villain {
  position: absolute;
  right: 8px;
  top: 30px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  background: var(--plum);
  border: 4px solid var(--ink);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.note-page {
  left: 4%;
  bottom: 6px;
  width: min(270px, 64vw);
  min-height: 290px;
  padding: 22px;
  background: #fff;
  transform: rotate(-5deg);
}

.note-page span {
  display: block;
  margin-bottom: 22px;
  font-size: 1.3rem;
  font-weight: 900;
}

.note-page i {
  display: block;
  height: 18px;
  margin: 22px 0;
  border-bottom: 4px solid var(--ink);
}

.comic-shelf {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 6vw, 58px) 0;
  border-top: 5px solid var(--ink);
}

.comic-shelf::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 14px;
  content: "";
  background: var(--ink);
}

.shelf-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.shelf-copy h2,
.evidence-item h2,
.pilot-plan h2,
.policy-section h2,
.legal-grid h2,
.evidence-summary h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.shelf-copy p:not(.shelf-label),
.evidence-item p,
.pilot-plan p,
.legal-grid p,
.policy-section p,
.evidence-summary p {
  font-size: 1rem;
}

.shelf-cta {
  margin-top: 14px;
}

.comic-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

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

.four-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 18px;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.panel h3 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.panel p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: 14px 0 0;
  font-weight: 800;
}

.script-panel {
  min-height: 250px;
}

.script-panel::before {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 2px solid rgba(23, 22, 20, 0.16);
}

.script-panel .bubble,
.script-panel .burst,
.script-panel .stamp,
.script-panel .small-speech {
  z-index: 2;
}

.classic-panel {
  background:
    radial-gradient(circle at 20px 20px, rgba(23, 22, 20, 0.12) 0 2px, transparent 3px) 0 0 / 14px 14px,
    #ffe879;
}

.classic-panel:nth-child(2) {
  background:
    radial-gradient(circle at 20px 20px, rgba(23, 22, 20, 0.12) 0 2px, transparent 3px) 0 0 / 14px 14px,
    #f5a38f;
}

.classic-panel:nth-child(3) {
  background:
    radial-gradient(circle at 20px 20px, rgba(23, 22, 20, 0.12) 0 2px, transparent 3px) 0 0 / 14px 14px,
    #8dd8d3;
}

.bright-strip .classic-panel:first-child h3 {
  margin-top: 86px;
}

.burst {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  background: #fff;
  clip-path: polygon(50% 0, 61% 29%, 90% 12%, 75% 43%, 100% 50%, 74% 59%, 90% 90%, 59% 74%, 50% 100%, 40% 74%, 10% 90%, 26% 59%, 0 50%, 25% 42%, 10% 12%, 39% 29%);
  font-weight: 900;
}

.burst.small {
  right: 12px;
  top: auto;
  bottom: 15px;
}

.bubble {
  position: absolute;
  right: 12px;
  bottom: 18px;
  max-width: 110px;
  padding: 10px;
  background: #fff;
  border: 3px solid var(--ink);
  font-weight: 900;
}

.bubble.top-left {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  max-width: 128px;
}

.bubble.top-left::after {
  right: auto;
  bottom: -12px;
  left: 30px;
}

.bubble::after {
  position: absolute;
  right: 20px;
  bottom: -14px;
  width: 22px;
  height: 22px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

.manga-grid,
.file-panels,
.manga-scene,
.noir-case {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pop-collage {
  grid-template-columns: 0.8fr 1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(160px, auto));
}

.pop-panel {
  min-height: 165px;
  background:
    radial-gradient(circle at 16px 16px, rgba(23, 22, 20, 0.16) 0 2px, transparent 3px) 0 0 / 12px 12px,
    var(--sky);
}

.pop-panel h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
}

.clue-one {
  transform: rotate(-2deg);
  background-color: #8bdad5;
}

.clue-two {
  transform: rotate(2deg);
  background-color: #fff0a8;
}

.clue-three {
  transform: rotate(1deg);
  background-color: #f5a38f;
}

.clue-four {
  transform: rotate(-1deg);
  background-color: #d8f0dc;
}

.boom-panel {
  display: grid;
  grid-row: span 2;
  align-content: center;
  justify-items: center;
  min-height: 340px;
  color: #fff;
  background:
    repeating-conic-gradient(from 8deg at 50% 50%, var(--mustard) 0 8deg, #2aa7df 8deg 15deg);
}

.boom-panel span {
  display: grid;
  width: min(220px, 100%);
  min-height: 105px;
  place-items: center;
  color: #ef2f89;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
}

.boom-panel p {
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  padding: 8px;
}

.quiet-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quiet-panel {
  min-height: 260px;
  color: #2b241f;
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    #f9f2df;
  box-shadow: 3px 3px 0 var(--ink);
}

.quiet-panel h3 {
  margin-top: 72px;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

.quiet-panel.landscape {
  background:
    linear-gradient(170deg, transparent 0 58%, rgba(94, 76, 48, 0.32) 58% 63%, rgba(94, 76, 48, 0.18) 63%),
    #fbf8ec;
}

.quiet-panel.journal-end {
  background:
    repeating-linear-gradient(180deg, #fff 0 34px, #f0ead8 34px 38px),
    #fff;
}

.small-speech {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: 140px;
  padding: 9px 11px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
}

.small-speech::after {
  position: absolute;
  right: 22px;
  bottom: -13px;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}

.manga-panel {
  min-height: 285px;
  background:
    repeating-radial-gradient(circle at 20% 10%, rgba(23, 22, 20, 0.18) 0 1px, transparent 1px 8px),
    #fff;
}

.manga-panel.dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 26%),
    #202027;
}

.speed-lines {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 12deg at 85% 15%, transparent 0 8deg, rgba(23, 22, 20, 0.18) 8deg 10deg);
}

.smoke-cloud {
  position: absolute;
  right: 22px;
  top: 26px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  background: var(--coral);
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 4rem;
  font-weight: 900;
}

.manga-scene {
  grid-template-rows: minmax(145px, auto) minmax(250px, auto) minmax(150px, auto);
}

.manga-wide {
  grid-column: 1 / -1;
  min-height: 145px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.78) 0 36%, transparent 36%),
    linear-gradient(90deg, rgba(21, 122, 122, 0.24) 0 50%, rgba(242, 189, 47, 0.24) 50%),
    #fff;
}

.manga-wide.final {
  min-height: 150px;
  background:
    repeating-linear-gradient(180deg, #fff 0 28px, #e6f7f6 28px 32px),
    #fff;
}

.shop-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.95) 0 10%, transparent 11%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.6) 0 28%, transparent 29%);
}

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

.pastel-panel {
  min-height: 210px;
  background: var(--mint);
}

.pastel-panel.yellow {
  background: #fff0a8;
}

.pastel-panel.blue {
  background: #cceeff;
}

.pastel-panel::after {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  height: 34px;
  content: "";
  border-top: 4px solid rgba(23, 22, 20, 0.35);
  border-bottom: 4px solid rgba(23, 22, 20, 0.35);
}

.file-panel {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0 25%, transparent 25%),
    var(--plum);
}

.stamp {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--mustard);
  border: 3px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.noir-case {
  grid-template-columns: 1.05fr 0.95fr;
  grid-auto-rows: minmax(210px, auto);
}

.noir-case .file-panel {
  min-height: 215px;
}

.file-panel.red-haze {
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 83, 60, 0.8), transparent 28%),
    linear-gradient(135deg, #151417 0 58%, #483043 58%),
    #1c1a1e;
}

.file-panel.portrait {
  background:
    radial-gradient(circle at 50% 35%, #b9dee7 0 18%, transparent 19%),
    linear-gradient(135deg, #18242b 0 50%, #4d2431 50%),
    #18151a;
}

.file-panel.evidence {
  grid-column: span 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 50%, transparent 50%),
    #0e5254;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: center;
  padding: 74px 0 42px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.small-comic {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.mini-panel {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 3px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.mini-panel:nth-child(1) {
  background: var(--mustard);
}

.mini-panel:nth-child(2) {
  background: var(--sky);
}

.mini-panel:nth-child(3) {
  background: var(--mint);
}

.evidence-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.evidence-summary article,
.legal-grid article,
.pilot-grid article,
.policy-section {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.evidence-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.evidence-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.evidence-item blockquote {
  align-self: center;
  margin: 0;
  padding: 18px;
  background: var(--paper);
  border-left: 7px solid var(--coral);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.evidence-item cite {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.pilot-plan {
  margin-top: 32px;
  padding: 30px 0 70px;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 24px;
}

.pilot-grid h3,
.legal-grid h2,
.policy-section h2 {
  font-size: 1.35rem;
}

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

.privacy-badge {
  display: grid;
  min-height: 230px;
  align-content: center;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 25%, transparent 25%),
    var(--teal-dark);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.privacy-badge span {
  width: max-content;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--mustard);
  border: 2px solid var(--ink);
  font-weight: 900;
}

.privacy-badge strong {
  margin-top: 14px;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.policy-section {
  margin-top: 24px;
}

.legal-page {
  padding-bottom: 70px;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.commitment-list li {
  padding: 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 56px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 980px) {
  .funding-hero,
  .deep-dive-shelf,
  .quote-layout,
  .partner-shelf {
    grid-template-columns: 1fr;
  }

  .funding-hero {
    padding-top: 34px;
  }

  .hero-art {
    transform: none;
  }

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

  .trust-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .pitch-cover-panel,
  .comic-story-grid {
    grid-template-columns: 1fr;
  }

  .pitch-cover-panel {
    padding: 22px;
  }

  .cover-strip {
    grid-template-columns: 1fr;
  }

  .cover-frame-large {
    grid-column: auto;
  }

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

  .card-adherence,
  .card-shortcut,
  .card-learning,
  .card-triggers,
  .card-symptoms,
  .card-journal,
  .card-review,
  .card-future {
    grid-column: auto;
  }

  .panel-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .comic-page-home {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: min(760px, calc(100% - 22px));
    box-shadow: 8px 8px 0 var(--ink);
  }

  .comic-masthead,
  .panel-morning,
  .panel-villain,
  .panel-routine,
  .panel-triggers,
  .panel-affirm,
  .panel-journal,
  .panel-resources,
  .panel-pilot {
    grid-column: auto;
    grid-row: auto;
  }

  .comic-masthead {
    align-items: flex-start;
    flex-direction: column;
    min-height: 380px;
    padding-right: 110px;
  }

  .comic-masthead h1 {
    font-size: clamp(3.2rem, 14vw, 7rem);
  }

  .page-cta {
    margin-top: 4px;
  }

  .panel-morning {
    min-height: 520px;
  }

  .panel-villain,
  .panel-routine,
  .panel-triggers,
  .panel-affirm,
  .panel-journal,
  .panel-resources {
    min-height: 330px;
  }

  .panel-pilot {
    min-height: 360px;
  }

  .hero-shelf,
  .comic-shelf,
  .page-hero,
  .evidence-item,
  .evidence-summary,
  .legal-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .hero-shelf {
    min-height: auto;
  }

  .journal-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .three-panel,
  .four-panel,
  .journal-panels,
  .manga-grid,
  .file-panels,
  .pop-collage,
  .quiet-strip,
  .manga-scene,
  .noir-case {
    grid-template-columns: 1fr;
  }

  .boom-panel,
  .manga-wide,
  .file-panel.evidence {
    grid-column: auto;
    grid-row: auto;
  }

  .boom-panel {
    min-height: 245px;
  }

  .panel {
    min-height: 210px;
  }

  .page-hero {
    padding-top: 48px;
  }
}

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

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .funding-hero,
  .home-shelf {
    width: calc(100% - 22px);
  }

  .funding-hero {
    gap: 20px;
    padding: 28px 0 38px;
  }

  .funding-hero .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .home-shelf {
    padding: 34px 0;
  }

  .shelf-heading h2,
  .shelf-home .shelf-copy h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .steps-grid article,
  .partner-shelf .shelf-copy,
  .quote-layout .research-note {
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero-art::before,
  .shelf-media::before,
  .partner-panel::before,
  .quote-art::before {
    inset: 8px -8px -8px 8px;
  }

  .hero-art img,
  .shelf-media img,
  .partner-panel img,
  .quote-art img {
    border-width: 4px;
  }

  .trust-bar .button {
    width: 100%;
  }

  .pitch-comic-main {
    padding-top: 16px;
  }

  .pitch-comic-page {
    width: calc(100% - 14px);
    padding: 7px;
    border-width: 5px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .pitch-cover-panel,
  .comic-card,
  .funding-brief,
  .method-strip article {
    border-width: 3px;
  }

  .pitch-cover-panel::before,
  .method-strip article::before,
  .comic-card::before,
  .funding-brief::before,
  .cover-frame::before {
    inset: 6px;
  }

  .pitch-cover-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4.3rem);
    text-shadow: 4px 4px 0 var(--ink);
  }

  .pitch-cover-copy p:not(.issue-tag) {
    padding: 11px 12px;
    font-size: 0.98rem;
  }

  .cover-frame {
    min-height: 150px;
  }

  .cover-frame-large {
    min-height: 190px;
  }

  .method-strip,
  .funding-grid,
  .resource-pills {
    grid-template-columns: 1fr;
  }

  .comic-card {
    min-height: 0;
    padding: 16px;
  }

  .comic-card h2,
  .funding-brief h2 {
    max-width: none;
  }

  .panel-label {
    width: auto;
  }

  .dialogue-row {
    display: grid;
  }

  .dialogue-row span {
    max-width: none;
  }

  .comic-burst,
  .sound-effect {
    min-width: 92px;
    min-height: 60px;
  }

  .home-comic-main {
    padding-top: 16px;
  }

  .comic-page-home {
    width: calc(100% - 14px);
    padding: 7px;
    border-width: 5px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .story-panel {
    padding: 14px;
    border-width: 3px;
  }

  .story-panel::before {
    inset: 6px;
  }

  .comic-masthead {
    min-height: 430px;
    padding-right: 14px;
  }

  .comic-masthead h1 {
    font-size: clamp(2.7rem, 16vw, 4.35rem);
    text-shadow: 4px 4px 0 var(--ink);
  }

  .comic-masthead .masthead-copy p:not(.comic-kicker) {
    font-size: 0.98rem;
  }

  .cover-burst {
    top: 10px;
    right: 10px;
    width: 72px;
    height: 72px;
    font-size: 0.86rem;
  }

  .panel-morning {
    min-height: 500px;
  }

  .panel-morning h2 {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .comic-kid {
    top: 150px;
    bottom: auto;
    right: 24px;
    left: auto;
    width: 100px;
    height: 100px;
    box-shadow: 0 74px 0 14px var(--coral);
  }

  .comic-kid::before {
    top: -14px;
    left: 8px;
    width: 88px;
    height: 40px;
  }

  .comic-kid::after {
    right: 25px;
    bottom: 24px;
    width: 34px;
  }

  .journal-prop {
    top: 116px;
    right: 12px;
    width: min(170px, 52vw);
    padding: 12px;
  }

  .speech {
    max-width: 78%;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .speech-left {
    top: 62px;
    left: 14px;
  }

  .speech-right {
    right: 14px;
    bottom: 16px;
  }

  .dust-cloud {
    right: 18px;
    top: 42px;
    width: 72px;
    height: 72px;
  }

  .medicine-strip {
    grid-template-columns: 1fr;
  }

  .panel-villain,
  .panel-routine,
  .panel-triggers,
  .panel-affirm,
  .panel-journal,
  .panel-resources {
    min-height: 340px;
  }

  .panel-affirm {
    min-height: 390px;
  }

  .panel-affirm h2 {
    top: 70px;
    bottom: auto;
  }

  .panel-affirm .speech-left {
    top: 210px;
    left: 42px;
  }

  .panel-affirm .speech-right {
    top: 286px;
    right: auto;
    left: 20px;
  }

  .resource-stack span:nth-child(2),
  .resource-stack span:nth-child(3) {
    margin-left: 18px;
  }

  .panel-pilot {
    min-height: 420px;
  }

  .panel-pilot h2 {
    font-size: clamp(1.65rem, 10vw, 2.55rem);
  }

  .panel-actions .button {
    width: 100%;
  }

  .examples-intro h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .pop-panel,
  .quiet-panel,
  .manga-panel,
  .file-panel,
  .script-panel {
    min-height: 220px;
  }

  .quiet-panel h3 {
    margin-top: 58px;
  }

  .cover-page {
    right: 8px;
    width: min(255px, 72vw);
    min-height: 330px;
    padding: 16px;
  }

  .cover-page strong {
    font-size: 2rem;
  }

  .cover-scene {
    min-height: 128px;
  }

  .hero-head {
    left: 12px;
    top: 30px;
    width: 62px;
    height: 62px;
    border-width: 4px;
  }

  .hero-head::before,
  .hero-head::after {
    top: 20px;
    width: 8px;
    height: 8px;
  }

  .hero-head::before {
    left: 16px;
  }

  .hero-head::after {
    right: 16px;
  }

  .inhaler-beam {
    right: 48px;
    top: 52px;
    width: 94px;
    height: 34px;
  }

  .dust-villain {
    right: 0;
    top: 22px;
    width: 58px;
    height: 58px;
    font-size: 0.72rem;
  }

  .cover-page p {
    font-size: 0.84rem;
  }

  .note-page {
    left: 8px;
    bottom: 24px;
    width: min(176px, 52vw);
    min-height: 165px;
    padding: 14px;
  }

  .note-page span {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .note-page i {
    height: 10px;
    margin: 12px 0;
  }

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