:root {
  --black: #0f0f0f;
  --ink: #000;
  --paper: #f2eee6;
  --paper-light: #faf6ee;
  --red: #cf3d2d;
  --red-dark: #671e16;
  --muted: #666460;
  --wire: #807d79;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--ink);
  background: var(--paper);
  font-family: Questrial, Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
}

p { margin: 0 0 20px; font-size: 1rem; line-height: 1.4; }
a { color: inherit; text-decoration: underline; }

.s-page-wrapper { background: var(--ink); overflow: hidden; }
.s-hero, .s-description, .s-footer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.s-hero, .s-description { min-height: 87.5vh; }
.s-footer-cta { min-height: 75vh; }

.b-cell {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 80px;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.b-cell.m-black { color: #fff; background: var(--black); }
.b-cell.m-red { color: #fff; background: var(--red); }
.b-cell.m-off-w { background: var(--paper-light); }

._w-vertical-spread {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.b-content-block.m-spread {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.b-button-block { display: flex; flex-wrap: wrap; gap: 20px; }
.b-button-block.m-right { justify-content: flex-end; }
.b-button-block.m-mobile-nav { display: none; justify-content: flex-end; }

.e-button {
  color: #fff;
  background: #171717;
  padding: 15px 25px;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
}
.e-button:hover { background: #000; }
.e-button.m-red { background: var(--red); }
.e-button.m-red:hover { background: #171717; }
.e-button.m-wire, .e-button.m-dark-wire {
  position: relative;
  z-index: 99;
  background: transparent;
  border-bottom: 1px solid var(--wire);
  padding: 5px;
}
.e-button.m-wire:hover, .e-button.m-dark-wire:hover { border-bottom-color: #fff; }

.e-tag {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.e-tag.m-dark { color: #000; }
.e-tag.m-light { color: #fff; }

.e-h1, .e-h2, .e-wide-link-text {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
}
.e-h1 {
  margin: 0 0 20px;
  font-size: 6vw;
  line-height: .94;
}
.e-h2 {
  margin: 0 0 20px;
  font-size: 4vw;
  line-height: .94;
}
.e-red-dot { color: var(--red); }
.e-red-dot.m-midway { color: var(--red-dark); }
.e-large-copy { max-width: 33vw; font-size: 2vw; }
.game-cell > ._w-vertical-spread > .e-large-copy { margin-top: auto; }
.e-mw-p { max-width: 640px; }

.b-wide-lined { border-top: 1px solid #000; padding: 20px 0 10px; }
.b-wide-lined.m-no-line { border-top: 0; }
.b-wide-lined.m-centered { text-align: center; }

.e-conway-js {
  position: absolute;
  inset: auto 0 0;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.4;
}
.e-conway-js.m-lower { inset: 40% 0 auto; padding: 0 80px; }
.life-stage {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, 50%);
  pointer-events: none;
}
#life { display: block; width: 1200px; height: 1200px; background: transparent; }

.e-hero-bg-overlay {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 30px;
  height: 30px;
  margin: -15px auto 0;
  background: #6b9979;
  mix-blend-mode: soft-light;
  font-size: 2rem;
  line-height: 1.4;
}
.e-hero-bg-overlay.m-v1 { margin-top: 15px; background: #2c7743; border-radius: 90px; }
.e-eyes { display: inline-block; font-size: 1rem; line-height: .8; transform: rotate(-90deg); }

.b-wide-link-wrapper { margin-top: 10px; }
.e-wide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--wire);
  border-top: 1px solid #6e6c70;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.e-wide-link:hover { color: #fff; border-top-color: #fff; }
.e-wide-link-text { color: #fff; font-size: 2vw; line-height: 1; }
.e-wide-link-url {
  margin: 0;
  font-size: 1vw;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-content { padding-bottom: 28px; }
.footer-bottom .e-large-copy { margin-bottom: 0; }
.b-legal-button-wrapper { position: absolute; inset: auto 0 0; }
.e-legal-button-e {
  display: block;
  padding: 10px 80px;
  color: #fff;
  background: #171717;
  text-align: right;
  text-decoration: none;
  transition: background-color .2s;
}
.e-legal-button-e:hover { background: #000; }

@media (max-width: 991px) {
  .s-hero { min-height: 75vh; }
  .b-cell { padding: 50px 20px; }
  .e-wide-link-text { font-size: 2.125vw; }
  .e-wide-link-url { font-size: 1.375vw; }
  .e-legal-button-e { padding-inline: 20px; }
  .e-conway-js.m-lower { padding-inline: 20px; }
}

@media (max-width: 767px) {
  p { font-size: 1.25rem; }
  .s-hero, .s-description, .s-footer-cta { grid-template-columns: 1fr; }
  .s-hero { min-height: 50vh; }
  .b-cell { padding: 40px; }
  .b-cell.m-black { min-height: 50vh; }
  .game-cell { order: -1; text-align: center; padding-top: 420px; }
  .e-tag.m-mobile { display: none; }
  .e-h1 { font-size: 3rem; }
  .e-h2 { font-size: 3rem; }
  .e-large-copy { max-width: 100%; font-size: 1.25rem; }
  .b-button-block.m-right { display: none; }
  .b-button-block.m-mobile-nav {
    position: absolute;
    inset: 40px 40px auto auto;
    z-index: 100;
    display: flex;
    color: #000;
  }
  .e-button.m-dark-wire { color: #000; }
  .b-wide-lined.m-centered.m-mobile { margin-top: 80px; }
  .e-wide-link-text { font-size: 2rem; }
  .e-wide-link-url { font-size: 1rem; }
  .e-legal-button-e { padding-inline: 40px; }
}

@media (max-width: 479px) {
  .b-cell { padding-inline: 15px; }
  .game-cell { padding-top: 540px; }
  .e-tag { color: #333230; }
  .e-h1 { margin-top: 120px; }
  .b-button-block.m-mobile-nav { right: 15px; gap: 10px; }
  .e-button.m-dark-wire:hover { border-bottom-color: #000; }
  .e-h2 { font-size: 2rem; }
  .e-conway-js.m-lower { padding-inline: 20px; }
  .e-wide-link { flex-direction: column; align-items: stretch; }
  .b-wide-link-wrapper { margin-top: 30px; }
  .e-legal-button-e { padding-inline: 15px; }
}
