:root {
  --red: #ef1b16;
  --red-dark: #b90f0b;
  --ink: #070707;
  --paper: #f4efdf;
  --muted: #c9c2ae;
  --line: rgba(244, 239, 223, 0.32);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --mono: "Courier New", Courier, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 9%, rgba(239, 27, 22, 0.18), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  background: var(--red);
  font: 900 0.78rem/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.2rem;
  padding: 0.72rem 0;
  animation: crawl 17s linear infinite;
}

.ticker__track span {
  white-space: nowrap;
}

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

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem clamp(1rem, 4vw, 3.5rem);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--paper);
  font: 900 0.76rem/1.05 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand__stamp {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  transform: rotate(-7deg);
  border: 2px solid var(--paper);
  color: var(--red);
  font: 900 1.45rem/1 var(--display);
}

.section-shell {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3.5rem);
}

.hero {
  display: grid;
  min-height: 710px;
  padding-top: clamp(3.4rem, 8vw, 7.5rem);
  padding-bottom: clamp(3.7rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font: 900 0.76rem/1.3 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse-dot {
  display: inline-block;
  width: 0.62rem;
  height: 0.62rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(239, 27, 22, 0.45);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.65rem rgba(239, 27, 22, 0);
  }
}

h1,
h2,
p,
blockquote {
  text-wrap: balance;
}

h1 {
  max-width: 800px;
  margin: 0;
  font: 900 clamp(4.4rem, 10vw, 9.2rem) / 0.77 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 span:first-child {
  color: var(--red);
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.2vw, 3px) var(--paper);
}

.hero__lede {
  max-width: 620px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.6rem;
  padding: 0.95rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font: 900 0.82rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button:focus-visible,
.text-button:focus-visible,
a:focus-visible {
  outline: 3px solid #ffde00;
  outline-offset: 4px;
}

.button--paper {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--red);
}

.button--paper:hover {
  box-shadow: 10px 10px 0 var(--red);
}

.button--ink {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--paper);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
}

.button--wide {
  min-width: min(100%, 320px);
}

.text-button {
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid var(--red);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font: 800 0.82rem/1 var(--mono);
  letter-spacing: 0.02em;
}

.portrait-card {
  position: relative;
  min-height: 480px;
  padding: 1rem;
  overflow: hidden;
  transform: rotate(2deg);
  border: 3px solid var(--paper);
  color: var(--ink);
  background:
    linear-gradient(45deg, rgba(7, 7, 7, 0.08) 25%, transparent 25%, transparent 75%, rgba(7, 7, 7, 0.08) 75%),
    linear-gradient(45deg, rgba(7, 7, 7, 0.08) 25%, var(--red) 25%, var(--red) 75%, rgba(7, 7, 7, 0.08) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  box-shadow: 14px 14px 0 var(--paper);
}

.portrait-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 7, 0.94));
  content: "";
}

.portrait-card__label {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.72rem;
  color: var(--paper);
  background: var(--ink);
  font: 900 0.68rem/1 var(--mono);
  letter-spacing: 0.12em;
}

.portrait-card__burst {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  right: 0.8rem;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  transform: rotate(9deg);
  clip-path: polygon(50% 0%, 61% 30%, 85% 15%, 70% 40%, 100% 50%, 70% 61%, 86% 85%, 60% 71%, 50% 100%, 40% 70%, 14% 86%, 29% 60%, 0% 50%, 30% 40%, 15% 15%, 40% 30%);
  color: var(--ink);
  background: #ffde00;
  font: 900 2.3rem/1 var(--display);
}

.portrait-card__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.92) contrast(1.08);
}

.portrait-card__caption {
  position: absolute;
  z-index: 3;
  right: 1.1rem;
  bottom: 1.2rem;
  left: 1.1rem;
  display: flex;
  padding-top: 0.8rem;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid var(--paper);
  color: var(--paper);
  font-family: var(--mono);
}

.portrait-card__caption span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.portrait-card__caption strong {
  max-width: 13rem;
  text-align: right;
  font-size: 0.82rem;
}

.stat-band {
  display: grid;
  border-block: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  grid-template-columns: repeat(3, 1fr);
}

.stat-band__item {
  display: flex;
  min-height: 150px;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid var(--ink);
}

.stat-band__item:last-child {
  border-right: 0;
}

.stat-band__item span {
  margin-bottom: 0.62rem;
  color: var(--red-dark);
  font: 900 0.68rem/1 var(--mono);
  letter-spacing: 0.14em;
}

.stat-band__item strong {
  font: 900 clamp(1.7rem, 4vw, 3.25rem) / 1 var(--display);
  letter-spacing: -0.02em;
}

