:root {
  --ink: #101b2d;
  --ink-soft: #243249;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --white: #ffffff;
  --mango: #ff861c;
  --mango-light: #ffb23f;
  --leaf: #159d35;
  --leaf-text: #0f7627;
  --leaf-soft: #eaf8df;
  --coral: #ff625f;
  --turquoise: #43d2c5;
  --yellow: #ffd947;
  --pink: #eb3a75;
  --line: rgba(16, 27, 45, 0.16);
  --shadow-sm: 0 12px 32px rgba(16, 27, 45, 0.11);
  --shadow: 0 24px 70px rgba(16, 27, 45, 0.16);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 42px;
  --section-width: 1200px;
  --font-rounded: "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-body: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-rounded);
  text-wrap: balance;
}

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

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--mango),
    var(--coral),
    var(--turquoise)
  );
  transition: width 0.08s linear;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--section-width));
  margin-inline: auto;
}

.desktop-only {
  display: block;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mango);
  box-shadow: 12px 0 0 var(--leaf);
  margin-right: 10px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light .eyebrow-dot {
  background: var(--coral);
  box-shadow: 12px 0 0 var(--turquoise);
}

svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1260px);
  transform: translateX(-50%);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 24px;
  padding: 8px 22px 8px 18px;
  border: 1px solid rgba(16, 27, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 10px 36px rgba(16, 27, 45, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-link {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 14px;
}

.header-logo {
  width: 174px;
}

.header-logo img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-family: var(--font-rounded);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mango);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.18s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 128px;
  background-color: var(--cream);
  background-image: radial-gradient(
    rgba(16, 27, 45, 0.1) 1.15px,
    transparent 1.15px
  );
  background-size: 24px 24px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 248, 233, 0.96) 0%,
    rgba(255, 248, 233, 0.77) 54%,
    rgba(255, 248, 233, 0.25) 100%
  );
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 108px);
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 5.8vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.03;
  text-wrap: nowrap;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title-line-accent {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 0.84em;
}

.hero-title-line-accent::after {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: 0.02em;
  left: 0.04em;
  height: 0.24em;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  line-height: 2;
}

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

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-rounded);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button-primary {
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 5px 0 var(--ink);
}

.button-coral {
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 5px 0 var(--white);
}

.hero-mini-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 36px;
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-mini-note strong {
  margin-left: 4px;
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(21, 157, 53, 0.45);
  animation: pulse 2s infinite;
}

.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 540px);
}

.hero-card {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  animation: float 5.5s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
}

.hero-card-shadow {
  position: absolute;
  z-index: 1;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  top: -34px;
  left: -45px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  align-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--turquoise);
  box-shadow: 0 8px 0 var(--ink);
  font-family: var(--font-rounded);
  line-height: 1.25;
  text-align: center;
  transform: rotate(-8deg);
}

.hero-sticker span {
  font-size: 0.77rem;
  font-weight: 800;
}

.hero-sticker strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-blob {
  position: absolute;
  z-index: 0;
  border-radius: 43% 57% 62% 38% / 49% 43% 57% 51%;
  filter: saturate(1.05);
}

.hero-blob-mango {
  top: -18%;
  right: -7%;
  width: min(44vw, 690px);
  height: min(70vw, 760px);
  background: rgba(255, 178, 63, 0.6);
  transform: rotate(18deg);
}

.hero-blob-leaf {
  right: 21%;
  bottom: -28%;
  width: 360px;
  height: 360px;
  background: rgba(67, 210, 197, 0.42);
  transform: rotate(-24deg);
}

.leaf {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 104px;
  border: 3px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
}

.leaf::after {
  position: absolute;
  top: 12px;
  left: 19px;
  width: 2px;
  height: 74px;
  background: var(--ink);
  content: "";
  transform: rotate(-16deg);
  transform-origin: bottom;
}

.leaf-one {
  top: 20%;
  right: 5%;
  transform: rotate(24deg);
}

.leaf-two {
  right: 36%;
  bottom: 12%;
  width: 34px;
  height: 78px;
  opacity: 0.86;
  transform: rotate(-54deg);
}

