:root {
  --ink: #101115;
  --ink-soft: #2b2d35;
  --muted: #6b6f7b;
  --quiet: #9aa0ac;
  --paper: #fbfbf8;
  --surface: #ffffff;
  --surface-2: #f3f6fa;
  --line: #e7e9ef;
  --line-strong: #d7dce7;
  --blue: #4f63ff;
  --cyan: #1bb7d7;
  --mint: #18b97d;
  --orange: #ff7134;
  --rose: #ff4f80;
  --yellow: #f5b942;
  --shadow: 0 24px 70px rgba(27, 31, 44, 0.12);
  --shadow-soft: 0 12px 36px rgba(27, 31, 44, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(251, 251, 248, 0.95) 44%, #f7f9fc 100%),
    var(--paper);
  font-family: "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 17, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 21, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 54%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.nav-wrap {
  position: sticky;
  top: 18px;
  z-index: 30;
  padding: 18px 0 0;
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(980px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 14px 10px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 222, 232, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(20, 24, 35, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: "Inter Tight", "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  color: #fff;
  background: #0d0e12;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: #f2f4f7;
  outline: 0;
}

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

.button,
.icon-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(79, 99, 255, 0.24);
  outline-offset: 2px;
}

.button.primary {
  color: #fff;
  background: #0d0e12;
  box-shadow: 0 12px 26px rgba(13, 14, 18, 0.16);
}

.button.primary:hover {
  box-shadow: 0 16px 34px rgba(13, 14, 18, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(18, 22, 34, 0.06);
}

.button.ghost {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button.small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 14px;
}

.button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  color: var(--ink);
  background: #f4f6f8;
  border-color: #eceff4;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 48px;
}

.hero::before {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: -1;
  width: min(1180px, 118vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(185, 192, 207, 0.34);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 120px rgba(255, 255, 255, 0),
    0 0 0 190px rgba(255, 255, 255, 0),
    0 0 0 260px rgba(255, 255, 255, 0);
}

.orbit-lines {
  position: absolute;
  top: 64px;
  left: 50%;
  z-index: -1;
  width: min(1080px, 116vw);
  aspect-ratio: 1;
  border: 1px solid rgba(187, 194, 210, 0.32);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-lines::before,
.orbit-lines::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(187, 194, 210, 0.3);
  border-radius: 50%;
}

.orbit-lines::after {
  inset: 24%;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(20, 24, 35, 0.06);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(24, 185, 125, 0.14);
}

.hero h1,
.page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: "Inter Tight", "Instrument Sans", sans-serif;
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.floating-token {
  position: absolute;
  display: grid;
  gap: 2px;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 225, 234, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  animation: floatToken 8s ease-in-out infinite;
}

.floating-token svg {
  width: 27px;
  height: 27px;
}

.floating-token small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.token-ios {
  top: 92px;
  left: max(2vw, 28px);
  color: var(--blue);
}

.token-drive {
  top: 210px;
  right: max(3vw, 44px);
  color: var(--orange);
  animation-delay: -2s;
}

.token-rating {
  bottom: 72px;
  left: 9vw;
  color: var(--yellow);
  animation-delay: -4s;
}

.token-care {
  right: 13vw;
  bottom: 34px;
  color: var(--rose);
  animation-delay: -5.5s;
}

@keyframes floatToken {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  gap: 16px;
  align-items: center;
  width: min(960px, 100%);
  margin-top: 8px;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-pill,
.studio-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.metric-pill:nth-child(2) {
  transform: translateX(28px);
}

.metric-pill:nth-child(3) {
  transform: translateX(6px);
}

.metric-icon {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
}

.metric-pill:nth-child(2) .metric-icon {
  background: var(--mint);
}

.metric-pill:nth-child(3) .metric-icon {
  background: var(--orange);
}

.metric-icon svg {
  width: 20px;
  height: 20px;
}

.metric-pill strong,
.studio-pill strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.metric-pill span,
.studio-pill span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.game-device {
  position: relative;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  background: #15171f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(20, 24, 35, 0.28);
}

.game-device::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 96px;
  height: 7px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.game-device img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.game-device .device-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 4px 2px;
  color: #fff;
  text-align: left;
}

.app-icon {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.device-footer strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.device-footer span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.studio-pill {
  align-self: end;
  margin-bottom: 34px;
}

.studio-pill .pulse {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--rose);
  border-radius: 12px;
}

.trusted-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.trusted-row span {
  padding: 8px 11px;
  color: #737987;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding-top: 48px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.legal-content h2 {
  margin: 0;
  font-family: "Inter Tight", "Instrument Sans", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 830;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.game-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.game-media {
  position: relative;
  min-height: 500px;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(19, 22, 32, 0.92), rgba(19, 22, 32, 0.56)),
    url("https://is1-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/8a/ea/46/8aea4610-6323-07e9-4033-d2e32255007d/9159340e-b518-4161-a312-0c6533ee920a_Artboard_1__U2013_395.png/812x456bb.png") center / cover;
}

.game-media-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.game-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.game-badge svg {
  width: 16px;
  height: 16px;
}

.game-rating {
  display: grid;
  min-width: 92px;
  padding: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.game-rating strong {
  font-size: 22px;
  line-height: 1;
}

.game-rating span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.game-screens {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: end;
}

.game-screens img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.game-screens img:nth-child(2) {
  transform: translateY(24px);
}

.game-content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.game-content h3 {
  margin: 0;
  font-family: "Inter Tight", "Instrument Sans", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
}

.game-content p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 8px 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-tile {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(20, 24, 35, 0.05);
}

.feature-tile svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.feature-tile:nth-child(2) svg {
  color: var(--mint);
}

.feature-tile:nth-child(3) svg {
  color: var(--orange);
}

.feature-tile:nth-child(4) svg {
  color: var(--rose);
}

.feature-tile h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: start;
}

.support-aside,
.support-form,
.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.support-aside {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.support-aside h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.support-aside p {
  margin: 0;
  color: var(--muted);
}

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

.quick-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 760;
}

.quick-list svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--mint);
}

.support-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-field {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid #e2e7f0;
  border-radius: 12px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: #cdd5e5;
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.footer {
  padding: 42px 0 48px;
}

.footer-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 760;
}

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

.page-hero {
  padding: 84px 0 42px;
  text-align: center;
}

.page-hero .eyebrow {
  margin: 0 auto 18px;
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-wrap {
  padding: 0 0 82px;
}

.legal-content {
  display: grid;
  gap: 26px;
  max-width: 860px;
  padding: clamp(24px, 5vw, 56px);
}

.legal-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.legal-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 10px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: auto auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .top-nav.is-open {
    grid-template-columns: 1fr auto;
  }

  .top-nav.is-open .nav-links,
  .top-nav.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .top-nav.is-open .nav-links {
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .showcase-stage,
  .game-card,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .metric-stack {
    grid-template-columns: repeat(3, 1fr);
    order: 2;
  }

  .metric-pill:nth-child(n) {
    transform: none;
  }

  .studio-pill {
    order: 3;
    margin-bottom: 0;
  }

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

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 28px, var(--max));
  }

  .top-nav {
    width: min(100% - 24px, 980px);
    border-radius: 20px;
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .floating-token {
    display: none;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button,
  .form-footer .button {
    width: 100%;
  }

  .showcase-stage {
    gap: 14px;
  }

  .metric-stack,
  .feature-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric-stack,
  .studio-pill,
  .trusted-row {
    display: none;
  }

  .game-device {
    border-radius: 22px;
  }

  .game-device img {
    border-radius: 14px;
  }

  .game-media {
    min-height: 390px;
    padding: 18px;
  }

  .game-screens {
    right: 18px;
    bottom: 36px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .game-screens img:nth-child(2) {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .footer-inner {
    display: grid;
  }
}

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