:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --paper: #fffdf8;
  --ink: #171822;
  --muted: #666b7a;
  --line: #dfe3ee;
  --accent: #7c4dff;
  --accent-deep: #5538d7;
  --pink: #ff5d86;
  --blue: #1c8dff;
  --green: #35b979;
  --purple: #7c4dff;
  --cyan: #15bfd7;
  --amber: #ffb84d;
  --shadow: 0 18px 50px rgba(22, 24, 34, 0.12);
  --page-pad: clamp(18px, 4vw, 64px);
  --content-max: 1280px;
  --hero-max: 1440px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(124, 77, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(28, 141, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f4f6fb 0, var(--bg) 42%, #ffffff 100%);
  background-size: 36px 36px, 36px 36px, auto;
  color: var(--ink);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes hub-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -48%) scale(1);
  }
}

@keyframes hub-float {
  0%,
  100% {
    transform: translate(-50%, -48%);
  }

  50% {
    transform: translate(-50%, -51%);
  }
}

@keyframes orbit-enter-a {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-8deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-8deg) scale(1);
  }
}

@keyframes orbit-enter-b {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(7deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(7deg) scale(1);
  }
}

@keyframes orbit-enter-c {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(5deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(5deg) scale(1);
  }
}

@keyframes orbit-float-a {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-7px) rotate(-6deg);
  }
}

@keyframes orbit-float-b {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }

  50% {
    transform: translateY(-6px) rotate(5deg);
  }
}

@keyframes orbit-float-c {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-7px) rotate(7deg);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-scan {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes meter-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes glow-sweep {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }

  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px var(--page-pad);
  background: rgba(247, 248, 251, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(280px, 29vw, 420px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2e3035;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.secondary-link:hover {
  color: var(--accent-deep);
}

.header-cta,
.primary-button,
.submit-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c4dff, #1c8dff);
  box-shadow: 0 12px 26px rgba(85, 56, 215, 0.24);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  overflow: hidden;
  padding: 0 20px;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.header-cta::after,
.primary-button::after,
.submit-button::after {
  position: absolute;
  inset: -20% auto -20% 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
}

.header-cta:hover,
.primary-button:hover,
.submit-button:hover {
  box-shadow: 0 16px 34px rgba(85, 56, 215, 0.3);
  filter: saturate(1.05);
  transform: translateY(-2px);
}

.header-cta {
  min-height: 40px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 70px 16px auto 16px;
  z-index: 30;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 14px;
  border-radius: 8px;
  background: #f3f5fb;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  min-height: clamp(720px, calc(100svh - 70px), 880px);
  max-width: none;
  margin: 0;
  overflow: hidden;
  padding: 88px max(var(--page-pad), calc((100vw - var(--hero-max)) / 2 + var(--page-pad))) 72px;
  background:
    linear-gradient(90deg, rgba(7, 10, 24, 0.9) 0%, rgba(7, 10, 24, 0.76) 34%, rgba(7, 10, 24, 0.34) 57%, rgba(7, 10, 24, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 10, 24, 0.12), rgba(7, 10, 24, 0.62)),
    url("./assets/creator-world-hero.png") 68% center / cover no-repeat;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-decor {
  position: relative;
  z-index: 1;
}

.status-pill,
.eyebrow,
.section-heading > span,
.form-copy span,
.partner-band span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: #ece7ff;
  color: #5538d7;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 10em;
  margin-top: 18px;
  font-size: clamp(48px, 5.1vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.hero .status-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.36);
}

.creator-note {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.46);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  padding: 16px 18px;
}

.creator-note strong {
  font-size: 15px;
}

.creator-note span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.secondary-link {
  color: #fff;
  font-weight: 850;
}

.micro-copy {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.64) !important;
}

.hero-decor {
  position: relative;
  min-height: 580px;
  width: 100%;
}

.hero-decor::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 255, 255, 0.05) 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0 45%, rgba(21, 191, 215, 0.11) 45% 46%, transparent 46%);
  content: "";
  pointer-events: none;
  z-index: 2;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 50%;
  transform: scale(1.03);
}

.hero-art-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 28, 0.72), rgba(9, 12, 28, 0.14) 44%, rgba(9, 12, 28, 0.22)),
    linear-gradient(180deg, rgba(9, 12, 28, 0.16), rgba(9, 12, 28, 0.44));
  z-index: 1;
}

.hero-stage-label {
  position: absolute;
  left: 22px;
  top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  z-index: 3;
}

.pixel-friend {
  position: absolute;
  right: 24px;
  top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 12px);
  gap: 4px;
  transform: rotate(8deg);
  z-index: 3;
}

.pixel-friend span {
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(21, 191, 215, 0.55);
}

.pixel-friend span:nth-child(2) {
  background: var(--pink);
}

.pixel-friend span:nth-child(3) {
  background: var(--amber);
}

.pixel-friend span:nth-child(4) {
  background: var(--purple);
}

