@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Nunito+Sans:wght@400;500;600;700;800&family=Paytone+One&display=swap');

:root {
  --ink: #080b13;
  --ink-soft: #111624;
  --paper: #f7f4ed;
  --white: #fffef9;
  --yellow: #ffb800;
  --yellow-light: #ffd85a;
  --purple: #7234f5;
  --pink: #ff3cac;
  --green: #a6ef21;
  --blue: #16b9ff;
  --muted: #626873;
  --line: rgba(8, 11, 19, 0.13);
  --container: min(1240px, calc(100vw - 48px));
  --radius: 34px;
  --heading: "Paytone One", "Arial Rounded MT Bold", sans-serif;
  --game: "Bungee", "Arial Black", sans-serif;
  --body: "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 99px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  min-height: 76px;
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: rgba(7, 10, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 250ms ease, top 250ms ease, width 250ms ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(7, 10, 17, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  width: max-content;
}

.brand img {
  width: 76px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 7px rgba(0, 0, 0, 0.32));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

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

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 15px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffca28, var(--yellow));
  border: 2px solid #090b12;
  border-radius: 11px;
  box-shadow: 0 4px 0 #8d5700;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--yellow-light);
  box-shadow: 0 6px 0 #8d5700;
  transform: translateY(-2px);
}

.header-cta:active {
  box-shadow: 0 1px 0 #8d5700;
  transform: translateY(3px);
}

.header-cta > span:last-child {
  padding: 4px 7px;
  color: #fff;
  background: var(--ink);
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 920px;
  padding: 160px max(24px, calc((100vw - 1240px) / 2)) 120px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(114, 52, 245, 0.23), transparent 29%),
    linear-gradient(120deg, #080b13 0%, #0d1220 46%, #090914 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.32));
  content: "";
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 160px;
  left: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 184, 0, 0.25);
  box-shadow: 0 0 120px rgba(255, 184, 0, 0.1) inset;
}

.hero-orb-two {
  right: -120px;
  bottom: 80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(114, 52, 245, 0.4);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 660px;
  padding-top: 10px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
}

.hero h1,
.section-heading h2,
.studio-copy h2,
.values-head h2,
.cta-copy h2 {
  margin: 24px 0;
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(66px, 6.25vw, 94px);
  white-space: nowrap;
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 5px 0 rgba(106, 55, 0, 0.38);
}

.hero-copy > p {
  max-width: 475px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 23px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(180deg, #ffca28, var(--yellow));
  border: 2px solid #090b12;
  box-shadow: 0 5px 0 #975c00, 0 16px 32px rgba(255, 184, 0, 0.2);
}

.button-primary:hover {
  box-shadow: 0 7px 0 #975c00, 0 20px 44px rgba(255, 184, 0, 0.28);
  transform: translateY(-3px);
}

.button-primary:active {
  box-shadow: 0 2px 0 #975c00, 0 10px 24px rgba(255, 184, 0, 0.2);
  transform: translateY(3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--yellow);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-art {
  position: relative;
  z-index: 2;
  height: 680px;
  perspective: 1200px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(126, 47, 255, 0.54), rgba(45, 19, 133, 0.15) 55%, transparent 70%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.game-card {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: min(360px, 58%);
  height: auto;
  aspect-ratio: 9 / 16;
  background: #080a17;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 54px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  overflow: hidden;
  transform: translateX(-42%) rotate(5deg);
  transition: transform 120ms ease-out;
}

.game-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 28%, rgba(8, 11, 19, 0.08));
  content: "";
  pointer-events: none;
}

.game-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.floating-bills,
.floating-progress {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.34));
}

.floating-bills {
  right: -14%;
  bottom: 0;
  width: 310px;
  transform: rotate(8deg);
  animation: float 5.5s ease-in-out infinite;
}

.floating-progress {
  bottom: 64px;
  left: -5%;
  width: 165px;
  transform: rotate(-11deg);
  animation: float 6s 0.7s ease-in-out infinite reverse;
}

.hero-sticker {
  position: absolute;
  z-index: 6;
  top: 42px;
  right: -45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 142px;
  height: 112px;
  padding: 17px 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px),
    linear-gradient(145deg, #ffd755, var(--yellow) 68%);
  border: 3px solid var(--ink);
  border-radius: 25px 25px 25px 8px;
  box-shadow: 7px 8px 0 var(--purple), 0 0 0 4px rgba(255, 255, 255, 0.72);
  font-family: var(--game);
  line-height: 1;
  transform: rotate(10deg);
  animation: sticker-bob 3.2s ease-in-out infinite;
}

