:root {
  --ink: #06101f;
  --ink-2: #0a172b;
  --ink-3: #102542;
  --panel: rgba(12, 30, 54, .82);
  --panel-strong: #0d203a;
  --blue: #21a9ff;
  --blue-2: #66d7ff;
  --discord: #5865f2;
  --discord-2: #7c86ff;
  --patreon: #ff424d;
  --patreon-2: #ff7a85;
  --white: #ffffff;
  --text: #f4f8ff;
  --muted: #b8c8dd;
  --soft: #7f93ad;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .22);
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  --radius: 8px;
  --header-h: 74px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #06101f;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: transparent;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background: url("../images/just-shoot/hero-bg.png") center / cover no-repeat;
  filter: blur(14px);
  opacity: .98;
  transform: scale(1.06);
}

body::after {
  z-index: 0;
  background: rgba(4, 10, 19, .74);
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

section {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background .2s ease, border-color .2s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(4, 11, 22, .76);
  border-bottom: 1px solid rgba(33, 169, 255, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(33, 169, 255, .5);
}

.brand strong {
  color: var(--blue-2);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  padding: 0;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.06rem;
  font-weight: 900;
  transition: color .16s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .16s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-2);
  outline: 0;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(102, 215, 255, .5);
  border-radius: 50%;
  color: var(--blue-2);
  background: rgba(33, 169, 255, .14);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  height: min(590px, 84svh);
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  border-bottom: 0;
}

.hero-art,
.hero-art img,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-art {
  display: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}

.hero::before,
.hero::after {
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: -3;
  background: none;
}

.hero::after {
  z-index: -2;
  background: none;
  mix-blend-mode: normal;
}

.hero-inner {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 36px) 0 44px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-copy h1 {
  margin-inline: auto;
  max-width: 12ch;
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(2.72rem, 4.8vw, 4.55rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  color: var(--white);
  text-shadow: 0 18px 54px rgba(0, 0, 0, .45);
}

.hero-copy h1 span {
  color: var(--blue-2);
}

.hero-copy p {
  margin-inline: auto;
  max-width: 540px;
  margin-top: 22px;
  color: rgba(244, 248, 255, .92);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.78;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: "Nunito", "Inter", sans-serif;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

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

.btn .icon,
.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #36b8ff, #148ce8);
  box-shadow: 0 16px 38px rgba(33, 169, 255, .3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 48px rgba(33, 169, 255, .42);
}

.btn-secondary,
.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .23);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(102, 215, 255, .7);
  background: rgba(33, 169, 255, .18);
}

.btn-steam {
  color: #e7f2fb;
  background: linear-gradient(180deg, #245271, #173954);
  border-color: rgba(102, 215, 255, .4);
  box-shadow: 0 18px 42px rgba(33, 169, 255, .2);
}

.btn-steam svg {
  fill: currentColor;
  stroke: none;
}

.btn-discord {
  color: var(--white);
  background: linear-gradient(180deg, var(--discord-2), var(--discord));
  box-shadow: 0 18px 38px rgba(88, 101, 242, .34);
}

.btn-patreon {
  color: var(--white);
  background: linear-gradient(180deg, var(--patreon-2), var(--patreon));
  box-shadow: 0 18px 38px rgba(255, 66, 77, .28);
}

.btn-patreon:hover,
.btn-patreon:focus-visible {
  box-shadow: 0 22px 46px rgba(255, 66, 77, .4);
}

.games {
  position: relative;
  margin-top: 0;
  padding: 88px 0 96px;
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0), rgba(4, 10, 19, .28) 18%, rgba(4, 10, 19, .28) 82%, rgba(4, 10, 19, 0));
}

.games::before {
  content: none;
}

.games > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-center {
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p,
.about-title p,
.presskit-copy > p:first-child {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2,
.about-title h2,
.presskit-copy h2,
.community-panel h2,
.support-panel h2 {
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
  font-weight: 900;
  line-height: .99;
  letter-spacing: 0;
  text-wrap: balance;
}

.game-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 480px;
  border-block: 0;
  background: transparent;
}

.game-backdrop,
.game-backdrop img,
.game-showcase::before {
  position: absolute;
  inset: 0;
}

.game-backdrop {
  z-index: -3;
}

.game-backdrop img {
  display: none;
}

.game-showcase::before {
  content: none;
}

.game-grid {
  min-height: 480px;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(220px, 280px);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  justify-content: center;
}

.game-main {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.game-logo {
  width: min(350px, 100%);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .64));
}

