:root {
  --bg: #f6fbf3;
  --surface: #ffffff;
  --surface-2: #eef7ea;
  --text: #143222;
  --muted: #5f7869;
  --purple: #6daf7a;
  --pink: #7acb90;
  --orange: #49a35f;
  --lime: #7dd46a;
  --cyan: #9be2bf;
  --line: rgba(20, 50, 34, 0.12);
  --heading: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  border-radius: 10px;
  background: white;
  color: #111;
  padding: 12px 16px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(246, 251, 243, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  height: 78px;
  margin: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 2px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(20, 50, 34, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 7px;
}

.brand-mark.large {
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 18px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  color: #6e8476;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

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

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 13px;
}

.button-light {
  background: var(--text);
  color: #f7fbf4;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  min-height: 920px;
  overflow: hidden;
  padding: 130px max(24px, calc((100vw - 1240px) / 2)) 120px;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(20,50,34,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,50,34,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.48;
}

.hero-glow-one {
  top: -8%;
  right: 0;
  width: 58vw;
  height: 64vw;
  background: radial-gradient(circle, rgba(125,212,106,.3), rgba(155,226,191,.2) 48%, transparent 70%);
}

.hero-glow-two {
  bottom: 4%;
  left: -15%;
  width: 45vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(73,163,95,.14), transparent 70%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 710px;
  padding-right: 35px;
}

.eyebrow,
.section-kicker,
.creator-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7a9182;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200,255,54,.12), 0 0 18px rgba(200,255,54,.6);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
}

.hero h1 {
  max-width: 760px;
  margin: 27px 0 28px;
  font-size: clamp(58px, 6.4vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.gradient-text {
  display: block;
  background: linear-gradient(96deg, #4b9f5e 0%, #7dd46a 38%, #97ddb3 72%, #dff5d7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.store-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

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

.app-store-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 195px;
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 9px 17px;
  background: #ffffff;
  color: #143222;
  box-shadow: 0 15px 40px rgba(54, 94, 67, .14);
  transition: transform .2s, box-shadow .2s;
}

.app-store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 44px rgba(54, 94, 67, .18);
}

.app-store-button svg {
  width: 31px;
  fill: currentColor;
}

.app-store-button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.app-store-button small {
  margin-bottom: 4px;
  font-size: 10px;
}

.app-store-button strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.store-button-soon {
  cursor: not-allowed;
  user-select: none;
  padding-right: 24px;
  padding-left: 18px;
  opacity: 0.96;
}

.store-button-soon svg {
  width: 30px;
}

.soon-stamp {
  position: absolute;
  top: -11px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border: 2px solid #4b9f5e;
  border-radius: 999px;
  padding: 2px 10px;
  background: #ecf8e7;
  color: #2f6f43;
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(54, 94, 67, .12);
  transform: rotate(-7deg);
}

.store-button-soon-light .soon-stamp {
  border-color: #f2ffbe;
  background: rgba(249, 255, 222, 0.95);
  color: #2f6f43;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  border-bottom: 1px solid rgba(20,50,34,.28);
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  width: fit-content;
  max-width: min(100%, 520px);
  padding: 18px 20px;
  border: 1px solid rgba(20, 50, 34, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 22px 46px rgba(20, 50, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #143222;
  font-size: 11px;
  font-weight: 800;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-one { background: #ff9b73; }
.avatar-two { background: #8ae3ff; }
.avatar-three { background: #d7ff72; }
.avatar-four { background: #d8a1ff; }

.hero-proof-copy {
  display: grid;
  gap: 7px;
}

.hero-proof-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #143222;
  white-space: nowrap;
}

.hero-proof-rating strong {
  font-family: var(--heading);
  flex-shrink: 0;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #143222;
}

.stars-image {
  display: block;
  flex-shrink: 0;
  width: clamp(108px, 14vw, 146px);
  height: auto;
}

.hero-proof-copy span {
  display: block;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 680px;
}

.phone-wrap {
  position: relative;
  --phone-shift-x: 0px;
  --phone-shift-y: 0px;
  --phone-tilt-x: 0deg;
  --phone-tilt-y: 0deg;
  perspective: 1200px;
  transform: translate3d(var(--phone-shift-x), var(--phone-shift-y), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
  touch-action: pan-y;
}

@keyframes phoneFloat {
  0%, 100% {
    transform:
      rotateY(calc(-7deg + var(--phone-tilt-y)))
      rotateX(calc(2deg + var(--phone-tilt-x)))
      rotateZ(2deg)
      translateY(0);
  }
  50% {
    transform:
      rotateY(calc(-4deg + var(--phone-tilt-y)))
      rotateX(calc(0deg + var(--phone-tilt-x)))
      rotateZ(1deg)
      translateY(-13px);
  }
}

.phone {
  position: relative;
  width: 324px;
  aspect-ratio: 0.494;
  border: 2px solid #2c322f;
  border-radius: 54px;
  padding: 9px;
  background: linear-gradient(180deg, #2a2f2d 0%, #121513 52%, #050605 100%);
  box-shadow:
    0 50px 90px rgba(37,62,45,.18),
    0 0 90px rgba(125,212,106,.14),
    inset 0 0 0 2px rgba(232, 240, 231, 0.1),
    inset 0 10px 18px rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  animation: phoneFloat 6s ease-in-out infinite;
  will-change: transform;
}

.phone-edge {
  position: absolute;
  top: 115px;
  right: -5px;
  width: 4px;
  height: 78px;
  border-radius: 4px;
  background: linear-gradient(180deg, #555f59 0%, #262d29 100%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 45px;
  background: #111;
}

.phone-video-frame {
  position: absolute;
  inset: 0;
  z-index: 11;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 30%),
    #050505;
}

.phone-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-status {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
}

.game-stack,
.phone-topbar,
.social-rail,
.swipe-cue,
.interaction-hint {
  display: none;
}

.dynamic-island {
  width: 83px;
  height: 23px;
  border-radius: 20px;
  background: #050505;
}

.game-stack,
.phone-game {
  position: absolute;
  inset: 0;
}

.phone-game {
  visibility: hidden;
  opacity: 0;
  transform: translateY(35px) scale(.97);
  transition: opacity .45s, transform .45s, visibility .45s;
}

.phone-game.active {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.phone-game.leaving {
  visibility: visible;
  opacity: 0;
  transform: translateY(-70px) scale(.94);
}

.game-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.game-art-zombie {
  background:
    linear-gradient(to bottom, transparent 50%, #071014 83%),
    radial-gradient(circle at 65% 18%, #ff6b67 0 3%, transparent 4%),
    linear-gradient(155deg, #421349, #121039 45%, #092329);
}

.sky-glow {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 100%;
  height: 38%;
  background: linear-gradient(transparent, rgba(255,58,120,.18));
}

.pixel-moon {
  position: absolute;
  top: 16%;
  right: 15%;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #ff8e68;
  box-shadow: 0 0 35px #ff6577;
}

.pixel-city {
  position: absolute;
  right: -4%;
  bottom: 17%;
  width: 108%;
  height: 26%;
  background:
    linear-gradient(90deg, transparent 0 8%, #121723 8% 18%, transparent 18% 22%, #0c111c 22% 38%, transparent 38% 43%, #171627 43% 55%, transparent 55% 59%, #0c111c 59% 78%, transparent 78% 81%, #131727 81%);
  clip-path: polygon(0 40%, 9% 40%, 9% 15%, 18% 15%, 18% 60%, 24% 60%, 24% 29%, 39% 29%, 39% 51%, 45% 51%, 45% 2%, 55% 2%, 55% 45%, 63% 45%, 63% 20%, 77% 20%, 77% 53%, 84% 53%, 84% 12%, 96% 12%, 96% 40%, 100% 40%, 100% 100%, 0 100%);
}

.crosshair {
  position: absolute;
  top: 38%;
  left: 48%;
  color: rgba(255,255,255,.75);
  font-size: 39px;
  font-weight: 200;
}

.pixel-character {
  position: absolute;
  bottom: 25%;
  left: 36%;
  font-size: 63px;
  filter: drop-shadow(0 10px 18px #000);
}

.game-art-jelly {
  background: linear-gradient(145deg, #5734cf, #e64aa1 58%, #ffb347);
}

.jelly {
  position: absolute;
  border-radius: 45% 55% 50% 50%;
  box-shadow: inset -10px -15px 25px rgba(0,0,0,.18), inset 9px 8px 18px rgba(255,255,255,.34), 0 14px 30px rgba(52,20,108,.28);
}

.jelly-one { left: 13%; bottom: 28%; width: 100px; height: 90px; background: #62e6ff; transform: rotate(-13deg); }
.jelly-two { right: 9%; bottom: 39%; width: 115px; height: 110px; background: #dbff49; transform: rotate(12deg); }
.jelly-three { left: 27%; top: 22%; width: 82px; height: 75px; background: #ff779c; }
.jelly-four { right: 19%; top: 10%; width: 64px; height: 58px; background: #7a77ff; }

.merge-number {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  color: white;
  font-family: var(--heading);
  font-size: 60px;
  font-weight: 800;
  text-shadow: 0 8px 20px rgba(52,20,108,.4);
}

.game-art-tank {
  background: linear-gradient(#ff9b45 0 40%, #c84c35 40% 57%, #492c39 57%);
}

.tank-ground {
  position: absolute;
  inset: 58% 0 0;
  background: repeating-linear-gradient(170deg, #211c2c 0 12px, #342238 12px 21px);
}

.tank-body {
  position: absolute;
  bottom: 24%;
  left: 30%;
  color: #bef255;
  font-size: 88px;
  text-shadow: 0 11px 0 #33451f;
}

.tank-turret {
  position: absolute;
  bottom: 37%;
  left: 40%;
  color: #d9ff72;
  font-size: 83px;
  transform: rotate(-16deg);
  transform-origin: left center;
}

.tank-blast {
  position: absolute;
  top: 32%;
  right: 14%;
  width: 32px;
  height: 32px;
  background: #fff477;
  clip-path: polygon(50% 0, 60% 35%, 100% 20%, 70% 50%, 100% 75%, 61% 65%, 50% 100%, 40% 65%, 0 80%, 30% 50%, 0 23%, 39% 35%);
  filter: drop-shadow(0 0 15px #ffec4a);
}

.tank-score {
  position: absolute;
  top: 18%;
  left: 9%;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 800;
}

.phone-game-overlay {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78) 57%, #050505);
}

.phone-game-info {
  position: absolute;
  left: 18px;
  right: 64px;
  bottom: 72px;
  z-index: 4;
}

.game-chip {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  padding: 4px 8px;
  background: rgba(0,0,0,.25);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}

.phone-game-info h3 {
  font-size: 24px;
  letter-spacing: -.04em;
}

.phone-game-info p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 10px;
}

.phone-topbar {
  position: absolute;
  top: 52px;
  left: 17px;
  right: 17px;
  z-index: 13;
  display: flex;
  justify-content: space-between;
}

.phone-logo {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 2px;
  transform: rotate(-8deg);
}

.phone-logo i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: white;
}

.phone-topbar button,
.social-rail button,
.swipe-cue {
  border: 0;
  background: none;
  cursor: pointer;
}

.phone-topbar button {
  padding: 0;
  font-size: 24px;
}

.social-rail {
  position: absolute;
  right: 14px;
  bottom: 83px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-rail button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  font-size: 27px;
  text-shadow: 0 3px 9px #000;
}

.social-rail small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 600;
}

.swipe-cue {
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 14;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.swipe-cue b {
  font-size: 16px;
  animation: cue 1.5s infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(3px); opacity: .5; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.interaction-hint {
  margin: 20px 0 0;
  color: #77747f;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.orbit-label {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  padding: 10px 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 15px 35px rgba(54, 94, 67, .14);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.orbit-label span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--lime);
  color: #111;
}

.orbit-label-one { top: 17%; left: 1%; }
.orbit-label-two { right: 0; bottom: 23%; }

.scroll-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(125,212,106,.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: marquee 22s linear infinite;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
}

.marquee-track i {
  color: var(--lime);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}

.discover {
  padding: 135px 0 150px;
  background:
    linear-gradient(180deg, #eef7ea 0%, #e7f4e1 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.center-heading h2,
.faq-heading h2 {
  margin-top: 17px;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-heading > p,
.center-heading p,
.faq-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin: 55px 0 27px;
  scrollbar-width: none;
}

.filter-pill {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 17px;
  background: transparent;
  color: #6c8374;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--text);
  background: #ffffff;
  color: var(--text);
}

.game-grid.old-game-grid {
  display: none !important;
}

.games-marquee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 12px;
  background: rgba(255,255,255,.78);
  box-shadow:
    0 22px 60px rgba(16,24,20,.08),
    inset 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
}

.games-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(73,163,95,.08), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255,163,102,.08), transparent 34%);
}

.games-marquee-row {
  overflow: hidden;
  padding: 6px 0;
}

.games-marquee-row + .games-marquee-row {
  border-top: 1px solid rgba(120,150,131,.12);
}

.games-marquee-row-forward .games-marquee-track {
  animation: gamesMarqueeForward 32s linear infinite;
}

.games-marquee-row-reverse .games-marquee-track {
  animation: gamesMarqueeReverse 36s linear infinite;
}

.games-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
}

.games-marquee-card {
  --card-tilt: 0deg;
  display: flex;
  flex: 0 0 236px;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(145,161,151,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(18,31,25,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  animation-duration: 6.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.games-marquee-card:hover {
  transform: translateY(-4px) rotate(var(--card-tilt));
  border-color: rgba(73,163,95,.32);
  box-shadow: 0 18px 34px rgba(18,31,25,.12);
}

.games-marquee-card:nth-child(3n + 1) {
  --card-tilt: -1.2deg;
}

.games-marquee-card:nth-child(3n + 2) {
  --card-tilt: .8deg;
}

.games-marquee-card:nth-child(3n) {
  --card-tilt: -.35deg;
}

.games-marquee-card.float-up {
  animation-name: gamesFloatUp;
}

.games-marquee-card.float-down {
  animation-name: gamesFloatDown;
}

.games-marquee-frame {
  position: relative;
  display: flex;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(145,161,151,.24);
  border-radius: 18px;
  background: #edf2eb;
}

.games-marquee-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  pointer-events: none;
}

.games-marquee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games-marquee-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.games-marquee-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.games-marquee-description {
  margin-top: 4px;
  color: #728476;
  font-size: 12px;
  line-height: 1.45;
}

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

.catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .3s, opacity .3s, border-color .3s;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73,163,95,.35);
}

.catalog-card.hidden {
  display: none;
}

.card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
}

.card-art {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.card-featured .card-art {
  min-height: 430px;
}

.art-zombie {
  display: grid;
  place-items: center;
  background:
    linear-gradient(0deg, rgba(7,9,20,.85), transparent 55%),
    radial-gradient(circle at 72% 22%, #ff8866 0 4%, transparent 5%),
    linear-gradient(135deg, #461445, #12113a 55%, #102b2e);
}

.art-zombie::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  left: -8%;
  height: 44%;
  background: #111521;
  clip-path: polygon(0 38%, 9% 38%, 9% 14%, 17% 14%, 17% 55%, 22% 55%, 22% 28%, 36% 28%, 36% 50%, 43% 50%, 43% 5%, 53% 5%, 53% 45%, 62% 45%, 62% 19%, 76% 19%, 76% 51%, 83% 51%, 83% 10%, 94% 10%, 94% 40%, 100% 40%, 100% 100%, 0 100%);
}

.art-emoji {
  position: relative;
  z-index: 2;
  font-size: 100px;
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.6));
}

.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  border-radius: 100px;
  padding: 7px 10px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.badge-new {
  background: var(--lime);
  color: #111;
}

.card-score {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  color: #aaa8b2;
  font-size: 8px;
  letter-spacing: .12em;
}

.card-score strong {
  color: white;
  font-size: 19px;
}

.card-copy {
  position: relative;
  min-height: 196px;
  padding: 26px 25px;
}

.card-featured .card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.card-copy > span,
.card-cta span {
  color: #787680;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.card-copy h3 {
  margin: 8px 0 9px;
  font-size: 26px;
  letter-spacing: -.045em;
}

.card-copy p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mini-play {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.mini-play:hover {
  background: white;
  color: #111;
}

.art-jelly {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #4931c6, #e74b9b 58%, #ffac45);
}

.blob {
  position: absolute;
  border-radius: 45% 55% 49% 51%;
  box-shadow: inset -8px -10px 17px rgba(0,0,0,.18), inset 7px 7px 14px rgba(255,255,255,.32);
}

.blob-one { width: 100px; height: 90px; left: 14%; bottom: 14%; background: #62e6ff; transform: rotate(-14deg); }
.blob-two { width: 115px; height: 105px; right: 8%; bottom: 27%; background: #d8ff4b; transform: rotate(11deg); }
.blob-three { width: 70px; height: 62px; left: 32%; top: 18%; background: #ff7cac; }

.art-title {
  position: relative;
  z-index: 2;
  font-family: var(--heading);
  font-size: 48px;
  transform: rotate(-7deg);
  text-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.art-kitty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12) 25%, transparent 25%) 0 0/28px 28px,
    linear-gradient(135deg, #7e68ff, #ec74ae);
}

.cat-face {
  position: relative;
  z-index: 2;
  border: 7px solid #281d49;
  border-radius: 46% 46% 50% 50%;
  padding: 35px 20px;
  background: #ffcb73;
  color: #281d49;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 800;
  transform: rotate(-5deg);
  box-shadow: 0 20px 0 rgba(58,39,104,.35);
}

.kitty-holes {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  display: flex;
  justify-content: space-around;
}

.kitty-holes i {
  width: 53px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30,19,60,.55);
}

.art-tank {
  background: linear-gradient(#ff9e44 0 52%, #b04b37 52%);
}

.sun {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffd45e;
  box-shadow: 0 0 40px #ffcf50;
}

.mini-tank {
  position: absolute;
  bottom: 50px;
  left: 28%;
  color: #caff58;
  font-size: 84px;
  text-shadow: 0 10px 0 #445328;
}

.mini-tank i {
  position: absolute;
  top: -20px;
  left: 43px;
  font-style: normal;
  transform: rotate(-16deg);
  transform-origin: left;
}

.dust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52px;
  background: repeating-linear-gradient(170deg, #432a38 0 15px, #5e3037 15px 26px);
}

.art-liquid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(155deg, #152e3b, #27184e);
}

.tube {
  display: flex;
  flex-direction: column-reverse;
  width: 48px;
  height: 164px;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.72);
  border-top: 0;
  border-radius: 0 0 25px 25px;
  transform: rotate(8deg);
  box-shadow: 0 12px 25px rgba(0,0,0,.3);
}

.tube:nth-child(2) { transform: translateY(12px) rotate(-5deg); }
.tube:nth-child(3) { transform: rotate(12deg); }
.tube i { flex: 1; }
.tube-one i:nth-child(1), .tube-two i:nth-child(3), .tube-three i:nth-child(2) { background: #f3589c; }
.tube-one i:nth-child(2), .tube-two i:nth-child(1), .tube-three i:nth-child(3) { background: #4fd7f2; }
.tube-one i:nth-child(3), .tube-two i:nth-child(2), .tube-three i:nth-child(1) { background: #d5fa4f; }

.card-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 300px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(125,212,106,.22), transparent 38%),
    linear-gradient(145deg, #f3fbef, #e5f2e2);
}

.card-cta h3 {
  margin-top: 11px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.card-platform-note {
  margin: 16px 0 0;
  max-width: 24ch;
  color: #476455;
  font-size: 14px;
  line-height: 1.5;
}

.round-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime);
  color: #111;
  font-size: 22px;
  transition: transform .25s;
}

.round-arrow:hover {
  transform: rotate(45deg);
}

.how-it-works {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 135px 0;
  background: #edf6e9;
}

.center-heading {
  max-width: 660px;
  margin: 0 auto 65px;
  text-align: center;
}

.center-heading p {
  margin: 22px auto 0;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px 25px 29px;
  background: #ffffff;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 25px;
  color: #7a9182;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.step-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 285px;
}

.step-card h3 {
  margin-bottom: 9px;
  font-size: 23px;
  letter-spacing: -.04em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mini-phone {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  height: 212px;
  border: 5px solid #302d36;
  border-radius: 25px;
  background: linear-gradient(145deg, #9148e9, #e74891 60%, #ff9448);
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
}

.mini-brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: white;
  color: #6b39c6;
  font-size: 25px;
}

.tap-ring {
  position: absolute;
  right: 65px;
  bottom: 51px;
  width: 65px;
  height: 65px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  animation: tapRing 2s infinite;
}

@keyframes tapRing {
  0% { transform: scale(.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.swipe-card {
  position: absolute;
  width: 150px;
  height: 210px;
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(0,0,0,.35);
}

.swipe-back {
  transform: rotate(10deg) translate(16px, -5px);
  background: linear-gradient(145deg, #31c9d6, #263aa2);
}

.swipe-front {
  display: grid;
  place-items: center;
  border: 4px solid #1a1722;
  background: linear-gradient(145deg, #f06e49, #a42877);
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 800;
  transform: rotate(-5deg);
}

.swipe-arrow {
  position: absolute;
  right: 37px;
  bottom: 23px;
  color: var(--lime);
  font-size: 34px;
  animation: swipeArrow 1.8s infinite;
}

@keyframes swipeArrow {
  0%,100% { transform: translateY(5px); opacity: .45; }
  50% { transform: translateY(-9px); opacity: 1; }
}

.play-burst {
  position: absolute;
  width: 188px;
  height: 188px;
  background: var(--purple);
  clip-path: polygon(50% 0%, 58% 27%, 78% 8%, 73% 36%, 100% 31%, 76% 50%, 100% 68%, 72% 64%, 79% 91%, 58% 73%, 50% 100%, 42% 73%, 20% 92%, 27% 64%, 0 69%, 24% 50%, 0 31%, 28% 36%, 21% 8%, 42% 27%);
  animation: rotate 20s linear infinite;
}

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

@keyframes gamesMarqueeForward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gamesMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes gamesFloatUp {
  0%,100% { transform: translateY(0) rotate(var(--card-tilt)); }
  50% { transform: translateY(-6px) rotate(var(--card-tilt)); }
}

@keyframes gamesFloatDown {
  0%,100% { transform: translateY(0) rotate(var(--card-tilt)); }
  50% { transform: translateY(6px) rotate(var(--card-tilt)); }
}

.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  background: var(--lime);
  color: #111;
  font-size: 27px;
  box-shadow: 0 0 50px rgba(200,255,54,.35);
}

.spark {
  position: absolute;
  color: #ff77b5;
  font-size: 24px;
}

.spark-one { top: 46px; right: 43px; }
.spark-two { bottom: 44px; left: 42px; color: #5de7ff; }

.features {
  padding: 130px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.84) 10%, rgba(255,255,255,0.96) 100%);
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr .95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(145deg, #ffffff, #eef7ea);
}

.feature-copy {
  padding: 75px 60px;
}

.feature-copy h2 {
  margin: 17px 0 25px;
  font-size: clamp(48px, 5.4vw, 75px);
  line-height: .95;
  letter-spacing: -.06em;
}

.feature-copy > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-list li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #edf6e9;
}

.feature-list div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list small {
  color: #6c8374;
  font-size: 12px;
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(125,212,106,.2), transparent 35%),
    linear-gradient(145deg, #dff5d7, #84ca8c 52%, #4f9e63);
}

.feature-phone {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 500px;
  border: 8px solid #2d4434;
  border-radius: 44px;
  padding: 7px;
  background: #405a47;
  transform: rotate(5deg);
  box-shadow: 0 45px 65px rgba(37,62,45,.28);
}

.feature-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 31px;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 18px, rgba(255,255,255,.08) 19px 20px),
    linear-gradient(160deg, #2f5c38, #5ca66b 55%, #d7f0cb);
}

.feature-screen span {
  color: #e7fff0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.feature-screen strong {
  margin: 13px 0 25px;
  font-family: var(--heading);
  font-size: 36px;
  transform: skew(-6deg);
}

.feature-play {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #eaf8e5;
  color: #143222;
}

.time-bubble {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 10px 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 13px 30px rgba(54, 94, 67, .14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}

.time-one { top: 17%; left: 9%; transform: rotate(-8deg); }
.time-two { top: 39%; right: 6%; transform: rotate(6deg); }
.time-three { left: 10%; bottom: 16%; transform: rotate(4deg); }

.creator-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: linear-gradient(180deg, #eef7ea 0%, #e7f4e1 100%);
  color: #10110d;
}

.creator-section::after {
  content: "PLAY";
  position: absolute;
  right: -35px;
  bottom: -100px;
  color: rgba(10,12,5,.05);
  font-family: var(--heading);
  font-size: 300px;
  font-weight: 800;
  letter-spacing: -.1em;
}

.creator-noise {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.creator-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.creator-kicker {
  color: rgba(16,17,13,.65);
}

.creator-copy h2 {
  margin: 17px 0 25px;
  font-size: clamp(56px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.07em;
}

.creator-copy h2 em {
  color: #7351dd;
  font-style: normal;
}

.creator-copy p {
  max-width: 430px;
  margin: 0 0 33px;
  color: rgba(16,17,13,.7);
  font-size: 16px;
  line-height: 1.65;
}

.creator-copy .button-light {
  background: #143222;
  color: #f7fbf4;
}

.creator-cards {
  position: relative;
  height: 570px;
}

.creator-card {
  position: absolute;
  width: 310px;
  min-height: 270px;
  border: 2px solid #15170f;
  border-radius: 25px;
  padding: 25px;
  background: #f9f8f1;
  box-shadow: 12px 14px 0 rgba(14,16,8,.14);
}

.creator-card > span {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
}

.creator-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #111;
  border-radius: 17px;
  background: #ff76a9;
  font-size: 27px;
}

.creator-card h3 {
  margin: 55px 0 12px;
  font-size: 24px;
  letter-spacing: -.045em;
}

.creator-card p {
  margin: 0;
  color: #56564d;
  font-size: 13px;
  line-height: 1.55;
}

.creator-card-one {
  top: 30px;
  left: 4%;
  transform: rotate(-5deg);
}

.creator-card-two {
  top: 8px;
  right: 1%;
  transform: rotate(7deg);
}

.creator-card-two .creator-icon { background: #70def0; }

.creator-card-three {
  right: 24%;
  bottom: 4px;
  transform: rotate(-2deg);
}

.creator-card-three .creator-icon { background: #a78bfa; }

.faq {
  padding: 140px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading p {
  margin-top: 23px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 26px 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.faq-item button i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 18px;
  height: 1px;
  background: white;
  transition: transform .25s;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 48px 27px 0;
}

.contact-section {
  padding: 40px 0 140px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-copy,
.contact-cards {
  min-width: 0;
}

.contact-copy {
  padding: 42px;
  border: 1px solid rgba(47, 111, 67, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(120, 202, 131, 0.24), transparent 38%),
    linear-gradient(155deg, #ffffff, #f4fbf1 62%, #e5f3de);
  box-shadow: 0 24px 60px rgba(58, 108, 70, 0.12);
}

.contact-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #225233;
}

.contact-copy p {
  margin: 0;
  max-width: 34ch;
  color: #476455;
  font-size: 17px;
  line-height: 1.7;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  border-bottom: 1px solid rgba(47, 111, 67, 0.24);
  padding-bottom: 6px;
  color: #2f6f43;
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.03em;
}

.contact-cards {
  display: grid;
  gap: 24px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(47, 111, 67, 0.12);
  border-radius: 34px;
  padding: 30px 32px;
  color: white;
  box-shadow: 0 24px 58px rgba(58, 108, 70, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(111, 196, 122, 0.18);
  filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 67, 0.22);
  box-shadow: 0 30px 72px rgba(58, 108, 70, 0.18);
}

.contact-card-tiktok {
  background: linear-gradient(135deg, #111111, #1f3040 52%, #25f4ee);
}

.contact-card-instagram {
  background: linear-gradient(135deg, #5124b8, #d62976 48%, #feda75);
}

.contact-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.contact-icon svg {
  width: 34px;
  height: 34px;
}

.contact-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-copy strong {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.contact-card-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, #2f6f43, #63b46e 58%, #d8f1cc);
}

.cta-grid {
  opacity: .28;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
}

.orb-one {
  top: -20%;
  right: 6%;
  width: 420px;
  height: 420px;
  background: rgba(255,78,155,.66);
}

.orb-two {
  bottom: -32%;
  left: 2%;
  width: 530px;
  height: 530px;
  background: rgba(74,230,245,.38);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  margin: 28px 0 19px;
  font-size: clamp(62px, 8vw, 108px);
  line-height: .88;
  letter-spacing: -.075em;
}

.final-cta h2 span {
  color: var(--lime);
}

.final-cta p {
  margin: 0 0 32px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.site-footer {
  padding: 70px max(24px, calc((100vw - 1160px) / 2)) 30px;
  background: #edf6e9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.footer-main > div:first-child p {
  color: #667d6f;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.footer-platform-note {
  color: #2f6f43;
  font-family: var(--heading);
  font-size: 13px;
  letter-spacing: -0.02em;
}

.footer-links a {
  color: #667d6f;
  font-size: 12px;
  overflow-wrap: anywhere;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #718577;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .75s ease, transform .75s ease;
}

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

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

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

  .games-marquee-track,
  .games-marquee-card {
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 8px;
    padding: 35px 24px;
    background: rgba(246,251,243,.97);
    opacity: 0;
    transform: translateY(-15px);
    transition: .25s;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    font-family: var(--heading);
    font-size: 31px;
    font-weight: 600;
  }

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

  .hero h1 {
    font-size: clamp(55px, 7vw, 76px);
  }

  .phone {
    width: 295px;
  }

  .games-marquee-card {
    flex-basis: 220px;
  }

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

  .card-featured {
    grid-column: span 2;
  }

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

  .creator-copy {
    max-width: 630px;
  }

  .creator-cards {
    width: min(720px, 100%);
    margin: auto;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(100% - 32px, 1160px);
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-top: 135px;
  }

  .hero-copy {
    max-width: 650px;
    padding-right: 0;
  }

  .hero-visual {
    min-height: 630px;
  }

  .orbit-label-one {
    left: 8%;
  }

  .orbit-label-two {
    right: 8%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .games-marquee-card {
    flex-basis: 208px;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    column-gap: 25px;
  }

  .step-visual {
    grid-row: span 2;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 570px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 32px, 1160px);
  }

  .hero {
    min-height: auto;
    padding-right: 16px;
    padding-bottom: 120px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 67px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .store-button-row {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .store-button-row .app-store-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 58px;
    gap: 10px;
    padding: 8px 12px;
  }

  .store-button-row .app-store-button svg {
    width: 24px;
  }

  .store-button-row .app-store-button small {
    font-size: 9px;
  }

  .store-button-row .app-store-button strong {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .store-button-row .store-button-soon {
    padding-right: 14px;
    padding-left: 12px;
  }

  .store-button-row .soon-stamp {
    top: -10px;
    right: 6px;
    min-height: 22px;
    padding: 2px 8px;
    font-size: 9px;
  }

  .hero-proof {
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-proof-copy span {
    font-size: 13px;
  }

  .hero-proof-rating {
    gap: 10px;
  }

  .hero-proof-rating strong {
    font-size: 38px;
  }

  .stars-image {
    width: 138px;
  }

  .hero-visual {
    min-height: 590px;
    transform: scale(.94);
  }

  .contact-section {
    padding-top: 20px;
    padding-bottom: 110px;
  }

  .contact-copy,
  .contact-card {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .contact-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .contact-copy p {
    font-size: 15px;
  }

  .contact-mail {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .contact-card {
    min-height: 160px;
    gap: 18px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .contact-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-card-copy strong {
    font-size: 30px;
  }

  .phone {
    width: 285px;
  }

  .orbit-label-one {
    top: 12%;
    left: -1%;
  }

  .orbit-label-two {
    right: -2%;
  }

  .discover,
  .features,
  .faq {
    padding: 95px 0;
  }

  .section-heading h2,
  .center-heading h2,
  .faq-heading h2,
  .feature-copy h2 {
    font-size: 47px;
  }

  .games-marquee {
    margin-top: 24px;
    border-radius: 24px;
    padding: 10px;
  }

  .games-marquee-row {
    padding: 4px 0;
  }

  .games-marquee-card {
    flex-basis: 184px;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 18px;
  }

  .games-marquee-frame {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .games-marquee-frame::after {
    border-radius: 15px;
  }

  .games-marquee-title {
    font-size: 13px;
  }

  .games-marquee-description {
    font-size: 11px;
  }

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

  .card-featured {
    grid-column: auto;
    display: block;
  }

  .card-featured .card-art {
    min-height: 330px;
  }

  .card-featured .card-copy {
    min-height: 215px;
  }

  .card-art {
    min-height: 280px;
  }

  .how-it-works {
    padding: 95px 0;
  }

  .step-card {
    display: block;
  }

  .feature-copy {
    padding: 50px 25px;
  }

  .feature-visual {
    min-height: 490px;
  }

  .feature-phone {
    width: 205px;
    height: 410px;
  }

  .creator-section {
    padding: 95px 0;
  }

  .creator-grid {
    gap: 55px;
  }

  .creator-copy h2 {
    font-size: 58px;
  }

  .creator-cards {
    display: grid;
    gap: 18px;
    height: auto;
  }

  .creator-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .faq-item button span {
    padding-right: 20px;
    font-size: 17px;
  }

  .final-cta {
    min-height: 620px;
    padding: 80px 20px;
  }

  .final-cta h2 {
    font-size: 59px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