.hero-ticker {
  position: absolute;
  z-index: 6;
  right: -2%;
  bottom: 16px;
  left: -2%;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-1.1deg);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  font-family: var(--font-rounded);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  animation: ticker 26s linear infinite;
}

.ticker-track i {
  color: var(--coral);
  font-style: normal;
}

.game-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 116px;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
}

.game-section::before {
  position: absolute;
  inset: auto auto -180px -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 58, 117, 0.22),
    rgba(235, 58, 117, 0)
  );
  content: "";
}

.game-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 68px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.game-topline .eyebrow {
  margin: 10px 0 0;
}

.release-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--font-rounded);
  font-size: 0.8rem;
  font-weight: 900;
  transform: rotate(2deg);
}

.game-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.game-jp-label {
  margin-bottom: 20px;
  color: var(--turquoise);
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.game-title-block h2 {
  --game-title-inline-gap: 18px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--game-title-inline-gap);
  margin-bottom: 36px;
  font-size: clamp(3.5rem, 7.4vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.game-title-word {
  flex: 0 0 auto;
  white-space: nowrap;
}

.game-title-block h2.is-stacked {
  align-items: center;
  flex-direction: column;
  gap: clamp(8px, 0.12em, 14px);
  width: max-content;
  max-width: 100%;
}

.game-title-block h2.is-stacked .vs-mark {
  margin-left: 0;
}

.vs-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-style: normal;
  letter-spacing: -0.08em;
  transform: rotate(-7deg);
}

.game-tagline {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-rounded);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.7;
}

.game-description {
  padding-top: 12px;
}

.game-description > p {
  color: rgba(255, 255, 255, 0.73);
  line-height: 2.05;
}

.game-description .game-lead {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-rounded);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.game-lead em {
  position: relative;
  color: var(--coral);
  font-style: normal;
  white-space: nowrap;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 42px;
  padding: 0;
  list-style: none;
}

.game-tags li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.game-stats {
  display: grid;
  gap: 14px;
  margin-top: 88px;
  grid-template-columns: repeat(3, 1fr);
}

.game-stats > div {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.game-stats strong {
  color: var(--yellow);
  font-family: var(--font-rounded);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.game-stats span {
  margin-left: 8px;
  color: var(--turquoise);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.game-stats p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
}

.game-orbit {
  position: absolute;
  border: 1px solid rgba(67, 210, 197, 0.24);
  border-radius: 50%;
}

.game-orbit-one {
  top: 100px;
  right: -110px;
  width: 330px;
  height: 330px;
}

.game-orbit-two {
  top: 170px;
  right: -42px;
  width: 190px;
  height: 190px;
  border-color: rgba(255, 217, 71, 0.2);
}

.features-section {
  position: relative;
  padding: 140px 0;
  background-color: var(--paper);
  background-image: radial-gradient(
    rgba(16, 27, 45, 0.085) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
}

.feature-layout {
  display: grid;
  align-items: start;
  gap: clamp(54px, 6.5vw, 88px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.feature-intro {
  position: sticky;
  top: 138px;
}

.feature-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.feature-title-line {
  display: block;
  white-space: nowrap;
}

.feature-intro-copy {
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.95;
}

.feature-progress {
  display: flex;
  align-items: baseline;
  color: var(--ink-soft);
  font-family: var(--font-rounded);
}

.feature-progress strong {
  color: var(--active-accent, var(--coral));
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  transition: color 0.25s ease;
}

.feature-progress > span {
  margin-left: 9px;
  font-size: 0.92rem;
  font-weight: 900;
}

.feature-dots {
  display: flex;
  flex: 1;
  gap: 7px;
  margin-left: 24px;
}

.feature-dots i {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: rgba(16, 27, 45, 0.13);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.feature-dots i.is-active {
  background: var(--active-accent, var(--coral));
  transform: scaleY(1.45);
}

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

.feature-card {
  position: relative;
  padding: 14px 14px 24px;
  border: 2px solid var(--ink);
  border-radius: 31px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-0.45deg);
  transition: transform 0.3s ease;
}

.feature-card:nth-child(even) {
  transform: rotate(0.5deg);
}

.feature-card::before {
  position: absolute;
  z-index: -1;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--ink);
  border-radius: 31px;
  content: "";
}

.feature-card.accent-coral::before {
  background: var(--coral);
}

.feature-card.accent-yellow::before {
  background: var(--yellow);
}

.feature-card.accent-mint::before {
  background: var(--turquoise);
}

.feature-card.accent-pink::before {
  background: var(--pink);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--ink);
  cursor: zoom-in;
}

.image-button picture,
.image-button img {
  width: 100%;
}

.image-button img {
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.expand-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 4px 14px rgba(16, 27, 45, 0.15);
  font-size: 0.72rem;
  font-weight: 900;
}

.expand-label svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-caption {
  display: grid;
  align-items: center;
  gap: 4px 18px;
  padding: 24px 10px 0;
  grid-template-columns: auto 1fr;
}

.feature-caption > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-rounded);
  font-size: 0.79rem;
  font-weight: 900;
  grid-row: 1 / 3;
}

.feature-caption h3 {
  margin: 0;
  font-size: clamp(1.32rem, 2.3vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.feature-caption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0 128px;
  background: var(--cream);
}

.about-section::before,
.about-section::after {
  position: absolute;
  width: 58px;
  height: 148px;
  border: 3px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
  content: "";
}

.about-section::before {
  top: 10%;
  left: 5%;
  transform: rotate(-40deg);
}

.about-section::after {
  right: 4%;
  bottom: 17%;
  width: 42px;
  height: 108px;
  opacity: 0.82;
  transform: rotate(22deg);
}

.about-sun {
  position: absolute;
  top: 80px;
  left: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 217, 71, 0.52);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
}

.about-logo-card {
  position: relative;
  width: min(100%, 510px);
  padding: 54px 42px 40px;
  border: 3px solid var(--ink);
  border-radius: 40px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--mango);
  transform: rotate(-2.5deg);
}

