/* =========================================================
   subvertising.click — culture-jamming poster aesthetic
   System fonts only. No third-party requests. That's on brand.
   ========================================================= */

:root {
  --ink: #0d0d0d;
  --paper: #f4f1ea;
  --red: #ff2b1c;
  --yellow: #ffe600;
  --grey: #8a857a;
  --line: rgba(13, 13, 13, 0.14);

  --display: "Helvetica Neue", "Arial Narrow", Impact, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 100;
}
.skip:focus { left: 10px; top: 10px; }

a { color: inherit; }

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 5vw, 56px);
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--red);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  letter-spacing: 0.04em;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--red);
  color: var(--ink);
  font-weight: 900;
  font-size: 24px;
  transform: rotate(-4deg);
}
.brand__name { font-weight: 800; font-size: 20px; }
.brand__dot { color: var(--red); }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--paper);
  opacity: 0.82;
  transition: opacity 0.15s;
}
.nav a:hover { opacity: 1; }
.nav__cta {
  background: var(--yellow);
  color: var(--ink) !important;
  opacity: 1 !important;
  padding: 8px 16px;
  font-weight: 800;
}
@media (max-width: 720px) {
  .nav a:not(.nav__cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 110px) clamp(16px, 5vw, 56px) clamp(30px, 5vw, 56px);
}
.hero__kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--ink);
  background: var(--yellow);
  display: inline-block;
  padding: 6px 12px;
  margin: 0 0 26px;
  transform: rotate(-1deg);
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 8.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero__lede {
  font-size: clamp(18px, 2.1vw, 23px);
  max-width: 760px;
  margin: 0 0 32px;
}
.hero__lede strong { background: linear-gradient(transparent 60%, rgba(255,230,0,0.7) 60%); }

.mark {
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mark--alt { background: var(--red); color: var(--paper); }

.redact {
  background: var(--ink);
  color: var(--ink);
  padding: 0 0.15em;
  border-radius: 1px;
  user-select: none;
  position: relative;
}
.redact::after {
  content: "censored";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 0.34em;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.2s;
}
.redact:hover::after { opacity: 1; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 16px;
  padding: 15px 26px;
  border: 3px solid var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn--primary { background: var(--red); color: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--wide { display: block; text-align: center; width: 100%; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.hero__note { font-size: 14px; color: var(--grey); font-style: italic; margin-top: 18px; }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 16px;
  animation: scroll 28s linear infinite;
}
.ticker__track span { flex: none; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- SECTION SHELL ---------- */
.section__title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.section__num {
  font-size: 0.5em;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 2px 8px;
}
.section__title--light { color: var(--paper); }
.section__title--light .section__num { color: var(--yellow); border-color: var(--yellow); }

/* ---------- MISSION ---------- */
.mission {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 56px);
}
.mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4px;
  background: var(--ink);
  border: 3px solid var(--ink);
}
.card {
  background: var(--paper);
  padding: 32px 28px;
}
.card__icon { font-size: 34px; margin-bottom: 12px; }
.card h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0 0 10px;
}
.card p { margin: 0; font-size: 16px; }

/* ---------- FEATURE: WORLD CUP ---------- */
.feature {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 9vw, 110px) clamp(16px, 5vw, 56px);
}
.feature > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.feature__tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  background: var(--red);
  color: var(--paper);
  padding: 7px 14px;
  margin-bottom: 22px;
}
.feature__title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.feature__lede { font-size: clamp(17px, 2vw, 21px); margin: 0 0 20px; color: #ddd9d0; }
.feature__lede strong { color: var(--yellow); }

.feature__panel {
  border: 3px solid var(--red);
  margin: 38px auto;
  background: #161514;
}
.feature__panelhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 10px 18px;
}
.pulse { display: inline-flex; align-items: center; gap: 8px; }
.pulse::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .pulse::before { animation: none; } }

.watchlist { list-style: none; margin: 0; padding: 18px 22px; }
.watchlist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 16px;
  color: #cfcabf;
}
.watchlist li:last-child { border-bottom: none; }
.watchlist__rank { color: var(--red); font-family: var(--display); font-weight: 800; }
.feature__panelnote { padding: 0 22px 20px; font-size: 14px; color: var(--grey); font-style: italic; margin: 0; }

.feature__cta-line { font-size: 17px; font-weight: 600; }
.feature__cta-line a { color: var(--yellow); }

/* ---------- HOW IT WORKS ---------- */
.how {
  background: #15140f;
  color: var(--paper);
  padding: clamp(56px, 9vw, 110px) clamp(16px, 5vw, 56px);
}
.how > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.how__intro { font-size: clamp(17px, 2vw, 21px); color: #ddd9d0; margin: 0 0 40px; max-width: 720px; }
.how__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.how__item {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
}
.how__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--yellow);
  flex: none;
}
.how__item h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 21px;
  margin: 0 0 8px;
}
.how__item p { margin: 0; font-size: 15px; color: #cfcabf; }

/* ---------- ACT ---------- */
.act {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 56px);
}
.act__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4px;
  border: 3px solid var(--ink);
  background: var(--ink);
}
@media (max-width: 760px) { .act__grid { grid-template-columns: 1fr; } }
.act__col { background: var(--paper); padding: 36px 32px; }
.act__col h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 18px;
}
.act__col--cta { background: var(--yellow); }
.act__col--cta .btn--primary { box-shadow: 5px 5px 0 var(--ink); }
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 10px 0 10px 34px; border-bottom: 1px solid var(--line); font-size: 16px; }
.ticks li:last-child { border-bottom: none; }
.ticks li::before {
  content: "✊";
  position: absolute;
  left: 0; top: 9px;
}
.act__small { font-size: 13px; color: var(--ink); opacity: 0.7; margin: 14px 0 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 56px) 40px;
  border-top: 3px solid var(--red);
}
.footer > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.footer__top { margin-bottom: 30px; }
.footer__top .brand__name { font-family: var(--display); font-size: 28px; font-weight: 800; }
.footer__top p { color: var(--grey); margin: 8px 0 0; }
.footer__disclaimer {
  font-size: 14px;
  color: #bdb8ad;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 20px 22px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.footer__disclaimer strong { color: var(--yellow); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
