/* ============================================================
   DON'T BUY HYPE — shared stylesheet
   Design system: defaced advertising. Sale stickers, stamps,
   receipts, and caution yellow — turned against hype itself.
   ============================================================ */

:root {
  --paper: #FCFBF6;
  --ink: #141210;
  --red: #E2231A;
  --red-dark: #B0170F;
  --yellow: #FFD400;
  --green: #0E8A4B;
  --gray: #8B8578;
  --card: #FFFFFF;
  --dot: #D9D3C4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--ink); }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.mono { font-family: 'IBM Plex Mono', monospace; }
.display { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- TICKER (homepage) ---------- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  padding: 9px 0;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 42s linear infinite;
}
.ticker-group { display: inline-flex; }
.tk {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 0 22px;
  text-transform: uppercase;
}
.tk .down { color: #FF6A5E; font-weight: 700; }
.tk .up { color: #58D68D; font-weight: 700; }
.tk .lbl { color: var(--yellow); font-weight: 700; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo .dot { color: var(--red); }
.logo-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 8px;
  letter-spacing: .08em;
  transform: rotate(-4deg);
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav-links a:hover { border-bottom-color: var(--red); }
.nav-links a.on { border-bottom-color: var(--red); font-weight: 700; }
.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: 3px 3px 0 var(--red);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--red); }

/* ---------- HERO (homepage) ---------- */
.hero {
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.6px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 82% 18%, #000 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 60% 70% at 82% 18%, #000 0%, transparent 68%);
  opacity: .8;
  pointer-events: none;
}
.hero-inner { position: relative; }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(58px, 11.5vw, 152px);
  line-height: .92;
  letter-spacing: .005em;
  max-width: 11ch;
}
.stamped { position: relative; display: inline-block; }
.stamp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.stamp-inner {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(17px, 2.6vw, 34px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  border: 4px solid var(--red);
  border-radius: 8px;
  padding: .28em .55em .22em;
  background: rgba(252, 251, 246, .82);
  box-shadow: inset 0 0 0 2px rgba(226, 35, 26, .25);
  transform: rotate(-9deg);
  opacity: 0;
  animation: stampSlam .5s cubic-bezier(.2, 1.4, .4, 1) .55s forwards;
}
@keyframes stampSlam {
  0%   { opacity: 0; transform: rotate(-9deg) scale(2.6); }
  60%  { opacity: 1; transform: rotate(-9deg) scale(.94); }
  80%  { transform: rotate(-9deg) scale(1.05); }
  100% { opacity: 1; transform: rotate(-9deg) scale(1); }
}
.hero-sub {
  margin-top: 30px;
  max-width: 54ch;
  font-size: 18.5px;
  font-weight: 500;
}
.hero-sub strong { font-weight: 900; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-ghost:hover { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.hero-note {
  margin-top: 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--gray);
  text-transform: uppercase;
}

/* stickers */
.stk { position: absolute; z-index: 3; }
.stk-inner {
  opacity: 0;
  animation: stickerPop .45s cubic-bezier(.2, 1.5, .4, 1) forwards;
  display: block;
}
@keyframes stickerPop {
  0%   { opacity: 0; transform: scale(.3) rotate(var(--r, 0deg)); }
  70%  { transform: scale(1.1) rotate(var(--r, 0deg)); }
  100% { opacity: 1; transform: scale(1) rotate(var(--r, 0deg)); }
}
.starburst-wrap { top: 30px; right: 4%; }
.starburst-wrap .stk-inner { --r: 10deg; animation-delay: .85s; }
.starburst {
  width: 205px;
  height: 205px;
  background: var(--yellow);
  clip-path: polygon(100% 50%, 86.7% 59.8%, 93.3% 75%, 76.9% 76.9%, 75% 93.3%, 59.8% 86.7%, 50% 100%, 40.2% 86.7%, 25% 93.3%, 23.1% 76.9%, 6.7% 75%, 13.3% 59.8%, 0% 50%, 13.3% 40.2%, 6.7% 25%, 23.1% 23.1%, 25% 6.7%, 40.2% 13.3%, 50% 0%, 59.8% 13.3%, 75% 6.7%, 76.9% 23.1%, 93.3% 25%, 86.7% 40.2%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(4px 5px 0 rgba(20, 18, 16, .9));
}
.starburst .big { font-family: 'Anton', sans-serif; font-size: 52px; line-height: 1; }
.starburst .small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  max-width: 116px;
  margin-top: 4px;
  text-transform: uppercase;
}
.stars-wrap { top: 275px; right: 13%; }
.stars-wrap .stk-inner { --r: -6deg; animation-delay: 1.05s; }
.sticker-stars {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 16px;
  text-align: center;
}
.sticker-stars .row-stars { font-size: 21px; letter-spacing: .12em; color: var(--red); }
.sticker-stars .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-top: 4px;
  text-transform: uppercase;
}
.circle-wrap { top: 395px; right: 3%; }
.circle-wrap .stk-inner { --r: 7deg; animation-delay: 1.25s; }
.sticker-circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
  padding: 12px;
  text-transform: uppercase;
}
.tag-wrap { bottom: 132px; right: 26%; }
.tag-wrap .stk-inner { --r: -3deg; animation-delay: 1.4s; }
.price-tag {
  position: relative;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 10px 16px 10px 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-tag::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}
.price-tag .was {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2.5px;
  color: var(--gray);
  margin-right: 6px;
}

/* ---------- SECTION SCAFFOLD ---------- */
section { padding: 92px 0; }
.sec-head { margin-bottom: 46px; }
.sec-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sec-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1;
}
.sec-sub { margin-top: 14px; max-width: 58ch; font-size: 17px; color: #46423B; }

/* interior page header */
.page-head { padding: 70px 0 0; }
.page-head .sec-sub { margin-bottom: 0; }

/* ---------- RECEIPT / LEDGER (homepage widget) ---------- */
.ledger { padding: 20px 0 96px; }
.receipt {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 3px solid var(--ink);
  border-bottom: none;
  box-shadow: 8px 8px 0 rgba(20, 18, 16, .18);
  padding: 34px 34px 26px;
  transform: rotate(-1.2deg);
  font-family: 'IBM Plex Mono', monospace;
}
.receipt::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -14px;
  height: 14px;
  background:
    linear-gradient(45deg, var(--card) 7px, transparent 7px) 0 0 / 14px 14px repeat-x,
    linear-gradient(-45deg, var(--card) 7px, transparent 7px) 7px 0 / 14px 14px repeat-x;
}
.receipt h2 {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.receipt .sub {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--gray);
  margin: 8px 0 22px;
  text-transform: uppercase;
}
.r-divider { border-top: 2px dashed var(--ink); margin: 18px 0; opacity: .55; }
.r-row {
  display: flex;
  align-items: baseline;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 12px 0;
  gap: 8px;
}
.r-row .dots { flex: 1; border-bottom: 2px dotted #B9B2A2; transform: translateY(-4px); }
.r-row .val { font-weight: 700; font-size: 15px; }
.r-row .val.good { color: var(--green); }
.r-row .val.bad { color: var(--red); }
.r-foot {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.8;
}
.barcode {
  height: 38px;
  margin: 18px auto 8px;
  max-width: 260px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 9px, transparent 9px 11px,
    var(--ink) 11px 12px, transparent 12px 16px,
    var(--ink) 16px 18px, transparent 18px 21px);
}
.thanks { font-weight: 700; }
.receipt-link-row { text-align: center; margin-top: 34px; }