.about-logo {
  width: 100%;
}

.about-logo-card p {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.about-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.about-copy > p {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  line-height: 2.15;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-values span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-rounded);
  font-size: 0.79rem;
  font-weight: 900;
}

.future-note {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 105px;
  padding: 40px 48px;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--leaf-soft);
  box-shadow: 8px 8px 0 var(--ink);
}

.future-note .eyebrow {
  margin-bottom: 10px;
  color: var(--leaf);
}

.future-note h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.future-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.sprout {
  position: relative;
  flex: 0 0 86px;
  width: 86px;
  height: 82px;
}

.sprout span {
  position: absolute;
  bottom: 0;
  left: 41px;
  width: 5px;
  height: 58px;
  border-radius: 4px;
  background: var(--ink);
}

.sprout i {
  position: absolute;
  z-index: 2;
  top: 8px;
  width: 44px;
  height: 34px;
  border: 3px solid var(--ink);
  background: var(--leaf);
}

.sprout i:first-child {
  left: 2px;
  border-radius: 100% 4px 100% 4px;
  transform: rotate(12deg);
}

.sprout i:nth-child(2) {
  right: 0;
  border-radius: 4px 100% 4px 100%;
  transform: rotate(-12deg);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: var(--leaf-soft);
}

.contact-section::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 217, 71, 0.58);
  content: "";
}

.contact-section::after {
  position: absolute;
  bottom: 120px;
  left: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(67, 210, 197, 0.32);
  content: "";
}

.contact-cta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.contact-heading {
  display: grid;
  align-items: end;
  gap: 30px 70px;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
}

.contact-heading .eyebrow {
  align-self: start;
  margin-bottom: 0;
  grid-column: 1 / -1;
}

.contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.contact-heading > p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
}

.contact-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
  padding: 20px 4px;
  border-top: 1px solid rgba(16, 27, 45, 0.18);
}

.contact-logo {
  width: 210px;
}

.contact-brand > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-brand a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-rounded);
  font-weight: 900;
}

.contact-brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-placeholder {
  display: grid;
  min-height: 440px;
  place-items: center;
  align-content: center;
  padding: 48px 24px;
  text-align: center;
}

.form-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  transform: rotate(-5deg);
}

.form-placeholder .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--leaf);
}