.game-main p {
  max-width: 460px;
  margin: 0;
  color: rgba(244, 248, 255, .89);
  font-size: 1.02rem;
  line-height: 1.84;
}

.game-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.game-actions .btn {
  min-height: 46px;
  padding-inline: 14px;
  white-space: nowrap;
}

.game-media {
  justify-self: center;
  width: min(260px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.game-capsule {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 37, 66, .96), rgba(5, 12, 24, .98));
  box-shadow: var(--shadow);
}

.game-capsule {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
}

.presskit-page main {
  padding-top: var(--header-h);
}

.presskit-hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(33, 169, 255, .16);
  background:
    linear-gradient(90deg, rgba(5, 12, 24, .97), rgba(5, 12, 24, .72) 48%, rgba(5, 12, 24, .5)),
    url("../images/just-shoot/hero-bg.png") center / cover no-repeat;
}

.presskit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.presskit-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}

.presskit-art {
  justify-self: end;
  width: min(320px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(5, 12, 24, .78);
  box-shadow: var(--shadow);
}

.presskit-art img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.presskit-page-content {
  padding: 72px 0 104px;
  background: rgba(5, 14, 29, .78);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.info-list dt {
  color: var(--blue-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}

.info-list a {
  color: var(--blue-2);
}

.presskit-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .86fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.presskit-copy {
  max-width: 600px;
}

.presskit-copy h2 {
  max-width: 10ch;
}

.presskit-copy > p:not(:first-child) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.presskit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.presskit-block {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}

.presskit-block h2,
.presskit-block h3 {
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.presskit-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 16px;
  align-items: start;
  margin-top: 22px;
}

.presskit-block {
  padding: clamp(24px, 4vw, 34px);
}

.presskit-description {
  grid-row: auto;
}

.presskit-block p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.presskit-block strong {
  color: var(--white);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.58;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(33, 169, 255, .45);
}

.media-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.media-links a {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(6, 16, 31, .56);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.media-links a:hover,
.media-links a:focus-visible {
  border-color: rgba(33, 169, 255, .62);
  background: rgba(33, 169, 255, .13);
  transform: translateY(-2px);
  outline: 0;
}

.media-links span {
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
}

.media-links strong {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.contact-block a {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--blue-2);
  font-weight: 900;
  transition: color .16s ease;
}

.contact-block a:hover,
.contact-block a:focus-visible {
  color: var(--white);
  outline: 0;
}

.community {
  padding: 96px 0;
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0), rgba(4, 10, 19, .3) 18%, rgba(4, 10, 19, .3) 82%, rgba(4, 10, 19, 0));
}

.community-panel {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(124, 134, 255, .36);
  border-radius: var(--radius);
  background: rgba(8, 18, 34, .58);
  box-shadow: 0 24px 70px rgba(20, 28, 91, .34);
}

.community-mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(180deg, var(--discord-2), var(--discord));
  box-shadow: 0 18px 44px rgba(88, 101, 242, .44);
  transition: transform .18s ease, box-shadow .18s ease;
}

.community-mark:hover,
.community-mark:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(88, 101, 242, .56);
  outline: 0;
}

.community-mark img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.community-panel p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.about {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0), rgba(4, 10, 19, .24) 16%, rgba(4, 10, 19, .24) 84%, rgba(4, 10, 19, 0));
}

.about::before {
  content: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 640px);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.about-title {
  position: sticky;
  top: 110px;
}

.about-copy {
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 2px solid rgba(33, 169, 255, .42);
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.86;
}

.about-copy strong {
  color: var(--white);
  font-weight: 900;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  font-size: .82rem;
  font-weight: 900;
  transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}

.about-links a:hover,
.about-links a:focus-visible {
  color: var(--white);
  background: rgba(33, 169, 255, .24);
  border-color: var(--blue);
  transform: translateY(-2px);
  outline: 0;
}

.about-links a[href*="patreon"] {
  border-color: rgba(255, 66, 77, .34);
  color: #ffd7db;
  background: rgba(255, 66, 77, .14);
}

.about-links a[href*="patreon"]:hover,
.about-links a[href*="patreon"]:focus-visible {
  border-color: var(--patreon);
  background: rgba(255, 66, 77, .28);
}

.team {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0), rgba(4, 10, 19, .28) 16%, rgba(4, 10, 19, .28) 84%, rgba(4, 10, 19, 0));
}

.team::before {
  content: none;
}

.team-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.support-panel {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}

.team-heading {
  align-self: center;
}

