:root {
  --teal: #00c2a8;
  --yellow: #ffb100;
  --cream: #fff5e8;
  --navy: #0b1d2a;
  --coral: #ff6b6b;
  --sky1: #7dd4ff;
  --sky2: #31abff;
  --sky3: #0f83e3;
  --white: #ffffff;
  --panel: rgba(255, 245, 232, 0.96);
  --shadow: 0 22px 50px rgba(11, 29, 42, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: linear-gradient(180deg, #75d4ff 0%, #35b2ff 44%, #1090ee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.sky-decor {
  display: none;
}
.cloud, .island {
  position: absolute;
  animation: drift 7s ease-in-out infinite;
}
.cloud {
  width: 230px;
  aspect-ratio: 1.7;
  background: url("assets/cloud-3.png") center / contain no-repeat;
  filter: drop-shadow(0 16px 20px rgba(255,255,255,.12));
  opacity: .92;
}
.cloud-1 { top: 15%; left: 5%; animation-delay: -1s; }
.cloud-2 { top: 11%; right: 8%; width: 260px; transform: scaleX(-1); animation: driftCloudFlip 9s ease-in-out infinite; animation-delay: -2.3s; }
.cloud-3 { top: 56%; left: 2%; width: 250px; animation-delay: -4.2s; }
.cloud-4 { top: 66%; right: 5%; width: 270px; transform: scaleX(-1); animation: driftCloudFlip 10s ease-in-out infinite; animation-delay: -5.6s; }
.island {
  width: 150px;
  aspect-ratio: .65;
  background: url("assets/island-round-tree.png") center / contain no-repeat;
  filter: drop-shadow(0 22px 28px rgba(11, 29, 42, .18));
}
.island-1 { top: 30%; right: -1%; transform: scale(.78); animation-delay: -1.8s; }
.island-2 { top: 72%; right: 8%; transform: scale(.95); animation-delay: -3.2s; }
.island-3 { top: 77%; left: 9%; transform: scale(.72); animation-delay: -5s; }
@keyframes drift {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.nav-card,
.hero-panel,
.bottom-card,
.games-panel,
.contact-panel {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.nav-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  padding: 16px 26px;
  border-radius: 28px;
}

.landing-nav {
  position: relative;
  z-index: 5;
  width: calc(100% - 56px);
  min-height: 112px;
  margin: 0 auto;
  padding: 8px 28px;
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(11, 29, 42, .08);
}

.landing-nav .brand {
  width: min(230px, 20vw);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: min(260px, 22vw);
  min-width: 210px;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.brand-word {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.08em;
  font-weight: 950;
  color: var(--navy);
}
.brand-o {
  display: inline-grid;
  place-items: center;
  width: .85em;
  height: .85em;
  margin: 0 .03em;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: .55em;
}
.brand-games {
  text-transform: uppercase;
  letter-spacing: .38em;
  font-weight: 900;
  color: var(--teal);
  font-size: clamp(.82rem, 1.5vw, 1.12rem);
  margin-left: .28rem;
  margin-top: .2rem;
}
.nav-links {
  display: flex;
  justify-self: end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 900;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(0, 194, 168, .12); }
.nav-star {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  pointer-events: none;
}
.nav-star img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(11,29,42,.22));
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 26px;
  padding: 34px 34px 28px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #34a8ff 0%, #52c0ff 48%, #9bdfff 100%);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(255,255,255,.54), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(255,255,255,.22), transparent 20%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.16), transparent 15%);
  pointer-events: none;
}
.hero-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-copy, .hero-art { z-index: 2; min-width: 0; }
.hero-art { position: relative; }
.hero-copy { align-self: center; padding: 58px 18px 22px; display: flex; flex-direction: column; align-items: center; }
.hero-copy > .eyebrow {
  position: absolute;
  top: 34px;
  left: 34px;
  margin: 0;
  z-index: 3;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  align-self: flex-start;
}
.eyebrow::before { content: "★"; color: var(--yellow); }
.eyebrow.small { font-size: .7rem; }

h1 {
  margin: 18px 0 10px;
  font-size: clamp(3.6rem, 8vw, 6.2rem);
  line-height: .88;
  letter-spacing: -0.06em;
  color: #fffefb;
  -webkit-text-stroke: 10px var(--navy);
  paint-order: stroke fill;
  text-shadow: 0 12px 18px rgba(11,29,42,.15);
}
.game-logo {
  display: block;
  width: min(100%, 640px);
  max-width: 640px;
  height: auto;
  margin: 18px 0 14px;
  filter: drop-shadow(0 16px 28px rgba(11,29,42,.32)) drop-shadow(0 4px 10px rgba(11,29,42,.16));
  align-self: center;
}
.tagline {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(0, 194, 168, .94);
  color: white;
  border-radius: 999px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(11,29,42,.15);
}
.coming {
  margin: 8px 0 20px;
  width: min(100%, 640px);
  text-align: center;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: var(--navy);
  font-weight: 900;
  align-self: center;
}
.coming span { color: #157d72; }

.cta-row, .social-block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-row {
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  width: min(100%, 640px);
  align-self: center;
}
.store-button,
.social-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 190px;
  padding: 14px 20px;
  border-radius: 20px;
  background: #0c2240;
  color: white;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(11,29,42,.18);
}
.store-button.store-image {
  min-width: 0;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.store-static {
  pointer-events: none;
  cursor: default;
  user-select: none;
  opacity: .98;
}
.store-static img {
  filter: saturate(.97) drop-shadow(0 14px 22px rgba(11,29,42,.28)) drop-shadow(0 3px 8px rgba(11,29,42,.12));
}
.store-button.store-image img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 92px;
  object-fit: contain;
}

.hero-art {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-rays {
  position: absolute;
  inset: -8% -4% -8% -4%;
  background: repeating-conic-gradient(from -8deg at 73% 43%, rgba(255,255,255,.18) 0deg 10deg, transparent 10deg 24deg);
  opacity: .58;
  z-index: 0;
}
.hero-glare {
  position: absolute;
  inset: -16% -10% -16% -18%;
  background: linear-gradient(113deg,
    transparent 0 27%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.24) 43%,
    rgba(255,255,255,.38) 48%,
    rgba(255,255,255,.24) 53%,
    rgba(255,255,255,.08) 61%,
    transparent 69%);
  transform: rotate(-8deg) translateX(-8%);
  z-index: 0;
  animation: sweep 10s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { transform: rotate(-8deg) translateX(-10%); opacity: .55; }
  50% { transform: rotate(-8deg) translateX(10%); opacity: .78; }
}
.hero-ring {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.84), rgba(255,255,255,.28) 42%, transparent 64%);
  filter: blur(.1px);
  z-index: 0;
}
.hero-cloud {
  position: absolute;
  width: 280px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  filter: blur(.2px);
  z-index: 1;
  box-shadow: 0 10px 20px rgba(255,255,255,.16);
}
.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
}
.hero-cloud::before { width: 130px; height: 130px; left: 20px; top: -42px; }
.hero-cloud::after { width: 160px; height: 160px; right: 16px; top: -64px; }
.cloud-bank-left { left: -44px; bottom: -18px; transform: scale(1.15); }
.cloud-bank-right { right: -36px; bottom: -12px; transform: scale(1.35); }
.hero-mascot {
  position: relative;
  z-index: 3;
  width: min(92%, 470px);
  filter: drop-shadow(0 30px 28px rgba(11,29,42,.22));
  animation: bob 4.6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0px) rotate(-6deg); } 50% { transform: translateY(-14px) rotate(-3deg); } }