/* ---------- VERDICT CARDS ---------- */
.verdicts { background: #F4F2EA; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vcard {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.vcard:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.vcard[hidden] { display: none; }
.file-no {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.vcard h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.claim-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.claim {
  font-style: italic;
  font-size: 16.5px;
  margin-bottom: 16px;
}
.finding-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.finding { font-size: 15.5px; margin-bottom: 22px; }
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.read-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.read-link:hover { background: var(--yellow); }
.verdict-stamp {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 7px 14px 5px;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.v-overhyped { background: var(--yellow); color: var(--ink); }
.v-run { background: var(--red); color: #fff; }
.v-legit { background: var(--green); color: #fff; }
.all-link {
  display: inline-block;
  margin-top: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid var(--red);
  padding-bottom: 3px;
}
.all-link:hover { background: var(--yellow); }

/* filter pills (verdict archive) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 34px;
}
.pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--card);
  cursor: pointer;
  transition: transform .12s ease;
}
.pill:hover { transform: translateY(-2px); }
.pill.active { background: var(--ink); color: var(--paper); box-shadow: 3px 3px 0 var(--red); }

/* ---------- GRAVEYARD ---------- */
.graveyard { background: var(--ink); color: var(--paper); }
.graveyard .sec-eyebrow { color: var(--yellow); }
.graveyard .sec-sub { color: #B7B1A4; }
.grave-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grave {
  background: #201D1A;
  border: 3px solid var(--paper);
  border-radius: 130px 130px 14px 14px;
  padding: 40px 22px 26px;
  text-align: center;
  transition: transform .15s ease;
}
.grave:hover { transform: rotate(-1.2deg) translateY(-4px); }
.grave .rip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--yellow);
  margin-bottom: 12px;
}
.grave h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.05;
}
.grave .yrs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: #8F897C;
  margin: 8px 0 14px;
}
.grave p { font-size: 14.5px; color: #D8D3C7; }
.grave-foot {
  margin-top: 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8F897C;
  text-align: center;
}
.grave-foot a { color: var(--yellow); text-decoration: none; border-bottom: 2px solid var(--yellow); }

/* ---------- RULES ---------- */
.rules { background: var(--yellow); border-bottom: 3px solid var(--ink); }
.rules .sec-eyebrow { color: var(--ink); }
.rules .sec-sub { color: #4A4008; }
.rule {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: baseline;
  border-top: 3px solid var(--ink);
  padding: 26px 0;
}
.rule:last-of-type { border-bottom: 3px solid var(--ink); }
.rule .num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
}
.rule h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 6px;
}
.rule p { font-size: 16.5px; max-width: 62ch; }

/* prose blocks (rules page, case files) */
.prose { max-width: 74ch; }
.prose h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  margin: 42px 0 12px;
}
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 17px; }
.prose .mono-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- FULL LEDGER TABLE ---------- */
.table-scroll { overflow-x: auto; }
.ledger-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  background: var(--card);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.ledger-table th {
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ledger-table td {
  padding: 13px 16px;
  border-top: 2px solid #ECE8DD;
  vertical-align: top;
}
.ledger-table tr:hover td { background: #FBF9F0; }
.t-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
}
.t-over { background: var(--yellow); color: var(--ink); }
.t-run { background: var(--red); color: #fff; }
.t-legit { background: var(--green); color: #fff; }
.t-held { color: var(--green); font-weight: 700; }
.t-wrong { color: var(--red); font-weight: 700; }
.t-pending { color: var(--gray); font-weight: 700; }
.wrong-note { display: block; font-size: 11.5px; color: var(--gray); margin-top: 5px; text-transform: none; }
.subject-cell { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14.5px; }
.subject-cell a { text-decoration: none; border-bottom: 2px solid var(--red); }
.subject-cell a:hover { background: var(--yellow); }

/* ---------- CASE FILE (verdict detail) ---------- */
.case { max-width: 800px; margin: 0 auto; padding: 64px 0 96px; }
.back-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.back-link:hover { background: var(--yellow); }
.case-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 34px 0 14px;
}
.case h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 72px);
  line-height: .98;
}
.case .standfirst { margin-top: 20px; font-size: 19px; font-weight: 500; color: #3E3A33; }
.case-verdict-row { margin-top: 28px; }
.case-section { margin-top: 48px; }
.case-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.case-section p { margin-bottom: 16px; font-size: 17.5px; }
.case-quote {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px 28px;
  font-style: italic;
  font-size: 19.5px;
  font-weight: 500;
}
.case-quote .who {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}
.profit-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 2px dashed #C9C3B4;
  font-size: 16.5px;
}
.profit-row:last-of-type { border-bottom: 2px dashed #C9C3B4; }
.profit-row .who { font-weight: 900; min-width: 180px; }
.field-guide {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 26px 28px;
  margin-top: 10px;
}
.field-guide h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 12px;
}
.field-guide p { font-size: 15.5px; margin-bottom: 10px; }
.field-guide p:last-child { margin-bottom: 0; }
.status-box {
  display: inline-block;
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 3px solid var(--green);
  color: var(--green);
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--card);
  box-shadow: 4px 4px 0 var(--green);
}
.correction-note {
  margin-top: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gray);
  text-transform: uppercase;
  border-top: 2px dashed #C9C3B4;
  padding-top: 18px;
}

