@font-face {
  font-family: Manrope;
  src: url("/assets/Manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/Manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --bg: #fff;
  --ink: #101916;
  --muted: #505952;
  --line: #d7ded9;
  --green: #087c65;
  --deep: #064a40;
  --focus: #087c65;
  --gutter: clamp(22px, 4.8vw, 80px);
  --max: 1600px;
  scroll-behavior: smooth;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dark {
  --bg: #101916;
  --ink: #fff;
  --muted: #bcc6bf;
  --line: #46544b;
  --focus: #c8f577;
  color-scheme: dark;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.07;
}
p {
  line-height: 1.6;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
}
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding-inline: var(--gutter);
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 15px;
  background: #fff;
  color: #101916;
  z-index: 20;
}
.skip:focus {
  top: 15px;
}
.arrow {
  width: 30px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  flex: none;
  transition: transform 0.2s;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}
.text-link:hover .arrow,
.button:hover .arrow {
  transform: translateX(4px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 56px;
  padding: 17px 25px;
  background: var(--green);
  color: #fff;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.button:hover {
  background: #096e5a;
}
.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.site-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand img {
  width: 300px;
  height: auto;
}
.brand-area {
  font-size: 21px;
  letter-spacing: -0.03em;
}
.site-nav {
  display: flex;
  gap: clamp(20px, 3vw, 47px);
  align-items: center;
  font-size: 15px;
}
.site-nav a {
  padding-block: 12px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current] {
  border-color: var(--green);
}
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--line);
  padding: 10px;
}
.menu-toggle svg {
  width: 24px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.menu-toggle .menu-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.mother-hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 62px;
  min-height: 510px;
}
.mother-hero h1 {
  font-size: clamp(50px, 5.8vw, 90px);
  letter-spacing: -0.062em;
  line-height: 0.99;
}
.mother-hero h1 span {
  display: block;
}
.mother-hero p {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.43;
  margin-top: 30px;
  max-width: 640px;
  color: var(--muted);
}
.mother-hero .text-link {
  margin-top: 48px;
}
.sculpture {
  min-width: 0;
  height: 470px;
}
.sculpture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.news-band {
  background: #101916;
  color: #fff;
  padding-block: 46px 50px;
}
.news-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}
.news-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #bcc6bf;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.news-band h2 {
  font-size: clamp(43px, 5.5vw, 82px);
  letter-spacing: -0.035em;
}
.news-band p:not(.news-kicker) {
  font-size: clamp(18px, 1.9vw, 28px);
  color: #bcc6bf;
  margin-top: 8px;
}
.news-band .button {
  flex: none;
  margin-bottom: 8px;
}
.news-section {
  padding-block: 58px 72px;
  scroll-margin-top: 24px;
}
.news-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.news-heading h2 { font-size: clamp(36px, 4.5vw, 66px); }
.news-heading .text-link { font-size: 16px; }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 28px; }
.news-card { min-width: 0; border: 1px solid var(--line); display: flex; flex-direction: column; }
.news-image { display: block; overflow: hidden; background: #0a1210; }
.news-image img { width: 100%; aspect-ratio: 16/9; object-fit: contain; transition: filter .2s; }
.news-image:hover img { filter: brightness(1.12); }
.news-card-copy { padding: clamp(22px, 2.3vw, 36px); display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.news-card time, .news-article time { color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.news-card h3 { font-size: clamp(27px, 2.65vw, 40px); line-height: 1.17; margin-top: 16px; }
.news-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.news-card p { color: var(--muted); font-size: 17px; margin-block: 18px 28px; }
.news-card .text-link { font-size: 15px; margin-top: auto; }
.news-archive { padding-top: 0; }
.news-archive > .caption { margin-top: 30px; }
.news-archive > .caption a { text-decoration: underline; text-underline-offset: 4px; }
.news-article .page-heading { max-width: 1080px; padding-bottom: 38px; }
.news-article .page-heading h1 { font-size: clamp(40px, 5.6vw, 82px); line-height: 1.08; margin-top: 20px; }
.news-article .page-heading .lead { font-size: clamp(20px, 2vw, 29px); line-height: 1.5; color: var(--muted); margin-top: 24px; }
.news-cover img { width: 100%; height: auto; border: 1px solid var(--line); }
.news-cover figcaption { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 16px; max-width: 1000px; }
.news-body { max-width: 850px; margin: 42px auto 0; }
.news-body > p { font-size: 20px; line-height: 1.75; margin-bottom: 25px; }
.news-participation { padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-left: 4px solid var(--green); margin-top: 44px; }
.news-participation h2 { font-size: clamp(28px, 3vw, 42px); }
.news-participation p { margin-block: 20px; color: var(--muted); font-size: 17px; }
.news-participation p a { text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.news-participation .caption { font-size: 14px; margin-bottom: 0; }
.hub-preview { padding-block: 42px 52px; border-top: 1px solid var(--line); }
.hub-preview h2 { font-size: clamp(30px, 3.4vw, 50px); margin-bottom: 14px; }
.hub-preview > p { color: var(--muted); font-size: 18px; max-width: 900px; margin-bottom: 28px; }
.hub-preview img { width: 100%; height: auto; border: 1px solid var(--line); }
.hub-preview a { display: block; }
.hub-preview figcaption { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 14px; }
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-section { padding-block: 32px 46px; }
  .news-heading { gap: 18px; padding-top: 22px; }
  .news-card-copy { padding: 24px; }
  .news-body > p { font-size: 18px; }
  .news-participation .button { font-size: 15px; gap: 14px; }
}
.ecosystem {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 5%;
  padding-block: 110px;
}
.ecosystem h2 {
  font-size: clamp(43px, 5vw, 76px);
}
.ecosystem-intro p {
  margin-top: 28px;
  max-width: 440px;
  font-size: 21px;
  color: var(--muted);
}
.areas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.areas li {
  border-top: 1px solid var(--line);
}
.areas a {
  display: grid;
  grid-template-columns: 31% 1fr auto;
  align-items: center;
  gap: 20px;
  padding-block: 29px;
  min-height: 120px;
}
.areas h3 {
  font-size: clamp(26px, 2.8vw, 42px);
}
.areas p {
  font-size: 18px;
  color: var(--muted);
}
.areas .arrow {
  color: var(--green);
}
.areas a:hover h3 {
  color: var(--green);
}
.site-footer {
  background: #101916;
  color: #fff;
  border-top: 1px solid #344138;
  padding-block: 45px 30px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand img {
  width: 300px;
}
.footer-brand p {
  font-size: 16px;
  color: #bcc6bf;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 27px;
  font-size: 14px;
}
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: #bac4bd;
  margin-top: 35px;
}
.games-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8%;
  padding-block: 30px 54px;
}
.games-heading h1 {
  font-size: clamp(49px, 6.5vw, 98px);
  max-width: 990px;
}
.games-heading p {
  font-size: clamp(18px, 1.65vw, 24px);
  max-width: 345px;
  min-width: 220px;
  line-height: 1.45;
}
.featured {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 52px;
}
.featured-media {
  display: block;
  overflow: hidden;
}
.featured-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.featured-media:hover img {
  filter: brightness(1.07);
}
.feature-copy h2 {
  font-size: clamp(35px, 3.65vw, 58px);
  overflow-wrap: anywhere;
}
.feature-copy h3 {
  font-size: clamp(26px, 2.75vw, 42px);
  margin-top: 27px;
  line-height: 1.15;
}
.feature-copy p {
  font-size: 21px;
  color: var(--muted);
  margin-top: 25px;
}
.feature-copy .button {
  margin-top: 40px;
  font-size: 19px;
}
.community-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 25px 40px;
}
.community-strip h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
}
.community-strip p {
  font-size: 16px;
  color: var(--muted);
}
.community-strip .text-link {
  font-size: 15px;
  margin-left: 20px;
}
.beta-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.65fr;
  gap: 60px;
  align-items: start;
  padding-block: 14px 62px;
}
.beta-hero > *, .beta-grid > *, .beta-participation > * { min-width: 0; }
.beta-intro h1 {
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.beta-intro h1 span { display: block; }
.beta-lead { font-size: 21px; line-height: 1.45; color: var(--muted); margin-top: 28px; }
.beta-state { color: var(--muted); margin-block: 22px 18px; font-size: 16px; }
.beta-image { display: block; background: #0a100d; }
.beta-image img { width: 100%; aspect-ratio: 16/10; object-fit: contain; }
.beta-hero .beta-image img { height: auto; aspect-ratio: auto; }
.beta-image:hover { outline: 1px solid var(--focus); outline-offset: 3px; }
.beta-image-action { display: flex; align-items: center; gap: 10px; min-height: 44px; font-size: 14px; color: var(--muted); background: var(--bg); text-decoration: underline; text-underline-offset: 5px; }
.beta-image-action svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.beta-hero .caption { font-size: 14px; }
.beta-section-heading { margin-bottom: 28px; }
.beta-section-heading h2 { font-size: clamp(30px, 3.1vw, 48px); letter-spacing: -0.045em; }
.beta-section-heading p { color: var(--muted); font-size: 21px; margin-top: 10px; }
.beta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 26px; }
.beta-grid h3 { font-size: 28px; margin-block: 18px 8px; letter-spacing: -0.025em; }
.beta-summary { font-size: 18px; color: var(--muted); }
.beta-grid .caption { font-size: 14px; margin-top: 8px; }
.beta-gallery-note { margin-top: 28px; max-width: 920px; }
.beta-gallery-note .text-link { font-size: 14px; margin-top: 14px; }
.beta-presentation { border-top: 1px solid var(--line); margin-top: 52px; padding-top: 52px; }
.beta-presentation video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; background: #0c1915; }
.beta-presentation > .caption { margin-top: 16px; max-width: 960px; }
.youtube-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 40px 28px; }
.youtube-card { min-width: 0; }
.youtube-card h3 { font-size: clamp(22px,2.1vw,30px); line-height: 1.2; min-height: 2.4em; margin-bottom: 24px; }
.youtube-frame { aspect-ratio: 16/9; min-height: 200px; width: 100%; background: #080f0c; }
.youtube-frame iframe { width: 100%; height: 100%; min-height: 200px; display: block; border: 0; }
.youtube-load { position: relative; width: 100%; height: 100%; min-height: 200px; display: grid; place-items: center; padding: 0; border: 0; color: white; background: #080f0c; cursor: pointer; }
.youtube-load img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.youtube-load > span { z-index: 1; padding: 14px 20px; background: #101916; border: 1px solid var(--focus); font-size: 16px; }
.youtube-card > .caption { margin-top: 14px; }
.youtube-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.youtube-actions button { padding: 8px 12px; background: transparent; border: 1px solid var(--line); color: inherit; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
@media (max-width: 850px) { .youtube-grid { grid-template-columns: 1fr; } .youtube-card h3 { min-height: 0; } }
.beta-participation { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; padding-block: 54px 70px; margin-top: 52px; border-top: 1px solid var(--line); }
.beta-participation h2 { font-size: clamp(27px, 2.3vw, 36px); line-height: 1.14; }
.beta-participation p { color: var(--muted); margin-top: 20px; font-size: 18px; }
.beta-participation .caption { font-size: 15px; }
.beta-discovery { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 80px; }
.beta-discovery h2 { font-size: 32px; margin-bottom: 12px; }
.beta-discovery p { color: var(--muted); max-width: 650px; }
.beta-discovery .button { flex: none; }
@media (max-width: 1050px) {
  .beta-hero { gap: 32px; grid-template-columns: 0.9fr 1.1fr; }
  .beta-intro h1 { font-size: 70px; }
  .beta-lead { font-size: 18px; }
  .beta-grid h3 { font-size: 25px; }
}
@media (max-width: 720px) {
  .beta-hero, .beta-grid, .beta-participation { grid-template-columns: 1fr; }
  .beta-hero { padding-top: 28px; gap: 32px; padding-bottom: 44px; }
  .beta-intro h1 { font-size: clamp(58px, 16vw, 82px); }
  .beta-lead { max-width: 500px; }
  .beta-section-heading p { font-size: 18px; }
  .beta-grid { gap: 34px; }
  .beta-grid .beta-image img { aspect-ratio: auto; }
  .beta-participation { gap: 38px; padding-block: 40px 52px; margin-top: 38px; }
  .beta-discovery { flex-direction: column; align-items: flex-start; padding-bottom: 50px; }
}
.page-heading {
  padding-block: 38px 55px;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.page-heading h1 {
  font-size: clamp(51px, 9vw, 135px);
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
}
.page-heading .lead {
  font-size: clamp(24px, 3vw, 43px);
  line-height: 1.2;
  margin-top: 16px;
}
.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 26px;
}
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}
.anchor-nav a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  font-size: 14px;
}
.section {
  padding-block: 65px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 35px;
}
.section-heading h2 {
  font-size: clamp(32px, 4.1vw, 63px);
}
.section-heading p {
  font-size: 18px;
  color: var(--muted);
  max-width: 360px;
}
.video-feature {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 46px;
  align-items: center;
}
.video-frame {
  background: #050906;
  aspect-ratio: 16/10;
  width: 100%;
}
.video-frame video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.video-copy h3 {
  font-size: clamp(33px, 4vw, 59px);
}
.video-copy p {
  font-size: clamp(19px, 2vw, 28px);
  margin-top: 26px;
  line-height: 1.48;
}
.caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 11px;
  line-height: 1.6;
}
.clip-switch {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.clip-switch button {
  padding: 11px 18px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: none;
  font-size: 14px;
}
.clip-switch button[aria-pressed="true"] {
  background: #fff;
  color: #101916;
  border-color: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.gallery a {
  display: block;
}
.gallery img {
  aspect-ratio: 16/9;
  object-fit: contain;
  width: 100%;
  border: 1px solid var(--line);
}
.gallery a:hover img {
  border-color: #c8f577;
}
.gallery figcaption {
  font-size: 14px;
  margin-top: 9px;
}
.gallery-date {
  margin-top: 22px;
}
.details-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  border-top: 1px solid var(--line);
  padding-top: 55px;
}
.details-columns h2 {
  font-size: clamp(31px, 4vw, 56px);
}
.details-columns p {
  font-size: 19px;
  margin-top: 25px;
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin: 28px 0 0;
}
.facts div {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.facts dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.facts dd {
  margin: 0;
  font-size: 16px;
}
.steps {
  padding: 0;
  list-style: none;
  counter-reset: steps;
  margin-top: 30px;
}
.steps li {
  counter-increment: steps;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 20px;
}
.steps li:before {
  content: counter(steps, decimal-leading-zero);
  font-size: 14px;
  color: #c8f577;
  padding-top: 4px;
}
.steps h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.steps p {
  font-size: 16px;
  margin-top: 9px;
}
.participate .button {
  margin-top: 22px;
}
.faq {
  margin-top: 36px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
}
.faq p {
  font-size: 16px;
  margin-top: 15px;
  color: var(--muted);
}
.development-note {
  font-size: 15px;
  border-left: 2px solid var(--green);
  padding-left: 20px;
  margin-top: 28px;
  color: var(--muted);
}
.prose {
  max-width: 860px;
  padding-block: 40px 95px;
}
.prose h1 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 35px;
}
.prose h2 {
  font-size: 26px;
  margin: 35px 0 15px;
}
.prose p {
  font-size: 17px;
  margin: 14px 0;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose ul {
  line-height: 1.9;
}
.lightbox {
  width: min(1280px, 94vw);
  max-width: 94vw;
  max-height: 94vh;
  padding: 18px;
  background: #101916;
  color: white;
  border: 1px solid #647469;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.lightbox-controls {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.lightbox-controls button {
  min-height: 44px;
  min-width: 44px;
  border: 1px solid #617369;
  background: none;
  padding: 8px 16px;
  font-size: 16px;
}
.lightbox-controls p {
  font-size: 14px;
}
.lightbox-image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}
.lightbox-caption {
  font-size: 14px;
  margin-top: 15px;
}
.lightbox-controls .pair {
  display: flex;
  gap: 10px;
}
.feature-copy h2 {
  font-size: clamp(35px, 4.7vw, 72px);
}
@media (min-width: 1601px) {
  .mother-hero {
    min-height: 560px;
  }
  .sculpture {
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .brand img {
    width: 240px;
  }
  .brand-area {
    font-size: 18px;
  }
  .site-nav {
    gap: 20px;
    font-size: 13px;
  }
  .mother-hero {
    min-height: 580px;
  }
  .sculpture {
    height: 480px;
  }
  .ecosystem {
    grid-template-columns: 33% 1fr;
    gap: 5%;
  }
  .areas a {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .areas p {
    grid-column: 1;
    grid-row: 2;
  }
  .areas .arrow {
    grid-column: 2;
    grid-row: 1/3;
  }
  .featured,
  .video-feature {
    gap: 28px;
    grid-template-columns: 1.45fr 1fr;
  }
  .feature-copy .button {
    font-size: 16px;
  }
  .feature-copy p {
    font-size: 18px;
  }
  .games-heading p {
    font-size: 18px;
    max-width: 290px;
  }
}
@media (max-width: 960px) {
  .site-header {
    min-height: 92px;
    flex-wrap: wrap;
    padding-block: 15px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0 15px;
  }
  .js .site-nav:not(.is-open) {
    display: none;
  }
  .brand img {
    width: 245px;
  }
  .mother-hero {
    padding-top: 25px;
    min-height: 0;
  }
  .mother-hero h1 {
    font-size: 6.5vw;
  }
  .sculpture {
    height: 410px;
  }
  .mother-hero p {
    font-size: 20px;
  }
  .mother-hero .text-link {
    font-size: 16px;
    margin-top: 27px;
  }
  .news-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .news-band .button {
    margin: 0;
  }
  .ecosystem {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 65px;
  }
  .ecosystem h2 {
    font-size: 55px;
    max-width: 580px;
  }
  .ecosystem-intro p {
    max-width: 600px;
  }
  .areas a {
    grid-template-columns: 30% 1fr auto;
    gap: 25px;
    min-height: 100px;
  }
  .areas p {
    grid-column: auto;
    grid-row: auto;
  }
  .areas .arrow {
    grid-column: auto;
    grid-row: auto;
  }
  .games-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .games-heading h1 {
    font-size: 70px;
  }
  .games-heading p {
    max-width: 580px;
    min-width: 0;
  }
  .featured,
  .video-feature {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    max-width: 650px;
  }
  .feature-copy h2 {
    font-size: 52px;
  }
  .feature-copy h3 {
    font-size: 32px;
    margin-top: 15px;
  }
  .feature-copy p {
    font-size: 20px;
    margin-top: 16px;
  }
  .feature-copy .button {
    margin-top: 25px;
  }
  .community-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .community-strip .text-link {
    margin: 16px 0 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .section-heading p {
    max-width: 600px;
  }
  .video-copy {
    max-width: 690px;
  }
  .video-copy h3 {
    font-size: 41px;
  }
  .video-copy p {
    font-size: 22px;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .details-columns {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .brand img {
    width: 208px;
  }
  .brand-area {
    font-size: 16px;
  }
  .site-header {
    gap: 10px;
  }
  .mother-hero {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }
  .mother-hero h1 {
    font-size: clamp(40px, 10.2vw, 61px);
    line-height: 1.02;
  }
  .mother-hero p {
    font-size: 19px;
    margin-top: 23px;
  }
  .mother-hero .text-link {
    margin-top: 30px;
  }
  .sculpture {
    height: 340px;
    margin-top: 14px;
  }
  .sculpture img {
    object-fit: cover;
  }
  .news-band {
    padding-block: 34px;
  }
  .news-band h2 {
    font-size: 42px;
  }
  .news-band p:not(.news-kicker) {
    font-size: 18px;
  }
  .ecosystem h2 {
    font-size: 45px;
  }
  .ecosystem-intro p {
    font-size: 18px;
  }
  .areas a {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 110px;
    padding-block: 24px;
  }
  .areas p {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
  }
  .areas .arrow {
    grid-column: 2;
    grid-row: 1/3;
  }
  .areas h3 {
    font-size: 31px;
  }
  .footer-brand img {
    width: 250px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    font-size: 11px;
  }
  .games-heading {
    padding-block: 32px 35px;
  }
  .games-heading h1 {
    font-size: 48px;
  }
  .games-heading p {
    font-size: 18px;
  }
  .featured {
    gap: 28px;
    padding-bottom: 35px;
  }
  .feature-copy h2 {
    font-size: 41px;
  }
  .feature-copy h3 {
    font-size: 28px;
  }
  .feature-copy p {
    font-size: 18px;
  }
  .feature-copy .button {
    width: 100%;
  }
  .community-strip h2 {
    font-size: 22px;
    line-height: 1.25;
  }
  .community-strip p {
    font-size: 15px;
  }
  .page-heading {
    padding-block: 25px 20px;
  }
  .page-heading h1 {
    font-size: clamp(38px, 10.3vw, 63px);
    letter-spacing: -0.045em;
  }
  .page-heading .lead {
    font-size: 26px;
  }
  .section {
    padding-block: 42px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .video-copy h3 {
    font-size: 35px;
  }
  .video-copy p {
    font-size: 20px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 13px;
    margin-top: 30px;
  }
  .gallery li:last-child {
    grid-column: 1/3;
    max-width: calc(50% - 6px);
  }
  .facts {
    gap: 0 18px;
  }
  .facts dd {
    font-size: 14px;
  }
  .details-columns p {
    font-size: 17px;
  }
  .details-columns h2 {
    font-size: 36px;
  }
  .steps p {
    font-size: 15px;
  }
  .anchor-nav {
    gap: 18px;
  }
  .anchor-nav a {
    font-size: 13px;
  }
  .lightbox {
    padding: 11px;
  }
  .lightbox-controls {
    flex-wrap: wrap;
    gap: 10px;
  }
  .lightbox-controls p {
    order: 3;
    width: 100%;
  }
  .caption {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .brand img { width: 154px; }
  .brand-area { font-size: 14px; }
  .brand { gap: 8px; }
  .beta-intro .button { gap: 14px; padding-inline: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