.hub-card,
.orbit-card,
.opportunity-tags span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(2, 7, 19, 0.26);
  color: var(--ink);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hub-card {
  left: 50%;
  top: 55%;
  width: min(58%, 500px);
  overflow: hidden;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.78)),
    url("./assets/hero-game-page-ui.png") center / cover no-repeat;
  box-shadow:
    0 22px 60px rgba(2, 7, 19, 0.32),
    0 0 0 1px rgba(21, 191, 215, 0.2),
    0 0 42px rgba(124, 77, 255, 0.22);
  transform: translate(-50%, -48%);
}

.hub-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--cyan));
  content: "";
}

.hub-topline {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.hub-kicker,
.hub-status,
.ui-code,
.mini-code,
.card-kicker,
.ability-top span:last-child,
.slot-top span,
.check-list b {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 950;
}

.hub-status {
  border-radius: 999px;
  background: #e9fbff;
  color: #07859a;
  padding: 5px 8px;
}

.hub-label {
  color: var(--ink);
  font-weight: 900;
}

.hub-card,
.hub-card *,
.opportunity-tags span {
  color: var(--ink);
}

.hub-screen {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.hub-preview,
.thumb {
  min-height: 112px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 93, 134, 0.18), rgba(21, 191, 215, 0.16)),
    url("./assets/game-card-set.png") 9% 50% / 455% auto no-repeat;
  border: 1px solid rgba(124, 77, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.hub-lines {
  display: grid;
  gap: 12px;
  align-content: center;
}

.hub-lines span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #ecebe5;
}

.hub-lines span:nth-child(2) {
  width: 78%;
}

.hub-lines span:nth-child(3) {
  width: 52%;
}

.hub-log-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.hub-log-list span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(225, 230, 246, 0.86);
}

.hub-log-list span:nth-child(1) {
  width: 86%;
}

.hub-log-list span:nth-child(2) {
  width: 64%;
}

.hub-log-list span:nth-child(3) {
  width: 74%;
}

.hub-progress {
  height: 10px;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 999px;
  background: #e8ecf8;
}

.hub-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--cyan));
}

.signal-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.signal {
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.pink,
.icon-dot.pink {
  background: var(--pink);
}

.blue,
.icon-dot.blue {
  background: var(--blue);
}

.green,
.icon-dot.green {
  background: var(--green);
}

.icon-dot.purple {
  background: var(--purple);
}

.icon-dot {
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.34);
}

.orbit-card {
  display: grid;
  gap: 5px;
  width: 204px;
  padding: 14px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 255, 0.84)),
    url("./assets/hero-game-page-ui.png") 10% 12% / 390% auto no-repeat;
  box-shadow:
    0 18px 44px rgba(2, 7, 19, 0.26),
    0 0 26px rgba(28, 141, 255, 0.16);
}

.orbit-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  content: "";
}

.orbit-card .ui-code {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}

.orbit-card strong {
  font-size: 15px;
}

.orbit-card small {
  color: var(--muted);
  font-weight: 800;
}

.card-a {
  left: 6%;
  top: 15%;
  transform: rotate(-8deg);
}

.card-b {
  right: 6%;
  top: 17%;
  transform: rotate(7deg);
}

.card-c {
  left: 7%;
  bottom: 11%;
  transform: rotate(5deg);
}

.opportunity-tags {
  position: absolute;
  right: 6%;
  bottom: 10%;
  display: grid;
  gap: 10px;
  z-index: 3;
}

.opportunity-tags span {
  position: static;
  min-width: 110px;
  overflow: hidden;
  padding: 11px 14px;
  border-color: rgba(124, 77, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.9)),
    url("./assets/support-unlock-illustrations.png") 95% 52% / 520% auto no-repeat;
  font-size: 13px;
  font-weight: 900;
}

.creator-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--content-max);
  margin: -42px auto 0;
  padding: 0 var(--page-pad) 52px;
  position: relative;
  z-index: 2;
}

.creator-strip span {
  border: 1px solid rgba(124, 77, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(22, 24, 34, 0.06);
  color: #333747;
  font-size: 13px;
  font-weight: 850;
  padding: 11px 14px;
}

.game-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) 76px;
}

.showcase-main,
.mini-game-grid article {
  overflow: hidden;
  border: 1px solid rgba(124, 77, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(22, 24, 34, 0.08);
}

.showcase-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 1.05fr);
  min-height: 360px;
}

.showcase-art {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(124, 77, 255, 0.1)),
    url("./assets/game-card-set.png") center / cover no-repeat;
}

.showcase-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.showcase-copy span {
  width: fit-content;
  border-radius: 999px;
  background: #ece7ff;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.showcase-copy h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.showcase-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.showcase-ui-row span,
.card-tags span,
.slot-tags span {
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 999px;
  background: #f6f8ff;
  color: #3a3e4d;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}

.mini-game-grid {
  display: grid;
  gap: 18px;
}

.mini-game-grid article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 14px;
}

.mini-game-grid h3 {
  margin-top: 4px;
  font-size: 17px;
}

.mini-game-grid p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-code {
  display: inline-flex;
  margin-bottom: 2px;
}

.mini-thumb {
  height: 86px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(22, 24, 34, 0.08);
}

.thumb-cozy {
  background: url("./assets/game-card-set.png") 13% 52% / 455% auto no-repeat;
}

.thumb-cyber {
  background: url("./assets/game-card-set.png") 42% 52% / 455% auto no-repeat;
}

.thumb-action {
  background: url("./assets/game-card-set.png") 68% 52% / 455% auto no-repeat;
}

.section,
.partner-band,
.form-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 76px var(--page-pad);
  scroll-margin-top: 92px;
}

