:root {
  --paper: #FBFBF9;
  --ink: #0E0E0E;
  --blue: #0047FF;
  --blue-soft: #6E8CFF;
  --grey: #6B6B6B;
  --body: #333333;
  --rule: #E4E4E0;
  --green: #0E7A3D;
  --red: #C0261B;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --shell: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--blue); color: #FFFFFF; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 32px; }

/* ---------- masthead ---------- */

.masthead { border-bottom: 3px double var(--ink); }

.masthead__inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark span { color: var(--blue); font-size: 22px; line-height: 0; }

.dateline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

.stamp {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 6px 12px;
  white-space: nowrap;
}
.stamp:hover { background: var(--blue); color: #FFFFFF; }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; }

.hero__mark {
  position: absolute;
  top: 24px;
  right: 4%;
  font-size: clamp(180px, 26vw, 340px);
  line-height: 1;
  font-style: italic;
  font-weight: 600;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px var(--blue);
  opacity: 0.35;
  animation: bob 7s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.hero__inner { position: relative; padding-top: 84px; padding-bottom: 72px; }

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  border-bottom: 6px solid var(--blue);
}

.hero__lede {
  max-width: 540px;
  font-size: 21px;
  line-height: 1.55;
  color: var(--body);
  margin: 32px 0 0;
}
.hero__lede a { font-weight: 600; }

/* ---------- ticker ---------- */

.ticker {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.ticker__track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- question grid ---------- */

.grid-wrap { padding-top: 48px; padding-bottom: 72px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--ink);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px 22px;
  border: 1px solid var(--ink);
  margin: -0.5px;
  background: var(--paper);
  color: var(--ink);
}
.card:hover { background: var(--blue); color: #FFFFFF; }

.card__num {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}

.card__q {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.card__q em { font-style: italic; }

.card__names {
  font-size: 13.5px;
  line-height: 1.65;
  font-family: var(--sans);
  opacity: 0.75;
}

.card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.card__foot span:last-child { opacity: 0.6; font-weight: 700; }

/* ---------- question page ---------- */

.question { max-width: 800px; margin: 0 auto; padding: 44px 32px 88px; }

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 48px 0 14px;
}

.question h1 {
  margin: 0 0 24px;
  font-size: clamp(46px, 6.5vw, 76px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.question h1 em {
  font-style: italic;
  color: var(--blue);
  border-bottom: 5px solid var(--blue);
}

.standfirst {
  padding: 14px 0 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 3px double var(--ink);
  font-size: 20px;
  line-height: 1.5;
  color: var(--body);
}

/* ---------- verdict table ---------- */

.table { margin-top: 36px; border: 3px solid var(--ink); }

.table__head,
.table__row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 16px;
  padding: 12px 20px;
}

.table__head {
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.table__head span:last-child { text-align: right; }

.table__row {
  align-items: baseline;
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
}
.table__row--crowned { background: #F3F3F1; }

.table__tier {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.table__row--crowned .table__tier { color: var(--ink); }

.table__name { font-size: 18px; font-weight: 600; }
.table__crown {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.table__price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

/* ---------- contenders ---------- */

.contenders { margin-top: 36px; }

.or {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #A3A3A3;
}
.or::before,
.or::after {
  content: '';
  flex: 1;
  border-top: 1px dashed #A3A3A3;
}

.contender {
  border: 1px solid var(--ink);
  padding: 28px 30px;
  position: relative;
}
.contender--crowned {
  border: 3px solid var(--ink);
  background: #FFFFFF;
}

.contender__flag {
  position: absolute;
  top: -16px;
  right: 22px;
  transform: rotate(5deg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #FFFFFF;
  padding: 8px 14px;
}

.contender__tier {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.contender--crowned .contender__tier { color: var(--ink); }

.contender__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.contender__name { font-size: 27px; font-weight: 600; letter-spacing: -0.01em; }
.contender__price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--grey);
  white-space: nowrap;
}

.scales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.scale { border-left: 4px solid; padding-left: 14px; }
.scale--for { border-color: var(--green); }
.scale--against { border-color: var(--red); }

.scale__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.scale--for .scale__label { color: var(--green); }
.scale--against .scale__label { color: var(--red); }
.scale__text { font-size: 16px; line-height: 1.5; }

.verdict {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.verdict__line { font-size: 18px; font-style: italic; color: var(--body); }
.verdict__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- product pages ---------- */

.crumbs {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.crumbs span[aria-hidden] { color: var(--rule); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--ink);
  margin-top: 32px;
}
.fact { padding: 16px 18px; border-right: 1px solid var(--rule); }
.fact:last-child { border-right: 0; }
.fact__k {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.fact__v { font-size: 19px; font-weight: 600; }

.notes { margin-top: 40px; }
.note { border-top: 1px solid var(--rule); padding-top: 18px; margin-top: 22px; }
.note:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.note__h { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.note__p { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0; }

.field__h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 44px 0 0;
}
.field { margin-top: 14px; border: 3px solid var(--ink); }
.field__row {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.field__row:last-child { border-bottom: 0; }
.field__row--crowned { background: #F3F3F1; }
.field__row--self { box-shadow: inset 4px 0 0 var(--blue); }
.field__tier {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.field__name { font-size: 18px; font-weight: 600; }
.field__here {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.field__price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--grey);
  white-space: nowrap;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.button {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: #FFFFFF;
  padding: 14px 22px;
  white-space: nowrap;
}
.button:hover { background: var(--blue); color: #FFFFFF; }

.smallprint {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  margin: 26px 0 0;
}

/* ---------- footer ---------- */

.footer { background: var(--ink); color: #FFFFFF; margin-top: 64px; }
.footer__inner { padding-top: 56px; padding-bottom: 44px; }

.footer__mark {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer__mark span { color: var(--blue-soft); }

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #2C2C2C;
  font-family: var(--sans);
  font-size: 12px;
  color: #A0A09B;
}
.footer__row strong { color: var(--paper); font-weight: 400; }
.footer__links { display: flex; gap: 20px; white-space: nowrap; }
.footer__links a {
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__links a:hover { color: var(--blue-soft); }

/* ---------- animation ---------- */

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes bob {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track, .hero__mark { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .masthead__inner { flex-wrap: wrap; }
  .dateline { order: 3; width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 56px; padding-bottom: 48px; }
  .question { padding: 32px 20px 64px; }
  .table__head { display: none; }
  .table__row { grid-template-columns: 1fr auto; gap: 4px 16px; }
  .table__tier { grid-column: 1 / -1; }
  .scales { grid-template-columns: 1fr; gap: 16px; }
  .verdict { flex-direction: column; align-items: flex-start; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--rule); }
  .fact:last-child { border-bottom: 0; }
  .field__row { grid-template-columns: 1fr auto; gap: 4px 16px; }
  .field__tier { grid-column: 1 / -1; }
}
