:root {
  --paper: #FBFBF9;
  --ink: #0E0E0E;
  --purple: #5B2BFF;
  --purple-soft: #9B85FF;
  --grey: #6B6B6B;
  --body: #333333;
  --rule: #E4E4E0;
  --hover-wash: #F1F1EC;
  --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(--purple); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--purple); 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(--purple); font-size: 26px; line-height: 0; }

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

.masthead__links { display: flex; align-items: baseline; gap: 18px; }

.navlink {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.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(--ink); color: var(--paper); }

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

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

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

.hero__badge {
  position: absolute;
  top: 64px;
  right: 32px;
  transform: rotate(7deg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  border: 3px solid var(--purple);
  padding: 10px 16px;
}

.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;
}

.cycle {
  display: inline-block;
  overflow: hidden;
  height: 1.06em;
  vertical-align: bottom;
}
.cycle__track { display: block; animation: cycle 15s cubic-bezier(.8, 0, .2, 1) infinite; }
.cycle__word {
  display: block;
  height: 1.06em;
  line-height: 1.06;
  font-style: italic;
  color: var(--purple);
}
.cycle__word u { text-decoration: none; border-bottom: 6px solid var(--purple); }
.cycle__word i { color: var(--ink); font-style: normal; }

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

/* ---------- 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;
}

/* ---------- featured pick ---------- */

.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
}
.feature:hover { color: var(--ink); }
.feature:hover .readwhy { color: var(--ink); }

.frame { position: relative; height: 380px; }
.frame__shadow { position: absolute; inset: 0; transform: translate(10px, 10px); background: var(--purple); }
.frame__slot {
  position: absolute;
  inset: 0;
  background: #EDEDEA;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.frame__slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.feature__meta { display: flex; flex-direction: column; gap: 16px; }

.feature__tags { display: flex; align-items: center; gap: 12px; }

.tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 10px;
}
.tag--cat {
  background: none;
  color: var(--purple);
  font-weight: 800;
  padding: 0;
}

.feature h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature h2 em { font-style: italic; color: var(--purple); }

.feature__name { font-family: var(--sans); font-size: 16px; font-weight: 800; }
.feature__name span { color: var(--grey); font-weight: 500; }

.feature__line { margin: 0; font-size: 19px; line-height: 1.5; font-style: italic; color: var(--body); }

.readwhy {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ---------- the full twelve ---------- */

.listhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 36px 0 4px;
}
.listhead__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.listhead__note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 12px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
}
.row:hover { background: var(--hover-wash); box-shadow: inset 8px 0 0 var(--purple); color: var(--ink); }

.row__num {
  font-family: var(--sans);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.row__q { font-size: 29px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }
.row__q em { font-style: italic; border-bottom: 3px solid var(--purple); }
.row__line { font-size: 16px; color: var(--grey); margin-top: 5px; font-style: italic; }

.row__side { text-align: right; }
.row__name { font-family: var(--sans); font-size: 14px; font-weight: 800; }
.row__price { font-family: var(--sans); font-size: 13px; color: var(--grey); margin-top: 2px; }

.list-end { border-top: 3px solid var(--ink); }

/* ---------- article (detail + about) ---------- */

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

.article__head { position: relative; margin: 48px 0 0; }

.badge {
  position: absolute;
  top: -14px;
  right: 0;
  transform: rotate(6deg);
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  border: 3px solid var(--purple);
  padding: 8px 12px;
}

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

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

.byline {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin: 26px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 3px double var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey);
}
.byline span, .byline a { text-transform: uppercase; white-space: nowrap; }
.byline a { font-weight: 900; color: var(--ink); }
.byline .byline__list { color: var(--purple); font-weight: 800; }
.byline .byline__date { margin-left: auto; }

.article .frame { height: 400px; margin: 36px 0; }
.article .frame__shadow { transform: translate(12px, 12px); }

.pricecall {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.pricecall span { color: var(--grey); }

.pull {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  margin: 0 0 44px;
}
.pull__mark { font-size: 110px; line-height: 0.6; font-style: italic; color: var(--purple); font-weight: 600; }
.pull p { font-size: 24px; line-height: 1.45; font-style: italic; color: var(--body); margin: 0; }

.why {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
}
.why__num {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
}
.why h3 { margin: 0 0 8px; font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.why p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--body); }

.also {
  margin: 36px 0;
  padding: 26px 30px;
  border: 1px solid var(--ink);
  border-left: 8px solid var(--purple);
}
.also__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.also p { margin: 0; font-size: 18px; line-height: 1.55; }

.buybox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  background: var(--ink);
  color: var(--paper);
}
.buybox__name { font-family: var(--sans); font-size: 18px; font-weight: 900; }
.buybox__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: #A0A09B;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.buybox__sub--plain { text-transform: none; letter-spacing: 0; }

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

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

.crossref {
  margin-top: 48px;
  padding: 22px 0 0;
  border-top: 3px double var(--ink);
  font-size: 19px;
}
.crossref a { font-weight: 600; font-style: italic; }

/* ---------- about ---------- */

.about__intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 3px double var(--ink);
}

.portrait { position: relative; width: 200px; height: 200px; }
.portrait__shadow {
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  background: var(--purple);
  border-radius: 50%;
}
.portrait__slot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #EDEDEA;
  border: 1px solid var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}
.portrait__slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about__intro .lead { font-size: 22px; line-height: 1.5; margin: 0; }
.about__intro .lead a { font-weight: 600; }
.about__intro .follow { font-size: 19px; line-height: 1.6; color: var(--body); margin: 18px 0 0; }

.rules { margin: 40px 0 0; }
.rules__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rule {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
}
.rule:last-child { border-bottom: 1px solid var(--ink); }
.rule__num {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
}
.rule p { margin: 0; font-size: 18px; line-height: 1.55; }

.about .buybox { margin-top: 40px; }

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

.footer { background: var(--ink); color: var(--paper); 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(--purple-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(--purple-soft); }

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cycle {
  0%, 12% { transform: translateY(0); }
  16.6%, 29% { transform: translateY(-1.06em); }
  33.3%, 45.6% { transform: translateY(-2.12em); }
  50%, 62.3% { transform: translateY(-3.18em); }
  66.6%, 79% { transform: translateY(-4.24em); }
  83.3%, 95.6% { transform: translateY(-5.3em); }
  100% { transform: translateY(-6.36em); }
}

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

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

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .frame { height: 300px; }
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .masthead__inner { flex-wrap: wrap; }
  .dateline { order: 3; width: 100%; }
  .hero__inner { padding-top: 56px; padding-bottom: 48px; }
  .hero__badge { position: static; display: inline-block; margin-bottom: 24px; }
  .article { padding: 32px 20px 64px; }
  .article .frame { height: 260px; }
  .badge { position: static; display: inline-block; transform: rotate(0); margin-bottom: 18px; }
  .byline { flex-wrap: wrap; gap: 10px 16px; }
  .byline .byline__date { margin-left: 0; }
  .row { grid-template-columns: 1fr; gap: 8px; }
  .row__num { font-size: 40px; }
  .row__side { text-align: left; }
  .pull { grid-template-columns: 40px 1fr; }
  .pull__mark { font-size: 72px; }
  .why { grid-template-columns: 52px 1fr; }
  .buybox { flex-direction: column; align-items: flex-start; }
  .about__intro { grid-template-columns: 1fr; }
  .footer__row { flex-direction: column; }
}