.hero-sticker::before {
  position: absolute;
  top: 11px;
  right: 12px;
  color: var(--purple);
  content: "✦";
  font-family: var(--body);
  font-size: 17px;
}

.hero-sticker small {
  color: rgba(8, 11, 19, 0.67);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.hero-sticker strong {
  margin: 0 0 9px;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-sticker span {
  font-size: 10px;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.hero-sticker i {
  margin: 0 2px;
  color: var(--purple);
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  gap: 0;
}

.hero-meta > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 175px;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta > div:last-child {
  border: 0;
}

.hero-meta span {
  color: var(--yellow);
  font-family: var(--game);
  font-size: 12px;
}

.hero-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.45;
}

.hero-meta b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ticker {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  width: calc(100% - 6px);
  height: 76px;
  margin: 0 auto;
  color: var(--ink);
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  transform: rotate(-0.6deg);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--game);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  padding: 0 34px;
}

.ticker-track i {
  font-size: 18px;
  font-style: normal;
}

.section {
  padding: 135px 0;
  scroll-margin-top: 92px;
}

.game-section {
  background:
    linear-gradient(rgba(8, 11, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 11, 19, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.section-heading,
.studio-layout,
.values-head,
.bento-grid,
.steps-grid {
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.studio-copy h2,
.values-head h2,
.cta-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(50px, 5.4vw, 82px);
  overflow-wrap: break-word;
}

.section-heading h2 em,
.studio-copy h2 em,
.values-head h2 em,
.cta-copy h2 em {
  color: var(--purple);
  font-style: normal;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-stage {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  width: var(--container);
  min-height: 710px;
  margin: 90px auto 0;
  color: #fff;
  background:
    radial-gradient(circle at 83% 30%, rgba(114, 52, 245, 0.46), transparent 30%),
    linear-gradient(125deg, #0c1020 0%, #0c1122 45%, #171044 100%);
  border-radius: 44px;
  box-shadow: 0 40px 90px rgba(14, 12, 32, 0.15);
  overflow: hidden;
}

.feature-copy {
  position: relative;
  z-index: 4;
  padding: 68px 0 58px 68px;
}

.app-icon-wrap {
  width: 92px;
  height: 92px;
  padding: 3px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-radius: 23px;
  box-shadow: 0 17px 35px rgba(111, 42, 232, 0.28);
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.available-label {
  display: block;
  margin-top: 30px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 8px 0 15px;
  font-family: var(--heading);
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.feature-copy h3 span {
  color: var(--yellow);
}

.feature-copy > p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.65;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 470px;
  padding: 0;
  margin: 26px 0 34px;
  list-style: none;
}

.feature-pills li {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
}

.store-buttons {
  display: flex;
  gap: 10px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  height: 55px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

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

.store-button span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
}

.phone-scene {
  position: relative;
  min-height: 710px;
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.phone-scene::before {
  position: absolute;
  top: 5%;
  left: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.22), transparent 65%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.phone {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 29%;
  width: 330px;
  height: auto;
  aspect-ratio: 9 / 16;
  padding: 8px;
  background: #05070b;
  border: 2px solid #626675;
  border-radius: 50px;
  box-shadow: 0 50px 90px rgba(0, 0, 0, 0.5), 0 0 0 3px #181b22 inset;
  transform: rotate(7deg) translateZ(45px);
}

.phone::after {
  content: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #4d1ca7;
  border-radius: 42px;
  overflow: hidden;
}

.phone-gameplay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #080a17;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}

.scene-pig,
.scene-cash {
  position: absolute;
  z-index: 4;
  max-width: none;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.33));
}

.scene-pig {
  right: -70px;
  bottom: -14px;
  width: 355px;
  transform: rotate(-5deg) translateZ(80px);
}

.scene-cash {
  top: -12px;
  left: -50px;
  width: 245px;
  transform: rotate(-12deg) translateZ(60px);
}

.scene-badge {
  position: absolute;
  z-index: 6;
  top: 88px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 142px;
  height: 104px;
  padding: 15px 17px;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 11, 19, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 11, 19, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #c3ff4c, var(--green));
  background-size: 13px 13px, 13px 13px, auto;
  border: 3px solid var(--ink);
  border-radius: 23px 23px 8px 23px;
  box-shadow: 7px 8px 0 var(--yellow), 0 0 0 4px rgba(255, 255, 255, 0.75);
  transform: rotate(9deg) translateZ(90px);
}

.scene-badge::after {
  position: absolute;
  top: -12px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #fff;
  background: var(--purple);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  content: "✓";
  font-family: var(--body);
  font-size: 17px;
  font-weight: 900;
}

.scene-badge small {
  font-family: var(--game);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.scene-badge strong {
  margin: 4px 0;
  font-family: var(--game);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.scene-badge span {
  font-family: var(--game);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal-note {
  width: var(--container);
  margin: 25px auto 0;
  color: #666b75;
  font-size: 13px;
  text-align: center;
}

.gameplay-section {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(114, 52, 245, 0.34), transparent 25%),
    radial-gradient(circle at 92% 72%, rgba(255, 60, 172, 0.2), transparent 24%),
    var(--ink-soft);
  overflow: hidden;
}

.gameplay-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

.gameplay-intro,
.gameplay-stage,
.bonus-modes {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.gameplay-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 90px;
}

.gameplay-intro .kicker,
.bonus-copy .kicker { color: var(--yellow); }

.gameplay-intro h2 {
  margin: 18px 0 0;
  font-family: var(--heading);
  font-size: clamp(50px, 5.4vw, 82px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.gameplay-intro h2 em {
  color: var(--yellow);
  font-style: normal;
}

.gameplay-intro > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.7;
}

.gameplay-stage { margin-top: 85px; }

.gameplay-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.gameplay-shot {
  min-width: 0;
  margin: 0;
  transition: transform 260ms ease;
}

.gameplay-shot:nth-child(1) { transform: rotate(-2deg) translateY(24px); }
.gameplay-shot:nth-child(2) { transform: rotate(1.5deg); }
.gameplay-shot:nth-child(3) { transform: rotate(-1deg) translateY(34px); }
.gameplay-shot:nth-child(4) { transform: rotate(2deg) translateY(8px); }

.gameplay-shot:hover { transform: translateY(-10px) rotate(0); }

.shot-phone {
  aspect-ratio: 9 / 16;
  padding: 5px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 32px;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.shot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.gameplay-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 7px 0;
}

.gameplay-shot figcaption span {
  color: var(--yellow);
  font-family: var(--game);
  font-size: 9px;
  text-transform: uppercase;
}

.gameplay-shot figcaption b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.bonus-modes {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  align-items: center;
  min-height: 275px;
  margin-top: 105px;
  padding: 25px 60px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 184, 0, 0.2), transparent 25%),
    radial-gradient(circle at 82% 50%, rgba(255, 60, 172, 0.22), transparent 25%),
    linear-gradient(125deg, #2e126b, var(--purple));
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: 10px 12px 0 var(--yellow);
  overflow: hidden;
}

.bonus-modes > img {
  justify-self: center;
  width: 205px;
  max-height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.35));
}

.bonus-wheel { transform: rotate(-10deg); }
.bonus-slot { transform: rotate(9deg); }

.bonus-copy {
  position: relative;
  z-index: 2;
  padding: 0 25px;
  text-align: center;
}

.bonus-copy h3 {
  margin: 10px 0 8px;
  font-family: var(--heading);
  font-size: clamp(34px, 3.5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.bonus-copy p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.safety-section {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(135deg, var(--yellow-light), var(--yellow));
  overflow: hidden;
}

.safety-section::before,
.safety-section::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(8, 11, 19, 0.12);
  border-radius: 50%;
  content: "";
}

.safety-section::before { top: -150px; left: -80px; }
.safety-section::after { right: -100px; bottom: -185px; }

.safety-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 5vw, 78px);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 34px 34px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  box-shadow: 12px 14px 0 rgba(8, 11, 19, 0.22);
}

.safety-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
}

.safety-mark::before,
.safety-mark::after {
  position: absolute;
  color: var(--yellow);
  font-size: 34px;
  content: "✦";
}

.safety-mark::before { top: 20px; left: 8%; }
.safety-mark::after { right: 3%; bottom: 64px; font-size: 22px; }

.safety-shield {
  display: grid;
  place-items: center;
  width: 210px;
  height: 235px;
  padding-bottom: 13px;
  background: linear-gradient(145deg, var(--yellow-light), var(--yellow));
  clip-path: polygon(50% 0, 94% 15%, 86% 69%, 50% 100%, 14% 69%, 6% 15%);
  filter: drop-shadow(12px 15px 0 var(--purple));
}

.safety-shield span {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  color: #fff;
  background: var(--purple);
  border: 7px solid var(--ink);
  border-radius: 50%;
  font-family: var(--game);
  font-size: 50px;
  line-height: 1;
}

.safety-stamp {
  position: absolute;
  right: 3%;
  bottom: 12px;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 17px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 6px 7px 0 var(--purple);
  text-align: center;
  transform: rotate(-4deg);
}

.safety-stamp strong {
  font-family: var(--game);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.safety-stamp span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.safety-copy .kicker { color: var(--yellow); }

.safety-copy h2 {
  margin: 18px 0 30px;
  font-size: clamp(48px, 5vw, 76px);
}

.safety-copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.safety-copy > p {
  max-width: 700px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.7;
}

.safety-copy .safety-lead {
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.how-section {
  color: #fff;
  background: var(--purple);
}

.section-heading.light .kicker {
  color: var(--yellow);
}

.section-heading.light h2 em {
  color: var(--yellow);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.9);
}

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

.step-card {
  min-height: 580px;
  padding: 22px 22px 34px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 9px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  box-shadow: 12px 14px 0 var(--ink);
  transform: translate(-4px, -5px);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--game);
  font-size: 13px;
}

.step-top span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

.step-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 330px;
  margin: 18px 0 24px;
  border-radius: 19px;
  overflow: hidden;
}

.step-visual-one {
  background: radial-gradient(circle at 50% 70%, #ff7dd7, #4a14b8 68%);
}

.step-visual-one img {
  position: absolute;
  right: -3px;
  bottom: -43px;
  width: 290px;
  filter: drop-shadow(0 25px 18px rgba(45, 5, 87, 0.38));
}

.session-chip {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 22px;
  display: grid;
  min-width: 168px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 13px;
  box-shadow: 6px 7px 0 var(--yellow);
  transform: rotate(-3deg);
}

.session-chip span,
.session-chip i {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-chip b {
  margin: 2px 0;
  color: var(--purple);
  font-family: var(--game);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.session-chip i { color: #3d8208; }

.step-visual-two {
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(145deg, #ffcf24, #ff7a28);
  background-size: 24px 24px, 24px 24px, auto;
}

.mission-board {
  width: min(86%, 310px);
  padding: 24px 20px 20px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 9px 0 var(--purple);
  transform: rotate(-2deg);
}

.mission-board > span {
  display: block;
  margin-bottom: 15px;
  font-family: var(--game);
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mission-board p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin: 8px 0;
  padding: 10px;
  color: var(--ink);
  background: #f1eee7;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.mission-board i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.mission-board b {
  color: var(--purple);
  font-family: var(--game);
  font-size: 12px;
  font-weight: 400;
}

.step-visual-three {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #06194f;
  background-size: 26px 26px;
}

.step-visual-three img {
  width: 340px;
  max-width: none;
  transform: translateY(35px);
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.42));
}

.paypal-pill {
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 245px;
  padding: 14px 15px;
  color: #05387b;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.23);
  transform: translateX(-50%) rotate(-3deg);
}

.paypal-pill img {
  flex: 1;
  width: 172px;
  max-width: 172px;
  height: auto;
  filter: none;
  transform: none;
}

.paypal-pill b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #128153;
  border-radius: 50%;
  font-size: 15px;
}

.spark {
  position: absolute;
  color: var(--yellow);
  font-size: 34px;
  font-style: normal;
  animation: sparkle 2s ease-in-out infinite;
}

.spark.s1 { top: 26px; right: 35px; }
.spark.s2 { bottom: 45px; left: 32px; animation-delay: 0.8s; }

.step-card h3 {
  margin: 0 4px 8px;
  font-family: var(--heading);
  font-size: 27px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.studio-section {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.studio-section::before {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(114, 52, 245, 0.12);
  border-radius: 50%;
  content: "";
}

.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}

.studio-art {
  position: relative;
  min-height: 680px;
  background:
    radial-gradient(circle at 50% 37%, rgba(255, 184, 0, 0.18), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 32px 32px, 32px 32px, auto;
  border: 3px solid var(--ink);
  border-radius: 42px;
  box-shadow: 12px 14px 0 var(--yellow);
  overflow: hidden;
}

.studio-art::before {
  position: absolute;
  z-index: 1;
  right: -145px;
  bottom: 95px;
  width: 360px;
  height: 110px;
  background: linear-gradient(90deg, transparent, rgba(114, 52, 245, 0.7));
  content: "";
  transform: rotate(-34deg);
}

.studio-art::after {
  position: absolute;
  z-index: 5;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 29px;
  content: "";
  pointer-events: none;
}

.studio-brand-tab {
  position: absolute;
  z-index: 6;
  top: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px 9px 9px;
  color: #fff;
  background: rgba(8, 11, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.studio-brand-tab > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 10px;
  font-family: var(--game);
  font-size: 14px;
}

.studio-brand-tab p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.studio-brand-tab strong {
  display: block;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lama-halo {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 35% 30%, #ffe27d, var(--yellow) 54%, #ff8a00);
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 184, 0, 0.1), 0 0 0 58px rgba(255, 184, 0, 0.05);
  transform: translateX(-50%);
}

.studio-lama {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 0;
  width: 110%;
  max-width: none;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.38));
}

.studio-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.94);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 6px 0 var(--purple);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.studio-label i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

.label-one { top: 118px; left: 25px; transform: rotate(-4deg); }
.label-two { right: 22px; bottom: 138px; transform: rotate(4deg); }

.label-two {
  color: #fff;
  background: rgba(114, 52, 245, 0.94);
  box-shadow: 5px 6px 0 var(--yellow);
}

.studio-coin {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 5px;
  width: 142px;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.4));
  transform: rotate(-18deg);
}

.studio-copy .kicker {
  color: var(--purple);
}

.studio-copy .lead {
  margin: 35px 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.studio-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.studio-stats > div {
  padding-right: 15px;
  border-right: 1px solid var(--line);
}

.studio-stats > div:not(:first-child) {
  padding-left: 22px;
}

.studio-stats > div:last-child {
  border: 0;
}

.studio-stats strong {
  display: block;
  color: var(--purple);
  font-family: var(--game);
  font-size: 32px;
  letter-spacing: -0.06em;
}

.studio-stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.values-section {
  background: #eae7df;
}

.values-head {
  text-align: center;
}

.values-head .kicker {
  color: var(--purple);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, 475px);
  gap: 18px;
  margin-top: 78px;
}

.bento {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 34px 35px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  overflow: hidden;
}

.bento-number {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--game);
  font-size: 12px;
}

.bento h3 {
  position: relative;
  z-index: 4;
  margin: 0 0 8px;
  font-family: var(--heading);
  font-size: 31px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.bento p {
  position: relative;
  z-index: 4;
  max-width: 470px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.bento-yellow {
  background: var(--yellow);
}

.orbit-icon {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 240px;
  height: 240px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-icon::before,
.orbit-icon::after {
  position: absolute;
  inset: 18px -30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: rotate(37deg);
}

.orbit-icon::after {
  transform: rotate(-37deg);
}

.orbit-icon b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 28px;
  font-size: 38px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.orbit-icon i {
  position: absolute;
  z-index: 3;
  width: 17px;
  height: 17px;
  background: var(--ink);
  border: 4px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}

.orbit-icon i:first-child { top: 18px; left: 36px; }
.orbit-icon i:nth-child(2) { right: -5px; bottom: 72px; }

.bento-purple {
  color: #fff;
  background: var(--purple);
}

.bento-purple .bento-number {
  color: var(--ink);
  background: var(--yellow);
}

.bento-purple img {
  position: absolute;
  top: -10px;
  right: -25px;
  width: 330px;
  filter: drop-shadow(0 25px 18px rgba(46, 9, 112, 0.4));
  transform: rotate(10deg);
}

.bento-purple::after {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.bento-dark {
  color: #fff;
  background: var(--ink);
}

.bento-dark .bento-number {
  color: var(--ink);
  background: var(--green);
}

.pixel-smile {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 280px;
  height: 170px;
  border: 2px solid rgba(166, 239, 33, 0.35);
  border-radius: 35px;
  box-shadow: 0 0 70px rgba(166, 239, 33, 0.09) inset;
  transform: translate(-50%, -50%);
}

.pixel-smile i {
  position: absolute;
  top: 45px;
  width: 23px;
  height: 23px;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(166, 239, 33, 0.55);
}

.pixel-smile i:first-child { left: 62px; }
.pixel-smile i:nth-child(2) { right: 62px; }

.pixel-smile b {
  position: absolute;
  right: 60px;
  bottom: 35px;
  left: 60px;
  height: 42px;
  border-bottom: 12px solid var(--green);
  border-radius: 0 0 80px 80px;
  box-shadow: 0 10px 25px rgba(166, 239, 33, 0.3);
}

.bento-white {
  background: var(--white);
}

.world-lines {
  position: absolute;
  top: 46%;
  left: 50%;
  display: flex;
  align-items: center;
  width: 78%;
  transform: translate(-50%, -50%);
}

.world-lines span,
.world-lines b {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: #fff;
  background: var(--purple);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 6px 0 var(--ink);
  font-family: var(--game);
  font-size: 17px;
}

.world-lines b {
  width: 110px;
  height: 110px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
}

.world-lines i {
  position: relative;
  flex: 1;
  height: 3px;
  background: var(--ink);
}

.world-lines i::before,
.world-lines i::after {
  position: absolute;
  top: -6px;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border-radius: 50%;
  content: "";
}

.world-lines i::before { left: 18%; }
.world-lines i::after { right: 20%; }

.cta-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding-right: 8%;
  color: #fff;
  background: linear-gradient(115deg, #451094, #711ed1 55%, #9729db);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    radial-gradient(circle at 15% 40%, rgba(255, 184, 0, 0.45), transparent 21%),
    radial-gradient(circle at 70% 10%, rgba(255, 60, 172, 0.5), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.cta-raccoon {
  position: absolute;
  z-index: 2;
  bottom: -155px;
  left: 1%;
  width: min(620px, 48vw);
  filter: drop-shadow(0 35px 30px rgba(34, 4, 84, 0.43));
  transform: rotate(2deg);
}

.cta-bills {
  position: absolute;
  z-index: 3;
  bottom: -60px;
  left: 30%;
  width: 280px;
  filter: drop-shadow(0 20px 20px rgba(43, 6, 82, 0.36));
  transform: rotate(-12deg);
}

.cta-copy {
  position: relative;
  z-index: 5;
  width: 580px;
  max-width: 46vw;
  margin-left: auto;
}

.cta-copy .kicker,
.cta-copy h2 em {
  color: var(--yellow);
}

.cta-copy > p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: 570px;
  min-height: 86px;
  padding: 12px 13px 12px 21px;
  margin-top: 31px;
  background: rgba(255, 255, 255, 0.11);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-3px);
}

.contact-button > span {
  color: #fff;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
  line-height: 1.2;
}

.contact-button small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-button strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 154px;
  height: 58px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffca28, var(--yellow));
  border: 2px solid rgba(8, 11, 19, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 0 #8d5700;
  font-family: var(--game);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.contact-button:hover strong {
  box-shadow: 0 6px 0 #8d5700;
  transform: translateY(-2px);
}

.contact-button strong i {
  font-family: var(--body);
  font-size: 19px;
  font-style: normal;
}

.site-footer {
  padding: 80px max(24px, calc((100vw - 1240px) / 2)) 28px;
  color: #fff;
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 108px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.28));
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--heading);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: var(--game);
  font-size: 20px;
}

.footer-email span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 55%;
  margin: 65px 0 80px auto;
}

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

.footer-links b {
  margin-bottom: 11px;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom b {
  color: var(--yellow);
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.2,.75,.2,1), transform 700ms cubic-bezier(.2,.75,.2,1);
}

.js .reveal[data-delay="1"] { transition-delay: 100ms; }
.js .reveal[data-delay="2"] { transition-delay: 200ms; }

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

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -17px; }
}

