:root {
  --cyan: #02c9f4;
  --cyan-dark: #0498ba;
  --ink: #07090d;
  --panel: #2f2f2f;
  --paper: #f6f6f6;
  --muted: #b9c1ca;
  --blue-black: #07131f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 3px solid var(--cyan);
  box-shadow: 0 4px 22px rgba(4, 32, 48, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #20242a;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: inline-block;
  width: 58px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 35%, #ff2eb8 0 3px, transparent 4px),
    radial-gradient(circle at 42% 20%, #ff5ed2 0 3px, transparent 4px),
    radial-gradient(circle at 66% 37%, #7a6cff 0 3px, transparent 4px),
    radial-gradient(circle at 35% 60%, #1bbfff 0 3px, transparent 4px),
    radial-gradient(circle at 76% 66%, #00d1ff 0 3px, transparent 4px),
    radial-gradient(circle at 52% 52%, #ff2e97 0 3px, transparent 4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.site-nav .menu {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #18212c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  font-weight: 800;
  background: var(--cyan);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.home-hero {
  background:
    linear-gradient(rgba(2, 4, 15, 0.42), rgba(2, 4, 15, 0.68)),
    url("https://images.unsplash.com/photo-1593508512255-86ab42a8e620?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.hero-logo {
  position: absolute;
  top: 58px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 272px;
  transform: translateX(-50%);
  padding: 14px 22px;
  color: #1d2430;
  font-size: 17px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  color: #fff;
  font-size: 46px;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
}

.team-strip {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(4, minmax(160px, 230px));
  min-height: 340px;
  background: #e9fbff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.team-title {
  align-self: start;
  padding: 44px 24px;
  color: #075277;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.team-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card span {
  position: absolute;
  right: 10px;
  bottom: 18px;
  left: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

.team-card small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
}

.partner-band {
  min-height: 380px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.34), rgba(167, 220, 235, 0.82) 62%, #aee3f1 63%),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.partner-band h2,
.section h2,
.about-split h2,
.contact-section h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.partner-band p {
  margin: 0 0 10px;
  font-weight: 900;
}

.partner-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.65;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  align-items: stretch;
  background: #fff;
}

.about-split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-split div {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 76px);
  color: #333;
  text-align: center;
}

.about-split p {
  max-width: 390px;
  margin: 0 auto 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.section {
  padding: clamp(42px, 7vw, 78px) clamp(20px, 6vw, 90px);
}

.section-dark {
  color: #fff;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 8px),
    #060606;
}

.narrow {
  max-width: 1120px;
  margin: 0 auto;
}

.product-grid,
.game-grid,
.work-videos,
.feature-grid {
  display: grid;
  gap: 18px;
}

.product-grid.two {
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
}

.video-card,
.game-card {
  overflow: hidden;
  background: #303030;
}

.video-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  background: #000;
}

.video-placeholder span {
  width: 34px;
  height: 34px;
  border: 3px solid #ddd;
  border-radius: 50%;
  position: relative;
}

.video-placeholder span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ddd;
}

.card-copy {
  padding: 22px 24px 24px;
}

.card-copy h3,
.game-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-copy p {
  margin: 0 0 20px;
  color: #f2f2f2;
  line-height: 1.5;
}

.card-copy a,
.game-card a {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.games-section {
  padding: 38px clamp(20px, 7vw, 120px) 74px;
  color: #fff;
  background:
    linear-gradient(rgba(1, 9, 16, 0.76), rgba(1, 9, 16, 0.9)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.games-section h2 {
  margin: 0 0 28px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

.game-grid {
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.game-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.game-card div {
  min-height: 126px;
  padding: 22px 22px 20px;
}

.game-card h3 {
  font-size: clamp(22px, 2vw, 31px);
}

.section-work {
  color: #fff;
  background: #242424;
}

.work-videos {
  grid-template-columns: repeat(2, minmax(240px, 360px));
  justify-content: center;
}

.work-videos .video-placeholder {
  min-height: 180px;
}

.clients {
  min-height: 420px;
  background: #eee;
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 8vw, 100px);
  min-height: 220px;
  color: #22416d;
  font-size: clamp(28px, 5vw, 52px);
}

.client-row strong:nth-child(2) {
  color: #02bef0;
}

.client-row strong:nth-child(3) {
  color: #6a6a6a;
  font-size: clamp(22px, 4vw, 36px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 760px) minmax(220px, 360px);
  gap: 42px;
  justify-content: center;
  padding: 34px clamp(20px, 7vw, 120px) 78px;
  background: #fff;
}

.contact-section h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aaa;
  padding: 11px 12px;
  color: #111;
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form button,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: var(--cyan);
}

.contact-form button {
  margin-top: 28px;
  min-width: 118px;
  cursor: pointer;
}

address {
  align-self: end;
  color: #333;
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
  text-align: center;
}

.join-band {
  min-height: 255px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.42)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.button.outline {
  border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(19, 80, 126, 0.8);
  text-transform: uppercase;
}

.site-footer {
  padding: 30px 20px;
  color: #58606a;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  background: #020202;
  border-top: 3px solid var(--cyan);
}

.arena-hero {
  min-height: 470px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 50% 49%, rgba(60, 196, 255, 0.55), transparent 9%),
    linear-gradient(rgba(4, 11, 25, 0.34), rgba(4, 11, 25, 0.55)),
    url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=2200&q=85") center / cover;
  border-bottom: 8px solid #fff;
}

.arena-title {
  width: 100%;
  color: rgba(231, 239, 255, 0.82);
  font-size: clamp(28px, 7vw, 68px);
  font-weight: 300;
  letter-spacing: clamp(0.35em, 2vw, 0.9em);
  text-align: center;
  text-transform: uppercase;
}

.arena-intro {
  padding-top: 62px;
  padding-bottom: 76px;
}

.arena-intro h1 {
  margin: 0 0 34px;
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  text-transform: uppercase;
}

.arena-intro p {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #f4f4f4;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 26px;
}

.features-band {
  padding: 38px clamp(20px, 7vw, 120px) 92px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.82)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center / cover;
  border-bottom: 8px solid #fff;
}

.features-band h2 {
  margin: 0 0 34px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.feature-grid {
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

.feature-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 134px;
  padding: 14px 10px;
  background: #333;
}

.feature-grid span {
  margin-bottom: 14px;
  color: #dbdbdb;
  font-size: 44px;
  line-height: 1;
}

.feature-grid p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.choose-section {
  padding-top: 42px;
  padding-bottom: 78px;
  border-bottom: 1px solid #143042;
}

.reason-list {
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin: 44px auto 0;
  text-align: center;
}

.reason-list h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 31px);
}

.reason-list p {
  margin: 0;
  color: #e8edf1;
  font-weight: 700;
  line-height: 1.45;
}

.financing {
  padding-top: 70px;
  padding-bottom: 86px;
  text-align: center;
  border-top: 1px solid #143042;
}

.financing p {
  max-width: 640px;
  margin: 0 auto;
  color: #f0f0f0;
  line-height: 1.55;
}

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

  .team-title {
    grid-column: 1 / -1;
    padding: 30px 20px;
  }

  .about-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .game-grid,
  .product-grid.two {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 16px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav .menu {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-logo {
    min-width: 236px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .brand-text {
    display: none;
  }

  .team-strip {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 420px;
  }

  .about-split img {
    height: 360px;
  }

  .work-videos,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .arena-hero {
    min-height: 380px;
  }

  .arena-title {
    letter-spacing: 0.25em;
  }
}