.mini-island {
  position: absolute;
  width: 92px;
  height: 36px;
  background: linear-gradient(180deg, #bde67f 0%, #7bc44d 60%, #57863a 100%);
  border-radius: 26px 26px 14px 14px;
  z-index: 1;
  box-shadow: inset 0 -7px 0 rgba(53, 79, 28, .18), 0 14px 18px rgba(11,29,42,.14);
  animation: drift 6s ease-in-out infinite;
}
.mini-island::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 14px;
  height: 20px;
  background: #8e6f3a;
  border-radius: 10px;
  transform: translateX(-50%);
}
.mini-island::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 34px;
  height: 24px;
  background: #7ed55c;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: -14px 5px 0 -5px #8ad867, 14px 5px 0 -5px #8ad867;
}
.mini-island-1 { right: 22px; bottom: 58px; animation-delay: -.8s; }
.mini-island-2 { right: 118px; top: 108px; transform: scale(.8); animation-delay: -2.2s; }
.mini-island-3 { left: 38px; bottom: 124px; transform: scale(.72); animation-delay: -3.4s; }
.spark { position: absolute; font-size: 2rem; color: white; text-shadow: 0 4px 8px rgba(11,29,42,.16); animation: twinkle 3s ease-in-out infinite; }
.s1 { top: 26px; left: 60px; }
.s2 { top: 90px; right: 80px; animation-delay: -1s; }
.s3 { right: 38px; bottom: 120px; animation-delay: -1.8s; }
@keyframes twinkle { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.18); opacity: .55; } }

.scene-cloud,
.scene-island,
.scene-zeppelin {
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
}
.scene-cloud {
  z-index: 1;
  opacity: .97;
  filter: drop-shadow(0 14px 18px rgba(255,255,255,.08));
  animation: driftCloud 11s ease-in-out infinite;
}
.scene-island {
  z-index: 1;
  filter: drop-shadow(0 16px 22px rgba(11,29,42,.14));
  animation: driftIsland 9s ease-in-out infinite;
}
.scene-zeppelin {
  z-index: 1;
  filter: drop-shadow(0 12px 18px rgba(11,29,42,.14));
  animation: driftZep 14s ease-in-out infinite;
}
.scene-mirrored.scene-cloud {
  transform: scaleX(-1);
  animation: driftCloudFlip 11s ease-in-out infinite;
}
.scene-mirrored.scene-island {
  transform: scaleX(-1);
  animation: driftIslandFlip 9s ease-in-out infinite;
}
.scene-mirrored.scene-zeppelin {
  transform: scaleX(-1);
  animation: driftZepFlip 14s ease-in-out infinite;
}
.sc1 { top: auto; right: auto; left: -8%; bottom: -9%; width: 34%; z-index: 3; animation-delay: -1s; }
.sc2 { top: auto; left: auto; right: -8%; bottom: -8%; width: 34%; z-index: 3; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; animation-delay: -4s; }
.sc3 { top: auto; right: auto; left: 51%; bottom: -10%; width: 30%; z-index: 3; opacity: .94; animation-delay: -2.5s; }
.sc4 { left: auto; bottom: auto; right: -5%; top: -9%; width: 17%; z-index: 5; opacity: .92; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; animation-delay: -5s; }
.sc5 { right: auto; bottom: auto; left: 37%; top: 14%; width: 16%; opacity: .9; animation-delay: -3.2s; }
.sc6 { right: auto; bottom: auto; left: 2%; top: 47%; width: 14%; opacity: .78; transform: scaleX(-1); animation: driftCloudFlip 12s ease-in-out infinite; animation-delay: -6.2s; }
.sc7 { top: auto; left: auto; right: 9%; bottom: 30%; width: 15%; opacity: .82; animation-delay: -1.4s; }
.sc8 { right: auto; bottom: auto; left: 24%; top: 19%; width: 13%; opacity: .72; transform: scaleX(-1); animation: driftCloudFlip 13s ease-in-out infinite; animation-delay: -4.8s; }
.sc9 { top: auto; right: auto; left: 8%; bottom: 0; width: 22%; z-index: 3; opacity: .96; animation-delay: -2s; }
.sc10 { top: auto; left: auto; right: 2%; bottom: -1%; width: 24%; z-index: 3; opacity: .94; transform: scaleX(-1); animation: driftCloudFlip 12s ease-in-out infinite; animation-delay: -5.2s; }
.si1,
.si2,
.si3,
.si4 { display: none !important; }
.island-center { top: auto; right: auto; left: 57%; bottom: 30%; width: 11%; transform: scaleX(-1); animation: driftIslandFlip 9s ease-in-out infinite; animation-delay: -5.4s; }
.island-lower-right { top: auto; left: auto; right: 5%; bottom: 5%; width: 12%; animation-delay: -3.1s; }
.island-lower-left { top: auto; right: auto; left: 11%; bottom: -2%; width: 9%; transform: scaleX(-1); animation: driftIslandFlip 10s ease-in-out infinite; animation-delay: -2.7s; opacity: .95; }
.sz1 { right: auto; bottom: auto; left: 9%; top: 58%; width: 9%; opacity: .86; animation-delay: -2.4s; }
.sz2 { right: auto; bottom: auto; left: 53%; top: 8%; width: 13%; transform: scaleX(-1); opacity: .82; animation: driftZepFlip 14s ease-in-out infinite; animation-delay: -7s; }
.sz3,
.sz4 { display: none; }

