/* Nothing on this page moves. Ham does not react. */
:root {
  --paper: #fbeef2;
  --plate: #ffffff;
  --line: #000000;
  --ink: #2e2225;
  --pink: #f58fb8;
  --mud: #6e4b33;
  --night: #16325c;
  --sans:
    ui-sans-serif, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --pad: clamp(20px, 5vw, 64px);
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--night);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- shared plate: black outline + hard sticker shadow, like the art's own linework --- */
.plate {
  border: 3px solid var(--line);
  border-radius: 16px;
  background: var(--plate);
  box-shadow: 7px 7px 0 var(--line);
  overflow: hidden;
}

/* ---------- sticky nav: CA + Buy + X always visible ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 238, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.nav__mark {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--line);
  text-decoration: none;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__actions .btn {
  padding: 0.5em 1em;
  font-size: 0.75rem;
}
@media (max-width: 640px) {
  .nav__actions .btn--ca {
    display: none;
  }
}

/* ---------- hero: portrait beside the wordmark ---------- */
.hero {
  padding: clamp(28px, 6vw, 72px) 0 clamp(40px, 7vw, 84px);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
@media (min-width: 860px) {
  .hero__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.hero__art {
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wordmark {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(4.2rem, 16vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: var(--line);
  margin: 0.28em 0 0;
}
.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3.6vw, 1.6rem);
  color: var(--ink);
  margin: 0.5rem 0 0;
}
.ticker {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--mud);
  margin: 0.9rem 0 0;
  letter-spacing: 0.02em;
}
.hero__rewards-teaser {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--night);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.4em 0.9em;
  margin: 0.9rem 0 0;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--line);
}
@media (max-width: 859px) {
  .hero__copy {
    text-align: center;
  }
}

/* ---------- actions ---------- */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(18px, 3vw, 26px);
}
@media (max-width: 859px) {
  .actions {
    justify-content: center;
  }
}
.btn {
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border: 3px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--plate);
  color: var(--line);
  box-shadow: 4px 4px 0 var(--line);
  text-decoration: none;
  display: inline-block;
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--line);
}
.btn--buy {
  background: var(--pink);
}
.btn--ca {
  position: relative;
  font-family: var(--serif);
  font-size: 0.86rem;
  font-weight: 400;
  word-break: break-all;
  max-width: 100%;
}
.copied-bubble {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--pink);
  color: var(--line);
  border: 3px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 3px 3px 0 var(--line);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.copied-bubble.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.btn[aria-disabled='true'],
a[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.links a[aria-disabled='true'] {
  border-color: transparent;
}

/* ---------- spreads ---------- */
section {
  padding: clamp(48px, 9vw, 110px) 0;
}
.spread {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 820px) {
  .spread {
    grid-template-columns: 1fr 1fr;
  }
}
.tilt-l {
  transform: rotate(-1.4deg);
}
.tilt-r {
  transform: rotate(1.2deg);
}

.read {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.4vw, 2.05rem);
  line-height: 1.45;
  margin: 0;
}
.read span {
  display: block;
}
.read span + span {
  margin-top: 0.15em;
}
.read .beat {
  margin-top: 0.9em;
  color: var(--pink);
  font-style: italic;
}

/* ---------- routine ---------- */
.routine {
  background: var(--plate);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}
h2 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(2rem, 7vw, 3.4rem);
  margin: 0 0 clamp(24px, 4vw, 44px);
  color: var(--line);
}
.grid {
  display: grid;
  gap: clamp(14px, 2.6vw, 24px);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 3px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}
.card .shot {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 3px solid var(--line);
}
.card .shot img {
  height: 100%;
  object-fit: cover;
}
.card figcaption {
  padding: 11px 14px 13px;
  margin-top: auto;
}
.time {
  display: block;
  font-family: var(--serif);
  color: var(--mud);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.what {
  display: block;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(0.98rem, 2.4vw, 1.06rem);
  line-height: 1.25;
  margin-top: 5px;
  text-wrap: balance;
}

/* ---------- the other one ---------- */
.butcher {
  background: var(--plate);
  text-align: center;
  border-bottom: 3px solid var(--line);
}
.butcher .frame {
  max-width: min(520px, 86vw);
  margin: 0 auto;
}
.butcher p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.4vw, 2.05rem);
  line-height: 1.45;
  margin: clamp(26px, 4vw, 40px) 0 0;
}
.butcher p .beat {
  display: block;
  margin-top: 0.5em;
  color: var(--mud);
}

