:root {
  --paper: #f4efdf;
  --paper-deep: #e5dcc4;
  --ink: #11100d;
  --red: #ee4b2b;
  --red-dark: #b82918;
  --blue: #1747d1;
  --yellow: #f4c84a;
  --white: #fffdf7;
  --line: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(17,16,13,.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 28px;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.45;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.hero-copy, .host-card { min-width: 0; }
.host-card { width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: var(--line);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: var(--line);
  background: var(--paper);
}

.obk-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.obk-mark__small {
  max-width: 64px;
  font: 800 10px/1 var(--utility);
  letter-spacing: .07em;
}
.obk-mark__large {
  font: 900 38px/.8 var(--display);
  letter-spacing: -.08em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 12px/1 var(--utility);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238,75,43,.17);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(238,75,43,0); } }

.hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(500px, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 112px) clamp(20px, 4vw, 64px);
  max-width: 1540px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  font: 800 12px/1.2 var(--utility);
  letter-spacing: .15em;
}
.hero h1 {
  margin: 0;
  font: 900 clamp(60px, 7.6vw, 124px)/.76 var(--display);
  letter-spacing: -.095em;
  text-transform: uppercase;
}
.hero h1 span {
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}
.hero-dek {
  margin: 34px 0 30px;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.primary-cta, .open-recorder {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--blue);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  font: 800 14px/1 var(--utility);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.primary-cta:hover, .open-recorder:hover:not(:disabled) {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
  background: #0e36ad;
}
.primary-cta:focus-visible, .open-recorder:focus-visible, a:focus-visible, input:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.host-card { margin: 0; transform: rotate(1deg); }
.photo-wrap {
  position: relative;
  overflow: hidden;
  background: #2e1741;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}
.photo-wrap img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.photo-stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  font: 900 15px/.95 var(--utility);
  text-align: center;
  transform: rotate(-11deg);
}
.host-card figcaption {
  margin: 12px 0 0 8px;
  font: 800 clamp(10px, 1vw, 13px)/1.3 var(--utility);
  letter-spacing: .03em;
}
.host-card figcaption span { color: var(--red); }

.hotline-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--yellow);
}
.hotline-strip p {
  margin: 0;
  padding: 22px 16px;
  border-right: var(--line);
  font: 700 13px/1 var(--utility);
  text-align: center;
  text-transform: uppercase;
}
.hotline-strip p:last-child { border-right: 0; }
.hotline-strip strong { font-family: var(--display); font-size: 20px; }

.recorder-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) clamp(20px, 4vw, 64px);
}
.section-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-intro .eyebrow { grid-column: 1 / -1; }
.section-intro h2, .rules h2 {
  margin: 0;
  font: 900 clamp(54px, 7vw, 104px)/.82 var(--display);
  letter-spacing: -.08em;
}
.section-intro > p:last-child {
  margin: 0;
  max-width: 620px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.confession-formula {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 54px;
  padding: 0;
  list-style: none;
  border: var(--line);
  background: var(--white);
}
.confession-formula li {
  min-height: 170px;
  padding: 20px;
  border-right: var(--line);
  font-size: 15px;
}
.confession-formula li:last-child { border-right: 0; }
.confession-formula li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font: 900 34px/1 var(--display);
}
.confession-formula strong { font-size: 17px; }

.recorder-shell {
  border: 4px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--red);
}
.recorder-label {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  color: var(--white);
  font: 700 12px/1 var(--utility);
  letter-spacing: .05em;
}
.recorder-label i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}
.consent-gate, .podline-frame {
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
}
.gate-kicker {
  margin: 0 0 22px;
  font: 900 clamp(22px, 2.5vw, 34px)/1 var(--display);
  letter-spacing: -.04em;
}
.check-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  max-width: 890px;
  margin: 15px 0;
  cursor: pointer;
}
.check-row input {
  appearance: none;
  width: 25px;
  height: 25px;
  margin: 1px 0 0;
  border: 2px solid var(--ink);
  background: var(--white);
}
.check-row input:checked { background: var(--blue); box-shadow: inset 0 0 0 5px var(--white); }
.open-recorder { margin-top: 18px; border-color: var(--ink); cursor: pointer; }
.open-recorder:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.gate-note, .iframe-fallback {
  margin: 18px 0 0;
  max-width: 820px;
  font: 12px/1.5 var(--utility);
}
.podline-frame iframe {
  display: block;
  width: 100%;
  min-width: 300px;
  min-height: 680px;
  border: 0;
  background: #fff;
}

.field-guide {
  margin-top: 42px;
  padding: 26px;
  border: var(--line);
  background: var(--paper-deep);
}
.field-guide h3 { margin: 0 0 20px; font: 900 28px/1 var(--display); }
.field-guide dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 0; }
.field-guide dt { margin-bottom: 6px; font: 800 12px/1 var(--utility); text-transform: uppercase; }
.field-guide dd { margin: 0; font-size: 15px; }

.rules {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 7vw, 120px);
  padding: clamp(72px, 8vw, 120px) clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--blue);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.rules > div, .rules ul { max-width: 680px; }
.rules h2 { font-size: clamp(52px, 6vw, 92px); }
.rules ul { margin: 0; padding: 0; list-style: none; }
.rules li {
  padding: 19px 0 19px 38px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  position: relative;
}
.rules li::before { content: "×"; position: absolute; left: 3px; top: 15px; color: var(--yellow); font: 900 26px/1 var(--display); }

.verdict-banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 18px;
  background: var(--red);
  border-bottom: var(--line);
}
.verdict-banner p { margin: 0; font: 900 clamp(17px, 2.2vw, 34px)/1 var(--display); }
.verdict-banner p:not(:last-child)::after { content: " / "; color: var(--white); padding: 0 .4em; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: end;
  padding: 42px clamp(20px, 4vw, 64px);
  font: 12px/1.5 var(--utility);
}
footer p { margin: 0; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .host-card { max-width: 760px; }
  .section-intro { grid-template-columns: 1fr; row-gap: 24px; }
  .confession-formula { grid-template-columns: repeat(2, 1fr); }
  .confession-formula li:nth-child(2) { border-right: 0; }
  .confession-formula li:nth-child(-n+2) { border-bottom: var(--line); }
  .field-guide dl { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { min-height: 70px; }
  .header-status { font-size: 10px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(42px, 12.3vw, 58px); }
  .hero h1 span { -webkit-text-stroke: 1px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
  .photo-stamp { width: 68px; height: 68px; font-size: 11px; }
  .hotline-strip { grid-template-columns: repeat(2, 1fr); }
  .hotline-strip p:nth-child(2) { border-right: 0; }
  .hotline-strip p:nth-child(-n+2) { border-bottom: var(--line); }
  .confession-formula { grid-template-columns: 1fr; }
  .confession-formula li { min-height: auto; border-right: 0; border-bottom: var(--line); }
  .confession-formula li:nth-child(-n+2) { border-bottom: var(--line); }
  .confession-formula li:last-child { border-bottom: 0; }
  .confession-formula li > span { margin-bottom: 12px; }
  .podline-frame { padding: 10px; }
  .podline-frame iframe { min-width: 0; min-height: 720px; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