@keyframes spin-soft {
  to { rotate: 360deg; }
}

@keyframes sticker-bob {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-8px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.35; transform: scale(0.7) rotate(0); }
  50% { opacity: 1; transform: scale(1.1) rotate(25deg); }
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 65px;
  }

  .menu-button {
    position: absolute;
    right: 16px;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 10px;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

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

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px max(28px, calc((100vw - 900px) / 2)) 50px;
    color: #fff;
    background: rgba(8, 11, 19, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--game);
    font-size: clamp(35px, 7vw, 58px);
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .mobile-menu nav span {
    color: var(--yellow);
    font-size: 12px;
  }

  .mobile-menu > p {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .game-card {
    width: 360px;
    max-width: 75%;
  }

  .floating-bills { right: -20%; }
  .floating-progress { left: -10%; }
  .hero-sticker { right: -20px; }

  .feature-stage {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-copy {
    padding-left: 45px;
  }

  .scene-pig { right: -120px; }
  .scene-cash { left: -95px; }
  .phone { left: 21%; }

  .studio-layout { gap: 55px; }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .section { padding: 100px 0; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 150px 16px 85px;
  }

  .hero-copy {
    width: var(--container);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(58px, 10.2vw, 84px);
  }

  .hero-art {
    width: var(--container);
    height: 660px;
    margin: 50px auto 0;
  }

  .game-card {
    left: 48%;
    width: 350px;
    max-width: 68%;
  }

  .floating-bills { right: 0; }
  .floating-progress { left: 2%; }
  .hero-sticker { right: 2%; }

  .hero-meta {
    right: 16px;
    bottom: 28px;
    left: 16px;
    justify-content: center;
  }

  .hero-meta > div {
    min-width: auto;
  }

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

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

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

  .feature-copy {
    padding: 55px 45px 5px;
  }

  .phone-scene { min-height: 700px; }
  .phone { left: 35%; }
  .scene-cash { left: 8%; top: 25px; }
  .scene-pig { right: -15px; }
  .scene-badge { right: 8%; }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .safety-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .safety-mark {
    min-height: 285px;
  }

  .safety-shield {
    width: 180px;
    height: 202px;
  }

  .safety-stamp {
    right: 14%;
    bottom: 0;
  }

  .step-card {
    min-height: auto;
  }

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

  .studio-art {
    min-height: 700px;
  }

  .studio-copy {
    max-width: 680px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 460px);
  }

  .cta-section {
    display: block;
    min-height: 950px;
    padding: 105px 16px 0;
  }

  .cta-copy {
    width: var(--container);
    max-width: none;
    margin: 0 auto;
  }

  .cta-raccoon {
    bottom: -180px;
    left: 50%;
    width: min(590px, 85vw);
    transform: translateX(-50%);
  }

  .cta-bills {
    left: 58%;
  }

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

  .footer-email {
    grid-column: 1 / -1;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 66px;
    padding-left: 11px;
    border-radius: 14px;
  }

  .brand img {
    width: 66px;
    height: 48px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 75px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(48px, 14.4vw, 62px);
    white-space: normal;
  }

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

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

  .hero-art {
    height: 515px;
    margin-top: 45px;
  }

  .game-card {
    left: 47%;
    width: 270px;
    max-width: 82%;
    border-width: 6px;
    border-radius: 40px;
  }

  .floating-bills {
    right: -50px;
    bottom: -8px;
    width: 195px;
  }

  .floating-progress {
    bottom: 24px;
    left: -25px;
    width: 115px;
  }

  .hero-sticker {
    top: 22px;
    right: -1px;
    width: 124px;
    height: 88px;
    padding: 13px 11px;
    border-radius: 19px 19px 19px 7px;
    box-shadow: 5px 6px 0 var(--purple), 0 0 0 3px rgba(255, 255, 255, 0.72);
  }

  .hero-sticker::before { top: 8px; right: 9px; font-size: 13px; }
  .hero-sticker small { font-size: 7px; }
  .hero-sticker strong { margin: 5px 0; font-size: 20px; }
  .hero-sticker span { font-size: 10px; }
  .hero-sticker i { font-size: 9px; }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-meta > div {
    display: block;
    min-width: 0;
    padding-right: 9px;
    margin-right: 0;
  }

  .hero-meta p { margin-top: 4px; font-size: 12px; }

  .ticker { height: 62px; }
  .ticker-track { font-size: 20px; }
  .ticker-track span { padding: 0 22px; }

  .section { padding: 82px 0; }

  .section-heading h2,
  .studio-copy h2,
  .values-head h2,
  .cta-copy h2 {
    font-size: clamp(40px, 11.5vw, 52px);
  }

  .section-heading { gap: 23px; }
  .section-heading > p { font-size: 17px; }

  .feature-stage {
    min-height: 0;
    margin-top: 55px;
    border-radius: 25px;
  }

  .feature-copy {
    padding: 36px 24px 0;
  }

  .app-icon-wrap { width: 76px; height: 76px; border-radius: 19px; }
  .app-icon-wrap img { border-radius: 16px; }
  .feature-copy h3 { font-size: 46px; }

  .store-buttons {
    flex-direction: column;
  }

  .store-button { width: 100%; }

  .phone-scene {
    min-height: 590px;
    margin-top: 15px;
  }

  .phone {
    top: 47px;
    left: 50%;
    width: 270px;
    height: auto;
    border-radius: 42px;
    transform: translateX(-50%) rotate(5deg);
  }

  .phone-screen { border-radius: 34px; }

  .scene-pig {
    right: -98px;
    bottom: -22px;
    width: 290px;
  }

  .scene-cash {
    top: 0;
    left: -60px;
    width: 185px;
  }

  .scene-badge {
    top: 82px;
    right: 4px;
    width: 112px;
    height: 84px;
    padding: 12px 13px;
    border-radius: 18px 18px 7px 18px;
    box-shadow: 5px 6px 0 var(--yellow), 0 0 0 3px rgba(255, 255, 255, 0.72);
  }

  .scene-badge::after { top: -10px; right: -8px; width: 26px; height: 26px; font-size: 14px; }
  .scene-badge small { font-size: 8px; }
  .scene-badge strong { margin: 3px 0; font-size: 21px; }
  .scene-badge span { font-size: 11px; }

  .steps-grid { margin-top: 50px; }
  .step-card { padding: 18px 18px 28px; border-radius: 22px; box-shadow: 6px 7px 0 var(--ink); }
  .step-visual { height: 285px; }

  .safety-section { padding: 62px 0; }

  .safety-panel {
    gap: 27px;
    padding: 36px 24px 40px;
    border-radius: 25px;
    box-shadow: 7px 8px 0 rgba(8, 11, 19, 0.22);
  }

  .safety-mark { min-height: 245px; }
  .safety-shield { width: 150px; height: 169px; filter: drop-shadow(8px 10px 0 var(--purple)); }
  .safety-shield span { width: 72px; height: 72px; border-width: 5px; font-size: 37px; }
  .safety-stamp { right: 4%; min-width: 174px; padding: 11px 13px; }
  .safety-stamp strong { font-size: 13px; }
  .safety-stamp span { font-size: 11px; }
  .safety-copy h2 { margin-bottom: 25px; font-size: clamp(39px, 11vw, 50px); }
  .safety-copy .safety-lead { font-size: 18px; }
  .safety-copy > p { font-size: 16px; }
  .studio-layout { gap: 55px; }
  .studio-art { min-height: 530px; border-radius: 28px; box-shadow: 8px 9px 0 var(--yellow); }
  .studio-art::after { inset: 10px; border-radius: 19px; }
  .studio-brand-tab { top: 18px; left: 18px; gap: 8px; padding: 7px 10px 7px 7px; }
  .studio-brand-tab > span { width: 34px; height: 34px; font-size: 12px; }
  .studio-brand-tab p { font-size: 11px; }
  .studio-brand-tab strong { font-size: 12px; }
  .lama-halo { width: 270px; height: 270px; }
  .studio-lama { right: -11%; width: 122%; }
  .studio-label { padding: 8px 10px; font-size: 12px; box-shadow: 4px 5px 0 var(--purple); }
  .label-one { top: 85px; left: 15px; }
  .label-two { right: 10px; bottom: 118px; box-shadow: 4px 5px 0 var(--yellow); }
  .studio-coin { right: -8px; bottom: 7px; width: 105px; }

  .studio-copy .lead { font-size: 19px; }
  .studio-stats { grid-template-columns: 1fr; }
  .studio-stats > div { display: flex; align-items: center; gap: 17px; padding: 12px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-stats strong { min-width: 42px; }

  .bento-grid {
    grid-template-rows: repeat(4, 410px);
    margin-top: 50px;
  }

  .bento { padding: 23px 25px 28px; border-radius: 24px; }
  .bento h3 { font-size: 27px; }
  .orbit-icon { width: 190px; height: 190px; }
  .orbit-icon b { width: 80px; height: 80px; }
  .bento-purple img { top: 13px; width: 255px; }
  .pixel-smile { width: 230px; height: 150px; }
  .world-lines { width: 82%; }
  .world-lines span { width: 66px; height: 66px; }
  .world-lines b { width: 88px; height: 88px; font-size: 12px; }

  .cta-section {
    min-height: 880px;
    padding-top: 82px;
  }

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

  .contact-button { align-items: stretch; flex-direction: column; padding: 17px; }
  .contact-button > span { padding: 2px 4px; font-size: 17px; }
  .contact-button strong { width: 100%; }
  .cta-raccoon { bottom: -130px; width: 520px; max-width: 100%; }
  .cta-bills { bottom: -40px; left: 52%; width: 200px; }

  .site-footer { padding-top: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-brand img { width: 100px; height: 132px; }
  .footer-top p { font-size: 24px; }
  .footer-email { grid-column: auto; justify-content: space-between; font-size: 15px; }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin: 50px 0 60px;
  }

  .footer-links > div:last-child { grid-column: 1 / -1; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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