/* ---------- mud ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mud {
  position: relative;
  background: var(--mud) url('assets/img/roadmap-mud-field.png') center top /
    cover no-repeat;
  color: #f6e9df;
  border-bottom: 3px solid var(--line);
}
.mud::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(110, 75, 51, 0.72);
}
.mud .wrap {
  position: relative;
}
.mud .said {
  padding: clamp(36px, 7vw, 72px) 0;
}
@media (max-width: 640px) {
  .mud .wrap {
    padding-left: calc(var(--pad) + 14px);
    padding-right: calc(var(--pad) + 14px);
  }
}
.mud h2 {
  color: #f6e9df;
}
.mud ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3.6vw, 1.6rem);
  line-height: 1.6;
}
.mud .last {
  margin-top: 1em;
  font-weight: 400;
  color: var(--pink);
}

/* ---------- moods: the one thing on this page that moves ---------- */
.moods {
  background: var(--plate);
  border-bottom: 3px solid var(--line);
}
.moods__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mud);
  margin: 0.4em 0 0;
}
.moods__viewport {
  overflow: hidden;
  margin-block: clamp(24px, 5vw, 40px);
}
.moods__track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: var(--pad);
  animation: marquee 26s linear infinite;
}
.moods__track img {
  height: 160px;
  width: 160px;
  object-fit: cover;
  border: 3px solid var(--line);
  border-radius: 12px;
  box-shadow: 7px 7px 0 var(--line);
  background: #fff;
}
.moods__track img.mood--left {
  object-position: left center;
}
.moods__track img.mood--right {
  object-position: right center;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.link-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
  text-decoration: none;
}

/* ---------- rewards: the strongest pitch on the page, so it gets its own
   dark band instead of blending into the paper background like everything
   else ---------- */
.rewards {
  background: var(--night);
  color: #dde6f2;
  border-bottom: 3px solid var(--line);
}
.rewards__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--pink);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  margin-bottom: 1em;
}
.rewards h2 {
  color: #fff;
}
.rewards__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  line-height: 1.5;
  max-width: 62ch;
  margin: 0 0 clamp(28px, 5vw, 44px);
  color: #dde6f2;
}
.rewards__lede a {
  color: #fff;
  border-bottom: 2px solid var(--pink);
  text-decoration: none;
}
.rewards__flow {
  list-style: none;
  margin: 0 0 clamp(32px, 6vw, 52px);
  padding: 0;
  display: grid;
  gap: 4px;
  max-width: 640px;
}
.rewards__flow li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.16);
}
.rewards__flow li:last-child {
  border-bottom: 0;
}
.rewards__num {
  font-family: var(--sans);
  font-weight: 900;
  color: var(--pink);
  font-size: 1.3rem;
  min-width: 1.4rem;
}
.rewards__stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: clamp(28px, 5vw, 44px);
}
.rewards__stat {
  padding: 20px;
  text-align: center;
}
.rewards__stat-value {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--line);
}
.rewards__stat-label {
  display: block;
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--mud);
  margin-top: 6px;
}
.rewards__fine {
  font-family: var(--serif);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #b9c9e0;
  max-width: 62ch;
  margin: 0;
}

/* ---------- steps (a real sequence, so numbers earn their place) ---------- */
.steps {
  counter-reset: s;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
}
.steps li {
  counter-increment: s;
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.14);
  font-size: 1.15rem;
}
.steps li:last-child {
  border-bottom: 0;
}
.steps li::before {
  content: counter(s);
  font-family: var(--serif);
  color: var(--mud);
  font-size: 1rem;
  min-width: 1.1em;
}

/* ---------- play teaser ---------- */
.play {
  background: var(--pink);
  border-bottom: 3px solid var(--line);
}
.play__inner {
  text-align: center;
}
.play h2 {
  margin: 0;
}
.play p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0.6em 0 1.4em;
}

/* ---------- footer ---------- */
footer {
  background: var(--night);
  color: #dde6f2;
  padding: clamp(44px, 8vw, 88px) 0;
}
.cry {
  font-weight: 900;
  font-size: clamp(1.8rem, 6.5vw, 3rem);
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.2rem;
}
.fine {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 58ch;
  color: #b9c9e0;
  margin: 0;
}
.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  font-weight: 700;
}
.links a {
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
}
