:root {
  --ink: #0b0b0c;
  --paper: #f2f0e9;
  --muted: #a9a79f;
  --lime: #caff33;
  --orange: #ff6b35;
  --violet: #9a66ff;
  --blue: #58d8ff;
  --line: rgba(242, 240, 233, 0.17);
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.14) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,.1) 0 0.5px, transparent 0.8px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1440px);
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.68rem;
  letter-spacing: -0.08em;
  transform: rotate(-8deg);
}

.nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.nav a,
.header-cta {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--lime);
}

.header-cta {
  justify-self: end;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta span {
  margin-left: 8px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 138px max(24px, calc((100vw - 1392px) / 2)) 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.04) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 92px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  right: -11vw;
  top: 17%;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(150px);
  opacity: 0.12;
}

.hero-kicker,
.eyebrow {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(202, 255, 51, 0.09);
}

.hero-title {
  margin: clamp(52px, 8vh, 100px) 0 0;
  font-family: var(--display);
  font-size: clamp(4.1rem, 12.8vw, 13.4rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.hero-title-accent {
  width: max-content;
  max-width: 100%;
  margin: 24px 0 0 28vw;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.7vw, 7.1rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  width: min(100%, 920px);
  margin: clamp(52px, 7vh, 90px) 0 50px auto;
}

.hero-bottom p {
  max-width: 560px;
  margin: 0;
  color: #d0cec6;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero-bottom em {
  color: var(--paper);
  font-style: normal;
}

.circle-link {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 94px;
  height: 94px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
  background: var(--lime);
  transform: rotate(-8deg) scale(1.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0 0;
}

.hero-stats div:nth-child(2) {
  justify-content: center;
}

.hero-stats div:nth-child(3) {
  justify-content: end;
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 1.6rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(202, 255, 51, 0.23);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 10%;
  left: 18%;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--lime);
}

.hero-orbit-one {
  width: 34vw;
  aspect-ratio: 1;
  right: 3vw;
  top: 22%;
}

.hero-orbit-two {
  width: 22vw;
  aspect-ratio: 1;
  right: 9vw;
  top: 32%;
  border-color: rgba(255, 255, 255, 0.08);
}

.games-section {
  color: var(--ink);
  background: var(--paper);
  padding: clamp(90px, 10vw, 160px) max(24px, calc((100vw - 1392px) / 2));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  margin-bottom: 70px;
}

.section-heading .eyebrow,
.about-section .eyebrow {
  color: #65635e;
}

.section-heading h2,
.about-copy h2,
.follow-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.section-heading h2 {
  max-width: 900px;
  text-align: right;
}

.games-list {
  display: grid;
  gap: 22px;
}

.game-card {
  --card-bg: var(--lime);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: 26px;
}

.game-card--siege {
  --card-bg: #ff7d48;
}

.game-card--pounce {
  --card-bg: #a97bff;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,11,12,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,12,.065) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.game-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(36px, 5vw, 76px);
}

.game-number {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  color: rgba(11, 11, 12, 0.48);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(11, 11, 12, 0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-copy h3 {
  margin: auto 0 20px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.game-copy p {
  max-width: 540px;
  margin: 0 0 34px;
  color: rgba(11, 11, 12, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.play-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 230px;
  padding: 12px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-link small {
  display: block;
  color: #aaa8a1;
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.play-link:hover,
.play-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 11, 12, 0.18);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--paper);
}

.link-arrow {
  font-size: 1.3rem;
}

.game-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 62px;
  background: rgba(11, 11, 12, 0.94);
  overflow: hidden;
}

.game-art::before,
.game-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.game-art::before {
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.11);
}

.game-art::after {
  width: 54%;
  aspect-ratio: 1;
  background: var(--card-bg);
  filter: blur(85px);
  opacity: 0.27;
}

.game-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24%;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.5));
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}

.game-card--marble .game-art img {
  object-fit: contain;
}

.game-art:hover img,
.game-art:focus-visible img {
  transform: scale(1.055) rotate(2deg);
}

.art-ring {
  position: absolute;
  z-index: 1;
  width: 63%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 8vw;
  min-height: 760px;
  padding: clamp(100px, 12vw, 180px) max(24px, calc((100vw - 1392px) / 2));
  color: var(--ink);
  background: var(--blue);
}