.section-heading {
  position: relative;
  display: grid;
  max-width: 860px;
  gap: 16px;
  margin-bottom: 34px;
  padding-right: 0;
}

.section-heading::before {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: min(360px, 72vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--cyan), transparent);
  content: "";
}

.section-heading::after,
.form-copy::after {
  position: absolute;
  right: 0;
  top: -18px;
  width: 156px;
  height: 116px;
  background: url("./assets/quest-point-illustrations.png") 0% 50% / 520% auto no-repeat;
  content: "";
  filter: drop-shadow(0 18px 24px rgba(44, 48, 77, 0.1));
  pointer-events: none;
}

.section-heading::after {
  display: none;
}

.heading-why::after {
  background-image: url("./assets/reaction-sticker-kit.png");
  background-position: 74% 10%;
  background-size: 520% auto;
}

.heading-quest::after {
  background-image: url("./assets/quest-point-illustrations.png");
  background-position: 0% 50%;
}

.heading-ability::after {
  background-image: url("./assets/ability-point-illustrations.png");
  background-position: 0% 50%;
}

.heading-unlock::after {
  background-image: url("./assets/support-unlock-illustrations.png");
  background-position: 68% 52%;
}

.heading-target::after {
  background-image: url("./assets/support-unlock-illustrations.png");
  background-position: 100% 52%;
  background-size: 620% auto;
}

.heading-story::after {
  background-image: url("./assets/creator-story-scenes.png");
  background-position: 8% 52%;
  background-size: 340% auto;
}

.heading-page::after {
  background-image: url("./assets/game-page-anatomy.png");
  background-position: 48% 48%;
  background-size: 360% auto;
}

.heading-event::after {
  background-image: url("./assets/event-reaction-flow.png");
  background-position: 12% 52%;
  background-size: 350% auto;
}

.heading-global::after,
.heading-roadmap::after {
  background-image: url("./assets/global-review-network.png");
  background-position: 58% 50%;
  background-size: 360% auto;
}

.heading-media::after {
  background-image: url("./assets/event-reaction-flow.png");
  background-position: 70% 50%;
  background-size: 360% auto;
}

.faq .section-heading::after {
  background-image: url("./assets/ability-point-illustrations.png");
  background-position: 100% 52%;
  background-size: 620% auto;
}

h2 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p,
.two-column p,
.form-copy p,
.partner-band p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.problem-grid,
.value-grid,
.support-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.problem-grid article,
.value-grid article,
.support-grid article,
.use-case-grid article,
.status-table,
.faq details,
.interest-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(31, 28, 16, 0.06);
}

.problem-grid article,
.value-grid article,
.support-grid article,
.use-case-grid article {
  min-height: 220px;
  padding: 22px;
}

.problem-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.96)),
    url("./assets/hero-game-page-ui.png") 82% 90% / 560% auto no-repeat;
}

.problem-grid article::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 54px;
  height: 54px;
  background: url("./assets/reaction-sticker-kit.png") 6% 7% / 530% auto no-repeat;
  content: "";
  opacity: 0.32;
}

.problem-grid article:nth-child(2)::after {
  background-position: 49% 5%;
}

.problem-grid article:nth-child(3)::after {
  background-position: 29% 44%;
}

.problem-grid article:nth-child(4)::after {
  background-position: 89% 44%;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 10px;
}

.read-section {
  position: relative;
}

.read-section::before {
  position: absolute;
  inset: 34px var(--page-pad) auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 191, 215, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.read-layout,
.global-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.read-layout.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.read-layout.reverse .wide-visual {
  order: 2;
}

.wide-visual {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(124, 77, 255, 0.18);
  border-radius: 8px;
  background-color: #f8faff;
  background-repeat: no-repeat;
  box-shadow: 0 24px 64px rgba(44, 48, 77, 0.11);
}

.story-visual {
  background-image: url("./assets/creator-story-scenes.png");
  background-position: center;
  background-size: cover;
}

.page-visual {
  background-image: url("./assets/game-page-anatomy.png");
  background-position: center;
  background-size: cover;
}

.event-visual {
  background-image: url("./assets/event-reaction-flow.png");
  background-position: center;
  background-size: cover;
}

.global-visual {
  background-image: url("./assets/global-review-network.png");
  background-position: center;
  background-size: cover;
}

.log-stack {
  display: grid;
  gap: 14px;
}

.log-stack article,
.anatomy-grid article,
.global-copy article,
.roadmap-card,
.media-copy article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  box-shadow: 0 10px 30px rgba(31, 28, 16, 0.06);
}

.log-stack article,
.global-copy article,
.roadmap-card,
.media-copy article {
  padding: 22px;
}

