:root {
  --bg: #080b12;
  --bg-soft: #0c111b;
  --panel: #101722;
  --panel-hover: #131d2b;
  --text: #f4f7fb;
  --muted: #9ca8b8;
  --blue: #2563eb;
  --blue-light: #4f83ff;
  --line: rgba(255, 255, 255, 0.1);
  --container: 1180px;
  --header-height: 5rem;
  --font-sans: "Aptos", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

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

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

button { color: inherit; font: inherit; }

::selection {
  background: var(--blue-light);
  color: white;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: white;
  color: #080b12;
  font-weight: 600;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.container--narrow { max-width: 900px; }

.section { padding-block: clamp(5rem, 9vw, 8rem); }

.section--raised {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
  transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 18, 0.72);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.site-header .brand {
  width: clamp(9.5rem, 15vw, 12rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 200ms ease, transform 250ms var(--ease), visibility 200ms ease;
}

.site-header.is-past-hero .brand {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.2rem 0.5rem rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.8vw, 2.6rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 0.1rem 0.45rem rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--blue-light);
  content: "";
  transform: scaleX(0);
  transition: transform 250ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible { color: white; }

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

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 0.1rem 0.45rem rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}

.menu-toggle__lines {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1rem;
}

.menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: top 220ms ease, transform 220ms ease;
}

.menu-toggle__lines i:first-child { top: 0.25rem; }
.menu-toggle__lines i:last-child { top: 0.72rem; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { top: 0.5rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { top: 0.5rem; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__slideshow,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slideshow {
  z-index: -3;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.68) contrast(1.06) brightness(0.88);
  transform: scale(1.035);
  transition: opacity 1.4s ease, transform 7s linear;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide--drone { object-position: 30% center; }
.hero__slide--cbrn { object-position: 25% center; }
.hero__slide--beam { object-position: center; }

.hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 44%, rgba(37, 99, 235, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.35), rgba(8, 11, 18, 0.2) 48%, rgba(8, 11, 18, 0.9));
}

.hero__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: calc(var(--header-height) + 3rem) 7rem;
  text-align: center;
}

.hero__logo {
  width: min(70vw, 37rem);
  margin: 0;
}

.hero__logo img { width: 100%; height: auto; }

.hero__tagline {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.92rem, 1.6vw, 1.1rem);
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__actions .button {
  min-width: 9.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.65rem;
}

.button {
  display: inline-flex;
  min-width: 10.5rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

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

.button svg {
  width: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--primary { background: var(--blue); color: white; }
.button--primary:hover,
.button--primary:focus-visible { background: var(--blue-light); }

.button--outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(8, 11, 18, 0.22);
  color: white;
}

.button--outline:hover,
.button--outline:focus-visible { border-color: white; background: rgba(255, 255, 255, 0.08); }

.button--quiet {
  border-color: var(--line);
  color: var(--muted);
}

.button--quiet:hover,
.button--quiet:focus-visible { border-color: rgba(255, 255, 255, 0.3); color: white; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span { color: var(--blue-light); font-size: 1rem; }

.section-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading--centered { text-align: center; }

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading h2,
.community h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
}

.games {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-block: clamp(4rem, 6vw, 6rem);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.9) 0%, rgba(8, 11, 18, 0.72) 38%, rgba(8, 11, 18, 0.2) 76%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.34), transparent 45%, rgba(8, 11, 18, 0.78)),
    url("assets/games/breach2.webp") center / cover no-repeat;
}

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

.projects-heading { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.projects-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.game-spotlight {
  display: flex;
  min-height: clamp(36rem, 70vh, 50rem);
  align-items: center;
  padding-block: 2rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status i {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: #58df8b;
  box-shadow: 0 0 0 0.25rem rgba(88, 223, 139, 0.12);
}

.status strong { color: white; }

.status--archive { color: #d2d8e1; }

.game-meta {
  margin: 0 0 1rem;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-spotlight h3 {
  max-width: 100%;
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.01;
  text-transform: uppercase;
}

.game-spotlight h3 span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 721px) {
  .game-spotlight h3 { font-size: clamp(2rem, 3.35vw, 3.1rem); }
}

.game-spotlight__content > p:not(.game-meta) {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.game-spotlight__content > .status { margin: 1rem 0 0; }

.game-spotlight__content {
  width: min(100%, 40rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, rgba(18, 27, 41, 0.84), rgba(8, 12, 20, 0.76));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #cbd2dc;
  font-size: 0.86rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--blue-light);
  content: "";
  transform: rotate(45deg);
}

.game-stats {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.game-stat { margin: 0; }

.game-stat strong {
  display: block;
  color: white;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.game-stat > span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button-row--centered { justify-content: center; }

.team {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 50% 40%, rgba(37, 99, 235, 0.08), transparent 38rem),
    var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 0 0 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20, 29, 44, 0.74), rgba(11, 16, 25, 0.64));
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  transition: background-color 250ms ease, transform 300ms var(--ease), border-color 250ms ease;
}

.team-card:hover {
  border-color: rgba(79, 131, 255, 0.42);
  background: var(--panel-hover);
  transform: translateY(-4px);
}

.team-card__portrait {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    url("assets/team/placeholder.svg") center / 44% no-repeat,
    linear-gradient(145deg, #172236, #0c111a);
}

.team-card:nth-child(2n) .team-card__portrait {
  background:
    url("assets/team/placeholder.svg") center / 44% no-repeat,
    linear-gradient(145deg, #111c2e, #0a0f18);
}

.team-card__portrait--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.84) contrast(1.04);
  object-fit: cover;
  transform: scale(1.005);
  transition: filter 250ms ease, transform 450ms var(--ease);
}

.team-card__portrait--photo::after {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.025), rgba(8, 11, 18, 0.14));
  content: "";
  pointer-events: none;
  transform: none;
}