.form-placeholder h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.form-placeholder > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.google-form-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: var(--white);
}

.form-external-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-rounded);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(16, 27, 45, 0.14);
  color: var(--ink-soft);
  background: var(--leaf-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.lightbox {
  width: min(calc(100% - 40px), 1320px);
  max-width: none;
  max-height: calc(100dvh - 40px);
  margin: auto;
  overflow: visible;
  padding: 12px;
  border: 2px solid var(--white);
  border-radius: 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
  background: rgba(8, 14, 25, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 130px);
  border-radius: 14px;
  object-fit: contain;
}

.lightbox p {
  margin: 10px 10px 2px;
  font-family: var(--font-rounded);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: -20px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.js-ready [data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(24px);
}

.js-ready [data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 157, 53, 0.48);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(21, 157, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 157, 53, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(1.2deg) translateY(0);
  }
  50% {
    transform: rotate(0.7deg) translateY(-7px);
  }
}

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

@media (hover: hover) {
  .main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

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

  .button-primary:hover {
    box-shadow: 0 7px 0 var(--ink);
  }

  .button-coral:hover {
    box-shadow: 0 7px 0 var(--white);
  }

  .button:hover svg {
    transform: translateX(4px);
  }

  .image-button:hover img {
    transform: scale(1.012);
  }

  .feature-card:hover {
    transform: rotate(0deg) translateY(-4px);
  }

  .form-external-link:hover,
  .contact-brand a:hover,
  .footer-links a:hover {
    color: var(--leaf-text);
    border-color: currentColor;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.79rem;
  }

  .hero-grid {
    gap: 60px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

  .hero h1 {
    font-size: clamp(3.55rem, 5.8vw, 5.25rem);
  }

  .hero-sticker {
    left: -30px;
    width: 110px;
    height: 110px;
  }

  .game-grid {
    gap: 64px;
  }

  .about-grid {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    width: fit-content;
    max-width: calc(100% - 20px);
    transform: none;
  }

  .header-inner {
    min-height: 66px;
    padding: 6px 16px 6px 14px;
  }

  .header-logo {
    width: 154px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 148px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 248, 233, 0.96) 0%,
      rgba(255, 248, 233, 0.82) 74%,
      rgba(255, 248, 233, 0.45) 100%
    );
  }

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

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    justify-self: center;
    width: min(78vw, 520px);
    margin-right: 20px;
  }

  .hero-blob-mango {
    top: 44%;
    right: -28%;
    width: 85vw;
    height: 82vw;
  }

  .hero-blob-leaf {
    right: auto;
    bottom: -4%;
    left: -25%;
    width: 54vw;
    height: 54vw;
  }

  .leaf-one {
    top: 50%;
  }

  .leaf-two {
    right: auto;
    bottom: 5%;
    left: 7%;
  }

  .game-section,
  .features-section,
  .about-section {
    padding-top: 110px;
  }

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

  .game-title-block {
    max-width: 700px;
  }

  .game-title-block h2 {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .game-description {
    max-width: 690px;
  }

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

  .feature-intro {
    position: static;
    max-width: 680px;
  }

  .feature-intro-copy {
    margin-bottom: 30px;
  }

  .feature-list {
    gap: 70px;
  }

  .feature-progress {
    max-width: 420px;
  }

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

  .about-visual {
    width: min(100%, 590px);
    min-height: 500px;
  }

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

  .contact-heading {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .contact-heading .eyebrow {
    grid-column: auto;
  }

  .contact-heading h2 {
    font-size: clamp(3.8rem, 10vw, 6.2rem);
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(calc(100% - 32px), var(--section-width));
  }

  .desktop-only {
    display: none;
  }

  .header-logo {
    width: 136px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 11.5vw, 4.5rem);
    line-height: 1.08;
  }

  .hero-lead {
    margin-bottom: 30px;
    line-height: 1.9;
  }

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

  .button {
    width: 100%;
  }

  .hero-mini-note {
    margin-top: 30px;
  }

  .hero-visual {
    width: calc(100% - 12px);
    margin-right: 12px;
  }

  .hero-card,
  .hero-card-shadow {
    border-radius: 24px;
  }

  .hero-card-shadow {
    inset: 12px -12px -12px 12px;
  }

  .hero-sticker {
    top: -44px;
    left: -12px;
    width: 94px;
    height: 94px;
    box-shadow: 0 6px 0 var(--ink);
  }

  .hero-sticker strong {
    font-size: 0.94rem;
  }

  .ticker-track {
    gap: 22px;
    font-size: 0.73rem;
  }

  .game-section {
    padding-bottom: 92px;
  }

  .game-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 52px;
  }

  .game-title-block h2 {
    --game-title-inline-gap: 12px;
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .vs-mark {
    width: 54px;
    height: 54px;
    font-size: 1.22rem;
  }

  .game-description .game-lead {
    font-size: 1.6rem;
  }

  .game-stats {
    gap: 10px;
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .game-stats > div {
    display: grid;
    min-height: 0;
    align-items: center;
    padding: 20px;
    grid-template-columns: auto auto 1fr;
  }

  .game-stats strong {
    font-size: 2.7rem;
  }

  .game-stats p {
    margin: 0 0 0 auto;
    text-align: right;
  }

  .features-section {
    padding-bottom: 112px;
  }

  .feature-intro h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .feature-list {
    gap: 52px;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    padding: 8px 8px 18px;
    border-radius: 22px;
    transform: none;
  }

  .feature-card::before {
    inset: 10px -10px -10px 10px;
    border-radius: 22px;
  }

  .image-button {
    border-radius: 15px;
  }

  .expand-label {
    right: 8px;
    bottom: 8px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.65rem;
  }

  .feature-caption {
    gap: 5px 12px;
    padding: 18px 6px 0;
  }

  .feature-caption > span {
    width: 40px;
    height: 40px;
  }

  .feature-caption h3 {
    font-size: 1.3rem;
  }

  .feature-caption p {
    font-size: 0.76rem;
  }

  .about-section {
    padding-bottom: 100px;
  }

  .about-visual {
    min-height: auto;
  }

  .about-logo-card {
    padding: 42px 26px 32px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--mango);
  }

  .about-copy h2 {
    font-size: clamp(2.55rem, 11.5vw, 4rem);
  }

  .future-note {
    align-items: flex-start;
    gap: 16px;
    margin-top: 74px;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .sprout {
    flex-basis: 58px;
    width: 58px;
    height: 60px;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .future-note h3 {
    font-size: 1.55rem;
  }

  .contact-section {
    padding: 72px 0 64px;
  }

  .contact-cta {
    margin-bottom: 28px;
  }

  .contact-heading {
    margin-bottom: 48px;
  }

  .contact-heading h2 {
    font-size: clamp(3.45rem, 15vw, 5rem);
  }

  .contact-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-logo {
    width: 186px;
  }

  .contact-brand > div {
    width: 100%;
    justify-content: space-between;
  }

  .form-shell {
    border-radius: 22px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .form-placeholder {
    min-height: 390px;
    padding: 38px 18px;
  }

  .form-icon {
    width: 70px;
    height: 70px;
  }

  .google-form-frame {
    min-height: 1180px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .lightbox {
    width: calc(100% - 20px);
    padding: 7px;
    border-radius: 17px;
  }

  .lightbox-close {
    top: -13px;
    right: -4px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .header-logo {
    width: 122px;
  }

  .hero h1 {
    font-size: 11.3vw;
  }

  .hero-sticker {
    left: -7px;
    width: 82px;
    height: 82px;
  }

  .hero-sticker span {
    font-size: 0.67rem;
  }

  .hero-sticker strong {
    font-size: 0.84rem;
  }

  .game-title-block h2 {
    font-size: 3.12rem;
  }

  .game-stats p {
    font-size: 0.73rem;
  }

  .feature-caption p {
    grid-column: 1 / -1;
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready [data-reveal].reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* Language switcher */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 18px;
  flex-shrink: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-button {
  min-width: 27px;
  padding: 4px 3px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.language-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .language-switcher {
    margin-left: 8px;
  }

  .language-button {
    min-width: 25px;
    padding-inline: 2px;
  }
}

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

  .language-switcher {
    margin-left: auto;
  }
}