.log-stack article::before,
.global-copy article::before,
.roadmap-card::before,
.media-copy article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--cyan));
  content: "";
}

.log-code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 950;
  padding: 6px 9px;
}

.log-stack h3,
.global-copy h3,
.roadmap-card h3,
.media-copy h3 {
  font-size: 20px;
  line-height: 1.4;
}

.log-stack p,
.global-copy p,
.roadmap-card p,
.media-copy p,
.anatomy-grid p,
.case-detail,
.ability-detail,
.slot-detail {
  color: var(--muted);
  line-height: 1.78;
}

.log-stack p,
.global-copy p,
.roadmap-card p,
.media-copy p,
.anatomy-grid p {
  margin-top: 10px;
}

.page-anatomy {
  display: grid;
  gap: 22px;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.anatomy-grid article {
  padding: 18px;
}

.anatomy-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-weight: 950;
}

.anatomy-grid strong {
  display: block;
  font-size: 17px;
}

.use-case-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 255, 0.96));
}

.use-case-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--green));
  content: "";
}

.use-case-grid article::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  background: url("./assets/reaction-sticker-kit.png") 12% 43% / 520% auto no-repeat;
  content: "";
  opacity: 0.28;
}

.use-case-grid article:nth-child(2)::after {
  background-position: 49% 4%;
}

.use-case-grid article:nth-child(3)::after {
  background-position: 45% 43%;
}

.use-case-grid article:nth-child(4)::after {
  background-position: 74% 43%;
}

.use-case-grid article:nth-child(5)::after {
  background-position: 31% 75%;
}

.case-art {
  height: 118px;
  margin: -2px -2px 16px;
  border-radius: 8px;
  border: 1px solid rgba(124, 77, 255, 0.12);
  background-color: #f8faff;
  background-image: url("./assets/quest-point-illustrations.png");
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.case-art-event {
  background-position: 0% 50%;
  background-size: 510% auto;
}

.case-art-report {
  background-position: 25% 50%;
  background-size: 510% auto;
}

.case-art-store {
  background-position: 50% 50%;
  background-size: 510% auto;
}

.case-art-global {
  background-position: 75% 50%;
  background-size: 510% auto;
}

.case-art-idea {
  background-position: 100% 50%;
  background-size: 510% auto;
}

.icon-dot {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 999px;
}

.problem-grid h3,
.value-grid h3,
.support-grid h3,
.use-case-grid h3 {
  font-size: 19px;
  line-height: 1.45;
}

.problem-grid p,
.value-grid p,
.support-grid p,
.use-case-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.value-section {
  max-width: none;
  background:
    linear-gradient(180deg, #edf8fa, #f4f0ff);
}

.value-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card-art {
  min-height: 300px;
  margin-bottom: 22px;
  border: 1px solid rgba(124, 77, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.32)),
    url("./assets/game-card-set.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(44, 48, 77, 0.12);
}

.value-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-number {
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 950;
}

.use-cases {
  max-width: none;
  background: #fff;
}

.use-cases > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.use-case-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.case-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #11172a;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
}

.quest-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.quest-state {
  display: inline-flex;
  border-radius: 999px;
  background: #e9fbff;
  color: #07859a;
  font-size: 11px;
  font-weight: 950;
  padding: 7px 9px;
}

.case-scene {
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  background: #f4f2ff;
  color: #5c5f70;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 9px;
}

.use-case-grid h3 {
  margin-top: 12px;
}

.case-detail {
  font-size: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.value-grid-five {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.support-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.support-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
}

.slot-art {
  height: 108px;
  margin: -4px -4px 18px;
  border: 1px solid rgba(124, 77, 255, 0.12);
  border-radius: 8px;
  background: #f8faff url("./assets/support-unlock-illustrations.png") 0% 52% / 610% auto no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.slot-art-review {
  background-position: 20% 52%;
}

.slot-art-event {
  background-position: 60% 52%;
}

.slot-art-global {
  background-position: 80% 52%;
}

.support-badge-art {
  min-height: 240px;
  margin-bottom: 22px;
  border: 1px solid rgba(124, 77, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.28)),
    url("./assets/support-event-badges.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(44, 48, 77, 0.1);
}

.section-note {
  max-width: 820px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.ability-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.ability-card::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(124, 77, 255, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(124, 77, 255, 0.18));
  content: "";
  opacity: 0.45;
}

.ability-art {
  height: 92px;
  margin: -4px -4px 16px;
  border: 1px solid rgba(124, 77, 255, 0.12);
  border-radius: 8px;
  background: #f8faff url("./assets/ability-point-illustrations.png") 0% 50% / 510% auto no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.ability-tell .ability-art {
  background-position: 25% 50%;
}

.ability-save .ability-art {
  background-position: 50% 50%;
}

.ability-polish .ability-art {
  background-position: 75% 50%;
}

.ability-connect .ability-art {
  background-position: 100% 50%;
}

.ability-detail,
.slot-detail {
  font-size: 14px;
}

.ability-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.ability-top span:last-child {
  border-radius: 999px;
  background: #f0ecff;
  padding: 6px 8px;
}

.ability-meter {
  height: 9px;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 999px;
  background: #e8ecf8;
}

.ability-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
}

.ability-discover .ability-meter span {
  width: 76%;
}

.ability-tell .ability-meter span {
  width: 68%;
}

.ability-save .ability-meter span {
  width: 84%;
}

.ability-polish .ability-meter span {
  width: 64%;
}

.ability-connect .ability-meter span {
  width: 72%;
}

.slot-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.slot-top em {
  border-radius: 999px;
  background: #f0ecff;
  color: var(--accent-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 7px 9px;
}

.slot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.global-section {
  max-width: none;
  background:
    linear-gradient(180deg, #f6f9ff, #ffffff);
}

.global-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.global-panel {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.global-copy {
  display: grid;
  gap: 14px;
}

.roadmap-section,
.media-section {
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff, #f7f8fb);
}

.roadmap-section > *,
.media-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.roadmap-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.roadmap-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.roadmap-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.roadmap-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.media-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.media-visual {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(124, 77, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.42)),
    url("./assets/event-reaction-flow.png") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(44, 48, 77, 0.11);
}

.media-copy {
  display: grid;
  gap: 14px;
}

.media-copy article:nth-child(1)::before {
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.media-copy article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.two-column h2 {
  margin-top: 18px;
}

.two-column p {
  margin-top: 18px;
}

.inline {
  margin-top: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list span,
.tag-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  padding: 16px 18px;
}

.check-list span {
  position: relative;
  display: grid;
  gap: 7px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96)),
    url("./assets/support-unlock-illustrations.png") 100% 52% / 760% auto no-repeat;
}

.check-list span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--pink), var(--blue), var(--cyan));
  content: "";
}

