:root {
  --ink: #121725;
  --paper: #f5f0e6;
  --red: #ef463c;
  --yellow: #ffd447;
  --blue: #476cff;
  --mint: #72dbb0;
  --freeze-ice: #67e8f9;
  --blockade-blue: #2563eb;
  --war-red: #ef4444;
  --purple: #a855f7;
  --white: #fff;
  --line: 3px solid var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a {
  color: inherit;
}
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
  padding: 22px 28px;
}
.landing-header {
  max-width: 1480px;
  padding-inline: 24px;
}
.landing-header nav {
  gap: clamp(8px, 1.25vw, 20px);
}
.landing-header nav > a:not(.button) {
  font-size: clamp(9px, 0.78vw, 11px);
  white-space: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav > a:not(.button) {
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--red);
  color: #fff;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: 0.15s;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.button-small {
  padding: 10px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 11px;
}
.kicker {
  margin: 0 0 12px;
  color: #d52f28;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 2.2px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  max-width: 1240px;
  min-height: 690px;
  margin: auto;
  padding: 60px 28px 90px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.8vw, 96px);
  line-height: 1;
  letter-spacing: -6px;
}
.hero h1 span {
  color: var(--red);
}
.hero-sub {
  max-width: 530px;
  margin: 28px 0;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.quick-facts span {
  padding: 7px 10px;
  background: #fff;
  border: 2px solid var(--ink);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.quick-facts b {
  color: var(--red);
  font-size: 15px;
}
.hero-art {
  position: relative;
  min-height: 530px;
}
.map-paper {
  position: absolute;
  inset: 42px 8px 18px 58px;
  overflow: hidden;
  background-color: #dff1e8;
  background-image: linear-gradient(rgba(18, 23, 37, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 37, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  border: var(--line);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(2deg);
}
.tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  height: 120px;
  border: 2px solid var(--ink);
  font-size: 0;
  clip-path: polygon(18% 0, 100% 12%, 89% 83%, 45% 100%, 0 70%);
}
.tile-a {
  left: 45px;
  top: 98px;
  background: var(--red);
  transform: rotate(8deg);
}
.tile-b {
  left: 165px;
  top: 66px;
  background: var(--red);
  transform: rotate(-5deg);
}
.tile-c {
  left: 300px;
  top: 38px;
  background: var(--blue);
  transform: rotate(7deg);
}
.tile-d {
  left: 85px;
  top: 205px;
  background: var(--red);
  transform: rotate(-8deg);
}
.tile-e {
  left: 210px;
  top: 170px;
  background: var(--red);
  transform: rotate(4deg);
}
.tile-f {
  left: 346px;
  top: 155px;
  background: var(--blue);
  transform: rotate(-9deg);
}
.tile-g {
  left: 101px;
  top: 360px;
  background: repeating-linear-gradient(
    45deg,
    var(--red),
    var(--red) 9px,
    #fff 9px,
    #fff 18px
  );
  transform: rotate(175deg);
}
.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 10px;
}
.pin i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--ink);
}
.pin-one {
  left: 32px;
  top: 360px;
  transform: rotate(-5deg);
}
.pin-two {
  right: 42px;
  top: 114px;
  transform: rotate(4deg);
}
.pin-two i {
  background: var(--blue);
}
.claimed-stamp {
  position: absolute;
  right: 22px;
  bottom: 34px;
  padding: 13px 20px;
  color: var(--red);
  border: 4px solid var(--red);
  font: 950 28px/1 system-ui;
  transform: rotate(-7deg);
  text-align: center;
}
.claimed-stamp small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.scribble {
  position: absolute;
  font: 700 15px/1.1 cursive;
  transform: rotate(-8deg);
}
.scribble-one {
  left: 6px;
  top: 28px;
}
.scribble-two {
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
}
.rules-section,
.powers-section {
  padding: 100px max(28px, calc((100vw - 1184px) / 2));
}
.rules-section {
  background: var(--ink);
  color: #fff;
}
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}
.section-heading h2,
.score-copy h2,
.fortify-copy h2,
.bonus-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -3.5px;
}
.section-heading > p:last-child {
  margin: 16px 0 0;
  /*color: #b9c0d0;*/
  font-size: 16px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  min-height: 340px;
  padding: 22px;
  background: #fff;
  color: var(--ink);
  border: 3px solid #fff;
  box-shadow: 6px 6px 0 var(--red);
}
.step:nth-child(2) {
  box-shadow: 6px 6px 0 var(--yellow);
}
.step:nth-child(3) {
  box-shadow: 6px 6px 0 var(--blue);
}
.step:nth-child(4) {
  box-shadow: 6px 6px 0 var(--mint);
}
.step-number {
  font-size: 11px;
  font-weight: 950;
  color: #7b8498;
}
.step h3 {
  margin: 21px 0 8px;
  font-size: 20px;
  letter-spacing: -0.6px;
}
.step p {
  margin: 0;
  color: #596275;
  font-size: 13px;
  line-height: 1.45;
}
.step-icon {
  height: 170px;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose i {
  width: 54px;
  height: 54px;
  margin: -5px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}
.choose i:nth-child(2) {
  background: var(--yellow);
  transform: translateY(-35px);
}
.choose i:nth-child(3) {
  background: var(--blue);
}
.locate {
  position: relative;
}
.locate span {
  font-size: 100px;
  color: var(--red);
  font-weight: 200;
}
.locate i {
  position: absolute;
  width: 70px;
  height: 25px;
  bottom: 34px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  border-top: 0;
}
.phone {
  width: 112px;
  height: 168px;
  margin: 10px auto 0;
  flex-direction: column;
  gap: 17px;
  border: 5px solid var(--ink);
  border-radius: 18px;
  background: #dff1e8;
}
.phone span {
  font-size: 56px;
  color: var(--blue);
}
.phone b {
  padding: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
}
.claim {
  flex-direction: column;
  gap: 11px;
}
.claim span {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 58px;
  font-weight: 950;
}
.claim b {
  color: #13805c;
}
.daily-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 46px auto 0;
  padding: 17px 20px;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid #fff;
  box-shadow: 6px 6px 0 var(--red);
}
.daily-note > span {
  font-size: 34px;
}
.daily-note b,
.daily-note small {
  display: block;
}
.daily-note small {
  margin-top: 3px;
  font-size: 12px;
}
.score-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 110px max(28px, calc((100vw - 1120px) / 2));
  background: var(--yellow);
}
.cluster-board {
  position: relative;
  height: 430px;
  background: #fff;
  border: var(--line);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}