/* ---------- NEWSLETTER ---------- */
.newsletter { text-align: center; }
.newsletter .sec-sub { margin-left: auto; margin-right: auto; }
.sub-box {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.sub-box input {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  padding: 16px 20px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--card);
  width: min(360px, 100%);
  box-shadow: 5px 5px 0 var(--ink);
}
.sub-box input::placeholder { color: #A39C8C; }
.sub-note {
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--gray);
  text-transform: uppercase;
}
.sub-done {
  display: none;
  margin-top: 34px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--card);
  border: 3px solid var(--green);
  color: var(--green);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 5px 5px 0 var(--green);
}

/* ---------- SUBMIT / TIP FORM ---------- */
.tip-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-grid { display: grid; gap: 22px; }
.field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 4px 4px 0 var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gray);
  text-transform: uppercase;
}
.tip-aside {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px;
  position: sticky;
  top: 92px;
}
.tip-aside h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 14px;
}
.tip-aside p { font-size: 15.5px; margin-bottom: 12px; }
.tip-aside .warn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  margin-top: 4px;
}

/* ---------- 404 ---------- */
.nf { text-align: center; padding: 110px 24px 130px; }
.nf .big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(110px, 24vw, 260px);
  line-height: .9;
}
.nf .stamp-static {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 4vw, 40px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  border: 5px solid var(--red);
  border-radius: 10px;
  padding: .3em .6em .24em;
  background: rgba(252, 251, 246, .85);
  transform: rotate(-8deg);
  margin-top: -30px;
}
.nf p { margin: 30px auto 34px; max-width: 46ch; font-size: 18px; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 34px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot-logo {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}
.foot-logo .dot { color: var(--red); }
.foot-tag { margin-top: 14px; font-size: 15.5px; color: #C9C3B6; max-width: 34ch; }
.foot-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  color: #DAD5C9;
  margin-bottom: 10px;
}
.foot-col a:hover { color: var(--yellow); }
.foot-fine {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: #8F897C;
  line-height: 2;
  text-transform: uppercase;
}
.foot-bottom {
  border-top: 2px solid #33302B;
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .05em;
  color: #8F897C;
  text-transform: uppercase;
}

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1020px) {
  .starburst { width: 160px; height: 160px; }
  .starburst .big { font-size: 40px; }
  .starburst .small { font-size: 9px; max-width: 92px; }
  .stars-wrap { top: 235px; right: 8%; }
  .circle-wrap { display: none; }
  .tag-wrap { right: 6%; bottom: 110px; }
  .tip-layout { grid-template-columns: 1fr; }
  .tip-aside { position: static; }
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
  .grave-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hero { padding: 64px 0 80px; }
  .stars-wrap { display: none; }
  .tag-wrap { display: none; }
  .starburst-wrap { top: 8px; right: 0; }
  .starburst { width: 128px; height: 128px; }
  .starburst .big { font-size: 30px; }
  .starburst .small { font-size: 8px; max-width: 80px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .grave-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .rule { grid-template-columns: 62px 1fr; gap: 16px; }
  .rule .num { font-size: 38px; }
  .receipt { padding: 28px 22px 22px; }
  body { font-size: 16px; }
  .profit-row { flex-direction: column; gap: 4px; }
  .profit-row .who { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .stamp-inner, .stk-inner { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