.check-list b {
  display: block;
}

.status-table {
  overflow: hidden;
}

.status-table div {
  display: grid;
  grid-template-columns: 160px 1fr 92px;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.status-table div + div {
  border-top: 1px solid var(--line);
}

.status-table span {
  color: var(--muted);
}

.status-table em {
  border-radius: 999px;
  background: #ece7ff;
  color: #5538d7;
  font-style: normal;
  font-weight: 900;
  padding: 8px 10px;
  text-align: center;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f7ff;
}

.partner-band h2 {
  margin-top: 12px;
}

.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #151510;
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  padding: 0 18px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq .section-heading {
  margin-bottom: 14px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 44px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.form-copy::after {
  top: 278px;
  right: 24px;
  bottom: auto;
  width: 104px;
  height: 80px;
  background-image: url("./assets/support-unlock-illustrations.png");
  background-position: 100% 52%;
  background-size: 620% auto;
  z-index: 1;
}

.form-sticker {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(124, 77, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.68)),
    url("./assets/support-unlock-illustrations.png") 100% 52% / 560% auto no-repeat;
  box-shadow: 0 18px 48px rgba(22, 24, 34, 0.08);
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 251, 255, 0.97)),
    url("./assets/hero-game-page-ui.png") 50% 18% / 240% auto no-repeat;
}

.interest-form label,
.interest-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #2f3136;
  font-size: 14px;
  font-weight: 850;
}

.interest-form strong {
  color: #5538d7;
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d4ca;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(124, 77, 255, 0.22);
  border-color: var(--purple);
}

fieldset {
  grid-column: 1 / -1;
  border: 1px solid #ebe7dc;
  border-radius: 8px;
  padding: 14px;
}

fieldset legend {
  padding: 0 6px;
}

fieldset label {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin: 6px 16px 6px 0;
  font-weight: 700 !important;
}

fieldset input,
.consent input {
  width: auto;
}