.cluster {
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  background: var(--red);
  border: var(--line);
  clip-path: polygon(14% 3%, 90% 0, 100% 70%, 60% 100%, 0 83%);
  font-size: 20px;
  font-weight: 950;
}
.c1 {
  left: 55px;
  top: 60px;
}
.c2 {
  left: 157px;
  top: 49px;
  transform: rotate(11deg);
}
.c3 {
  left: 70px;
  top: 162px;
  transform: rotate(-9deg);
}
.c4 {
  left: 177px;
  top: 158px;
}
.outpost-tile {
  position: absolute;
  right: 40px;
  bottom: 46px;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(
    45deg,
    var(--red),
    var(--red) 8px,
    #fff 8px,
    #fff 16px
  );
  border: var(--line);
  font-size: 24px;
  font-weight: 950;
  transform: rotate(7deg);
}
.cluster-total {
  position: absolute;
  left: 62px;
  bottom: 54px;
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  transform: rotate(2deg);
}
.cluster-board em {
  position: absolute;
  right: 38px;
  bottom: 20px;
  font-size: 10px;
  font-weight: 950;
}
.connection-line {
  position: absolute;
  right: 138px;
  bottom: 95px;
  width: 70px;
  border-top: 3px dashed var(--ink);
  transform: rotate(8deg);
}
.score-copy .kicker {
  color: #b51e19;
}
.score-copy h2 {
  max-width: 540px;
}
.big-rule {
  font-size: 19px;
  line-height: 1.45;
}
.score-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.score-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 2px solid rgba(18, 23, 37, 0.25);
  font-size: 13px;
  font-weight: 800;
}
.score-copy li span {
  color: var(--red) !important;
  font-size: 18px;
}
.stripe {
  color: var(--ink) !important;
}
.fortify-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 540px;
  padding: 90px max(28px, calc((100vw - 1100px) / 2));
  background: var(--red);
  color: #fff;
}
.fortify-copy {
  max-width: 650px;
}
.fortify-copy .kicker {
  color: var(--yellow);
}
.fortify-copy > p:not(.kicker) {
  max-width: 550px;
  font-size: 17px;
  line-height: 1.5;
}
.fortify-days {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.fortify-days span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-size: 10px;
  font-weight: 950;
}
.fortify-days b {
  font-size: 20px;
}
.fortify-days .locked {
  background: var(--yellow);
}
.fortify-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 350px;
}
.castle {
  font-size: 190px;
  color: var(--yellow);
  filter: drop-shadow(8px 8px 0 var(--ink));
}
.shield-ring {
  position: absolute;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  border: 5px solid #fff;
  font-size: 50px;
  font-weight: 950;
  right: 12px;
  top: 42px;
}
.ray {
  position: absolute;
  width: 80px;
  border-top: 5px solid var(--yellow);
}
.r1 {
  top: 25px;
  left: 34px;
  transform: rotate(35deg);
}
.r2 {
  bottom: 24px;
  right: 40px;
  transform: rotate(35deg);
}
.r3 {
  top: 120px;
  right: 2px;
  transform: rotate(-12deg);
}
.r4 {
  bottom: 100px;
  left: 5px;
  transform: rotate(-12deg);
}
.powers-section {
  background: #f7f4ed;
}
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.power {
  position: relative;
  min-height: 350px;
  padding: 30px;
  background: #fff;
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}
.power-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 40px;
  border: var(--line);
  border-radius: 50%;
  background: var(--mint);
  font-size: 60px;
  font-weight: 950;
  transform: rotate(-6deg);
}
.power.freeze .power-icon {
  background: var(--freeze-ice);
  color: var(--ink);
}
.power.blockade .power-icon {
  background: var(--blockade-blue);
  color: #fff;
}
.power.war .power-icon {
  background: var(--war-red);
  color: #fff;
}
.double .power-icon {
  background: var(--yellow);
  font-size: 40px;
}
.trade .power-icon {
  background: var(--mint);
}
.mulligan .power-icon {
  background: #c4b5fd;
}
.joker .power-icon {
  background: var(--ink);
  color: var(--yellow);
}
.power.joker {
  grid-column: 2;
}
.timing {
  position: absolute;
  right: 18px;
  top: 23px;
  padding: 6px 8px;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 1px;
}
.power h3 {
  margin: 0 0 8px;
  font-size: 29px;
  letter-spacing: -1px;
}
.power p {
  max-width: 410px;
  margin: 0;
  color: #596275;
  font-size: 14px;
  line-height: 1.5;
}
.bonus-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: center;
  padding: 90px max(28px, calc((100vw - 1120px) / 2));
  background: var(--blue);
  color: #fff;
}
.bonus-section .kicker {
  color: var(--yellow);
}
.bonus-chips {
  display: grid;
  gap: 12px;
}
.bonus-chips span {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 17px 20px;
  background: #fff;
  color: var(--ink);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
}
.bonus-chips i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-size: 22px;
  font-weight: 950;
}
.bonus-chips b {
  font-size: 15px;
}
.bonus-chips small {
  color: #697286;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.bonus-points {
  grid-column: 3;
  grid-row: 1/3;
  align-self: center;
  padding-left: 18px;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -1px;
}
.final-cta {
  padding: 110px 28px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.final-cta .kicker {
  color: var(--yellow);
}
.final-cta h2 {
  margin-bottom: 36px;
  font-size: clamp(52px, 7vw, 90px);
}
.button-light {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}
.boundary-note {
  margin: 40px 0 0;
  color: #9199aa;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px max(28px, calc((100vw - 1184px) / 2));
  background: #fff;
  border-top: var(--line);
  font-size: 11px;
  font-weight: 800;
}
footer p {
  color: #717a8e;
}
footer > a:last-child {
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 70px;
    gap: 70px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-art {
    min-height: 520px;
    margin-top: 30px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .score-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .score-visual {
    max-width: 520px;
    margin: auto;
    width: 100%;
  }
  .fortify-section {
    grid-template-columns: 1fr;
  }
  .fortify-art {
    height: 290px;
  }
  .power-grid {
    grid-template-columns: 1fr;
  }
  .power.joker {
    grid-column: auto;
  }
  .power {
    min-height: 260px;
  }
  .power-icon {
    margin-bottom: 20px;
  }
  .bonus-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .site-header {
    padding: 16px;
  }
  /*.site-header .brand > span:last-child {
    display: none;
  }*/
  nav {
    gap: 12px;
  }
  nav > a.button {
    display: none;
  }
  .hero {
    padding: 45px 18px 70px;
  }
  .hero h1 {
    font-size: 54px;
    letter-spacing: -3.5px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-art {
    min-height: 390px;
  }
  .map-paper {
    inset: 35px 8px 10px 8px;
  }
  .tile {
    width: 105px;
    height: 90px;
  }
  .tile-a {
    left: 18px;
    top: 72px;
  }
  .tile-b {
    left: 108px;
    top: 52px;
  }
  .tile-c {
    left: 192px;
    top: 32px;
  }
  .tile-d {
    left: 48px;
    top: 153px;
  }
  .tile-e {
    left: 137px;
    top: 128px;
  }
  .tile-f {
    left: 220px;
    top: 115px;
  }
  .tile-g {
    left: unset;
    right: 158px;
    top: 259px;
  }
  .pin-one {
    left: 80px;
    top: 100px;
  }
  .pin-two {
    left: 260px;
    right: unset;
    top: 83px;
  }
  .claimed-stamp {
    right: 12px;
    bottom: 25px;
    font-size: 19px;
  }
  .rules-section,
  .powers-section {
    padding: 75px 18px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading h2,
  .score-copy h2,
  .fortify-copy h2,
  .bonus-section h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    min-height: 310px;
  }
  .daily-note {
    align-items: flex-start;
  }
  .score-section,
  .fortify-section,
  .bonus-section {
    padding: 75px 18px;
  }
  .cluster-board {
    height: 340px;
  }
  .cluster {
    width: 90px;
    height: 90px;
  }
  .c1 {
    left: 25px;
    top: 42px;
  }
  .c2 {
    left: 100px;
    top: 38px;
  }
  .c3 {
    left: 35px;
    top: 120px;
  }
  .c4 {
    left: 115px;
    top: 117px;
  }
  .outpost-tile {
    width: 75px;
    height: 75px;
    right: 23px;
  }
  .cluster-total {
    left: 35px;
    bottom: 40px;
  }
  .connection-line {
    display: none;
  }
  .fortify-days {
    align-items: stretch;
    flex-direction: column;
  }
  .fortify-days i {
    display: none;
  }
  .fortify-art {
    height: 240px;
  }
  .castle {
    font-size: 150px;
  }
  .power {
    min-height: 290px;
  }
  .bonus-section {
    gap: 35px;
  }
  .final-cta {
    padding: 85px 18px;
  }
  .final-cta h2 {
    font-size: 51px;
    letter-spacing: -3px;
  }
  footer {
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
.season-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 400px;
  margin: 0 0 30px;
  background: #fff;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
}
.season-banner > div {
  padding: 14px 16px;
}
.season-banner > div + div {
  border-left: 2px solid var(--ink);
}
.season-banner span {
  display: block;
  margin-bottom: 5px;
  color: #697286;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.season-banner strong {
  font-size: 16px;
  line-height: 1.15;
}
.season-banner .free-play {
  background: var(--yellow);
}
.season-prizes ol {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.season-prizes li {
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}
.season-prizes b {
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
}
@media (max-width: 620px) {
  .season-banner {
    grid-template-columns: 1fr 1fr;
  }
  .season-banner > div {
    padding: 12px;
  }
  .season-banner .season-prizes {
    grid-column: 1/-1;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }
  .season-prizes ol {
    justify-content: space-between;
  }
}
.season-calendar {
  width: 340px;
  padding: 18px;
  background: #fff;
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-2deg);
}
.season-calendar-hero {
  position: absolute;
  z-index: 5;
  left: 0;
  top: -25px;
}
.calendar-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}
.calendar-heading span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.calendar-heading h2 {
  margin: 0;
  color: var(--red);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -1px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-grid b {
  padding-bottom: 3px;
  color: #697286;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}
.calendar-grid > span,
.calendar-grid > i {
  display: grid;
  place-items: center;
  min-height: 30px;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}
.calendar-grid > span:not(.play):not(.rest) {
  color: #a6adba;
}
.calendar-grid .play {
  background: var(--yellow);
  border: 1px solid var(--ink);
}
.calendar-grid .start {
  background: #006a31ff;
  color: #fff;
}
.calendar-grid .end {
  background: var(--red);
  color: #fff;
}
.calendar-grid .rest {
  background: #eef0f4;
  color: #697286;
  border: 1px dashed #aab0bc;
}
.season-calendar > p {
  display: flex;
  gap: 14px;
  margin: 11px 0 0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.season-calendar > p span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.season-calendar > p i {
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink);
}
.play-key {
  background: var(--yellow);
}
.rest-key {
  background: #eef0f4;
  border-style: dashed !important;
}
@media (max-width: 950px) {
  .season-calendar-hero {
    left: 18px;
  }
  .map-paper {
    inset: 72px 8px 18px 110px;
    max-width: 600px;
    min-width: 500px;
    left: unset;
    right: 25px;
  }
}
@media (max-width: 620px) {
  .season-calendar-hero {
    position: relative;
    left: auto;
    top: auto;
    width: min(340px, calc(100% - 8px));
    margin: 0 auto 20px;
  }
  .hero-art {
    min-height: 760px;
  }
  .map-paper {
    inset: 365px 8px 10px 8px;
    min-width: unset;
  }
}

/* Registration and launch calls to action. */
.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.final-actions { justify-content: center; }
.store-button {
  background: var(--white);
  color: var(--ink);
  gap: 8px;
}
.registration-countdown {
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.registration-countdown strong { white-space: nowrap; }
@media (max-width: 620px) {
  .hero-actions { align-items: flex-start; }
}
