@font-face {
  font-family: "Outfit";
  src: url("./fonts/outfit-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./fonts/outfit-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./fonts/outfit-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  color: #252525;
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  color: #ffffff;
  background: #002fa7;
}

.brand {
  display: block;
  width: 200px;
  height: 72px;
  flex-shrink: 0;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  width: 832px;
  align-items: center;
  justify-content: flex-end;
  gap: 64px;
}

.desktop-nav a {
  border-bottom: 1px solid transparent;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  transition: border-color 250ms ease-in-out;
}

.desktop-nav a:hover {
  border-color: #ffffff;
}

.menu-button,
.mobile-nav,
.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 30vw;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: image-fade 1s ease-in-out both;
}

@keyframes image-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.mobile-game-card {
  display: none;
}

.game-section {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.game-section--white {
  background: #ffffff;
}

.game-section--gray {
  background: #f5f5f5;
}

.desktop-game {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: center;
}

.desktop-game-art {
  width: auto;
  max-width: none;
  height: 370px;
  flex-shrink: 0;
}

.desktop-game-copy {
  display: flex;
  max-width: 45%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.desktop-game-copy h2 {
  margin: 0 0 40px;
  color: #002fa7;
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
}

.desktop-game-copy p {
  width: 106%;
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.desktop-store-links {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.desktop-store-links img,
.mobile-store-links img {
  width: 180px;
  height: auto;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 30px;
  color: #ffffff;
  background: #002fa7;
}

.footer-brand {
  width: 200px;
  height: 72px;
  margin-bottom: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.legal-links a {
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease-in-out;
}

.legal-links a:hover {
  border-color: #ffffff;
}

.site-footer p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

/* Legal pages */
.legal-page {
  overflow: hidden;
  background: #ffffff;
}

.legal-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px;
  overflow-wrap: anywhere;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6,
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 24px 0;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
}

.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
}

.legal-content p,
.legal-content li {
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content b,
.legal-content strong {
  font-weight: 600;
}

.legal-content ul,
.legal-content ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-page .legal-content h1 {
  margin-bottom: 80px;
}

.privacy-page .legal-content {
  padding-bottom: 32px;
}

.privacy-notice-page .legal-content h1 {
  margin-bottom: 160px;
}

.legal-table-wrap {
  width: 100%;
  margin: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.privacy-notice-page .legal-table-wrap {
  margin: 40px 0 32px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.legal-table td {
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid #000000;
  vertical-align: middle;
}

.legal-table tr:first-child {
  background: #d6d6d6;
}

.legal-table p,
.legal-table ul {
  margin: 0;
}

.legal-table p,
.legal-table li {
  line-height: 36px;
}

.legal-table li + li {
  margin-top: 8px;
}

/* Careers */
.about-hero {
  position: relative;
  width: 100%;
  height: 45vw;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: image-fade 1s ease-in-out both;
}

.about-story {
  padding: 64px 32px;
  background: #ffffff;
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.about-section-title {
  margin: 0 0 48px;
  color: #002fa7;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.timeline-list,
.values-list {
  display: flex;
  flex-direction: column;
}

.timeline-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 184px;
  align-items: center;
  padding: 32px;
  border-radius: 40px;
  background: #f5f5f5;
}

.timeline-card + .timeline-card {
  margin-top: 32px;
}


.timeline-date {
  display: flex;
  min-width: 150px;
  max-width: 150px;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  padding-right: 32px;
  border-right: 2px solid #252525;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

.timeline-copy {
  width: 100%;
  margin-right: 32px;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.timeline-copy p {
  margin: 0;
}

.timeline-copy a {
  color: #213a8e;
}

.timeline-icon {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  margin-left: auto;
  object-fit: contain;
}

.about-values {
  padding: 64px 32px;
  background: #f5f5f5;
}

.values-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.values-art {
  width: 32%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.values-content {
  width: 68%;
}

.values-content .about-section-title {
  margin-bottom: 32px;
}

.values-card {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
}

.values-card + .values-card {
  margin-top: 16px;
}


.values-card h3 {
  flex: 0 0 auto;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.values-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

.careers-intro {
  display: flex;
  min-height: 585px;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 48px 128px 0;
  overflow: hidden;
  background: #f5f5f5;
}

.careers-intro-copy {
  width: min(750px, 60vw);
  flex: 0 1 750px;
}

.careers-intro-copy h1 {
  margin: 8px 0 32px;
  color: #002fa7;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.careers-intro-copy p {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
  white-space: pre-line;
}

.careers-intro-copy p + p {
  margin-top: 28px;
}

.careers-intro-copy p:last-of-type {
  margin-bottom: 32px;
}

.careers-intro-art {
  width: min(372px, 36vw);
  height: 540px;
  align-self: flex-end;
  object-fit: contain;
}

.careers-intro-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.careers-button,
.job-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 40px;
  color: #ffffff;
  background: #002fa7;
  font-weight: 600;
  transition: opacity 200ms ease;
}

.careers-button:hover,
.job-button:hover {
  opacity: .8;
}

.jobs-section {
  padding: 48px 0 80px;
  background: #ffffff;
}

.jobs-grid {
  display: grid;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.job-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: 40px;
  background: #f5f5f5;
  text-align: center;
}

.job-card h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.job-card-art {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.job-card p {
  margin: auto 0 16px;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.job-button {
  margin-top: auto;
}

@media (max-width: 1023px) {
  body {
    font-weight: 400;
  }

  .site-header {
    height: 80px;
    padding: 16px;
  }

  .brand {
    position: relative;
    z-index: 30;
    width: 120px;
    height: 48px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 30;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: opacity 600ms cubic-bezier(.4, 0, .2, 1), transform 600ms cubic-bezier(.4, 0, .2, 1);
  }

  .menu-button span:nth-child(1) { top: 11px; }
  .menu-button span:nth-child(2) { top: 20px; }
  .menu-button span:nth-child(3) { top: 29px; }

  .menu-button.is-open span:nth-child(1) {
    transform: translate(-50%, 9px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translate(-50%, -9px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    display: block;
    padding: 0 16px;
    color: #252525;
    background: #ffffff;
  }

  .mobile-nav[hidden],
  .menu-backdrop[hidden] {
    display: none;
  }

  .mobile-nav a {
    display: flex;
    height: 53px;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .menu-backdrop {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .4);
  }

  .hero {
    height: 60vw;
  }

  .hero h1 {
    font-size: 32px;
  }

  .games {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
    background: #f5f5f5;
  }

  .game-section {
    display: block;
    margin: 0 32px;
    padding: 0;
    border: 1px solid #cccccc;
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
  }

  .desktop-game {
    display: none;
  }

  .mobile-game-card {
    display: block;
    padding-bottom: 16px;
  }

  .mobile-game-image {
    width: 100%;
    aspect-ratio: 720 / 429;
    margin-bottom: 32px;
    border-radius: 39px 39px 0 0;
    object-fit: cover;
  }

  .mobile-game-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    text-align: center;
  }

  .mobile-game-copy h2 {
    margin: 0;
    color: #002fa7;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
  }

  .mobile-game-copy p {
    margin: 24px 0 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .mobile-store-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-store-links a {
    display: block;
    margin-bottom: 16px;
  }

  .footer-brand {
    width: 120px;
    height: 48px;
  }

  .legal-content {
    padding: 16px 16px 48px;
  }

  .legal-content h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4,
  .legal-content h5,
  .legal-content h6 {
    font-size: 24px;
    line-height: 32px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .privacy-page .legal-content h1,
  .privacy-notice-page .legal-content h1 {
    margin-bottom: 128px;
  }


  .privacy-page .legal-content {
    padding-bottom: 48px;
  }

  .legal-table {
    min-width: 1000px;
  }

  .legal-table td {
    min-width: 250px;
    padding: 12px 16px;
  }

  .legal-table p,
  .legal-table li {
    font-size: 18px;
    line-height: 27px;
  }

  .about-hero {
    height: 60vw;
  }

  .about-story,
  .about-values {
    padding: 32px 12px;
  }

  .about-section-title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }

  .timeline-card {
    display: grid;
    min-height: 144px;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto 50px;
    column-gap: 16px;
    padding: 16px;
    border-radius: 16px;
  }

  .timeline-card::after {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 92px;
    width: 2px;
    background: #252525;
    content: "";
  }

  .timeline-card + .timeline-card::before {
    left: 82px;
    width: 24px;
  }

  .timeline-date {
    min-width: 76px;
    max-width: 76px;
    min-height: 0;
    align-self: stretch;
    margin: 0;
    padding: 0 8px 0 0;
    border-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .timeline-copy {
    grid-row: 1 / 3;
    grid-column: 2;
    margin-right: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .timeline-icon {
    grid-row: 2;
    grid-column: 1;
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    justify-self: center;
    margin: 0;
  }

  .values-container {
    display: block;
  }

  .values-art {
    display: none;
  }

  .values-content {
    width: 100%;
  }

  .about-values {
    background: #ffffff;
  }

  .values-card {
    min-height: 132px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border-radius: 16px;
    background: #f5f5f5;
    text-align: center;
  }

  .values-card + .values-card {
    margin-top: 24px;
  }

  .values-card + .values-card::before {
    top: -24px;
    left: 50%;
    width: 24px;
    height: 32px;
    background: #f5f5f5;
    transform: translateX(-50%);
  }

  .values-card h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .values-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .careers-intro {
    min-height: 0;
    flex-direction: column-reverse;
    gap: 8px;
    padding: 0 24px 48px;
  }

  .careers-intro-copy {
    width: 100%;
    flex-basis: auto;
    text-align: center;
  }

  .careers-intro-copy h1 {
    margin: 0 0 24px;
  }

  .careers-intro-copy p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .careers-intro-copy p + p {
    margin-top: 24px;
  }

  .careers-intro-copy p:last-of-type {
    margin-bottom: 32px;
  }

  .careers-intro-art {
    width: 100%;
    height: 427px;
    align-self: center;
  }

  .jobs-section {
    padding: 32px 24px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .job-card {
    min-height: 0;
    padding: 32px;
  }

  .job-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }
}

/*
 * CloudPixel Games home page
 *
 * Page-specific rules are scoped to .home-page within the shared stylesheet.
 */

.home-page {
  --home-blue: #002fa7;
  --home-ink: #252525;
  --home-panel: #f5f5f5;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--home-ink);
  background: #ffffff;
}

.home-page main,
.home-page section {
  min-width: 0;
}

/* Header */

.home-page .site-header {
  height: 90px;
  padding: 16px 80px;
  background: var(--home-blue);
}

.home-page .brand img {
  object-fit: contain;
}

.home-page .desktop-nav {
  width: auto;
  gap: 64px;
}

.home-page .desktop-nav a {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

/* Hero */

.home-page .home-hero {
  position: relative;
  width: 100%;
  height: 45vw;
  overflow: hidden;
  background: #ffffff;
}

.home-page .home-hero picture,
.home-page .home-hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-page .home-hero img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: home-image-fade 1s ease-in-out both;
}

@keyframes home-image-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* About */

.home-page .home-about {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 380px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.home-page .home-about > img,
.home-page .home-about__silhouette {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .home-about__copy {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  text-align: center;
}

.home-page .home-about__copy h1,
.home-page .home-about__copy h2,
.home-page .home-about__title {
  margin: 0 0 32px;
  color: var(--home-blue);
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
}

.home-page .home-about__copy p {
  width: 100%;
  max-width: 860px;
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.home-page .home-about__copy p + p {
  margin-top: 32px;
}

/* Games */

.home-page .home-games {
  width: 100%;
  padding: 48px 0 0;
  background: var(--home-panel);
}

.home-page .home-games__inner {
  width: 100%;
  margin: 0 auto;
}

.home-page .home-games__title {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--home-blue);
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.home-page .home-games-desktop,
.home-page .home-games__desktop {
  display: block;
}

.home-page .home-game-row {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  width: 100%;
  max-width: 1440px;
  min-height: 460px;
  margin: 0 auto;
  padding: 40px 0;
}


.home-page .home-game-row--reverse {
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
}

.home-page .home-game-row--reverse .home-game-row__copy {
  grid-column: 2;
  grid-row: 1;
}

.home-page .home-game-row--reverse .home-game-row__art {
  grid-column: 1;
  grid-row: 1;
}

.home-page .home-game-row__copy,
.home-page .home-game-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 128px;
}

.home-page .home-game-row__art,
.home-page .home-game-row__visual,
.home-page .home-game-art {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.home-page .home-game-row__art img,
.home-page .home-game-row__visual img,
.home-page .home-game-art img,
.home-page .home-game-row__phone {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(800px, 84vw);
  max-height: none;
  object-fit: contain;
}

.home-page .home-game-row__copy h2,
.home-page .home-game-copy h2 {
  margin: 0 0 28px;
  color: var(--home-blue);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.home-page .home-game-row__copy p,
.home-page .home-game-copy p {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.home-page .home-store-links,
.home-page .home-game-row__stores,
.home-page .home-game-store-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.home-page .home-store-links a,
.home-page .home-game-row__stores a,
.home-page .home-game-store-links a {
  display: block;
}

.home-page .home-store-links img,
.home-page .home-game-row__stores img,
.home-page .home-game-store-links img {
  width: 180px;
  height: auto;
}

.home-page .home-more-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 28px;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  transition: gap 250ms ease-in-out, border-color 250ms ease-in-out;
}

.home-page .home-more-link > :last-child {
  flex: 0 0 auto;
}

.home-page .home-more-link:hover,
.home-page .home-more-link:focus-visible {
  gap: 1rem;
  border-color: currentColor;
}

.home-page .home-games-mobile {
  display: none;
}

/* Careers */

.home-page .home-careers {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.home-page .home-careers__inner {
  display: grid;
  grid-template-columns: minmax(0, 67fr) minmax(0, 33fr);
  width: 100%;
  max-width: 1440px;
  min-height: 520px;
  margin: 0 auto;
  padding: 80px;
}

.home-page .home-careers__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-page .home-careers__copy h2,
.home-page .home-careers__title {
  margin: 0 0 32px;
  color: var(--home-blue);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.home-page .home-careers__copy p {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.home-page .home-careers__copy p + p {
  margin-top: 24px;
}

.home-page .home-careers__button,
.home-page .home-primary-button,
.home-page .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 12px 32px;
  border: 0;
  border-radius: 40px;
  color: #ffffff;
  background: var(--home-blue);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: opacity 250ms ease-in-out;
}

.home-page .home-careers__button:hover,
.home-page .home-careers__button:focus-visible,
.home-page .home-primary-button:hover,
.home-page .home-primary-button:focus-visible,
.home-page .home-button:hover,
.home-page .home-button:focus-visible {
  opacity: .78;
}

.home-page .home-careers__art {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.home-page .home-careers__art img {
  width: 100%;
  max-width: 420px;
  max-height: 520px;
  object-fit: contain;
}

@media (max-width: 1366px) and (min-width: 1024px) {
  .home-page .home-about__copy p {
    font-size: 18px;
    line-height: 24px;
  }

  .home-page .home-about__copy p + p {
    margin-top: 24px;
  }

  .home-page .home-game-row {
    min-height: 520px;
  }

  .home-page .home-game-row__copy,
  .home-page .home-game-copy {
    padding: 0 80px;
  }
}

@media (max-width: 1023px) {
  .home-page {
    font-weight: 400;
  }

  .home-page .site-header {
    height: 80px;
    padding: 16px;
    background: var(--home-blue);
  }

  .home-page .mobile-nav {
    color: var(--home-ink);
    background: #ffffff;
  }

  .home-page .mobile-nav a {
    border-bottom-color: #eeeeee;
  }

  .home-page .menu-button span {
    background: #ffffff;
  }

  .home-page .menu-backdrop {
    top: 80px;
  }

  .home-page .home-hero {
    height: auto;
    padding-top: 117.08%;
  }

  .home-page .home-hero img {
    object-position: center;
  }

  .home-page .home-about {
    padding: 56px 0;
  }

  .home-page .home-about > img,
  .home-page .home-about__silhouette {
    display: none;
  }

  .home-page .home-about__copy {
    position: static;
    padding: 0 24px;
  }

  .home-page .home-about__copy h1,
  .home-page .home-about__copy h2,
  .home-page .home-about__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 32px;
  }

  .home-page .home-about__copy p {
    max-width: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }

  .home-page .home-about__copy p + p {
    margin-top: 28px;
  }

  .home-page .home-games {
    padding: 48px 0;
  }

  .home-page .home-games__title {
    padding-bottom: 0;
    font-size: 32px;
    line-height: 40px;
  }

  .home-page .home-games-desktop,
  .home-page .home-games__desktop,
  .home-page .home-games > .home-game-row {
    display: none;
  }

  .home-page .home-games-mobile {
    display: block;
  }

  .home-page .home-mobile-game {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }

  .home-page .home-mobile-game__phone,
  .home-page .home-mobile-game > img {
    width: 400px;
    max-width: calc(100% - 48px);
    height: auto;
    object-fit: contain;
  }

  .home-page .home-mobile-game__copy {
    display: contents;
  }

  .home-page .home-mobile-game__copy h2,
  .home-page .home-mobile-game__copy p {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .home-page .home-mobile-game__stores,
  .home-page .home-mobile-store-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  }

  .home-page .home-mobile-game__stores a,
  .home-page .home-mobile-store-links a {
    display: block;
  }

  .home-page .home-mobile-game__stores img,
  .home-page .home-mobile-store-links img {
    width: 180px;
    height: auto;
  }

  .home-page .home-games__more,
  .home-page .home-primary-button,
  .home-page .home-see-more {
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    padding: 12px 32px;
    border-radius: 40px;
    color: #ffffff;
    background: var(--home-blue);
    font-weight: 600;
    transition: opacity 250ms ease-in-out;
  }

  .home-page .home-games__more:hover,
  .home-page .home-games__more:focus-visible,
  .home-page .home-primary-button:hover,
  .home-page .home-primary-button:focus-visible,
  .home-page .home-see-more:hover,
  .home-page .home-see-more:focus-visible {
    opacity: .78;
  }

  .home-page .home-careers {
    min-height: 0;
  }

  .home-page .home-careers__inner {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    min-height: 0;
    padding: 40px 24px;
  }

  .home-page .home-careers__copy {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
    padding-left: 16px;
  }

  .home-page .home-careers__art {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-end;
  }

  .home-page .home-careers__art img {
    width: 100%;
    max-width: 220px;
    max-height: 320px;
  }

  .home-page .home-careers__copy h2,
  .home-page .home-careers__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }

  .home-page .home-careers__copy p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .home-page .home-careers__copy p + p {
    margin-top: 12px;
  }

  .home-page .home-careers__button,
  .home-page .home-careers .home-primary-button,
  .home-page .home-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }

}

@media (max-width: 479px) {
  .home-page .home-careers__inner {
    grid-template-columns: minmax(118px, 42fr) minmax(0, 58fr);
    padding: 32px 16px;
  }

  .home-page .home-careers__copy {
    padding-left: 12px;
  }

  .home-page .home-careers__copy h2,
  .home-page .home-careers__title {
    font-size: 22px;
    line-height: 28px;
  }

  .home-page .home-careers__copy p {
    font-size: 14px;
    line-height: 20px;
  }

  .home-page .home-careers__button,
  .home-page .home-careers .home-primary-button,
  .home-page .home-button {
    margin-top: 16px;
    padding: 9px 18px;
    font-size: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-hero img {
    animation: none;
    opacity: 1;
  }

  .home-page .desktop-nav a,
  .home-page .menu-button span,
  .home-page .home-more-link,
  .home-page .home-careers__button,
  .home-page .home-primary-button,
  .home-page .home-button,
  .home-page .home-games__more,
  .home-page .home-see-more,
  .home-page .legal-links a {
    transition-duration: 0.01ms;
  }
}