.full,
.submit-button,
.form-note,
.form-success {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.submit-button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-success {
  border-radius: 8px;
  background: #eaf8e6;
  color: #245c22;
  font-weight: 850;
  padding: 16px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--page-pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  font-weight: 800;
}

.footer-logo {
  display: block;
  width: min(440px, 76vw);
  height: auto;
}

.motion-ready .hero:not(.is-visible) .hero-copy > *,
.motion-ready .hero:not(.is-visible) .hero-stage-label,
.motion-ready .hero:not(.is-visible) .pixel-friend,
.motion-ready .hero:not(.is-visible) .hub-card,
.motion-ready .hero:not(.is-visible) .orbit-card,
.motion-ready .hero:not(.is-visible) .opportunity-tags span {
  opacity: 0;
}

.motion-ready .hero:not(.is-visible) .hero-copy > * {
  transform: translateY(16px);
}

.motion-ready .hero.is-visible .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(2) {
  transition-delay: 180ms;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(3) {
  transition-delay: 280ms;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(4) {
  transition-delay: 380ms;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(5) {
  transition-delay: 480ms;
}

.motion-ready .hero.is-visible .hero-copy > :nth-child(6) {
  transition-delay: 580ms;
}

.motion-ready .hero.is-visible .hub-card {
  animation:
    hub-enter 860ms 420ms cubic-bezier(0.2, 0.86, 0.25, 1) both,
    hub-float 8s 1.35s ease-in-out infinite;
}

.motion-ready .hero.is-visible .card-a {
  animation:
    orbit-enter-a 760ms 620ms cubic-bezier(0.2, 0.86, 0.25, 1) both,
    orbit-float-a 8.5s 1.45s ease-in-out infinite;
}

.motion-ready .hero.is-visible .card-b {
  animation:
    orbit-enter-b 760ms 760ms cubic-bezier(0.2, 0.86, 0.25, 1) both,
    orbit-float-b 9s 1.6s ease-in-out infinite;
}

.motion-ready .hero.is-visible .card-c {
  animation:
    orbit-enter-c 760ms 900ms cubic-bezier(0.2, 0.86, 0.25, 1) both,
    orbit-float-c 9.5s 1.75s ease-in-out infinite;
}

.motion-ready .hero.is-visible .pixel-friend,
.motion-ready .hero.is-visible .opportunity-tags span {
  animation: card-enter 680ms var(--motion-delay, 980ms) cubic-bezier(0.2, 0.86, 0.25, 1) backwards;
}

.motion-ready .opportunity-tags span:nth-child(2) {
  --motion-delay: 1060ms;
}

.motion-ready .opportunity-tags span:nth-child(3) {
  --motion-delay: 1140ms;
}

.motion-ready .opportunity-tags span:nth-child(4) {
  --motion-delay: 1220ms;
}

.motion-ready .hero.is-visible .hub-lines span,
.motion-ready .hero.is-visible .hub-log-list span,
.motion-ready .hero.is-visible .hub-progress span {
  transform-origin: left center;
  animation: meter-fill 760ms 1.05s cubic-bezier(0.2, 0.86, 0.25, 1) backwards;
}

.motion-ready .hero.is-visible .hub-lines span:nth-child(2),
.motion-ready .hero.is-visible .hub-log-list span:nth-child(2) {
  animation-delay: 1.18s;
}

.motion-ready .hero.is-visible .hub-lines span:nth-child(3),
.motion-ready .hero.is-visible .hub-log-list span:nth-child(3) {
  animation-delay: 1.31s;
}

.motion-ready .hero.is-visible .primary-button::after,
.motion-ready .header-cta::after,
.motion-ready .form-section.is-visible .submit-button::after {
  animation: glow-sweep 1150ms 1.1s ease-out 1;
}

.motion-ready .section:not(.is-visible) .section-heading > span,
.motion-ready .section:not(.is-visible) .section-heading h2,
.motion-ready .section:not(.is-visible) .section-heading p,
.motion-ready .form-section:not(.is-visible) .form-copy > *,
.motion-ready .partner-band:not(.is-visible) > * {
  opacity: 0;
  transform: translateY(14px);
}

.motion-ready .section.is-visible .section-heading > span,
.motion-ready .section.is-visible .section-heading h2,
.motion-ready .section.is-visible .section-heading p,
.motion-ready .form-section.is-visible .form-copy > *,
.motion-ready .partner-band.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.motion-ready .section.is-visible .section-heading > span,
.motion-ready .form-section.is-visible .form-copy > :nth-child(1),
.motion-ready .partner-band.is-visible > :nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .section.is-visible .section-heading h2,
.motion-ready .form-section.is-visible .form-copy > :nth-child(2),
.motion-ready .partner-band.is-visible > :nth-child(2) {
  transition-delay: 180ms;
}

.motion-ready .section.is-visible .section-heading p,
.motion-ready .form-section.is-visible .form-copy > :nth-child(3) {
  transition-delay: 280ms;
}

.motion-ready .section:not(.is-visible) .section-heading::before {
  opacity: 0;
  transform: scaleX(0);
}

.motion-ready .section.is-visible .section-heading::before {
  transform-origin: left center;
  animation: line-scan 720ms 320ms cubic-bezier(0.2, 0.86, 0.25, 1) backwards;
}

.motion-ready .section:not(.is-visible) .section-heading::after,
.motion-ready .form-section:not(.is-visible) .form-copy::after {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
}

.motion-ready .section.is-visible .section-heading::after,
.motion-ready .form-section.is-visible .form-copy::after {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 700ms 360ms ease,
    transform 700ms 360ms ease,
    filter 220ms ease;
}

.motion-ready .section.is-visible .section-heading::after,
.motion-ready .form-section.is-visible .form-copy::after {
  animation: float-soft 9s 1.2s ease-in-out infinite;
}

.motion-ready .creator-strip:not(.is-visible) span,
.motion-ready .game-showcase:not(.is-visible) .showcase-main,
.motion-ready .game-showcase:not(.is-visible) .mini-game-grid article,
.motion-ready .section:not(.is-visible) .problem-grid article,
.motion-ready .section:not(.is-visible) .value-grid article,
.motion-ready .section:not(.is-visible) .support-grid article,
.motion-ready .section:not(.is-visible) .use-case-grid article,
.motion-ready .section:not(.is-visible) .log-stack article,
.motion-ready .section:not(.is-visible) .anatomy-grid article,
.motion-ready .section:not(.is-visible) .global-copy article,
.motion-ready .section:not(.is-visible) .roadmap-card,
.motion-ready .section:not(.is-visible) .media-copy article,
.motion-ready .section:not(.is-visible) .wide-visual,
.motion-ready .section:not(.is-visible) .media-visual,
.motion-ready .section:not(.is-visible) .value-card-art,
.motion-ready .section:not(.is-visible) .support-badge-art,
.motion-ready .section:not(.is-visible) .check-list span,
.motion-ready .section:not(.is-visible) .tag-cloud span,
.motion-ready .section:not(.is-visible) .faq details,
.motion-ready .form-section:not(.is-visible) .form-sticker,
.motion-ready .form-section:not(.is-visible) .interest-form {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .creator-strip.is-visible span,
.motion-ready .game-showcase.is-visible .showcase-main,
.motion-ready .game-showcase.is-visible .mini-game-grid article,
.motion-ready .section.is-visible .problem-grid article,
.motion-ready .section.is-visible .value-grid article,
.motion-ready .section.is-visible .support-grid article,
.motion-ready .section.is-visible .use-case-grid article,
.motion-ready .section.is-visible .log-stack article,
.motion-ready .section.is-visible .anatomy-grid article,
.motion-ready .section.is-visible .global-copy article,
.motion-ready .section.is-visible .roadmap-card,
.motion-ready .section.is-visible .media-copy article,
.motion-ready .section.is-visible .wide-visual,
.motion-ready .section.is-visible .media-visual,
.motion-ready .section.is-visible .value-card-art,
.motion-ready .section.is-visible .support-badge-art,
.motion-ready .section.is-visible .check-list span,
.motion-ready .section.is-visible .tag-cloud span,
.motion-ready .section.is-visible .faq details,
.motion-ready .form-section.is-visible .form-sticker,
.motion-ready .form-section.is-visible .interest-form {
  animation: card-enter 680ms var(--motion-delay, 0ms) cubic-bezier(0.2, 0.86, 0.25, 1) backwards;
}

.motion-ready .creator-strip span:nth-child(2),
.motion-ready .mini-game-grid article:nth-child(2),
.motion-ready .problem-grid article:nth-child(2),
.motion-ready .value-grid article:nth-child(2),
.motion-ready .support-grid article:nth-child(2),
.motion-ready .use-case-grid article:nth-child(2),
.motion-ready .log-stack article:nth-child(2),
.motion-ready .anatomy-grid article:nth-child(2),
.motion-ready .global-copy article:nth-child(2),
.motion-ready .roadmap-card:nth-child(2),
.motion-ready .media-copy article:nth-child(2),
.motion-ready .check-list span:nth-child(2),
.motion-ready .tag-cloud span:nth-child(2),
.motion-ready .faq details:nth-of-type(2) {
  --motion-delay: 90ms;
}

.motion-ready .creator-strip span:nth-child(3),
.motion-ready .mini-game-grid article:nth-child(3),
.motion-ready .problem-grid article:nth-child(3),
.motion-ready .value-grid article:nth-child(3),
.motion-ready .support-grid article:nth-child(3),
.motion-ready .use-case-grid article:nth-child(3),
.motion-ready .log-stack article:nth-child(3),
.motion-ready .anatomy-grid article:nth-child(3),
.motion-ready .global-copy article:nth-child(3),
.motion-ready .roadmap-card:nth-child(3),
.motion-ready .check-list span:nth-child(3),
.motion-ready .tag-cloud span:nth-child(3),
.motion-ready .faq details:nth-of-type(3) {
  --motion-delay: 180ms;
}

.motion-ready .creator-strip span:nth-child(4),
.motion-ready .problem-grid article:nth-child(4),
.motion-ready .value-grid article:nth-child(4),
.motion-ready .support-grid article:nth-child(4),
.motion-ready .use-case-grid article:nth-child(4),
.motion-ready .roadmap-card:nth-child(4),
.motion-ready .check-list span:nth-child(4),
.motion-ready .tag-cloud span:nth-child(4),
.motion-ready .faq details:nth-of-type(4) {
  --motion-delay: 270ms;
}

.motion-ready .value-grid article:nth-child(5),
.motion-ready .use-case-grid article:nth-child(5),
.motion-ready .check-list span:nth-child(5),
.motion-ready .tag-cloud span:nth-child(5),
.motion-ready .faq details:nth-of-type(5) {
  --motion-delay: 360ms;
}

.motion-ready .check-list span:nth-child(6),
.motion-ready .tag-cloud span:nth-child(6) {
  --motion-delay: 450ms;
}

.motion-ready .tag-cloud span:nth-child(7) {
  --motion-delay: 540ms;
}

.motion-ready .section.is-visible .ability-meter span,
.motion-ready .section.is-visible .log-stack article::before,
.motion-ready .section.is-visible .global-copy article::before,
.motion-ready .section.is-visible .roadmap-card::before,
.motion-ready .section.is-visible .media-copy article::before,
.motion-ready .section.is-visible .use-case-grid article::before {
  transform-origin: left center;
  animation: meter-fill 760ms calc(var(--motion-delay, 0ms) + 260ms) cubic-bezier(0.2, 0.86, 0.25, 1) backwards;
}

.problem-grid article,
.value-grid article,
.support-grid article,
.use-case-grid article,
.log-stack article,
.anatomy-grid article,
.global-copy article,
.roadmap-card,
.media-copy article,
.showcase-main,
.mini-game-grid article,
.wide-visual,
.media-visual,
.interest-form,
.check-list span,
.tag-cloud span,
.faq details {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

@media (hover: hover) {
  .problem-grid article:hover,
  .value-grid article:hover,
  .support-grid article:hover,
  .use-case-grid article:hover,
  .log-stack article:hover,
  .anatomy-grid article:hover,
  .global-copy article:hover,
  .roadmap-card:hover,
  .media-copy article:hover,
  .showcase-main:hover,
  .mini-game-grid article:hover,
  .wide-visual:hover,
  .media-visual:hover,
  .interest-form:hover,
  .check-list span:hover,
  .tag-cloud span:hover,
  .faq details:hover {
    border-color: rgba(124, 77, 255, 0.34);
    box-shadow: 0 18px 44px rgba(44, 48, 77, 0.12);
    transform: translateY(-3px);
  }
}

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

  html {
    scroll-behavior: auto;
  }
}

@media (min-width: 1600px) {
  :root {
    --page-pad: 72px;
    --content-max: 1360px;
    --hero-max: 1520px;
  }

  .hero {
    grid-template-columns: minmax(500px, 0.9fr) minmax(650px, 1.1fr);
    gap: 96px;
    min-height: 900px;
  }

  h1 {
    font-size: 76px;
  }

  .hero-copy p {
    max-width: 720px;
  }

  .hero-decor {
    min-height: 640px;
  }

  .hub-card {
    width: min(58%, 500px);
  }

  .orbit-card {
    width: 224px;
  }

  .problem-grid,
  .value-grid,
  .support-grid,
  .use-case-grid {
    gap: 20px;
  }
}

@media (min-width: 2200px) {
  :root {
    --content-max: 1440px;
    --hero-max: 1640px;
  }

  .hero {
    min-height: 920px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background-position: 62% center;
  }

  h1 {
    font-size: 56px;
  }

  .hero-copy p {
    max-width: 720px;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .two-column,
  .form-section,
  .partner-band,
  .game-showcase,
  .showcase-main,
  .read-layout,
  .read-layout.reverse,
  .global-panel,
  .media-panel {
    grid-template-columns: 1fr;
  }

  .read-layout.reverse .wide-visual {
    order: 0;
  }

  .hero {
    min-height: auto;
    background-position: 64% center;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-decor {
    min-height: 470px;
  }

  .section-heading {
    padding-right: 0;
  }

  .game-showcase {
    padding-bottom: 56px;
  }

  .showcase-art {
    min-height: 300px;
  }

  .problem-grid,
  .value-grid,
  .support-grid,
  .use-case-grid,
  .anatomy-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: min(255px, calc(100vw - 130px));
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding-top: 32px;
    gap: 28px;
    background:
      linear-gradient(180deg, rgba(7, 10, 24, 0.88) 0%, rgba(7, 10, 24, 0.72) 48%, rgba(7, 10, 24, 0.38) 100%),
      url("./assets/creator-world-hero.png") 63% center / cover no-repeat;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.72;
    margin-top: 20px;
  }

  .creator-note {
    gap: 4px;
    margin-top: 16px;
    padding: 12px 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .micro-copy {
    display: none;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-decor {
    min-height: 330px;
  }

  .hub-card {
    width: 82%;
  }

  .hub-screen {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

  .hub-preview,
  .thumb {
    min-height: 82px;
  }

  .orbit-card {
    width: 150px;
  }

  .card-a {
    left: 4%;
    top: 7%;
  }

  .card-b {
    right: 4%;
    top: 9%;
  }

  .card-c {
    bottom: 7%;
  }

  .opportunity-tags {
    right: 4%;
    bottom: 7%;
  }

  .opportunity-tags span {
    min-width: 88px;
    padding: 9px 10px;
  }

  .creator-strip {
    margin-top: -20px;
    padding-bottom: 34px;
  }

  .game-showcase {
    padding-bottom: 46px;
  }

  .showcase-art {
    min-height: 250px;
    background-position: 76% 50%;
    background-size: 260% auto;
  }

  .wide-visual {
    min-height: 260px;
  }

  .showcase-copy {
    padding: 22px;
  }

  .section-heading {
    padding-right: 0;
  }

  .section-heading::after {
    position: relative;
    right: auto;
    top: auto;
    order: -1;
    width: 110px;
    height: 84px;
  }

  .section-heading::before {
    bottom: -12px;
  }

  .case-art {
    height: 112px;
  }

  .mini-game-grid article {
    grid-template-columns: 96px 1fr;
    padding: 12px;
  }

  .mini-thumb {
    height: 78px;
  }

  .problem-grid,
  .value-grid,
  .support-grid,
  .use-case-grid,
  .anatomy-grid,
  .roadmap-grid,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .status-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section,
  .partner-band,
  .form-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .form-copy::after {
    display: none;
  }

  footer {
    display: grid;
    gap: 8px;
  }
}