.scene-editing .hero-scene {
  pointer-events: auto;
}
.scene-editing .hero-copy,
.scene-editing .hero-art {
  pointer-events: none;
}
.scene-editing .scene-cloud,
.scene-editing .scene-island,
.scene-editing .scene-zeppelin {
  cursor: move;
  outline: 2px dashed rgba(255, 255, 255, .9);
  outline-offset: 3px;
  animation-play-state: paused;
}
.scene-editing .scene-editor-selected {
  outline: 3px solid #ffcf24;
  filter: drop-shadow(0 0 12px rgba(255, 207, 36, .75));
}
.scene-editor-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(360px, calc(100vw - 28px));
  padding: 14px;
  border-radius: 18px;
  background: rgba(11, 29, 42, .94);
  color: white;
  box-shadow: 0 18px 38px rgba(11, 29, 42, .3);
  display: grid;
  gap: 10px;
  font-size: .9rem;
}
.scene-editor-panel strong {
  font-size: 1rem;
}
.scene-editor-panel p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}
.scene-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scene-editor-panel button {
  border: 0;
  border-radius: 12px;
  padding: 9px 11px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.scene-editor-panel button.secondary {
  background: rgba(255,255,255,.16);
  color: white;
}
.scene-editor-panel button.danger {
  background: #ff6b6b;
  color: white;
}
.scene-editor-size {
  display: grid;
  gap: 6px;
}
.scene-editor-size input {
  width: 100%;
}
.scene-export-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  width: min(980px, calc(100vw - 36px));
  max-height: min(520px, calc(100vh - 36px));
  margin: 0 auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(11, 29, 42, .96);
  color: white;
  box-shadow: 0 22px 48px rgba(11, 29, 42, .35);
  display: grid;
  gap: 10px;
}
.scene-export-panel strong {
  font-size: 1rem;
}
.scene-export-panel p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}
.scene-export-panel textarea {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  background: white;
  color: var(--navy);
  font: 700 .82rem/1.45 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
.scene-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scene-export-panel button {
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.scene-export-panel button.secondary {
  background: rgba(255,255,255,.16);
  color: white;
}
@keyframes driftCloud {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes driftCloudFlip {
  0%,100% { transform: scaleX(-1) translateY(0px); }
  50% { transform: scaleX(-1) translateY(-10px); }
}
@keyframes driftIsland {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes driftIslandFlip {
  0%,100% { transform: scaleX(-1) translateY(0px); }
  50% { transform: scaleX(-1) translateY(-8px); }
}
@keyframes driftZep {
  0%,100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-10px) translateX(10px); }
}
@keyframes driftZepFlip {
  0%,100% { transform: scaleX(-1) translateY(0px) translateX(0px); }
  50% { transform: scaleX(-1) translateY(-10px) translateX(10px); }
}

.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  min-height: 380px;
  margin-top: 28px;
  padding: clamp(34px, 4.5vw, 56px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 224, 165, .44), transparent 23%),
    radial-gradient(circle at 10% 86%, rgba(255,255,255,.72), transparent 22%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.newsletter-card::before,
.newsletter-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: center / contain no-repeat;
  opacity: .95;
}

.newsletter-card::before {
  display: none;
}

.newsletter-card::after {
  width: 22px;
  height: 22px;
  right: 39%;
  top: 28%;
  background-image: url("assets/YellowStarAsset.png");
  animation: softTwinkle 3.8s ease-in-out infinite;
}

@keyframes softTwinkle {
  0%, 100% { transform: scale(.92) rotate(0deg); opacity: .78; }
  50% { transform: scale(1.12) rotate(12deg); opacity: 1; }
}

.newsletter-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.newsletter-copy .eyebrow {
  margin: 0 0 18px;
}

.newsletter-copy h2 {
  margin: 0 0 14px;
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.2vw, 4.05rem);
  font-weight: 950;
  line-height: .98;
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(11,29,42,.75);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 750;
  line-height: 1.45;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  width: min(100%, 430px);
}

.newsletter-form label {
  display: grid;
  gap: 6px;
}

.newsletter-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: inset 0 0 0 2px rgba(11,29,42,.06), 0 10px 18px rgba(11,29,42,.08);
  color: var(--navy);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.newsletter-form input:focus {
  box-shadow: inset 0 0 0 3px rgba(0, 194, 168, .34), 0 12px 22px rgba(11,29,42,.1);
}

.newsletter-form button {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #12d4c3 0%, #00bfa8 100%);
  color: white;
  font: inherit;
  font-size: 1.16rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(0, 145, 130, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 145, 130, .25);
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: .78;
  transform: none;
}

.newsletter-form button.signup-error {
  background: linear-gradient(180deg, #ffc342 0%, #ff9f1c 100%);
}

.newsletter-note {
  margin: 2px 0 0;
  color: rgba(11,29,42,.64);
  font-size: .92rem;
  font-weight: 800;
}

.newsletter-note::before {
  content: "✓";
  color: var(--teal);
  margin-right: 7px;
}

.newsletter-art {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  justify-items: center;
  min-height: 300px;
}

.newsletter-art img {
  display: block;
  width: min(120%, 430px);
  max-width: none;
  margin: 0 auto -58px;
  filter: drop-shadow(0 24px 30px rgba(11,29,42,.14));
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(11,29,42,.34);
  backdrop-filter: blur(5px);
}

.newsletter-modal[hidden] {
  display: none;
}

.newsletter-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  align-items: center;
  width: min(100%, 460px);
  padding: 34px 30px 30px;
  border-radius: 28px;
  background: rgba(255,245,232,.98);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 28px 64px rgba(11,29,42,.28);
  transform: translateY(14px) scale(.96);
  opacity: 0;
  animation: modalPop .28s ease forwards;
}

.newsletter-modal-card::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1.8rem;
  font-weight: 950;
}

.newsletter-modal-card strong {
  font-size: 1.35rem;
  font-weight: 950;
}

.newsletter-modal-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(11,29,42,.7);
  font-weight: 750;
  line-height: 1.35;
}

.newsletter-modal-card img {
  width: 74px;
  margin-top: 8px;
  filter: drop-shadow(0 12px 18px rgba(11,29,42,.16));
}

.newsletter-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(11,29,42,.08);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
}

@keyframes modalPop {
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.bottom-card,
.games-panel,
.contact-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: 32px;
}
.bottom-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  min-height: 270px;
  padding: clamp(30px, 4vw, 40px);
}
.journey-card {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 318px);
  gap: clamp(20px, 2.8vw, 34px);
  min-height: 350px;
  padding: clamp(34px, 4.5vw, 54px);
}
.about-block {
  display: grid;
  grid-template-columns: clamp(190px, 18vw, 255px) minmax(0, 1fr);
  gap: clamp(22px, 2.6vw, 34px);
  align-items: center;
}
.about-icon {
  width: 100px; height: 100px; border-radius: 28px; object-fit: cover;
  box-shadow: 0 12px 22px rgba(11,29,42,.12);
}
.about-character-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.about-character {
  position: relative;
  z-index: 1;
  display: block;
  width: 108%;
  max-height: 300px;
  margin-left: -5%;
  object-fit: contain;
  object-position: center bottom;
  transform: scaleX(-1);
}
.journey-card .about-block {
  grid-template-columns: clamp(165px, 17vw, 225px) minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
}
.journey-card .about-character {
  width: 122%;
  max-height: 300px;
  margin-left: -6%;
  transform: none;
}
.about-copy {
  min-width: 0;
  max-width: 620px;
}
.journey-card .about-copy {
  max-width: 720px;
}
.follow-build-badge {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 10px 12px rgba(11,29,42,.1));
}
.about-block h2, .section-head h2, .contact-title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.about-block h2 { font-size: 2.28rem; }
.journey-card .about-block h2 {
  margin-bottom: 20px;
  max-width: 600px;
  font-size: clamp(1.9rem, 2.45vw, 2.35rem);
  line-height: 1.22;
}
.about-block p, .game-copy, .contact-intro, .form-note { color: rgba(11,29,42,.72); font-weight: 650; line-height: 1.55; }
.journey-card .about-block p {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.45;
}
.social-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding-left: clamp(12px, 2vw, 26px);
}
.join-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 330px;
  margin: 0 0 24px;
  padding: 0 0 10px;
  border-bottom: 2px dashed rgba(0, 194, 168, .35);
  color: #159f8f;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 950;
  font-style: italic;
  line-height: 1;
}
.join-heading img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.social-block {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 104px);
  justify-content: flex-end;
  align-items: end;
  gap: clamp(22px, 2vw, 28px);
}
.journey-card .social-block {
  grid-template-columns: repeat(3, 92px);
  justify-content: center;
  gap: clamp(16px, 1.6vw, 22px);
}
.journey-card .social-card {
  width: 104px;
  min-width: 104px;
}
.journey-card .social-icon-frame {
  width: 104px;
  height: 78px;
}
.journey-card .social-card span:last-child {
  font-size: 1rem;
}
.social-card {
  width: 104px;
  min-width: 104px;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  background: transparent;
  color: var(--navy);
  border: 0;
  box-shadow: none;
}
.social-icon-frame {
  display: grid;
  place-items: center;
  width: 104px;
  height: 88px;
  filter: drop-shadow(0 13px 12px rgba(11,29,42,.22));
  transition: transform .2s ease, filter .2s ease;
}
.social-card:hover .social-icon-frame {
  transform: translateY(-3px);
  filter: drop-shadow(0 18px 16px rgba(11,29,42,.24));
}
.social-card span:last-child {
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.social-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.social-card.insta .social-icon-img,
.social-card.tiktok .social-icon-img {
  transform: none;
}
.games-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 34px);
  background: rgba(255,245,232,.94);
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
}
.game-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 36vw, 440px);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.game-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.game-badges {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2vw, 26px);
}
.game-badges .eyebrow {
  justify-self: start;
}
.game-badges .status-pill {
  justify-self: end;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 194, 168, .12);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
}
.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.game-title-art {
  display: block;
  width: min(100%, 560px);
  height: auto;
}
.game-subtitle {
  margin: 10px 0 22px;
  color: #158b7f;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 950;
  line-height: 1.05;
}
.game-copy {
  margin: 0;
  max-width: 720px;
  color: rgba(11,29,42,.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 750;
  line-height: 1.42;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}
.feature-card {
  display: grid;
  grid-template-columns: clamp(82px, 8vw, 118px) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  min-height: clamp(130px, 12vw, 170px);
  padding: clamp(20px, 2.3vw, 28px);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 24px rgba(11,29,42,.08);
}
.feature-card img {
  width: clamp(82px, 8vw, 118px);
  height: clamp(82px, 8vw, 118px);
  object-fit: contain;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.08;
}
.feature-card p {
  margin: 0;
  color: rgba(11,29,42,.7);
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  font-weight: 750;
  line-height: 1.3;
}
.follow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(22px, 2.7vw, 34px);
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 950;
}
.follow-row a,
.follow-row > img {
  flex: 0 0 auto;
}
.follow-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: transform .2s ease;
}
.follow-row a:hover {
  transform: translateY(-2px);
}
.follow-row a img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(11,29,42,.2));
}
.follow-star {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.game-image-wrap {
  display: grid;
  align-items: start;
  justify-items: center;
  min-width: 0;
}
.game-synopsis-image {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 315px;
  object-fit: contain;
  object-position: center;
  border-radius: 36px;
  filter: drop-shadow(0 24px 32px rgba(11,29,42,.22));
  animation: gameIconFloat 5.5s ease-in-out infinite;
}
@keyframes gameIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  border: 2px solid var(--navy);
  background: white;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.outline-button.fill {
  background: var(--teal);
  color: white;
  border-color: transparent;
}

.contact-page-shell { padding-bottom: 22px; }
.contact-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
  background: rgba(255,245,232,.95);
}
.contact-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.mail-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 22px rgba(11,29,42,.08);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(11,29,42,.07);
}
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid rgba(11,29,42,.12);
  background: white;
  font: inherit;
  color: var(--navy);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form-note { margin: 0; font-size: .92rem; }

