:root {
  --ink: #101820;
  --ink-2: #263441;
  --paper: #f7fbf5;
  --white: #ffffff;
  --mist: #eaf2f0;
  --line: rgba(16, 24, 32, 0.12);
  --green: #2eb872;
  --teal: #14b8a6;
  --blue: #2168ff;
  --coral: #ff6f2c;
  --pink: #f453c4;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  height: 72px;
  margin: 14px auto 0;
  padding: 0 14px 0 18px;
  color: var(--white);
  background: rgba(9, 13, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(16, 24, 32, 0.92);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-cta {
  color: var(--ink);
  background: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #d8fff3;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.12), rgba(16, 24, 32, 0.44)),
    url("assets/mow-my-world-icon-rounded.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.74) 36%, rgba(8, 11, 16, 0.18) 72%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.88) 0%, rgba(16, 24, 32, 0) 35%);
}

.hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d9ff66;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 78px;
  font-weight: 900;
}

h2 {
  font-size: 44px;
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 850;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.primary .button-icon {
  color: var(--white);
  background: var(--coral);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary .button-icon {
  color: var(--ink);
  background: #d9ff66;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 20px 0 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts span {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.title-band {
  color: var(--white);
  background: var(--ink);
}

.title-band-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 44px;
  padding: 42px 0;
}

.title-band h2,
.title-band p {
  margin-bottom: 0;
}

.title-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.game-section,
.systems-section,
.asset-section,
.studio-section,
.press-section {
  padding: 92px 0;
}

.game-grid,
.studio-grid,
.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 54px;
}

.game-copy > p,
.studio-copy > p,
.press-grid > div > p {
  max-width: 680px;
  color: var(--ink-2);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-list article,
.studio-principles article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.08);
}

.feature-list article {
  min-height: 228px;
  padding: 20px;
}

.feature-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--ink);
  object-fit: contain;
}

.feature-list h3,
.studio-principles h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-list p,
.studio-principles p {
  margin-bottom: 0;
  color: #566575;
  font-size: 14px;
}

.game-visual {
  position: relative;
}

.game-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% -6% 8%;
  z-index: -1;
  border-radius: 14.5%;
  background: var(--green);
}

.game-visual img {
  width: 100%;
  border-radius: 14.5%;
  box-shadow: var(--shadow);
}

.systems-section {
  background: #eff7fb;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.showcase {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f8fbfc;
}

.showcase-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  gap: 10px;
  padding: 0 12px;
  color: #536170;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}

.showcase-tab:last-child {
  border-right: 0;
}

.showcase-tab img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--ink);
}

.showcase-tab.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 -4px 0 var(--coral);
}

.showcase-tab:hover,
.showcase-tab:focus-visible {
  color: var(--ink);
}

.showcase-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.showcase-copy {
  padding: 42px;
}

.showcase-copy h3 {
  margin-bottom: 16px;
  font-size: 34px;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 17px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.metric-row li {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.metric-row span {
  margin-top: 8px;
  color: #667481;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-image {
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(46, 184, 114, 0.28), rgba(33, 104, 255, 0.16)),
    #111820;
}

.showcase-image img {
  width: min(760px, 100%);
  max-height: 470px;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.24));
}

.asset-section {
  background: var(--paper);
}

.asset-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.asset-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  grid-template-rows: repeat(3, 240px);
  gap: 16px;
}

.asset-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #151b20;
  box-shadow: 0 18px 56px rgba(16, 24, 32, 0.14);
}

.asset-card-large {
  grid-row: span 3;
}

.asset-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.asset-card:hover img {
  transform: scale(1.025);
}

.asset-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(9, 13, 18, 0.88), rgba(9, 13, 18, 0));
}

.asset-card strong,
.asset-card span {
  display: block;
}

.asset-card strong {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.1;
}

.asset-card span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.studio-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.9)),
    url("assets/ccbot-iso.png") right center / contain no-repeat;
}

.studio-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.studio-principles {
  display: grid;
  gap: 14px;
}

.studio-principles article {
  padding: 22px;
  color: var(--ink);
}

.studio-principles span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.press-section {
  background: var(--white);
}

