:root {
  --uncertainty-red: #b95d4d;
  --uncertainty-blue: #2e63b7;
}

.uncertainty-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.uncertainty-hero {
  max-width: 900px;
  padding: 38px 0 70px;
}

.uncertainty-main .eyebrow,
.uncertainty-footer .eyebrow {
  color: var(--gold);
  font: 600 8px DM Mono, monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.uncertainty-hero h1 {
  margin: 12px 0 24px;
  font: 600 clamp(58px, 8vw, 104px)/.88 Newsreader, serif;
  letter-spacing: -.035em;
}

.uncertainty-hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.uncertainty-hero > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--ink);
  font: 500 8px DM Mono, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-rule i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.coin-story {
  min-height: 490px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--deep);
}

.coin-stage {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.coin-stage::before {
  content: "";
  position: absolute;
  inset: 9% 14%;
  border: 1px solid rgba(246, 241, 231, .28);
  border-radius: 160px;
}

.coin-stage::after {
  content: "FIRST HALF";
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: rgba(246, 241, 231, .55);
  font: 500 8px DM Mono, monospace;
  letter-spacing: .14em;
}

.sun {
  position: absolute;
  top: 44px;
  right: 54px;
  width: 86px;
  height: 86px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(214, 169, 79, .08), 0 0 0 40px rgba(214, 169, 79, .04);
}

.coin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  border: 9px double var(--gold);
  border-radius: 50%;
  background: var(--paper);
  color: var(--deep);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: coinTurn 5.4s cubic-bezier(.2, .72, .2, 1) infinite;
}

.coin b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  font: 600 37px Newsreader, serif;
}

.coin b:last-child {
  transform: rotateY(180deg);
}

.pitch-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(246, 241, 231, .26);
}

@keyframes coinTurn {
  0%, 16% { transform: translate(-50%, -50%) rotateY(0) translateY(0); }
  42% { transform: translate(-50%, -50%) rotateY(900deg) translateY(-54px); }
  68%, 100% { transform: translate(-50%, -50%) rotateY(1080deg) translateY(0); }
}

.coin-copy {
  display: grid;
  align-content: center;
  padding: 62px;
  color: var(--ivory);
}

.coin-copy h2,
.voice h2,
.branch-board h2,
.price-example h2,
.closing-note h2 {
  margin: 9px 0 18px;
  font: 600 clamp(32px, 4vw, 50px)/.98 Newsreader, serif;
}

.coin-copy p {
  margin: 0 0 14px;
  color: rgba(246, 241, 231, .7);
  font-size: 11px;
  line-height: 1.75;
}

.coin-copy a {
  width: fit-content;
  margin-top: 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.voice {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: end;
  gap: 70px;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.character {
  display: grid;
  justify-items: center;
  align-self: stretch;
}

.character img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(16, 35, 28, .14));
}

.character span {
  min-width: 110px;
  margin-top: -20px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  text-align: center;
  background: var(--paper);
  font: 600 9px DM Mono, monospace;
  text-transform: uppercase;
}

.voice-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.chaos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.chaos-list li {
  min-height: 120px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chaos-list li > b {
  color: var(--gold);
  font: 600 9px DM Mono, monospace;
}

.chaos-list li span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.chaos-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font: 600 18px Newsreader, serif;
}

.branch-board {
  margin: 78px 0;
  padding: 46px;
  border-radius: 20px;
  color: var(--ivory);
  background: var(--forest);
}

.branch-board header {
  max-width: 680px;
}

.branch-board > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(246, 241, 231, .22);
  border-left: 1px solid rgba(246, 241, 231, .22);
}

.branch-board article {
  min-height: 180px;
  padding: 25px;
  border-right: 1px solid rgba(246, 241, 231, .22);
  border-bottom: 1px solid rgba(246, 241, 231, .22);
}

.branch-board article small {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font: 600 26px DM Mono, monospace;
}

.branch-board article strong {
  display: block;
  font: 600 21px Newsreader, serif;
}

.branch-board article p {
  color: rgba(246, 241, 231, .65);
  font-size: 9px;
  line-height: 1.6;
}

.branch-note {
  margin: 14px 0 0;
  color: rgba(246, 241, 231, .48);
  font: 500 7.5px DM Mono, monospace;
  text-transform: uppercase;
}

.voice-bookie {
  grid-template-columns: 1fr 320px;
  align-items: center;
}