.team-heading p {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.team-heading h2 {
  max-width: 8.4ch;
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.3rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.team-heading span {
  display: block;
  max-width: 320px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(28px, 5vw, 58px);
  align-items: end;
}

.team-member {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--white);
  text-align: center;
  transition: transform .18s ease, filter .18s ease;
}

.team-member:hover,
.team-member:focus-visible {
  transform: translateY(-5px);
  outline: 0;
}

.member-art {
  position: relative;
  width: min(310px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
  isolation: isolate;
}

.member-art::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 4%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .42), transparent 70%);
  filter: blur(4px);
  z-index: -1;
}

.member-art img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .32));
}

.member-art-open {
  width: min(310px, 100%);
}

.member-art-open img {
  width: 100%;
  opacity: .94;
  filter: drop-shadow(0 18px 34px rgba(33, 169, 255, .28));
}

.member-art-open strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 5px 22px rgba(33, 169, 255, .45);
}

.team-member h3 {
  margin: 0;
  font-family: "Nunito", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.team-member p {
  max-width: 260px;
  margin: 0;
  color: var(--blue-2);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.35;
}

.team-member-open p {
  color: var(--muted);
}

.support-panel p,
.footer-brand p {
  color: var(--muted);
}

.support {
  padding: 88px 0 104px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0), rgba(4, 10, 19, .24) 18%, rgba(4, 10, 19, .24) 82%, rgba(4, 10, 19, 0));
}

.support-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 5vw, 46px);
  background: rgba(8, 18, 34, .58);
}

.support-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.support-panel p {
  max-width: 560px;
  margin: 12px 0 0;
}

.footer {
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(4, 10, 19, .94);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand .brand img {
  width: 34px;
  height: 34px;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  font-size: .92rem;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  padding: 4px 0;
  color: var(--muted);
  font-size: .92rem;
  transition: color .16s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  outline: 0;
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: var(--soft);
  font-size: .84rem;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero-inner,
  .game-grid,
  .about-grid,
  .team-stage,
  .presskit-grid,
  .presskit-body {
    grid-template-columns: 1fr;
  }

  .game-media,
  .presskit-art {
    justify-self: start;
  }

  .about-title {
    position: static;
  }

  .team-heading {
    text-align: center;
  }

  .team-heading h2,
  .team-heading span {
    margin-left: auto;
    margin-right: auto;
  }

  .team-roster {
    max-width: 700px;
    margin: 0 auto;
  }

  .presskit-description {
    grid-row: auto;
  }

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

  .community-panel {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .community-panel .btn {
    grid-column: 2;
    width: fit-content;
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .container,
  .hero-inner,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 14px;
    gap: 10px;
  }

  .brand span {
    font-size: 1rem;
  }

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

  .menu-button {
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(5, 12, 24, .97);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-art img {
    object-position: 58% center;
  }

  .hero-inner {
    padding: calc(var(--header-h) + 42px) 0 42px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 14vw, 4.15rem);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: .98rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .presskit-actions,
  .support-panel,
  .community-panel {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  .btn,
  .community-panel .btn {
    width: 100%;
  }

  .community-mark {
    width: 92px;
    height: 92px;
  }

  .community-mark img {
    width: 56px;
    height: 56px;
  }

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

  .games,
  .presskit-hero,
  .presskit-page-content,
  .about,
  .team,
  .community {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .games {
    margin-top: -30px;
    padding-top: 96px;
  }

  .game-showcase,
  .game-grid {
    min-height: 0;
  }

  .game-grid {
    padding: 62px 0;
    gap: 36px;
  }

  .game-logo {
    width: min(300px, 100%);
  }

  .game-media {
    width: min(250px, 100%);
    grid-template-columns: 1fr;
    justify-self: center;
  }

  .game-capsule {
    width: 100%;
    justify-self: center;
  }

  .presskit-art {
    width: min(240px, 100%);
  }

  .about-copy {
    padding-left: 18px;
  }

  .team-stage {
    gap: 34px;
  }

  .team-roster {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .member-art {
    width: min(270px, 86vw);
  }

  .member-art-open {
    width: min(270px, 86vw);
  }

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

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .section-heading h2,
  .about-title h2,
  .presskit-copy h2,
  .presskit-copy h1,
  .community-panel h2,
  .support-panel h2 {
    font-size: 2.3rem;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .team-heading h2 {
    font-size: 3.05rem;
  }

}

@media (max-width: 520px) {
  .container,
  .hero-inner,
  .footer-bottom {
    width: min(360px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

  .hero-inner {
    margin-left: auto;
    margin-right: auto;
  }
}