.fact-sheet {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact-sheet div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.fact-sheet dt {
  color: #6d7a86;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-sheet dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #090d12;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.license-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.license-mark img {
  width: 88px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    height: auto;
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .title-band-inner,
  .game-grid,
  .studio-grid,
  .press-grid,
  .section-heading,
  .showcase-body {
    grid-template-columns: 1fr;
  }

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

  .showcase-copy {
    padding: 32px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding-left: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.92), rgba(8, 11, 16, 0.48)),
      linear-gradient(0deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.12) 42%);
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 34px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .title-band-inner {
    gap: 16px;
    padding: 32px 0;
  }

  .game-section,
  .systems-section,
  .asset-section,
  .studio-section,
  .press-section {
    padding: 64px 0;
  }

  .asset-wall {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .asset-card-large {
    grid-row: auto;
  }

  .asset-card {
    min-height: 260px;
  }

  .showcase-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-tab {
    min-height: 64px;
    border-bottom: 1px solid var(--line);
  }

  .showcase-copy {
    padding: 24px;
  }

  .showcase-copy h3 {
    font-size: 26px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    min-height: 300px;
    padding: 18px;
  }

  .fact-sheet div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Current homepage overrides: larger BotDance branding and gameplay-mode screenshot placeholders. */
.site-header {
  min-height: 86px;
  gap: 24px;
  padding: 10px 14px 10px 16px;
}

.brand {
  gap: 14px;
  font-size: 20px;
}

.brand img {
  width: 64px;
  height: 64px;
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.header-cta {
  padding: 0 12px;
}

.hero-media {
  transform: none;
}

.hero-content {
  padding-top: 190px;
}

.hero-brand-mark {
  width: 132px;
  height: 132px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.hero-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1080px, 100%);
}

.modes-section,
.screenshot-section {
  padding: 92px 0;
}

.modes-section {
  background: #eff7fb;
}

.modes-section > .section-inner > .section-heading .eyebrow {
  color: var(--coral);
}

.game-section .eyebrow,
.asset-section .eyebrow,
.screenshot-section .eyebrow,
.press-section .eyebrow {
  color: var(--blue);
}

.screenshot-section {
  background: var(--white);
}

.modes-heading p:not(.eyebrow),
.screenshot-heading p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mode-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.1);
}

.mode-card-featured {
  display: grid;
  grid-column: span 2;
  grid-row: span 2;
  grid-template-rows: minmax(320px, 1fr) auto;
}

.mode-card:not(.mode-card-featured) {
  display: grid;
  grid-template-rows: 220px auto;
}

.mode-copy {
  padding: 22px;
}

.mode-copy h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.mode-card-featured .mode-copy h3 {
  font-size: 34px;
}

.mode-copy p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.mode-copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.mode-copy li {
  position: relative;
  padding-left: 18px;
  color: #52606d;
  font-size: 14px;
  font-weight: 760;
}

.mode-copy li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--coral);
}

.mode-shot,
.screenshot-marker {
  min-height: 220px;
}

.mode-image,
.screenshot-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #101820;
}

.mode-image img,
.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mode-image figcaption,
.screenshot-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(9, 13, 18, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.marker {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 104, 255, 0.5), rgba(20, 184, 166, 0.4)),
    #101820;
}

.marker::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  pointer-events: none;
}

.marker::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(0deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.marker span,
.marker strong,
.marker em {
  position: relative;
  z-index: 1;
  display: block;
}

.marker span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--ink);
  background: #d9ff66;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.marker strong {
  max-width: 480px;
  font-size: 30px;
  line-height: 1.02;
}

.marker em {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-style: normal;
  font-weight: 780;
}

.marker-landmark {
  background:
    linear-gradient(135deg, rgba(46, 184, 114, 0.62), rgba(33, 104, 255, 0.44)),
    #101820;
}

.marker-moon {
  background:
    linear-gradient(135deg, rgba(244, 83, 196, 0.48), rgba(255, 111, 44, 0.46)),
    #101820;
}

.marker-career {
  background:
    linear-gradient(135deg, rgba(255, 111, 44, 0.62), rgba(16, 24, 32, 0.5)),
    #101820;
}

.marker-practice {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.58), rgba(16, 24, 32, 0.5)),
    #101820;
}

.marker-flight {
  background:
    linear-gradient(135deg, rgba(33, 104, 255, 0.66), rgba(244, 83, 196, 0.4)),
    #101820;
}

.marker-photo,
.marker-missions {
  background:
    linear-gradient(135deg, rgba(160, 210, 255, 0.56), rgba(16, 24, 32, 0.5)),
    #101820;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.screenshot-marker {
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screenshot-marker strong {
  font-size: 34px;
}

@media (max-width: 1080px) {
  .mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .mode-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-brand-mark {
    width: 96px;
    height: 96px;
  }

  .hero-facts,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .mode-card-featured {
    grid-column: auto;
  }

  .mode-card-featured,
  .mode-card:not(.mode-card-featured) {
    grid-template-rows: minmax(240px, auto) auto;
  }

  .modes-section,
  .screenshot-section {
    padding: 64px 0;
  }

  .marker {
    padding: 24px;
  }

  .marker strong,
  .screenshot-marker strong {
    font-size: 25px;
  }

  .screenshot-marker {
    min-height: 280px;
  }
}