.voice-bookie .bookie-character {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  width: 300px;
  height: 300px;
  padding: 18px;
  border: 1px solid rgba(11, 61, 46, .18);
  border-radius: 50%;
  background: rgba(252, 250, 245, .78);
  box-shadow: 0 28px 70px rgba(16, 35, 28, .12);
}

.voice-bookie .bookie-character::before,
.voice-bookie .bookie-character::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.voice-bookie .bookie-character::before {
  inset: 8px;
  border: 1px solid rgba(214, 169, 79, .56);
}

.voice-bookie .bookie-character::after {
  top: 20px;
  right: 36px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(214, 169, 79, .12);
}

.voice-bookie .bookie-character > img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.voice-bookie .bookie-character > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 86px;
  margin: 0;
  padding: 8px 12px;
  border-color: rgba(11, 61, 46, .2);
  color: var(--ivory);
  background: var(--deep);
  box-shadow: 0 8px 22px rgba(16, 35, 28, .16);
}

.bookie-steps {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.bookie-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bookie-steps article > b {
  color: var(--gold);
  font: 600 19px DM Mono, monospace;
}

.bookie-steps article span {
  display: grid;
  gap: 4px;
}

.bookie-steps strong {
  font: 600 17px Newsreader, serif;
}

.bookie-steps small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.voice-bookie blockquote {
  margin: 28px 0 0;
  padding: 24px;
  border-left: 3px solid var(--gold);
  color: rgba(246, 241, 231, .72);
  background: var(--deep);
  font-size: 10px;
  line-height: 1.65;
}

.voice-bookie blockquote span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font: 600 17px Newsreader, serif;
}

.price-example {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding: 80px 0;
}

.price {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font: 600 64px DM Mono, monospace;
  box-shadow: 0 0 0 24px rgba(214, 169, 79, .08);
}

.price-example p {
  max-width: 650px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.closing-note {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.closing-note img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.closing-note p {
  max-width: 520px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.closing-note nav {
  display: grid;
  gap: 9px;
}

.closing-note nav a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.closing-note nav a:first-child {
  color: var(--ivory);
  border-color: var(--forest);
  background: var(--forest);
}

.uncertainty-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: var(--ivory);
  background: var(--deep);
}

.uncertainty-footer img {
  width: 150px;
  height: auto;
}

.uncertainty-footer p {
  color: rgba(246, 241, 231, .55);
  font-size: 9px;
}

.uncertainty-footer nav {
  display: flex;
  gap: 20px;
}

.uncertainty-footer nav a {
  color: var(--ivory);
  font-size: 9px;
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .coin-story,
  .voice,
  .voice-bookie,
  .price-example,
  .closing-note {
    grid-template-columns: 1fr;
  }

  .coin-stage {
    min-height: 380px;
  }

  .voice {
    gap: 20px;
  }

  .voice-bookie .voice-copy {
    order: 2;
  }

  .voice-bookie .character {
    order: 1;
  }

  .voice-bookie .bookie-character {
    width: min(300px, 82vw);
    height: min(300px, 82vw);
    margin-inline: auto;
  }

  .voice-bookie .bookie-character > img {
    width: min(250px, 68vw);
    height: min(250px, 68vw);
  }

  .character img {
    height: 430px;
  }

  .branch-board > div {
    grid-template-columns: 1fr;
  }

  .branch-board article {
    min-height: auto;
  }

  .closing-note {
    text-align: center;
  }

  .closing-note img {
    margin: auto;
  }

  .closing-note p {
    margin-inline: auto;
  }

  .closing-note nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .uncertainty-main {
    width: min(100% - 24px, 1180px);
    padding-top: 38px;
  }

  .uncertainty-hero h1 {
    font-size: 54px;
  }

  .hero-rule {
    flex-wrap: wrap;
  }

  .coin-copy,
  .branch-board {
    padding: 28px;
  }

  .chaos-list {
    grid-template-columns: 1fr;
  }

  .voice {
    padding: 64px 0;
  }

  .price-example {
    padding: 64px 10px;
  }

  .price {
    width: 170px;
    height: 170px;
    font-size: 48px;
  }

  .closing-note {
    padding: 26px;
  }

  .closing-note nav {
    grid-template-columns: 1fr;
  }

  .uncertainty-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .uncertainty-footer img {
    margin: auto;
  }

  .uncertainty-footer nav {
    justify-content: center;
  }
}