.team-card:hover .team-card__portrait--photo img {
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.025);
}

.team-card h3,
.team-card > p {
  margin-inline: 1.25rem;
}

.team-card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.team-card > p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.team-card__social {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  gap: 0.4rem;
  margin: 1rem 1.25rem 0;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.team-card__social svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.team-card__social:hover,
.team-card__social:focus-visible {
  border-color: rgba(79, 131, 255, 0.62);
  background: rgba(37, 99, 235, 0.13);
  color: white;
  transform: translateY(-1px);
}

.community {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 11, 18, 0.84), rgba(8, 11, 18, 0.96)),
    url("assets/games/updated.webp") center 42% / cover;
  text-align: center;
}

.community::before {
  position: absolute;
  top: -10rem;
  left: 50%;
  width: 34rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.22);
  content: "";
  filter: blur(90px);
  transform: translateX(-50%);
}

.community__content { position: relative; }
.community__content > p:not(.eyebrow) { max-width: 36rem; margin: 1.25rem auto 0; color: var(--muted); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-links a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.54);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, transform 250ms var(--ease);
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(79, 131, 255, 0.7);
  background: rgba(37, 99, 235, 0.14);
  color: white;
  transform: translateY(-2px);
}

.site-footer {
  padding-block: 2.25rem;
  border-top: 1px solid var(--line);
  background: #06080d;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand--footer { width: 10rem; }

.site-footer__link-groups {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer .site-footer__resources {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.site-footer nav a,
.site-footer p {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: white; }
.site-footer p { margin: 0; text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: reveal-in 850ms var(--ease) forwards;
}

.reveal--delay-1 { animation-delay: 100ms; }
.reveal--delay-2 { animation-delay: 200ms; }

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 1.5rem 3rem;
    background: var(--bg);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 250ms ease, transform 400ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: min(100%, 24rem);
    padding: 0.85rem 1rem;
    color: white;
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: center;
  }

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

@media (max-width: 720px) {
  :root { --header-height: 4.5rem; }
  .container { width: min(calc(100% - 2rem), var(--container)); }

  .hero__slide--cbrn { object-position: 22% center; }
  .hero__slide--beam { object-position: 54% center; }
  .hero__logo { width: min(76vw, 27rem); }
  .hero__tagline { max-width: 21rem; }

  .games {
    display: block;
    min-height: 0;
    padding-block: 0 2.25rem;
    background: var(--bg);
  }

  .team { padding-top: 3.75rem; }

  .games::before {
    display: block;
    height: clamp(14rem, 58vw, 18rem);
    background:
      linear-gradient(180deg, rgba(8, 11, 18, 0.08), rgba(8, 11, 18, 0.2) 62%, var(--bg)),
      url("assets/games/breach2.webp") 62% center / cover no-repeat;
    content: "";
  }

  .games .container { margin-top: -2.5rem; }
  .projects-heading {
    margin-bottom: 2.25rem;
    text-align: center;
  }
  .game-spotlight {
    min-height: 0;
    padding-block: 0;
  }

  .game-spotlight__content { text-align: center; }
  .game-spotlight h3 { margin-inline: auto; }
  .game-spotlight__content > p:not(.game-meta) { margin-inline: auto; }
  .game-spotlight__content > .status { margin-top: 1.5rem; }
  .feature-list { text-align: left; }
  .game-stats { text-align: left; }
  .game-spotlight .button-row { justify-content: center; }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__link-groups {
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer .site-footer__resources {
    padding: 1rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer p { text-align: center; }
}

@media (max-width: 460px) {
  .hero__actions,
  .button-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hero__actions { width: min(100%, 20rem); }
  .hero__actions--single { width: auto; }
  .button-row { width: min(100%, 22rem); }

  .hero__actions .button,
  .button-row .button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 0.7rem;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .hero__actions .button { min-height: 2.8rem; }
  .hero__actions--single .button {
    min-width: 10.5rem;
    flex: 0 0 auto;
  }

  .button-row { margin-inline: auto; }
  .hero__scroll { bottom: 1.25rem; }
  .team-grid { gap: 0.65rem; }
  .team-card h3,
  .team-card > p { margin-inline: 0.85rem; }
  .team-card h3 { font-size: 0.82rem; }
  .team-card > p { font-size: 0.65rem; }
  .site-footer nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 340px) {
  .game-spotlight h3 { font-size: 1.75rem; }
}

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