:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(20, 20, 20, 0.78);
  --panel-solid: #151515;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f4f1ea;
  --muted: #b5b0a7;
  --danger: #ff4d2e;
  --bolt: #f6d55c;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(246, 213, 92, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(255, 77, 46, 0.12), transparent 20rem),
    linear-gradient(180deg, #090909 0%, #050505 42%, #111 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(7, 7, 7, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 50%;
  max-width: min(1180px, calc(100% - 32px));
  padding: 10px 12px 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  height: 42px;
  width: 42px;
}

.brand__text {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__tag {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-left: 4px;
  padding-left: 12px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--text);
  border-radius: 999px;
  height: 2px;
  left: 11px;
  position: absolute;
  transition: transform 180ms ease;
  width: 20px;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 24px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 138px max(22px, calc((100vw - var(--max)) / 2)) 72px;
  position: relative;
}

.hero__backdrop {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, #050505 0%, transparent 30%, rgba(5, 5, 5, 0.24) 70%, #050505 100%),
    url("../../assets/blackie-run/top4096x2304.jpg") center / cover no-repeat;
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero--duo {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  place-items: center;
}

.hero__backdrop--duo {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, #050505 0%, transparent 34%, rgba(5, 5, 5, 0.1) 70%, #050505 100%),
    url("../../assets/blackie-run/top4096x2304.jpg") center / cover no-repeat;
}

.duo-showcase {
  display: grid;
  gap: 18px;
  width: 100%;
}

.game-poster {
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.game-poster img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  width: 100%;
}

.game-poster span {
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  left: 16px;
  letter-spacing: 0.06em;
  padding: 9px 13px;
  position: absolute;
  text-transform: uppercase;
}

.game-poster--blackie {
  transform: rotate(-2deg);
}

.game-poster--golden {
  border-color: rgba(246, 213, 92, 0.36);
  margin-left: 68px;
  transform: rotate(2deg);
}

.button--gold {
  background: linear-gradient(135deg, #f9d55f, #ad7424);
  box-shadow: 0 18px 50px rgba(246, 213, 92, 0.22);
  color: #17110a;
}

.hero__grid {
  background:
    linear-gradient(90deg, rgba(255, 77, 46, 0.3) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(246, 213, 92, 0.18) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  inset: 0;
  opacity: 0.12;
  position: absolute;
  z-index: -2;
}

.hero__content {
  max-width: 690px;
  padding-top: 7vh;
}

.eyebrow {
  align-items: center;
  color: var(--bolt);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--danger);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 77, 46, 0.7);
  content: "";
  height: 8px;
  width: 8px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  max-width: 920px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  text-wrap: balance;
}

h3 {
  font-size: 28px;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.hero__lead {
  color: #ded9ce;
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 24px;
  max-width: 680px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--primary {
  background: var(--bolt);
  box-shadow: 0 18px 50px rgba(246, 213, 92, 0.26);
  color: #111;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  max-width: 760px;
}

.hero__facts div {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.hero__facts strong,
.download-card strong,
.site-footer strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.hero__facts span,
.download-card span,
.site-footer span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
}

.hero__phone {
  bottom: 58px;
  max-width: 360px;
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  width: 28vw;
}

.phone-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 10px;
  transform: rotate(2.5deg);
}

.phone-frame img {
  border-radius: 22px;
  min-height: 460px;
  object-fit: cover;
  width: 100%;
}

.hero__callout {
  background: rgba(5, 5, 5, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  bottom: 28px;
  box-shadow: var(--shadow);
  left: -44px;
  max-width: 230px;
  padding: 16px;
  position: absolute;
}

.hero__callout span {
  color: var(--danger);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.hero__callout strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 88px 22px;
}

.section--intro {
  padding-top: 104px;
}

.game-feature {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  position: relative;
}

.game-feature::before,
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 44px;
  content: "";
  inset: 46px 0 auto;
  height: 180px;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.game-feature--golden {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
}

.game-feature--golden .game-feature__copy {
  order: 2;
}

.game-feature--golden .game-feature__media {
  order: 1;
}

.game-feature__copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 34px;
}

.game-feature__copy > p:not(.eyebrow) {
  margin-top: 20px;
}

.game-feature__media {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
}

.game-feature__media img {
  border-radius: 28px;
  object-fit: cover;
  width: 100%;
}

.game-feature__media--gold {
  border-color: rgba(246, 213, 92, 0.34);
}

.gameplay-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.gameplay-steps article {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.gameplay-steps strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 7px;
}

.gameplay-steps span {
  color: var(--muted);
  line-height: 1.55;
}

.gameplay-steps--gold article {
  background: rgba(246, 213, 92, 0.08);
  border-color: rgba(246, 213, 92, 0.2);
}

.eyebrow--gold {
  color: #ffd36b;
}

.eyebrow--gold::before {
  background: #ffd36b;
  box-shadow: 0 0 20px rgba(246, 213, 92, 0.75);
}

.game-feature__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 15px 18px;
}

.comparison-section {
  padding-top: 40px;
}

.comparison-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.comparison-grid article,
.values-grid article,
.role-grid article,
.timeline article,
.story-section article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  padding: 30px;
}