.ledger {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font: 900 clamp(4.2rem, 10vw, 8.5rem) / 0.8 var(--display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-heading__note {
  max-width: 410px;
  margin: 0 0 0.4rem auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.debt-list {
  border-top: 2px solid var(--paper);
}

.debt-row {
  display: grid;
  min-height: 120px;
  padding: 1.15rem 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3.2rem 3.8rem minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 2vw, 1.6rem);
  transition: padding 180ms ease, background 180ms ease, color 180ms ease;
}

.debt-row:hover {
  padding-inline: 1rem;
  color: var(--ink);
  background: var(--red);
}

.debt-row__index {
  color: var(--red);
  font: 900 0.7rem/1 var(--mono);
}

.debt-row:hover .debt-row__index {
  color: var(--ink);
}

.debt-row__avatar {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font: 900 1rem/1 var(--mono);
}

.debt-row__person strong {
  display: block;
  font: 900 clamp(1.35rem, 3vw, 2.2rem) / 1 var(--display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.debt-row__person span {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font: 700 0.73rem/1.3 var(--mono);
}

.debt-row:hover .debt-row__person span {
  color: rgba(7, 7, 7, 0.7);
}

.debt-row__amount {
  text-align: right;
}

.debt-row__amount strong {
  display: block;
  color: var(--red);
  font: 900 clamp(2rem, 5vw, 4.4rem) / 0.9 var(--display);
  letter-spacing: -0.03em;
}

.debt-row:hover .debt-row__amount strong {
  color: var(--ink);
}

.debt-row__amount span {
  font: 900 0.62rem/1 var(--mono);
  letter-spacing: 0.14em;
}

.excuse-section {
  display: flex;
  min-height: 620px;
  max-width: none;
  padding-block: clamp(5rem, 10vw, 8rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-block: 3px solid var(--ink);
  color: var(--ink);
  background: var(--red);
  text-align: center;
}

.excuse-section__eyebrow {
  margin-bottom: 2rem;
  padding: 0.65rem 0.8rem;
  transform: rotate(-2deg);
  color: var(--paper);
  background: var(--ink);
  font: 900 0.72rem/1 var(--mono);
  letter-spacing: 0.13em;
}

.excuse-section blockquote {
  max-width: 1060px;
  margin: 0 0 3rem;
  font: 900 clamp(3.2rem, 8vw, 7.7rem) / 0.9 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.final-cta {
  min-height: 760px;
  padding-top: clamp(5rem, 12vw, 10rem);
  padding-bottom: clamp(5rem, 12vw, 10rem);
  text-align: center;
}

.final-cta h2 span {
  color: var(--red);
}

.final-cta .button {
  margin-top: 3rem;
}

.fine-print {
  margin: 2rem 0 0;
  color: var(--muted);
  font: 700 0.72rem/1.5 var(--mono);
}

footer {
  display: flex;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 700 0.62rem/1.4 var(--mono);
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100vw - 2rem);
  padding: 1rem 1.15rem;
  transform: translateY(calc(100% + 2rem));
  border: 2px solid var(--paper);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  font: 900 0.72rem/1.4 var(--mono);
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .portrait-card {
    width: min(92%, 430px);
    min-height: 470px;
    margin: 1rem auto 0;
  }

  .stat-band {
    grid-template-columns: 1fr;
  }

  .stat-band__item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .stat-band__item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading__note {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-block: 0.9rem;
  }

  .brand {
    font-size: 0.62rem;
  }

  .brand__stamp {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .button--small {
    min-height: 2.35rem;
    padding: 0.6rem 0.65rem;
    font-size: 0.59rem;
  }

  .hero {
    padding-top: 3.3rem;
    gap: 2.6rem;
  }

  h1 {
    font-size: clamp(3.95rem, 20vw, 6.4rem);
  }

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

  .hero__actions .button,
  .hero__actions .text-button {
    width: 100%;
  }

  .portrait-card {
    width: calc(100% - 0.8rem);
    min-height: 420px;
    box-shadow: 8px 8px 0 var(--paper);
  }

  .portrait-card__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .portrait-card__caption strong {
    text-align: left;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(3.85rem, 20vw, 6.5rem);
  }

  .debt-row {
    min-height: 108px;
    grid-template-columns: 2.6rem minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .debt-row__avatar {
    display: none;
  }

  .debt-row__person span {
    max-width: 11rem;
  }

  .debt-row__amount strong {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .excuse-section {
    min-height: 540px;
  }

  .excuse-section blockquote {
    font-size: clamp(2.8rem, 16vw, 5rem);
  }

  .final-cta {
    min-height: 650px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