.about-stamp {
  position: relative;
  display: grid;
  place-items: center;
  width: min(31vw, 380px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: clamp(0.65rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  transform: rotate(-8deg);
}

.about-stamp::before,
.about-stamp::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(11, 11, 12, 0.28);
  border-radius: 50%;
}

.about-stamp::before {
  inset: 7%;
}

.about-stamp::after {
  inset: 16%;
}

.about-stamp span {
  max-width: 65%;
}

.about-stamp strong {
  position: absolute;
  font-size: clamp(3rem, 8vw, 7rem);
}

.about-copy h2 {
  max-width: 900px;
  margin: 22px 0 40px;
}

.about-text {
  max-width: 650px;
  margin: 0 0 0 auto;
  color: rgba(11, 11, 12, 0.7);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.follow-section {
  padding: clamp(100px, 12vw, 180px) max(24px, calc((100vw - 1392px) / 2));
}

.follow-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.follow-heading .eyebrow {
  order: 2;
}

.social-list {
  border-top: 1px solid var(--line);
}

.social-link {
  display: grid;
  grid-template-columns: 70px minmax(180px, 1fr) minmax(180px, 0.6fr) 52px;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding 200ms ease, background 200ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  padding: 0 24px;
  color: var(--ink);
}

.social-link--youtube:hover,
.social-link--youtube:focus-visible {
  background: #ff4b4b;
}

.social-link--tiktok:hover,
.social-link--tiktok:focus-visible {
  background: var(--blue);
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
  background: #7d9dff;
}

.social-index,
.social-handle {
  color: var(--muted);
  font-size: 0.78rem;
}

.social-link:hover .social-index,
.social-link:hover .social-handle,
.social-link:focus-visible .social-index,
.social-link:focus-visible .social-handle {
  color: rgba(11, 11, 12, 0.62);
}

.social-name {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.social-arrow {
  justify-self: end;
  font-size: 2rem;
  transition: transform 200ms ease;
}

.social-link:hover .social-arrow,
.social-link:focus-visible .social-arrow {
  transform: translate(5px, -5px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 8vw, 130px);
  margin-top: clamp(90px, 10vw, 150px);
  padding: clamp(38px, 5vw, 72px);
  color: var(--ink);
  background: var(--lime);
  border-radius: 24px;
}

.contact-card .eyebrow {
  margin: 0 0 30px;
  color: rgba(11, 11, 12, 0.58);
}

.contact-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-actions p {
  max-width: 420px;
  margin: 0 0 32px;
  color: rgba(11, 11, 12, 0.67);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: min(100%, 280px);
  padding: 18px 20px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 11, 12, 0.18);
}

.contact-button span {
  font-size: 1.25rem;
}

.contact-email {
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(11, 11, 12, 0.34);
  font-size: 0.84rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  transition: border-color 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100% - 48px, 1392px);
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.brand--footer {
  color: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1392px);
  }

  .nav {
    display: none;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero-title {
    font-size: clamp(4rem, 15.5vw, 8rem);
    line-height: 0.82;
  }

  .hero-title-accent {
    margin-left: 12vw;
  }

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

  .game-copy {
    min-height: 520px;
  }

  .game-art {
    min-height: 520px;
  }

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

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

  .about-stamp {
    width: min(58vw, 340px);
  }

  .social-link {
    grid-template-columns: 48px 1fr auto;
  }

  .social-handle {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 72px;
  }

  .brand > span:last-child {
    display: none;
  }

  .header-cta {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 900px;
    padding-top: 112px;
  }

  .hero-title {
    margin-top: 70px;
    font-size: 17vw;
    line-height: 0.87;
  }

  .hero-title-accent {
    margin: 24px 0 0;
    font-size: 13vw;
    line-height: 0.9;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin: 70px 0 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats div,
  .hero-stats div:nth-child(2),
  .hero-stats div:nth-child(3) {
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .hero-stats strong {
    font-size: 1.2rem;
  }

  .hero-orbit-one {
    width: 88vw;
    right: -35vw;
    top: 31%;
  }

  .hero-orbit-two {
    width: 55vw;
    right: -18vw;
    top: 38%;
  }

  .section-heading,
  .follow-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 22px;
    text-align: left;
  }

  .follow-heading .eyebrow {
    margin-bottom: 22px;
  }

  .game-card {
    min-height: 0;
    border-radius: 18px;
  }

  .game-copy {
    min-height: 475px;
    padding: 28px;
  }

  .game-copy h3 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .game-art {
    min-height: 390px;
    padding: 48px;
  }

  .about-section {
    min-height: 720px;
  }

  .about-stamp {
    margin-bottom: 42px;
  }

  .about-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .social-link {
    grid-template-columns: 34px 1fr 30px;
    min-height: 104px;
    gap: 12px;
  }

  .social-link:hover,
  .social-link:focus-visible {
    padding: 0 10px;
  }

  .social-name {
    font-size: 2rem;
  }

  .contact-card {
    padding: 32px 26px;
    border-radius: 18px;
  }

  .contact-copy h3 {
    font-size: 18vw;
  }

  .contact-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1392px);
  }

  .site-footer > p:nth-child(2) {
    display: none;
  }
}

@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;
  }
}