.comparison-grid span,
.values-grid span,
.timeline span {
  color: var(--bolt);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.comparison-grid p,
.values-grid p,
.role-grid p,
.timeline p,
.story-section p {
  margin-top: 16px;
}

.gallery-block {
  margin-top: 46px;
}

.gallery-block + .gallery-block {
  margin-top: 70px;
}

.gallery-block__title {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gallery-block__title p {
  max-width: 430px;
}

.gallery-block--gold .screen-card {
  border-color: rgba(246, 213, 92, 0.28);
}

.section__heading {
  max-width: 760px;
}

.section__heading--split {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: none;
}

.section__note {
  max-width: 330px;
}

.loop-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.loop-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.loop-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.loop-card--accent {
  background:
    linear-gradient(180deg, rgba(246, 213, 92, 0.18), rgba(255, 77, 46, 0.09)),
    var(--panel-solid);
  border-color: rgba(246, 213, 92, 0.32);
}

.loop-card__number {
  color: var(--danger);
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 92px;
}

.loop-card p {
  margin-top: 18px;
}

.mechanic-band {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.mechanic-band__visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
}

.mechanic-band__visual img {
  border-radius: 24px;
  width: 100%;
}

.mechanic-band__copy p {
  margin-top: 22px;
}

.control-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.control-list span {
  background: rgba(246, 213, 92, 0.1);
  border: 1px solid rgba(246, 213, 92, 0.22);
  border-radius: 999px;
  color: #f8e39a;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.screens-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  margin-top: 34px;
}

.screen-card {
  appearance: none;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--text);
  cursor: zoom-in;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.screen-card--wide {
  grid-row: span 2;
}

.screen-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 220ms ease;
  width: 100%;
}

.screen-card span {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
}

.screen-card:hover img,
.screen-card:focus-visible img {
  opacity: 1;
  transform: scale(1.035);
}

.download-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(246, 213, 92, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 42px;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 420px;
  margin-bottom: 88px;
  padding: 44px;
}

.download-list {
  display: grid;
  gap: 16px;
}

.download-panel p {
  margin-top: 18px;
  max-width: 650px;
}

.download-card {
  align-items: center;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px 1fr;
  padding: 18px;
}

.download-card img {
  border-radius: 20px;
}

.download-card .button {
  grid-column: 1 / -1;
  width: 100%;
}

.download-card--muted {
  opacity: 0.84;
}

.page-hero {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  isolation: isolate;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 74vh;
  padding: 148px 22px 80px;
  position: relative;
  place-items: center;
}

.page-hero__art {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
}

.page-hero__art img {
  border-radius: 28px;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.classic-card {
  border-color: rgba(246, 213, 92, 0.32);
  transform: rotate(1.5deg);
}

.careers-art {
  transform: rotate(-1.5deg);
}

.story-section {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.values-grid,
.role-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.role-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.hiring-section {
  padding-top: 40px;
}

.process-section {
  padding-top: 48px;
}

.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.studio-section {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.studio-section__copy,
.portfolio-card,
.faq-list details,
.contact-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.studio-section__copy {
  padding: 34px;
}

.studio-section__copy p {
  margin-top: 22px;
}

.portfolio-card {
  display: grid;
  gap: 22px;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
  padding: 18px;
}

.portfolio-card img {
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
}

.portfolio-card div {
  align-self: center;
}

.portfolio-card span {
  color: var(--bolt);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.portfolio-card p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.faq-list p {
  margin-top: 14px;
  max-width: 820px;
}

.contact-section {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto 90px;
  max-width: var(--max);
  padding: 42px;
}

.contact-section p {
  margin-top: 18px;
  max-width: 650px;
}

.contact-link {
  background: var(--text);
  border-radius: 999px;
  color: #0b0b0b;
  flex: 0 0 auto;
  font-weight: 800;
  padding: 18px 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 34px 22px 46px;
}

.site-footer__brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer__links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.site-footer__note,
.site-footer__copy {
  font-size: 13px;
  grid-column: 1 / -1;
  line-height: 1.6;
}

.site-footer__note {
  background: rgba(246, 213, 92, 0.08);
  border: 1px solid rgba(246, 213, 92, 0.18);
  border-radius: 18px;
  color: #d8c98b;
  padding: 14px 16px;
}

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 50;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-height: min(82vh, 900px);
  object-fit: contain;
}

.lightbox__close {
  background: var(--text);
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 16px;
  position: fixed;
  right: 24px;
  top: 24px;
}

@media (max-width: 1040px) {
  .brand__tag {
    display: none;
  }

  .hero__phone {
    margin-top: 48px;
    max-width: 460px;
    position: relative;
    right: auto;
    width: 100%;
  }

  .hero__content {
    max-width: 820px;
  }

  .mechanic-band,
  .download-panel,
  .studio-section,
  .hero--duo,
  .game-feature,
  .game-feature--golden,
  .page-hero,
  .story-section {
    grid-template-columns: 1fr;
  }

  .game-feature--golden .game-feature__copy,
  .game-feature--golden .game-feature__media {
    order: initial;
  }

  .game-poster--golden {
    margin-left: 0;
  }

  .download-card {
    max-width: 520px;
  }

  .role-grid,
  .values-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    padding: 6px 0 4px;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 124px;
  }

  .hero__facts,
  .loop-grid,
  .screens-grid,
  .site-footer,
  .comparison-grid,
  .values-grid,
  .role-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card--wide {
    min-height: 240px;
  }

  .section__heading--split,
  .contact-section,
  .gallery-block__title {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    max-height: 260px;
    width: 100%;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand__text {
    font-size: 16px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__actions .button,
  .contact-link {
    width: 100%;
  }

  .hero__facts div,
  .loop-card,
  .download-panel,
  .studio-section__copy,
  .contact-section {
    border-radius: 24px;
    padding: 22px;
  }

  .section {
    padding: 64px 16px;
  }

  .download-panel {
    margin-left: 16px;
    margin-right: 16px;
  }
}