.studio-panel .contact-form { align-content: start; }
.studio-placeholder { text-align: left; }
.studio-placeholder h2 { margin: 4px 0 8px; font-size: 1.7rem; }
.studio-placeholder ul { margin: 0 0 6px 18px; padding: 0; color: rgba(11,29,42,.78); font-weight: 650; line-height: 1.6; }
.chip-star { width: 22px; height: 22px; object-fit: contain; }

.footer {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.96);
  font-weight: 800;
}
.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(11,29,42,.14));
}

@media (max-width: 980px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
    justify-items: center;
    padding-bottom: 0;
  }

  .newsletter-copy,
  .newsletter-copy h2,
  .newsletter-copy > p:not(.eyebrow),
  .newsletter-form {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-copy .eyebrow {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-art {
    min-height: 300px;
    justify-items: center;
  }

  .newsletter-art img {
    width: min(82%, 320px);
    margin: 4px auto 0;
  }

  .sc1 { width: 31%; }
  .sc2 { width: 32%; }
  .sc3 { width: 22%; }
  .sc5 { width: 16%; }
  .sc6 { width: 16%; }
  .sc7 { width: 18%; }
  .sc8 { width: 15%; }
  .island-center { width: 14%; left: 49%; bottom: 26%; }
  .island-lower-right { width: 15%; right: 1%; bottom: 6%; }
  .island-lower-left { width: 11%; left: 10%; bottom: -1%; }
  .sz1 { width: 12%; right: 6%; bottom: 47%; }
  .sz2 { width: 11%; left: 8%; top: 8%; }
  .sz3 { width: 9%; left: 60%; top: 18%; }
  .sz4 { display: none; }

  .hero-panel,
  .bottom-card,
  .games-panel,
  .contact-grid,
  .studio-grid,
  .story-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .bottom-card { text-align: center; }
  .about-block { justify-content: center; }
  .social-block { justify-content: center; }
  .journey-card {
    gap: 30px;
  }
  .journey-card .about-block {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .journey-card .about-character {
    width: min(350px, 82vw);
    max-height: none;
    margin-left: 0;
  }
  .follow-build-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .journey-card .about-block h2,
  .journey-card .about-block p {
    margin-left: auto;
    margin-right: auto;
  }
  .social-panel {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(0, 194, 168, .14);
  }
  .games-panel {
    text-align: center;
    gap: 28px;
  }
  .game-top {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .game-badges {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .game-title-art {
    margin: 0 auto;
  }
  .game-copy {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .follow-row {
    justify-content: center;
  }
  .game-synopsis-image {
    width: min(100%, 520px);
    max-height: none;
  }
}

@media (max-width: 760px) {
  .hero-art { min-height: 360px; }
  .sc1 { width: 38%; left: -6%; bottom: -1%; }
  .sc2 { width: 38%; right: -7%; bottom: -1%; }
  .sc3 { width: 24%; left: 38%; bottom: 0; }
  .sc4 { width: 16%; top: 10%; right: 4%; }
  .sc5 { width: 17%; left: 26%; top: 16%; }
  .sc6 { width: 16%; left: 2%; top: 48%; }
  .sc7 { width: 17%; right: 12%; bottom: 10%; }
  .sc8 { display: none; }
  .island-center { width: 14%; left: 48%; bottom: 24%; }
  .island-lower-right { width: 15%; right: 1%; bottom: 8%; }
  .island-lower-left { width: 10%; left: 8%; bottom: 0; }
  .sz1 { width: 12%; right: 5%; bottom: 46%; }
  .sz2 { width: 11%; left: 10%; top: 10%; }
  .sz3 { display: none; }
  .sz4 { display: none; }

  .page-shell, .footer { width: min(100% - 20px, 720px); }
  .nav-card { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .landing-nav {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 18px 20px;
  }
  .brand,
  .landing-nav .brand { justify-self: center; width: min(290px, 82vw); min-width: 0; }
  .nav-links { width: 100%; justify-content: center; flex-wrap: wrap; }
  .nav-star { justify-self: center; }
  .nav-cta, .nav-social { justify-self: center; }
  .store-button.store-image img { max-width: 180px; height: auto; }
  .about-block {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-character {
    width: min(270px, 78vw);
    max-height: 270px;
    margin-left: 0;
  }
  .journey-card .about-character {
    width: min(330px, 86vw);
    max-height: none;
  }
  .journey-card .about-block h2 {
    font-size: 2rem;
  }
  .journey-card .about-block p {
    font-size: 1rem;
  }
  .join-heading {
    font-size: 1.25rem;
  }
  .about-copy {
    width: min(100%, 300px);
    max-width: 300px;
  }
  .journey-card .about-copy {
    width: min(100%, 340px);
    max-width: 340px;
  }
  .about-block p { font-size: .95rem; }
  .about-icon { width: 84px; height: 84px; }
  .social-block {
    grid-template-columns: repeat(3, 86px);
    justify-content: center;
    gap: 14px;
  }
  .social-card {
    width: 86px;
    min-width: 86px;
    flex: 0 1 86px;
    gap: 12px;
  }
  .social-icon-frame {
    width: 86px;
    height: 68px;
  }
  .social-card.insta .social-icon-img,
  .social-card.tiktok .social-icon-img {
    transform: none;
  }
  .social-card span:last-child { font-size: .95rem; }
  .games-panel {
    padding: 24px;
    border-radius: 28px;
  }
  .game-subtitle {
    margin-bottom: 16px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-template-columns: 82px minmax(0, 1fr);
    text-align: left;
  }
  .feature-card img {
    width: 82px;
    height: 82px;
  }
  .follow-row {
    flex-wrap: wrap;
    gap: 14px;
  }
  .follow-row span {
    flex: 0 0 100%;
  }
  .game-synopsis-image {
    width: min(100%, 360px);
    max-height: none;
    border-radius: 28px;
  }
  .hero-mascot { width: min(94%, 360px); }
  .hero-ring { width: 320px; height: 320px; }
  .hero-cloud { width: 180px; height: 70px; }
  .hero-cloud::before { width: 82px; height: 82px; top: -28px; }
  .hero-cloud::after { width: 100px; height: 100px; top: -40px; }
  .cloud-bank-left { left: -28px; }
  .cloud-bank-right { right: -30px; }
}

@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
    min-height: 1030px;
    padding-bottom: 28px;
  }
  .hero-copy {
    order: 1;
    min-height: 470px;
    padding-top: 52px;
    padding-bottom: 170px;
  }
  .hero-copy > .eyebrow { top: 20px; left: 20px; }
  .game-logo { width: min(100%, 285px); margin-top: 34px; }
  .coming {
    width: min(100%, 330px);
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .cta-row {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    flex-wrap: wrap;
    gap: 10px;
  }
  .store-button.store-image { flex-basis: 100%; }
  .store-button.store-image img { width: min(100%, 220px); max-width: 220px; height: auto; margin: 0 auto; }
  .hero-art { order: 2; min-height: 520px; }
  .hero-rays { background: repeating-conic-gradient(from -8deg at 50% 73%, rgba(255,255,255,.16) 0deg 10deg, transparent 10deg 24deg); }
  .hero-glare {
    inset: 22% -24% -20% -34%;
    transform: rotate(-8deg) translateX(6%);
  }
  .sc1 { width: 42%; }
  .sc2 { width: 40%; }
  .sc3 { display: none; }
  .sc4 { width: 18%; right: 3%; top: 7%; }
  .sc5 { width: 17%; left: 20%; top: 18%; }
  .sc6 { width: 20%; left: -1%; top: 48%; }
  .sc7 { width: 18%; right: 6%; bottom: 10%; }
  .sc8 { display: none; }
  .island-center { left: 45%; bottom: 18%; width: 17%; }
  .island-lower-right { right: 0; left: auto; bottom: 6%; width: 17%; }
  .island-lower-left { display: none; }
  .sz1 { width: 12%; right: 2%; bottom: 42%; }
  .sz2 { width: 10%; left: 7%; top: 9%; }
  .sz3 { display: none; }
  .sz4 { display: none; }
}

@media (max-width: 420px) {
  .store-button.store-image { flex-basis: 100%; }
  .store-button.store-image img { width: min(100%, 220px); height: auto; max-width: 220px; }
}

/* Baked hero scene recovered from the browser editor. */
.sc1,
.sc4 {
  display: none;
}
.sc2 { left: 50.53%; top: 70.28%; right: auto; bottom: auto; width: 45%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.sc3 { left: 77.18%; top: 67.26%; right: auto; bottom: auto; width: 30%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.sc5 { left: 43.4%; top: 13.98%; right: auto; bottom: auto; width: 15%; z-index: 1; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; }
.sc6 { left: 2%; top: 43.1%; right: auto; bottom: auto; width: 14%; z-index: 1; transform: scaleX(-1); animation: driftCloudFlip 12s ease-in-out infinite; }
.sc7 { left: 76%; top: 52.14%; right: auto; bottom: auto; width: 15%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.sc8 { left: 12.31%; top: 3.73%; right: auto; bottom: auto; width: 8.5%; z-index: 1; transform: none; animation: driftCloud 13s ease-in-out infinite; }
.sc9 { left: 74.73%; top: 55.32%; right: auto; bottom: auto; width: 22%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.sc10 { left: 76.81%; top: 80.84%; right: auto; bottom: auto; width: 24%; z-index: 1; transform: none; animation: driftCloud 12s ease-in-out infinite; }
.island-center { left: 51.19%; top: 54.72%; right: auto; bottom: auto; width: 11%; z-index: 1; transform: none; animation: driftIsland 9s ease-in-out infinite; }
.island-lower-right { left: 86.92%; top: 20.84%; right: auto; bottom: auto; width: 12%; z-index: 1; transform: none; animation: driftIsland 9s ease-in-out infinite; }
.island-lower-left { left: -1.05%; top: 50.54%; right: auto; bottom: auto; width: 12%; z-index: 1; transform: none; animation: driftIsland 10s ease-in-out infinite; }
.sz1 { left: 44.63%; top: 55.63%; right: auto; bottom: auto; width: 6%; z-index: 1; transform: scaleX(-1); animation: driftZepFlip 14s ease-in-out infinite; }
.sz2 { left: 48.95%; top: 23.39%; right: auto; bottom: auto; width: 15%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
.sz3 { display: block; left: -35.86%; top: 10.75%; right: auto; bottom: auto; width: 0%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
.sz4 { display: block; left: -35.86%; top: 10.75%; right: auto; bottom: auto; width: 0%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
.extra-cloud-1 { left: 2.83%; top: 84.11%; right: auto; bottom: auto; width: 25%; z-index: 8; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; }
.extra-cloud-2 { left: -11.67%; top: 75.31%; right: auto; bottom: auto; width: 28%; z-index: 5; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; }
.extra-cloud-3 { left: 4.54%; top: 85.11%; right: auto; bottom: auto; width: 25.5%; z-index: 6; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; }
.extra-cloud-9 { left: 65.37%; top: 87.12%; right: auto; bottom: auto; width: 20%; z-index: 7; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.extra-cloud-13 { left: -26.78%; top: 61.17%; right: auto; bottom: auto; width: 45%; z-index: 0; transform: scaleX(-1); animation: driftCloudFlip 11s ease-in-out infinite; }
.extra-cloud-14 { left: 69.64%; top: 56.05%; right: auto; bottom: auto; width: 45%; z-index: 0; transform: none; animation: driftCloud 11s ease-in-out infinite; }
.extra-zeppelin-2 { left: 5.42%; top: 9.86%; right: auto; bottom: auto; width: 12%; z-index: 9; transform: scaleX(-1); animation: driftZepFlip 14s ease-in-out infinite; }

@media (max-width: 980px) {
  .hero-panel {
    min-height: 1120px;
  }
  .hero-copy {
    position: static;
    z-index: 6;
    min-height: 0;
    padding-bottom: 0;
  }
  .game-logo {
    position: absolute;
    left: 50%;
    top: 108px;
    transform: translateX(-50%);
    z-index: 12;
    width: min(72%, 500px);
    max-width: 500px;
    margin: 0;
  }
  .coming {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 200px;
    z-index: 7;
    width: auto;
    margin: 0 auto;
  }
  .cta-row {
    z-index: 7;
    position: absolute;
    left: 18px;
    right: 18px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    bottom: 68px;
    width: auto;
  }
  .store-button.store-image { flex: 0 1 calc(50% - 4px); flex-basis: calc(50% - 4px); }
  .store-button.store-image img { width: 100%; max-width: 210px; height: auto; }
  .hero-art {
    position: absolute;
    inset: 395px 0 268px;
    z-index: 3;
    min-height: 0;
    pointer-events: none;
  }
  .hero-mascot {
    width: min(68%, 315px);
    align-self: center;
    margin-top: 18px;
  }
  .hero-rays {
    background: repeating-conic-gradient(from -8deg at 50% 58%, rgba(255,255,255,.16) 0deg 10deg, transparent 10deg 24deg);
  }
  .hero-glare {
    inset: 18% -28% -22% -38%;
  }

  .sc1 { left: -1.87%; top: 4.29%; right: auto; bottom: auto; width: 0%; z-index: 3; }
  .sc2 { left: 74.63%; top: 80.44%; right: auto; bottom: auto; width: 45%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .sc3 { display: block; left: 68.59%; top: 85.72%; right: auto; bottom: auto; width: 45%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .sc4 { left: -1.87%; top: 4.29%; right: auto; bottom: auto; width: 0%; z-index: 5; }
  .sc5 { left: 72.36%; top: 8.03%; right: auto; bottom: auto; width: 15%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .sc6 { left: 9.11%; top: 33.67%; right: auto; bottom: auto; width: 14%; z-index: 1; transform: none; animation: driftCloud 12s ease-in-out infinite; }
  .sc7 { left: 76%; top: 51.56%; right: auto; bottom: auto; width: 15%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .sc8 { display: block; left: 12.31%; top: 2.51%; right: auto; bottom: auto; width: 8.5%; z-index: 1; transform: none; animation: driftCloud 13s ease-in-out infinite; }
  .sc9 { left: 69.32%; top: 76.56%; right: auto; bottom: auto; width: 34%; z-index: 1; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .sc10 { left: 48.58%; top: 92.52%; right: auto; bottom: auto; width: 45%; z-index: 1; transform: none; animation: driftCloud 12s ease-in-out infinite; }
  .island-center { left: 28.22%; top: 60.06%; right: auto; bottom: auto; width: 11%; z-index: 1; transform: none; animation: driftIsland 9s ease-in-out infinite; }
  .island-lower-right { left: 86.02%; top: 35.76%; right: auto; bottom: auto; width: 12%; z-index: 1; transform: none; animation: driftIsland 9s ease-in-out infinite; }
  .island-lower-left { display: block; left: -0.48%; top: 68.19%; right: auto; bottom: auto; width: 26%; z-index: 1; transform: none; animation: driftIsland 10s ease-in-out infinite; }
  .sz1 { left: 55.68%; top: 6.35%; right: auto; bottom: auto; width: 6%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
  .sz2 { left: 24.89%; top: 36.36%; right: auto; bottom: auto; width: 27%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
  .sz3 { display: block; left: -31.7%; top: 8.41%; right: auto; bottom: auto; width: 0%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
  .sz4 { display: block; left: -31.7%; top: 8.41%; right: auto; bottom: auto; width: 0%; z-index: 1; transform: none; animation: driftZep 14s ease-in-out infinite; }
  .extra-cloud-1 { left: -11%; top: 90.15%; right: auto; bottom: auto; width: 45%; z-index: 8; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-cloud-2 { left: -9.57%; top: 84.98%; right: auto; bottom: auto; width: 45%; z-index: 5; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-cloud-3 { left: 3.42%; top: 91.19%; right: auto; bottom: auto; width: 45%; z-index: 6; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-cloud-9 { left: 67.67%; top: 89.99%; right: auto; bottom: auto; width: 45%; z-index: 7; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-cloud-13 { left: -24.44%; top: 80.37%; right: auto; bottom: auto; width: 45%; z-index: 0; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-cloud-14 { left: 65.24%; top: 83.92%; right: auto; bottom: auto; width: 45%; z-index: 0; transform: none; animation: driftCloud 11s ease-in-out infinite; }
  .extra-zeppelin-2 { left: 2.37%; top: 53.84%; right: auto; bottom: auto; width: 13%; z-index: 9; transform: scaleX(-1); animation: driftZepFlip 14s ease-in-out infinite; }
}

/* Studio page */
.studio-page-shell {
  padding-bottom: 26px;
}

.studio-card,
.contact-card {
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 32px;
}

.studio-hero {
  position: relative;
  display: block;
  min-height: 430px;
  margin-top: 28px;
  overflow: hidden;
}

.studio-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(68%, 820px);
  min-height: 430px;
  padding: clamp(32px, 3.8vw, 48px);
}

.studio-hero-copy .eyebrow,
.studio-building .eyebrow,
.studio-star-card .eyebrow {
  margin: 0;
}

.studio-hero-copy h1,
.contact-hero-copy h1 {
  margin: 18px 0 20px;
  color: var(--navy);
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
  letter-spacing: 0;
}

.studio-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.3vw, 4.05rem);
  line-height: 1.08;
  font-weight: 950;
}

.studio-hero-copy h1 span {
  color: #079b8e;
  white-space: nowrap;
}

.studio-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(11,29,42,.76);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
}

.studio-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 24px rgba(11,29,42,.08);
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 950;
}

.studio-chip img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 7px 9px rgba(11,29,42,.18));
}

.studio-hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.studio-hero-art img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: min(178%, 1840px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

.studio-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 18px;
}

.studio-building,
.studio-star-card,
.studio-follow {
  padding: clamp(24px, 3vw, 34px);
}

.studio-building {
  min-height: 292px;
}

.building-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
}

.building-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 205px;
  padding: 0 clamp(18px, 2.2vw, 34px);
  text-align: center;
}

.building-item + .building-item {
  border-left: 2px solid rgba(11,29,42,.12);
}

.building-item img {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  object-fit: contain;
  overflow: visible;
  filter: drop-shadow(0 12px 18px rgba(11,29,42,.08));
}

.building-item h2 {
  margin: 0 0 14px;
  max-width: 210px;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.12;
  font-weight: 950;
}

.building-item p {
  margin: 0;
  max-width: 220px;
  color: rgba(11,29,42,.72);
  font-size: clamp(.95rem, 1.15vw, 1.04rem);
  font-weight: 700;
  line-height: 1.45;
}

.studio-star-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "beane"
    "copy";
  justify-items: center;
  align-items: start;
  gap: 0;
  min-height: 620px;
  overflow: visible;
  padding: 28px 36px 34px;
  text-align: center;
}

.studio-star-card > div {
  display: contents;
}

.studio-star-card .eyebrow {
  grid-area: badge;
  justify-self: start;
  align-self: start;
}

.studio-star-card p:not(.eyebrow) {
  grid-area: copy;
  margin: 12px auto 0;
  max-width: 680px;
  color: rgba(11,29,42,.78);
  font-size: clamp(1.12rem, 2.25vw, 1.38rem);
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.studio-star-card > img {
  grid-area: beane;
  justify-self: center;
  align-self: center;
  display: block;
  width: min(68%, 430px);
  max-height: 390px;
  margin: 18px auto 8px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 24px rgba(11,29,42,.16));
}

.studio-follow {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(120px, 170px);
  gap: 22px;
  align-items: center;
  min-height: 86px;
  margin-top: 18px;
  overflow: visible;
  padding-block: clamp(12px, 1.4vw, 16px);
}

.studio-follow-icon {
  display: block;
  width: 78px;
  height: 78px;
}

.studio-follow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(11,29,42,.14));
}

.studio-follow h2 {
  margin: 0 0 6px;
  color: #079b8e;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.studio-follow p {
  margin: 0;
  color: rgba(11,29,42,.78);
  font-weight: 750;
  line-height: 1.35;
}

.studio-follow-art {
  position: relative;
  align-self: stretch;
  justify-self: end;
  width: min(100%, 170px);
  min-height: 86px;
  overflow: visible;
}

.studio-follow-island {
  display: block;
  position: absolute;
  right: 4px;
  bottom: -28px;
  width: 142px;
  filter: drop-shadow(0 18px 22px rgba(11,29,42,.16));
  animation: followIslandFloat 5.8s ease-in-out infinite;
}

@keyframes followIslandFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Contact page */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 0;
  min-height: 540px;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.contact-hero-copy h1 {
  font-size: clamp(3rem, 4.6vw, 4.25rem);
  line-height: .94;
  font-weight: 950;
  color: #fffefb;
  -webkit-text-stroke: 7px var(--navy);
  paint-order: stroke fill;
  text-shadow: 0 9px 12px rgba(11,29,42,.12);
}

.contact-hero-copy h1 span {
  display: block;
  color: #20d0cf;
  white-space: nowrap;
}

.contact-hero-copy p:not(.contact-note):not(.eyebrow) {
  width: 100%;
  max-width: 520px;
  margin: 0 0 26px;
  color: rgba(11,29,42,.72);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 750;
  line-height: 1.5;
}

.contact-email-chip,
.contact-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 340px);
  min-height: 58px;
  border: 0;
  border-radius: 20px;
  font: inherit;
  font-size: 1.24rem;
  font-weight: 950;
}

.contact-email-chip {
  margin-bottom: 18px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(11,29,42,.09);
  cursor: text;
  user-select: text;
}

.contact-email-chip strong {
  user-select: all;
}

.contact-email-chip strong::selection {
  background: rgba(0, 194, 168, .28);
}

.contact-copy-button {
  background: linear-gradient(180deg, #12d4c3 0%, #00bfa8 100%);
  color: white;
  box-shadow: 0 14px 26px rgba(0, 145, 130, .22);
  cursor: pointer;
  transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.contact-copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 145, 130, .24);
}

.contact-copy-button.copied {
  background: linear-gradient(180deg, #11d889 0%, #04ae79 100%);
  box-shadow: 0 16px 30px rgba(4, 174, 121, .28);
  animation: copyPulse .42s ease;
}

.contact-copy-button.copy-failed {
  background: linear-gradient(180deg, #ffc342 0%, #ff9f1c 100%);
  box-shadow: 0 16px 30px rgba(255, 159, 28, .24);
}

@keyframes copyPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: rgba(11,29,42,.62);
  font-weight: 850;
  line-height: 1.35;
}

.contact-note .note-star {
  flex: 0 0 auto;
  color: var(--yellow);
}

.contact-note span:last-child {
  min-width: 0;
}

.contact-hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 460px;
  min-height: 420px;
  margin-left: 74px;
}

.contact-hero-art::before {
  content: "";
  position: absolute;
  width: min(78%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 224, 165, .44);
  filter: blur(.1px);
}

.contact-hero-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(112%, 560px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(11,29,42,.14));
}

@media (min-width: 981px) and (max-width: 1180px) {
  .contact-hero {
    grid-template-columns: minmax(540px, 1fr) minmax(360px, .72fr);
  }

  .contact-hero-art {
    min-width: 360px;
    margin-left: 18px;
  }

  .contact-hero-art img {
    width: min(104%, 500px);
  }
}

@media (max-width: 980px) {
  .studio-hero,
  .studio-grid-row,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .studio-hero {
    min-height: 860px;
  }

  .studio-hero-copy {
    width: 100%;
    min-height: 0;
    padding-bottom: 440px;
  }

  .studio-hero-copy,
  .contact-hero-copy {
    text-align: center;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
  }

  .studio-hero-copy .eyebrow,
  .studio-building .eyebrow,
  .studio-star-card .eyebrow,
  .contact-hero-copy .eyebrow {
    align-self: center;
  }

  .studio-hero-art {
    position: absolute;
    inset: 0;
    min-width: 0;
    margin-left: 0;
  }

  .studio-hero-art img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(338%, 1560px);
    height: auto;
  }

  .studio-star-card {
    min-height: 270px;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  }

  .studio-follow {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .studio-follow-art {
    display: none;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero-art {
    min-width: 0;
    min-height: 360px;
    margin-left: 0;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .studio-star-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "beane"
      "copy";
    justify-items: center;
    align-items: start;
    min-height: 620px;
    padding: 28px 36px 34px;
    text-align: center;
  }

  .studio-star-card > div {
    display: contents;
  }

  .studio-star-card .eyebrow {
    grid-area: badge;
    justify-self: start;
    align-self: start;
  }

  .studio-star-card > img {
    grid-area: beane;
    width: min(68%, 430px);
    max-height: 390px;
    margin: 18px auto 8px;
    align-self: center;
  }

  .studio-star-card p:not(.eyebrow) {
    grid-area: copy;
    max-width: 680px;
    margin: 12px auto 0;
    font-size: clamp(1.12rem, 2.25vw, 1.38rem);
    line-height: 1.45;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .studio-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .building-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .building-item {
    min-height: 0;
    padding: 22px 0 0;
  }

  .building-item:first-child {
    padding-top: 0;
  }

  .building-item + .building-item {
    border-left: 0;
    border-top: 2px solid rgba(11,29,42,.12);
  }

  .studio-star-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding-right: 24px;
  }

  .studio-star-card p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .studio-star-card > img {
    position: static;
    width: min(100%, 260px);
    margin: 22px auto 0;
  }

  .studio-follow {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-hero {
    padding: 28px 22px;
  }

  .contact-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.8vw, 3.05rem);
    line-height: 1;
    -webkit-text-stroke: 5px var(--navy);
  }

  .contact-hero-copy h1 span {
    white-space: normal;
  }

  .contact-email-chip,
  .contact-copy-button {
    font-size: 1.04rem;
  }
}

@media (max-width: 560px) {
  .newsletter-card {
    padding: 28px 22px 0;
    border-radius: 28px;
  }

  .newsletter-copy h2 {
    font-size: clamp(2.1rem, 10vw, 2.85rem);
  }

  .newsletter-modal-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .newsletter-modal-card::before,
  .newsletter-modal-card img {
    grid-column: auto;
    grid-row: auto;
  }

  .newsletter-modal-card img {
    width: 74px;
  }

  .studio-card,
  .contact-card {
    border-radius: 28px;
  }

  .studio-hero-copy,
  .studio-building,
  .studio-star-card,
  .studio-follow {
    padding: 24px;
  }

  .studio-hero-art {
    min-height: 260px;
  }

  .studio-follow h2 {
    line-height: 1.18;
  }

  .contact-hero-art {
    min-height: 280px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    -webkit-text-stroke: 4px var(--navy);
  }

  .contact-hero-copy p:not(.contact-note):not(.eyebrow),
  .contact-note span:last-child {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell,
  .footer {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .nav-card,
  .hero-panel,
  .bottom-card,
  .newsletter-card,
  .games-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .landing-nav {
    padding: 16px 12px;
    gap: 12px;
  }

  .brand,
  .landing-nav .brand {
    width: min(190px, 70vw);
  }

  .nav-links {
    gap: 4px;
    min-width: 0;
  }

  .nav-links a {
    padding: 8px 6px;
    font-size: clamp(.68rem, 3vw, .82rem);
  }

  .nav-star {
    width: 54px;
    height: 54px;
  }

  .hero-panel {
    min-height: clamp(570px, 168vw, 700px);
    overflow: hidden;
  }

  .hero-copy > .eyebrow {
    top: 16px;
    left: 16px;
    font-size: .62rem;
    padding: 7px 11px;
  }

  .game-logo {
    top: 64px;
    width: min(60%, 220px);
    max-width: 220px;
  }

  .hero-art {
    inset: 224px 0 174px;
  }

  .hero-mascot {
    width: min(50%, 195px);
    margin-top: 0;
  }

  .coming {
    bottom: 104px;
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    font-size: clamp(.66rem, 2.8vw, .84rem);
    white-space: normal;
    overflow-wrap: break-word;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    left: 10px;
    right: 10px;
    bottom: 30px;
    gap: 6px;
  }

  .store-button.store-image {
    flex: 1 1 0;
    min-width: 0;
  }

  .store-button.store-image img {
    width: 100%;
    max-width: min(112px, 38vw);
  }

  .hero-rays {
    background: repeating-conic-gradient(from -8deg at 50% 54%, rgba(255,255,255,.16) 0deg 10deg, transparent 10deg 24deg);
  }

  .hero-glare {
    inset: 8% -28% -22% -38%;
  }

  .sc2 { left: 71%; top: 80%; width: 42%; }
  .sc3 { left: 65%; top: 86%; width: 40%; }
  .sc9 { left: 70%; top: 76%; width: 30%; }
  .sc10 { left: 48%; top: 91%; width: 40%; }
  .island-lower-left { left: -2%; top: 68%; width: 23%; }
  .island-lower-right { left: 83%; top: 37%; width: 13%; }
  .island-center { left: 29%; top: 61%; width: 11%; }
  .sz2 { left: 25%; top: 36%; width: 24%; }
  .extra-cloud-1,
  .extra-cloud-2,
  .extra-cloud-3,
  .extra-cloud-9,
  .extra-cloud-13,
  .extra-cloud-14 {
    width: 40%;
  }

  .newsletter-card {
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  .newsletter-copy {
    width: 100%;
    min-width: 0;
  }

  .newsletter-copy h2 {
    width: 100%;
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
    font-size: clamp(1.5rem, 7.4vw, 2rem);
  }

  .newsletter-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: .9rem;
    text-wrap: balance;
  }

  .newsletter-form {
    width: 100%;
    max-width: 292px;
  }

  .newsletter-form input,
  .newsletter-form button {
    max-width: 100%;
  }

  .newsletter-art img {
    width: min(78%, 270px);
  }

  .journey-card {
    width: 100%;
    overflow: hidden;
    padding: 26px 16px;
    gap: 24px;
  }

  .journey-card .about-block,
  .journey-card .about-copy,
  .social-panel,
  .journey-card .social-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .journey-card .about-character {
    width: min(250px, 86%);
  }

  .follow-build-badge {
    width: min(190px, 72%);
  }

  .journey-card .about-block h2 {
    max-width: 292px;
    font-size: clamp(1.45rem, 7.2vw, 1.85rem);
    line-height: 1.16;
    text-wrap: balance;
  }

  .journey-card .about-block p {
    max-width: 292px;
    font-size: .92rem;
    line-height: 1.42;
    text-wrap: balance;
  }

  .social-panel {
    padding: 24px 0 0;
  }

  .join-heading {
    max-width: 100%;
    gap: 8px;
    font-size: clamp(1.05rem, 6vw, 1.25rem);
  }

  .journey-card .social-block {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-items: center;
  }

  .journey-card .social-card {
    width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .journey-card .social-icon-frame {
    width: min(62px, 100%);
    height: 50px;
  }

  .journey-card .social-card span:last-child {
    max-width: 100%;
    font-size: .78rem;
  }
}

@media (max-width: 760px) {
  .journey-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    overflow: hidden;
  }

  .journey-card .about-block {
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .journey-card .about-copy,
  .social-panel {
    width: min(100%, 320px);
    max-width: 320px;
    margin-inline: auto;
    padding-left: 0;
  }

  .journey-card .about-block h2,
  .journey-card .about-block p {
    max-width: 100%;
    margin-inline: auto;
  }

  .journey-card .social-block {
    width: min(100%, 286px);
    max-width: 286px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 4px;
    margin-inline: auto;
  }

  .journey-card .social-card {
    width: 100%;
    min-width: 0;
    max-width: 82px;
  }

  .journey-card .social-icon-frame {
    width: 68px;
    height: 56px;
    margin-inline: auto;
  }

  .journey-card .social-card span:last-child {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    height: clamp(560px, calc(100svh - 126px), 650px);
    min-height: 0;
  }

  .game-logo {
    top: 58px;
    width: min(70%, 218px);
    max-width: 218px;
  }

  .hero-art {
    inset: 202px 0 142px;
  }

  .hero-mascot {
    width: min(54%, 190px);
  }

  .coming {
    bottom: 92px;
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    font-size: clamp(.56rem, 2.45vw, .68rem);
    white-space: nowrap;
  }

  .cta-row {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(246px, calc(100% - 32px));
    transform: translateX(-50%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-button.store-image img {
    width: 100%;
    max-width: 112px;
  }

  .newsletter-card,
  .journey-card,
  .games-panel {
    max-width: 100%;
    overflow: hidden;
  }

  .newsletter-copy h2,
  .newsletter-form,
  .journey-card .about-copy,
  .social-panel {
    max-width: 270px;
  }

  .newsletter-copy h2 {
    font-size: clamp(1.38rem, 6.8vw, 1.78rem);
  }

  .newsletter-form {
    margin-inline: auto;
  }

  .journey-card .about-character {
    width: min(230px, 82%);
  }

  .journey-card .about-block h2 {
    font-size: clamp(1.3rem, 6.6vw, 1.68rem);
  }

  .journey-card .about-block p {
    font-size: .84rem;
  }

  .join-heading {
    font-size: clamp(.98rem, 5.2vw, 1.16rem);
  }

  .journey-card .social-block {
    width: min(100%, 258px);
    max-width: 258px;
  }

  .journey-card .social-icon-frame {
    width: 58px;
    height: 48px;
  }

  .journey-card .social-card span:last-child {
    font-size: .68rem;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .hero-mascot {
    width: min(92%, 460px);
  }

  .spark {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .s1 {
    top: 48%;
    left: 18%;
  }

  .s2 {
    top: 38%;
    right: 18%;
  }

  .s3 {
    right: 22%;
    bottom: 21%;
  }
}

@media (max-width: 560px) {
  .hero-mascot {
    width: min(84%, 310px);
  }

  .spark {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .s1 {
    top: 46%;
    left: 18%;
  }

  .s2 {
    top: 34%;
    right: 18%;
  }

  .s3 {
    right: 23%;
    bottom: 24%;
  }
}
