:root {
  --ink: #10242d;
  --muted: #526973;
  --paper: #f4fcfd;
  --white: #ffffff;
  --cyan: #08c9e8;
  --cyan-deep: #087f91;
  --cyan-soft: #d9f8fc;
  --orange: #ff7a00;
  --orange-soft: #fff0df;
  --navy: #0d242d;
  --line: rgba(16, 36, 45, 0.14);
  --shadow: 0 18px 50px rgba(15, 57, 69, 0.12);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 4%, rgba(8, 201, 232, 0.14), transparent 24rem),
    radial-gradient(circle at 0% 36%, rgba(255, 122, 0, 0.09), transparent 22rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 252, 253, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 32px), var(--content));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 1.26rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(8, 201, 232, 0.24);
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  color: #3a515b;
  font-size: 0.89rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 57, 69, 0.08);
}

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

.page-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: clamp(76px, 10vw, 140px) 0 clamp(56px, 8vw, 110px);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(8, 201, 232, 0.28);
  border-radius: 50%;
  content: "";
}

.page-kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-kicker::after,
.section-kicker::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.page-title,
.section-title,
.hero-title {
  max-width: 920px;
  margin: 0;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.page-title {
  font-size: clamp(2.5rem, 7vw, 5.9rem);
}

.section-title {
  font-size: clamp(2.05rem, 5vw, 4.2rem);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7.2rem);
  overflow-wrap: anywhere;
}

.hero-home .hero-title {
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
}

.lead,
.section-lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  color: var(--muted);
  font-weight: 750;
}

.breadcrumb a {
  color: var(--cyan-deep);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.section {
  padding: clamp(70px, 10vw, 132px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 88px) 0;
}

.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.button {
  padding: 13px 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(13, 36, 45, 0.18);
}

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

.button-orange {
  color: var(--ink);
  background: var(--orange);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
}

.hero-home {
  padding: clamp(54px, 8vw, 108px) 0 clamp(72px, 10vw, 132px);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(34px, 6vw, 86px);
}

.hero-copy .lead {
  max-width: 650px;
}

.hero-title span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.hero-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-preview {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(8, 201, 232, 0.34);
  border-radius: 48px;
  background:
    linear-gradient(rgba(8, 201, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 201, 232, 0.07) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 28px 28px;
  box-shadow: var(--shadow);
}

.app-preview::after {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  opacity: 0.92;
}

.phone-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 20px 40px rgba(13, 36, 45, 0.26);
}

.recruitment-card {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 30px;
  color: var(--ink);
  background: #f8fafc;
}

.recruitment-head {
  display: grid;
  align-items: start;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
}

.recruitment-icon,
.game-tile {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--orange-soft);
  font-size: 1.65rem;
}

.recruitment-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #ffe7d4;
  font-size: 1.8rem;
}

.recruitment-heading {
  min-width: 0;
}

.recruitment-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.recruitment-meta strong {
  color: #4f6b9c;
}

.recruitment-title {
  margin: 4px 0 0;
  font-size: clamp(1.2rem, 2.7vw, 1.65rem);
  font-weight: 950;
  line-height: 1.28;
}

.audience-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef0f3;
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.recruitment-body {
  display: grid;
  align-items: center;
  margin-top: 26px;
  grid-template-columns: minmax(130px, 0.8fr) minmax(190px, 1.4fr) auto;
  gap: 16px;
}

.host-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #55ce92;
  border-radius: 50%;
  color: var(--white);
  background: #6a78b3;
  font-weight: 950;
}

.host-profile small,
.host-profile strong {
  display: block;
}

.host-profile small {
  color: var(--muted);
  font-size: 0.72rem;
}

.host-profile strong {
  margin-top: 1px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tags span {
  padding: 5px 9px;
  border: 1px solid #f1a25c;
  border-radius: 999px;
  background: #fff5eb;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.capacity {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  gap: 6px;
  white-space: nowrap;
}

.elapsed-time {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.flow-strip {
  display: grid;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  color: var(--ink);
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-strip span {
  display: block;
  padding: 17px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 850;
}

.flow-strip span:last-child {
  border-right: 0;
}

.flow-strip b {
  margin-right: 7px;
  color: var(--orange);
}

.directory-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.directory-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.directory-card::after {
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(8, 201, 232, 0.26);
  border-radius: 50%;
  content: "";
}

.directory-index {
  color: var(--cyan-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.directory-card h3 {
  margin: 44px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.directory-card p {
  margin: 0 0 30px;
  color: var(--muted);
}

.status-grid {
  display: grid;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-item {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.status-item:last-child {
  border-right: 0;
}

.status-item small,
.status-item strong,
.status-item span {
  display: block;
}

.status-item small {
  color: var(--cyan-deep);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.status-item strong {
  margin-top: 12px;
  font-size: 1.55rem;
}

.status-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.status-item span {
  margin-top: 6px;
  color: var(--muted);
}

.dark-callout {
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 22px 50px rgba(13, 36, 45, 0.22);
}

.dark-callout h2,
.dark-callout h3 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.24;
  text-wrap: balance;
}

.dark-callout p {
  max-width: 760px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.feature-grid,
.step-grid,
.info-grid,
.support-grid {
  display: grid;
  margin-top: 42px;
  gap: 20px;
}

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

.feature-card,
.info-card,
.support-card,
.step-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card:nth-child(1) {
  color: var(--white);
  background: var(--cyan-deep);
}

.feature-card:nth-child(1) p,
.feature-card:nth-child(1) .card-label {
  color: rgba(255, 255, 255, 0.74);
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 20px;
  background: var(--cyan-soft);
  font-size: 1.8rem;
}

.feature-card h3,
.info-card h3,
.support-card h3,
.step-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.3;
}

.feature-card p,
.info-card p,
.support-card p,
.step-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-deep);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.journey-columns {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.journey {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.journey h3 {
  margin: 0 0 22px;
  font-size: 1.7rem;
}

.journey ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.journey li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.journey li b {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan-deep);
  font-size: 0.78rem;
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 78px);
}

.story-art {
  position: relative;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 25%, #ffcc4b, transparent 12rem),
    linear-gradient(145deg, #ff6a6a, #ff9e43);
  box-shadow: var(--shadow);
}

.story-art img {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 96%;
  filter: drop-shadow(0 18px 26px rgba(13, 36, 45, 0.24));
  transform: rotate(-8deg);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.game-carousel-shell {
  margin-top: 44px;
}

.game-carousel {
  display: flex;
  padding: 12px 3px 28px;
  overflow-x: auto;
  gap: 18px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-deep) transparent;
}

.game-carousel:active {
  cursor: grabbing;
}

.game-card {
  flex: 0 0 min(300px, 82vw);
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.game-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.game-card .game-tile {
  width: 82px;
  height: 82px;
  margin-bottom: 34px;
  border-radius: 25px;
  font-size: 2.2rem;
}

.game-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.game-card strong {
  display: block;
  min-height: 3.2em;
  font-size: 1.35rem;
  line-height: 1.35;
}

.game-card small {
  display: block;
  margin-top: 22px;
}

.game-card p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.game-card small {
  color: var(--cyan-deep);
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  gap: 16px;
}

.carousel-buttons {
  display: flex;
  gap: 8px;
}

.round-button {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  cursor: pointer;
}

.showcase-stack {
  display: grid;
  margin-top: 50px;
  gap: 22px;
}

.showcase-panel {
  display: grid;
  align-items: center;
  min-height: 300px;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  grid-template-columns: 0.38fr 0.62fr;
  gap: 30px;
  box-shadow: var(--shadow);
}

.showcase-panel:nth-child(odd) {
  color: var(--white);
  background: var(--navy);
}

.showcase-panel:nth-child(even) {
  background: var(--orange-soft);
}

.showcase-number {
  color: var(--cyan);
  font-size: clamp(4.2rem, 10vw, 8rem);
  font-weight: 950;
  line-height: 1;
}

.showcase-panel:nth-child(even) .showcase-number {
  color: var(--orange);
}

.showcase-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.22;
  text-wrap: balance;
}

.showcase-panel p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.showcase-panel:nth-child(odd) p {
  color: rgba(255, 255, 255, 0.7);
}

.candidate-cloud {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 10px;
}

.candidate-cloud span,
.chip {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.candidate-cloud small {
  display: block;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
}

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

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

.support-card .card-icon,
.info-card .card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--cyan-soft);
  font-size: 1.45rem;
}

.notice {
  padding: 22px 24px;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  color: #59421e;
  background: var(--orange-soft);
}

.mail-form {
  display: grid;
  max-width: 820px;
  margin-top: 34px;
  padding: clamp(26px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 20px;
}

.mail-form > label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.mail-form > label input,
.mail-form > label select,
.mail-form > label textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fcfd;
}

.mail-form > label textarea {
  resize: vertical;
}

.related-panel {
  padding: clamp(30px, 5vw, 56px);
}

.related-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.2;
}

.related-panel p {
  max-width: 760px;
  margin: 18px 0 26px;
  color: var(--muted);
}

.page-end {
  padding-top: 40px;
}

.page-end .dark-callout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
}

.dark-callout .section-kicker {
  color: var(--cyan);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fcfd;
}

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

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-page {
  padding: clamp(52px, 8vw, 94px) 0 120px;
}

.legal-sheet {
  max-width: 900px;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-sheet h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.2;
  text-wrap: balance;
}

.legal-sheet h2 {
  margin-top: 46px;
  font-size: 1.5rem;
}

.legal-sheet h3 {
  margin-top: 30px;
}

.legal-sheet p,
.legal-sheet li {
  color: #405860;
}

.legal-sheet a {
  color: var(--cyan-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  margin-top: clamp(70px, 10vw, 130px);
  padding: 70px 0 34px;
  color: var(--white);
  background: var(--navy);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 50px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 2rem;
  font-weight: 950;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}

.footer-tagline {
  margin: 24px 0 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-disclaimer {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  gap: 20px;
}

/* Optional display-mode switch: discreet in the desktop footer. */
.display-mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.display-mode-switch__label {
  position: relative;
  padding: 0 7px 0 9px;
  color: rgba(255, 255, 255, .38);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.display-mode-switch__label::after {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-left: 12px;
  background: rgba(255, 255, 255, .18);
  content: "";
  vertical-align: middle;
}

.display-mode-switch button {
  min-width: 54px;
  min-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .5);
  background: transparent;
  font: inherit;
  font-size: .68rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.display-mode-switch button[aria-pressed="true"] {
  color: #082b34;
  background: rgba(255, 255, 255, .92);
}

.display-mode-switch button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.site-nav .display-mode-switch {
  display: none;
}

.footer-bottom .display-mode-switch {
  flex: 0 0 auto;
  margin-left: auto;
}

.utility-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.utility-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-weight: 850;
}

@media (max-width: 980px) {
  .header-inner {
    display: block;
    padding: 12px 0 10px;
  }

  .brand {
    margin-bottom: 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .site-nav {
    justify-content: flex-start;
    margin: 0 -4px;
    padding-bottom: 2px;
  }

  .site-nav a {
    padding: 8px 11px;
  }

  .hero-grid,
  .story-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .app-preview {
    max-width: 680px;
  }

  .feature-grid,
  .info-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .story-art {
    min-height: 360px;
  }

  .page-end .dark-callout {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .brand span {
    font-size: 1.04rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .page-title,
  .section-title,
  .hero-title {
    letter-spacing: -0.035em;
  }

  .page-title {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .hero-home .hero-title {
    font-size: clamp(2.8rem, 11.5vw, 3.65rem);
  }

  .lead,
  .section-lead {
    line-height: 1.86;
  }

  .app-preview {
    padding: 13px;
    border-radius: 34px;
  }

  .phone-card {
    padding: 20px;
    border-radius: 28px;
  }

  .recruitment-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .recruitment-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 1.45rem;
  }

  .audience-pill {
    grid-column: 2;
    width: fit-content;
  }

  .recruitment-body {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .profile-tags {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .flow-strip span:nth-child(2) {
    border-right: 0;
  }

  .flow-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .directory-grid,
  .journey-columns,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .directory-card {
    min-height: 265px;
  }

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

  .status-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-item:last-child {
    border-bottom: 0;
  }

  .story-art {
    min-height: 310px;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .showcase-number {
    font-size: 4rem;
  }

  .carousel-controls {
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* 2026 visual refresh — content stays intact, presentation becomes more tangible. */
.home-v3 {
  overflow: clip;
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 78% 18%, rgba(8, 201, 232, 0.25), transparent 25rem),
    radial-gradient(circle at 90% 85%, rgba(255, 122, 0, 0.22), transparent 22rem);
}

.home-hero::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: min(850px, calc(100vh - 82px));
  padding: clamp(74px, 9vw, 124px) 0 clamp(82px, 10vw, 140px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(44px, 7vw, 92px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  gap: 9px;
}

.hero-badges > span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-badges .hero-status {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #55e995;
  box-shadow: 0 0 0 5px rgba(85, 233, 149, 0.12);
}

.home-hero .page-kicker {
  color: var(--cyan);
}

.home-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.45rem, 6.1vw, 6.2rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.home-hero-copy h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--cyan);
  font-style: normal;
}

.home-hero-copy h1 > span {
  display: block;
  white-space: nowrap;
}

.home-hero-copy h1 > span:nth-child(2) {
  font-size: 0.92em;
}

.home-hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.95;
}

.button-glass,
.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.home-hero .hero-note {
  color: rgba(255, 255, 255, 0.5);
}

.hero-product {
  position: relative;
  padding: 58px 26px 28px;
}

.hero-product::before {
  position: absolute;
  inset: 20px -10px 0;
  border: 1px solid rgba(8, 201, 232, 0.28);
  border-radius: 54px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 30px 30px;
  content: "";
  transform: rotate(2deg);
}

.product-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-label span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.product-label strong {
  font-size: 0.86rem;
}

.app-shell {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background: #081a21;
  box-shadow: 0 38px 70px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
}

.app-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.app-shell-top strong {
  color: var(--white);
  letter-spacing: 0.14em;
}

.recruitment-card-featured {
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(16, 36, 45, 0.08);
}

.app-flow {
  display: grid;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--ink);
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}

.app-flow span {
  padding: 13px 8px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 850;
}

.app-flow span:last-child {
  border-right: 0;
}

.app-flow b {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
}

.floating-message {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 2px;
  display: flex;
  align-items: center;
  min-width: 240px;
  padding: 13px 16px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  gap: 10px;
  transform: rotate(2deg);
}

.floating-message > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan-deep);
  font-weight: 950;
}

.floating-message p,
.floating-message strong,
.floating-message small {
  display: block;
  margin: 0;
}

.floating-message small {
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.16);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: hero-marquee-scroll 24s linear infinite;
  will-change: transform;
}

.hero-marquee-track span {
  flex: none;
  padding: 13px 0.65em 13px 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  word-spacing: 0.65em;
}

.hero-marquee i {
  color: var(--orange);
  font-style: normal;
}

@keyframes hero-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation-play-state: paused;
  }
}

.section-heading-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 6vw, 80px);
}

.section-heading-row > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.experience-section {
  background: #f8f5ef;
}

.experience-title span {
  display: block;
  white-space: nowrap;
}

.experience-title span:last-child {
  font-size: 0.78em;
}

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

.experience-card {
  position: relative;
  min-height: 460px;
  padding: clamp(28px, 3.4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(15, 57, 69, 0.09);
}

.experience-card:nth-child(2) {
  color: var(--white);
  background: var(--cyan-deep);
}

.experience-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-card:nth-child(3) {
  background: var(--orange-soft);
}

.experience-no {
  color: var(--cyan-deep);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.experience-card:nth-child(2) .experience-no {
  color: var(--cyan);
}

.experience-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-top: 52px;
  place-items: center;
  border-radius: 24px;
  color: var(--ink);
  background: var(--cyan-soft);
  font-size: 2rem;
  font-weight: 950;
}

.experience-card:nth-child(2) .experience-icon {
  background: var(--white);
}

.experience-card:nth-child(3) .experience-icon {
  background: var(--white);
}

.experience-card h3 {
  margin: 28px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.experience-card > p {
  margin: 16px 0 0;
  color: var(--muted);
}

.mini-filter,
.mini-chat,
.mini-call {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
}

.mini-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-filter span,
.sample-tags span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 850;
}

.mini-chat {
  display: grid;
  gap: 8px;
}

.mini-chat span {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 15px 15px 15px 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.mini-chat span:last-child {
  justify-self: end;
  border-radius: 15px 15px 4px;
  background: var(--cyan-soft);
}

.mini-call {
  display: flex;
  align-items: center;
}

.mini-call i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-right: -8px;
  place-items: center;
  border: 2px solid var(--orange-soft);
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan-deep);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 950;
}

.mini-call i:nth-child(2) { background: #6a78b3; }
.mini-call i:nth-child(3) { background: var(--orange); }

.mini-call strong {
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.72rem;
}

.wide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 52px;
  padding: 23px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 20px;
  font-weight: 900;
}

.wide-link small {
  display: block;
  color: var(--cyan-deep);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.wide-link b {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.recruitment-showcase {
  background: var(--white);
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.recruitment-rail {
  display: flex;
  margin-top: 44px;
  padding: 8px 4px 26px;
  overflow-x: auto;
  gap: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cyan-deep) transparent;
}

.sample-party {
  flex: 0 0 min(420px, 86vw);
  min-height: 340px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fbfcfd;
  box-shadow: 0 18px 45px rgba(15, 57, 69, 0.1);
  scroll-snap-align: start;
}

.sample-orange { border-top: 6px solid #f2a05b; }
.sample-green { border-top: 6px solid #7dbf80; }
.sample-blue { border-top: 6px solid #78a8e8; }

.sample-game {
  display: grid;
  align-items: start;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
}

.sample-game > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--orange-soft);
  font-size: 1.45rem;
}

.sample-game p,
.sample-host p {
  margin: 0;
}

.sample-game small,
.sample-game strong,
.sample-host small,
.sample-host strong {
  display: block;
}

.sample-game small,
.sample-host small {
  color: var(--muted);
  font-size: 0.68rem;
}

.sample-game strong {
  margin-top: 3px;
  line-height: 1.35;
}

.sample-game em {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: #edf0f2;
  font-size: 0.65rem;
  font-style: normal;
  white-space: nowrap;
}

.sample-host {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 10px;
}

.sample-host i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 4px solid #55ce92;
  border-radius: 50%;
  color: var(--white);
  background: #6a78b3;
  font-style: normal;
  font-weight: 950;
}

.sample-host b {
  margin-left: auto;
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 6px;
}

.sample-party time {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.72rem;
}

.rail-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

.rail-note a {
  color: var(--cyan-deep);
  font-weight: 900;
}

.games-home-section {
  color: var(--ink);
  background: var(--orange-soft);
}

.games-home-title span {
  display: block;
  font-size: 0.8em;
  white-space: nowrap;
}

.games-home-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
  gap: clamp(44px, 8vw, 110px);
}

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

.game-orbit a {
  display: grid;
  min-height: 180px;
  padding: 20px;
  place-content: center;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(110, 62, 17, 0.08);
  text-align: center;
  gap: 12px;
}

.game-orbit a:hover {
  transform: translateY(-5px) rotate(-1deg);
}

.game-orbit span {
  font-size: 2.45rem;
}

.game-orbit strong {
  font-size: 0.78rem;
}

.explore-section {
  background: #f8f5ef;
}

.home-directory {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.home-directory > a {
  display: grid;
  align-items: center;
  min-height: 190px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px minmax(0, 1fr) 54px;
  gap: 20px;
}

.home-directory > a:hover {
  padding-right: 6px;
  padding-left: 26px;
  background: rgba(255, 255, 255, 0.68);
}

.home-directory > a > span {
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 950;
}

.home-directory small {
  color: var(--cyan-deep);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.home-directory h3 {
  margin: 5px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.home-directory p {
  margin: 10px 0 0;
  color: var(--muted);
}

.home-directory b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.story-home-section {
  color: var(--white);
  background: var(--cyan-deep);
}

.story-home-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 100px);
}

.story-home-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 42px;
  background: var(--white);
}

.story-home-art::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(15, 57, 69, 0.14);
  border-radius: 30px;
  content: "";
}

.story-home-art img {
  position: absolute;
  inset: 56px 24px 18px;
  width: calc(100% - 48px);
  height: calc(100% - 74px);
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(15, 57, 69, 0.12));
}

.story-home-art span {
  position: absolute;
  z-index: 1;
  top: 46px;
  left: 46px;
  color: var(--cyan-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.story-home-section .section-kicker {
  color: var(--cyan);
}

.story-home-title span {
  display: block;
  white-space: nowrap;
}

.story-home-title span:first-child {
  font-size: 0.68em;
}

.story-home-title span:last-child {
  font-size: 0.82em;
}

.story-home-section .section-intro {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.95;
}

.wide-link-light {
  color: var(--ink);
}

.final-cta-section {
  background: var(--navy);
}

.final-cta {
  display: grid;
  align-items: end;
  padding: clamp(38px, 7vw, 80px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px;
  color: var(--white);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  background:
    radial-gradient(circle at 85% 10%, rgba(8, 201, 232, 0.24), transparent 18rem),
    rgba(255, 255, 255, 0.04);
}

.final-cta .section-kicker {
  color: var(--cyan);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.final-cta-title span {
  display: block;
  white-space: nowrap;
}

.final-cta-title span:nth-child(2) {
  font-size: 0.82em;
}

.final-cta-title span:last-child {
  font-size: 0.74em;
}

.final-cta p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.final-cta-actions {
  display: grid;
  min-width: 230px;
  gap: 10px;
}

/* Bring the same visual language to the information pages. */
.page-main:not(.home-v3) .page-hero {
  margin: 22px;
  padding-right: 20px;
  padding-left: 20px;
  overflow: hidden;
  border: 1px solid rgba(8, 201, 232, 0.16);
  border-radius: 48px;
  background:
    radial-gradient(circle at 88% 18%, rgba(8, 201, 232, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(235, 250, 252, 0.68));
}

.page-main:not(.home-v3) .page-title {
  color: var(--cyan-deep);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-main:not(.home-v3) .page-hero .hero-title {
  margin-top: 34px;
  font-size: clamp(2.6rem, 5.7vw, 5.2rem);
}

.feature-card,
.info-card,
.support-card,
.step-card,
.directory-card,
.game-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.info-card:hover,
.support-card:hover,
.step-card:hover {
  border-color: rgba(8, 127, 145, 0.3);
  box-shadow: 0 24px 55px rgba(15, 57, 69, 0.15);
  transform: translateY(-4px);
}

@media (max-width: 1040px) {
  .home-hero-grid,
  .games-home-grid,
  .story-home-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    padding-top: 80px;
  }

  .home-hero-copy {
    max-width: 820px;
  }

  .hero-product {
    max-width: 720px;
  }

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

  .experience-card:nth-child(2) {
    transform: none;
  }

  .experience-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 400px;
  }

  .game-orbit {
    max-width: 760px;
  }

  .final-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-hero-grid {
    min-height: 0;
    padding: 62px 0 112px;
  }

  .hero-badges {
    margin-bottom: 26px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.8rem);
  }

  .home-hero-copy h1 em {
    margin-top: 0.2em;
  }

  .home-hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-product {
    padding: 48px 0 28px;
  }

  .hero-product::before {
    right: -12px;
    left: -12px;
    border-radius: 38px;
  }

  .app-shell {
    padding: 12px;
    border-radius: 32px;
  }

  .floating-message {
    right: -4px;
    bottom: -14px;
    min-width: 215px;
  }

  .section-heading-row,
  .experience-grid,
  .games-home-grid,
  .story-home-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row > p {
    font-size: 0.96rem;
  }

  .experience-card,
  .experience-card:nth-child(3) {
    min-height: 420px;
  }

  .experience-card:nth-child(3) {
    grid-column: auto;
  }

  .wide-link {
    padding: 18px;
  }

  .rail-note {
    display: grid;
    gap: 10px;
  }

  .game-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-orbit a {
    min-height: 150px;
    padding: 14px;
  }

  .home-directory > a {
    min-height: 0;
    padding: 24px 4px;
    grid-template-columns: 54px minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .home-directory > a > span {
    font-size: 1.65rem;
  }

  .home-directory p {
    font-size: 0.88rem;
  }

  .home-directory b {
    width: 38px;
    height: 38px;
  }

  .story-home-art {
    min-height: 370px;
  }

  .story-home-art span {
    top: 34px;
    left: 34px;
  }

  .final-cta {
    padding: 32px 24px;
    border-radius: 32px;
  }

  .final-cta h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .final-cta-actions {
    min-width: 0;
  }

  .page-main:not(.home-v3) .page-hero {
    margin: 12px;
    padding-right: 6px;
    padding-left: 6px;
    border-radius: 32px;
  }
}

/* Rich visual system for the six main information pages. */
.subpage-v3 {
  --sub-accent: var(--cyan);
  --sub-accent-deep: var(--cyan-deep);
  --sub-soft: var(--cyan-soft);
  background: #f8f5ef;
}

.subpage-games,
.subpage-guide {
  --sub-accent: var(--orange);
  --sub-accent-deep: #d65f00;
  --sub-soft: var(--orange-soft);
}

.subpage-operator {
  --sub-accent: #ff6d72;
  --sub-accent-deep: #d94b55;
  --sub-soft: #fff0ed;
}

.subpage-v3 .subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 110px));
  margin: 22px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 88% 16%, rgba(8, 201, 232, 0.26), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

.subpage-games .subpage-hero,
.subpage-guide .subpage-hero {
  background-image:
    radial-gradient(circle at 88% 16%, rgba(255, 124, 0, 0.24), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

.subpage-operator .subpage-hero {
  background-image:
    radial-gradient(circle at 88% 16%, rgba(255, 109, 114, 0.24), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

.subpage-v3 .subpage-hero::before {
  z-index: -1;
  top: -16rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: clamp(68px, 8vw, 108px) 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(44px, 7vw, 94px);
}

.subpage-hero-copy {
  min-width: 0;
}

.subpage-v3 .subpage-hero .page-kicker {
  color: var(--sub-accent);
}

.subpage-v3 .subpage-hero .page-title {
  color: var(--sub-accent);
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  letter-spacing: -0.035em;
}

.subpage-beta .subpage-hero .page-title,
.subpage-guide .subpage-hero .page-title,
.subpage-support .subpage-hero .page-title,
.subpage-operator .subpage-hero .page-title {
  max-width: 740px;
  color: var(--white);
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.subpage-v3 .subpage-hero .hero-title {
  max-width: none;
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(2.4rem, 2.8vw, 3.05rem);
  line-height: 1.15;
  overflow-wrap: normal;
}

.subpage-v3 .subpage-hero .hero-title span {
  white-space: nowrap;
}

.subpage-v3 .subpage-hero .hero-title span:last-child {
  color: var(--sub-accent);
}

.subpage-games .subpage-hero .hero-title {
  max-width: 620px;
  font-size: clamp(2rem, 2.3vw, 2.55rem);
  line-height: 1.2;
}

.subpage-v3 .subpage-hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.95;
}

.subpage-visual {
  position: relative;
  min-width: 0;
}

/* About: a tangible recruitment card. */
.about-visual {
  padding: 40px 22px 28px;
}

.about-visual::before {
  position: absolute;
  inset: 0 0 54px;
  border-radius: 42px;
  background: linear-gradient(145deg, var(--cyan), #79e8f2);
  content: "";
  transform: rotate(4deg);
}

.about-party-card {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
  color: var(--ink);
  background: #f8fafc;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.visual-card-top {
  display: grid;
  align-items: start;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 14px;
}

.visual-card-top > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 20px;
  background: #ffe6d5;
  font-size: 1.8rem;
}

.visual-card-top p,
.visual-person p {
  margin: 0;
}

.visual-card-top small,
.visual-person small {
  display: block;
  color: var(--muted);
}

.visual-card-top strong,
.visual-person strong {
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}

.visual-card-top em {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: #e9edf0;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.visual-person {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 12px;
}

.visual-person i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid #5ad99b;
  border-radius: 50%;
  background: var(--cyan-soft);
  font-style: normal;
  font-weight: 950;
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 8px;
}

.visual-tags span {
  padding: 8px 12px;
  border: 1px solid #efaa73;
  border-radius: 999px;
  background: #fff6ed;
  font-size: 0.78rem;
  font-weight: 900;
}

.visual-flow {
  position: relative;
  z-index: 2;
  display: grid;
  margin: -12px 14px 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--cyan-deep);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.visual-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.visual-flow span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-flow b {
  color: var(--cyan);
  font-size: 0.68rem;
}

/* Games: six titles become the visual itself. */
.games-visual {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  color: var(--ink);
  background: var(--orange-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
}

.games-visual-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 57, 69, 0.15);
}

.games-visual-head span,
.games-visual > p {
  margin: 0;
  color: var(--sub-accent-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.games-visual-head strong {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.games-visual-grid {
  display: grid;
  margin: 24px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.games-visual-grid span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border-radius: 22px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  gap: 10px;
}

.games-visual-grid i {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #fff5e9;
  font-size: 1.35rem;
  font-style: normal;
}

/* Beta: a bold test ticket. */
.beta-visual {
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
}

.beta-visual::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 50px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.beta-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.beta-status span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.beta-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 124, 0, 0.18);
}

.beta-status b {
  font-size: 4rem;
  line-height: 0.8;
}

.beta-visual h2 {
  position: relative;
  z-index: 1;
  margin: 48px 0;
  font-size: clamp(3.3rem, 5vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.beta-specs {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(15, 57, 69, 0.2);
  border-bottom: 1px solid rgba(15, 57, 69, 0.2);
  grid-template-columns: repeat(3, 1fr);
}

.beta-specs span {
  font-weight: 950;
}

.beta-specs span + span {
  padding-left: 16px;
  border-left: 1px solid rgba(15, 57, 69, 0.2);
}

.beta-specs small {
  display: block;
  margin-bottom: 5px;
  color: rgba(15, 57, 69, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.beta-visual > p {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

/* Guide: a compact in-app progress list. */
.guide-visual {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.guide-visual > p {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

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

.guide-visual li {
  display: grid;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 10px;
  font-weight: 900;
}

.guide-visual li:last-child {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}

.guide-visual b {
  color: var(--orange);
  font-size: 0.75rem;
}

.guide-visual li:last-child b {
  color: var(--white);
}

.guide-visual i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-soft);
  font-style: normal;
  font-size: 0.75rem;
}

/* Support: a stack of human, reassuring responses. */
.support-visual {
  display: grid;
  gap: 12px;
}

.support-bubble {
  display: grid;
  align-items: center;
  max-width: 92%;
  padding: 18px 20px;
  border-radius: 26px;
  grid-template-columns: 52px minmax(0, 1fr);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  gap: 14px;
}

.support-bubble-two {
  justify-self: end;
  color: var(--white);
  background: var(--cyan-deep);
}

.support-bubble-three {
  margin-left: 28px;
  background: var(--orange-soft);
}

.support-bubble > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 1.5rem;
  font-weight: 950;
}

.support-bubble-two > span {
  background: var(--white);
}

.support-bubble p {
  margin: 0;
}

.support-bubble small,
.support-bubble strong {
  display: block;
}

.support-bubble small {
  margin-bottom: 4px;
  color: var(--muted);
}

.support-bubble-two small {
  color: rgba(255, 255, 255, 0.65);
}

.support-visual-note {
  margin: 12px 0 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-align: right;
}

/* Operator: show the community mark without cropping or rotation. */
.operator-visual {
  min-height: 470px;
}

.operator-logo {
  position: absolute;
  inset: 0 54px 46px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.operator-logo img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}

.operator-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 280px;
  padding: 24px;
  border-radius: 28px;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.operator-badge span,
.operator-badge small,
.operator-badge strong {
  display: block;
}

.operator-badge span {
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.operator-badge strong {
  margin: 8px 0 4px;
  font-size: 2.1rem;
}

.operator-badge small {
  font-weight: 800;
}

/* Section and card rhythm shared by all six pages. */
.subpage-v3 > .section {
  position: relative;
}

.subpage-v3 > .section.surface {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #effbfc;
  box-shadow: none;
}

.subpage-games > .section.surface,
.subpage-guide > .section.surface {
  background: #fff7ec;
}

.subpage-operator > .section.surface {
  background: #fff3f1;
}

.subpage-v3 .section-title {
  max-width: 1000px;
  letter-spacing: -0.06em;
  text-wrap: pretty;
}

.subpage-v3 .feature-grid,
.subpage-v3 .info-grid,
.subpage-v3 .support-grid,
.subpage-v3 .step-grid {
  margin-top: 50px;
  gap: 18px;
}

.subpage-v3 .feature-card,
.subpage-v3 .info-card,
.subpage-v3 .support-card,
.subpage-v3 .step-card {
  min-height: 300px;
  padding: clamp(26px, 3.6vw, 42px);
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-radius: 32px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(15, 57, 69, 0.09);
}

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

.feature-section-title span:first-child {
  font-size: 0.8em;
}

.subpage-about .feature-card:nth-child(2),
.subpage-beta .info-card:nth-child(2),
.subpage-guide .step-card:nth-child(4) {
  border-color: transparent;
  color: var(--white);
  background: var(--cyan-deep);
}

.subpage-about .feature-card:nth-child(2) p,
.subpage-beta .info-card:nth-child(2) p,
.subpage-guide .step-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.7);
}

.subpage-about .feature-card:nth-child(3),
.subpage-beta .info-card:nth-child(3),
.subpage-guide .step-card:nth-child(2) {
  background: var(--orange-soft);
}

.subpage-v3 .feature-icon {
  width: 74px;
  height: 74px;
  margin: 34px 0 24px;
  border-radius: 24px;
  font-size: 2rem;
}

.subpage-v3 .showcase-number {
  display: block;
  margin-bottom: 36px;
  color: var(--sub-accent-deep);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.beta-join-title span {
  display: block;
  white-space: nowrap;
}

.beta-join-title span:last-child {
  font-size: 0.78em;
}

.subpage-beta .info-card .showcase-number {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 24px;
  color: var(--cyan-deep);
  background: var(--cyan-soft);
  font-size: 1.15rem;
  line-height: 1;
}

.subpage-beta .info-card:nth-child(2) .showcase-number {
  color: var(--ink);
  background: var(--cyan);
}

.subpage-beta .info-card:nth-child(3) .showcase-number {
  background: var(--white);
}

.subpage-v3 .journey {
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-radius: 34px;
  box-shadow: 0 20px 55px rgba(15, 57, 69, 0.09);
}

.subpage-v3 .journey ol {
  gap: 34px;
}

.subpage-v3 .journey li {
  position: relative;
  min-height: 62px;
  padding: 13px 16px;
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-radius: 18px;
  background: #f4fafb;
}

.subpage-v3 .journey li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  bottom: -31px;
  left: 50%;
  color: var(--orange);
  content: "↓";
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
  transform: translateX(-50%);
}

.subpage-v3 .journey:first-child {
  color: var(--white);
  background: var(--navy);
}

.subpage-v3 .journey:first-child li b {
  color: var(--ink);
  background: var(--cyan);
}

.subpage-v3 .journey:first-child li {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.subpage-v3 .related-panel {
  border: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--sub-soft), var(--white));
  box-shadow: 0 24px 65px rgba(15, 57, 69, 0.12);
}

.subpage-v3 .story-art {
  min-height: 500px;
  border: 1px solid rgba(15, 57, 69, 0.1);
  background: var(--white);
}

.subpage-v3 .story-art img {
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(15, 57, 69, 0.12));
  transform: none;
}

.subpage-v3 .dark-callout {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 90% 10%, rgba(8, 201, 232, 0.22), transparent 14rem),
    var(--navy);
  box-shadow: 0 28px 70px rgba(15, 57, 69, 0.18);
}

.subpage-v3 .mail-form {
  max-width: none;
  border-radius: 34px;
}

.subpage-v3 .notice {
  border-left: 0;
  border-radius: 24px;
  background: var(--orange-soft);
}

.subpage-games .game-card:nth-child(3n + 2) {
  background: var(--cyan-soft);
}

.subpage-games .game-card:nth-child(3n) {
  background: var(--orange-soft);
}

.subpage-games .game-card {
  min-height: 360px;
  border-radius: 36px;
}

.subpage-games .game-carousel {
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.subpage-games .game-carousel::-webkit-scrollbar {
  display: none;
}

.subpage-games .game-card {
  scroll-snap-align: none;
}

.subpage-games .carousel-controls {
  justify-content: flex-end;
}

.subpage-games .showcase-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 57, 69, 0.08);
  border-radius: 40px;
}

.candidate-marquee {
  display: grid;
  margin-top: 34px;
  padding: 6px 0 12px;
  overflow: hidden;
  gap: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.candidate-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.candidate-track-forward {
  animation: candidate-scroll-forward 58s linear infinite;
}

.candidate-track-reverse {
  animation: candidate-scroll-reverse 64s linear infinite;
}

.candidate-group {
  display: flex;
  flex: 0 0 auto;
  padding-right: 14px;
  gap: 18px;
}

.candidate-game {
  position: relative;
  display: grid;
  flex: 0 0 230px;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  align-items: center;
  min-height: 132px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-radius: 30px;
  grid-template-columns: 64px minmax(0, 1fr);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(15, 57, 69, 0.1);
  gap: 14px;
}

.candidate-game > div {
  min-width: 0;
}

.candidate-game strong {
  overflow-wrap: anywhere;
}

.candidate-game::after {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--candidate);
  content: "UPCOMING";
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.candidate-game > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 21px;
  background: #f3f8f9;
  font-size: 1.8rem;
  box-shadow: inset 0 0 0 1px rgba(15, 57, 69, 0.08);
}

.candidate-game strong,
.candidate-game small {
  display: block;
}

.candidate-game strong {
  padding-top: 10px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.candidate-game small {
  margin-top: 7px;
  color: var(--candidate);
  font-size: 0.68rem;
  font-weight: 950;
}

@keyframes candidate-scroll-forward {
  to {
    transform: translateX(-50%);
  }
}

@keyframes candidate-scroll-reverse {
  from {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .candidate-track {
    animation-play-state: paused;
  }
}

.subpage-support .support-card {
  display: flex;
  flex-direction: column;
}

.subpage-support .support-card strong {
  margin-top: auto;
  padding-top: 30px;
  color: var(--cyan-deep);
}

.subpage-support .support-card:nth-child(2) {
  color: var(--white);
  background: var(--cyan-deep);
}

.subpage-support .support-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}

.subpage-support .support-card:nth-child(2) strong {
  color: var(--cyan);
}

.subpage-support .support-card:nth-child(3) {
  background: var(--orange-soft);
}

.subpage-operator .info-card:first-child {
  color: var(--white);
  background: var(--navy);
}

.subpage-operator .info-card:first-child p {
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 950;
}

@media (max-width: 1040px) {
  .subpage-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .subpage-visual {
    width: min(100%, 680px);
  }

  .operator-visual {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  .subpage-v3 .subpage-hero {
    min-height: 0;
    margin: 12px;
    padding: 0 6px;
    border-radius: 32px;
  }

  .subpage-hero-grid {
    padding: 58px 0;
    gap: 40px;
  }

  .subpage-v3 .subpage-hero .hero-title {
    font-size: 1.55rem;
  }

  .subpage-beta .subpage-hero .page-title,
  .subpage-guide .subpage-hero .page-title,
  .subpage-support .subpage-hero .page-title,
  .subpage-operator .subpage-hero .page-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .about-visual {
    padding: 28px 5px 18px;
  }

  .visual-card-top {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .visual-card-top > span {
    width: 52px;
    height: 52px;
  }

  .visual-card-top em {
    display: none;
  }

  .visual-flow {
    margin-right: 4px;
    margin-left: 4px;
  }

  .games-visual,
  .beta-visual,
  .guide-visual {
    padding: 22px;
    border-radius: 30px;
    transform: none;
  }

  .games-visual-grid span {
    min-height: 68px;
    padding: 8px;
    font-size: 0.68rem;
  }

  .games-visual-grid i {
    width: 38px;
    height: 38px;
  }

  .beta-visual h2 {
    margin: 38px 0;
    font-size: 3rem;
  }

  .beta-specs {
    gap: 8px;
  }

  .beta-specs span + span {
    padding-left: 8px;
  }

  .beta-specs span {
    font-size: 0.75rem;
  }

  .support-bubble {
    max-width: 100%;
    padding: 14px;
  }

  .support-bubble-three {
    margin-left: 0;
  }

  .operator-visual {
    min-height: 430px;
  }

  .operator-logo {
    inset: 0 18px 72px 0;
  }

  .operator-badge {
    min-width: min(290px, 92%);
    padding: 20px;
  }

  .subpage-v3 .feature-card,
  .subpage-v3 .info-card,
  .subpage-v3 .support-card,
  .subpage-v3 .step-card {
    min-height: 0;
  }

  .subpage-v3 .story-art {
    min-height: 370px;
  }
}

/* Readability and alignment pass: keep decorative layers playful, content straight. */
.page-title,
.section-title,
.hero-title,
.home-hero-copy h1,
.final-cta h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.subpage-v3 .section-title {
  letter-spacing: -0.035em;
}

.home-hero-copy h1 {
  font-size: clamp(3.25rem, 5.55vw, 5.65rem);
  line-height: 1.02;
}

.home-hero-copy h1 > span:nth-child(2) {
  font-size: 0.9em;
}

.hero-product::before,
.app-shell,
.floating-message {
  transform: none;
}

.hero-marquee-track {
  animation-duration: 30s;
}

.hero-marquee-track span {
  padding-right: 1.3em;
  white-space: nowrap;
}

/* Keep every subpage hero dark enough for its white editorial copy. */
.page-main.subpage-v3 .subpage-hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 88% 16%, rgba(8, 201, 232, 0.26), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

.page-main.subpage-games .subpage-hero,
.page-main.subpage-guide .subpage-hero {
  background-image:
    radial-gradient(circle at 88% 16%, rgba(255, 124, 0, 0.24), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

.page-main.subpage-operator .subpage-hero {
  background-image:
    radial-gradient(circle at 88% 16%, rgba(255, 109, 114, 0.24), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.06), transparent 25rem);
}

/* The rear plate tilts; the information card itself stays straight. */
.games-visual,
.beta-visual,
.guide-visual,
.support-visual,
.operator-visual {
  isolation: isolate;
  transform: none;
}

.games-visual::before,
.guide-visual::before,
.support-visual::before,
.operator-visual::before {
  position: absolute;
  z-index: -1;
  inset: -18px 20px 18px -18px;
  border-radius: 44px;
  background: #59dce9;
  content: "";
  transform: rotate(3deg);
}

.games-visual::before,
.guide-visual::before {
  background: #ffb25f;
}

.operator-visual::before {
  background: #ff9d94;
}

.beta-visual {
  overflow: visible;
}

.beta-visual::after {
  z-index: -1;
  inset: -18px 20px 18px -18px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 44px;
  background: #74e2ed;
  transform: rotate(3deg);
}

.subpage-games .showcase-panel:nth-child(1),
.subpage-games .showcase-panel:nth-child(2),
.subpage-games .showcase-panel:nth-child(3) {
  color: var(--ink);
}

.subpage-games .showcase-panel:nth-child(1) {
  background: var(--cyan-soft);
}

.subpage-games .showcase-panel:nth-child(2) {
  background: var(--orange-soft);
}

.subpage-games .showcase-panel:nth-child(3) {
  background: #edf1ff;
}

.subpage-games .showcase-panel:nth-child(1) .showcase-number {
  color: var(--cyan-deep);
}

.subpage-games .showcase-panel:nth-child(3) .showcase-number {
  color: #5969b5;
}

.subpage-games .showcase-panel:nth-child(odd) p {
  color: var(--muted);
}

.subpage-beta .support-grid + .notice {
  margin-top: 34px;
}

.subpage-operator .info-card:first-child {
  color: var(--ink);
  background: var(--cyan-soft);
}

.subpage-operator .info-card:first-child p {
  color: var(--cyan-deep);
}

.subpage-operator .info-card:nth-child(2) {
  border-top: 6px solid var(--cyan);
}

.subpage-operator .info-card:nth-child(3) {
  border-top: 6px solid var(--orange);
  background: var(--orange-soft);
}

.subpage-operator .info-card a {
  color: var(--cyan-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.experience-no {
  position: absolute;
  top: 14px;
  right: 24px;
  color: var(--cyan-deep);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  opacity: 0.09;
}

.experience-card:nth-child(2) .experience-no {
  color: var(--white);
  opacity: 0.13;
}

.experience-icon {
  position: relative;
  z-index: 1;
  margin-top: 44px;
}

.experience-chat .experience-icon {
  font-size: 1.75rem;
}

.recruitment-guide-link {
  min-height: 62px;
  padding: 16px 28px;
  color: var(--white) !important;
  font-size: 1rem;
}

.naming-section {
  color: var(--white);
  background-color: var(--navy);
  background-image: radial-gradient(circle at 88% 16%, rgba(8, 201, 232, 0.22), transparent 22rem);
}

.naming-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 8vw, 108px);
}

.naming-copy .section-kicker {
  color: var(--cyan);
}

.naming-copy p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.95;
}

.naming-words {
  display: grid;
  gap: 12px;
}

.naming-words > div {
  display: grid;
  align-items: center;
  min-height: 112px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  grid-template-columns: 170px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.06);
  gap: 24px;
}

.naming-words > div:nth-child(2) {
  color: var(--ink);
  background: var(--cyan);
}

.naming-words strong {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.naming-words span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.naming-words > div:nth-child(2) span {
  color: rgba(16, 36, 45, 0.76);
}

.about-party-card,
.visual-flow {
  transform: none;
}

.subpage-about .feature-card {
  border-color: rgba(15, 57, 69, 0.1);
  color: var(--ink);
  background: var(--white);
}

.subpage-about .feature-card p {
  color: var(--muted);
}

.subpage-about .feature-card .card-label {
  color: var(--cyan-deep);
}

.subpage-about .feature-card:nth-child(2) {
  border-color: transparent;
  color: var(--white);
  background: var(--cyan-deep);
}

.subpage-about .feature-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.76);
}

.subpage-about .feature-card:nth-child(2) .card-label {
  color: var(--cyan);
}

.subpage-about .feature-card:nth-child(3) {
  background: var(--white);
}

.subpage-v3 .feature-card,
.subpage-v3 .info-card,
.subpage-v3 .support-card,
.subpage-v3 .step-card {
  transition: none;
}

.subpage-v3 .feature-card:hover,
.subpage-v3 .info-card:hover,
.subpage-v3 .support-card:hover,
.subpage-v3 .step-card:hover {
  border-color: rgba(15, 57, 69, 0.1);
  box-shadow: 0 20px 55px rgba(15, 57, 69, 0.09);
  transform: none;
}

.subpage-about .feature-card:nth-child(2):hover,
.subpage-beta .info-card:nth-child(2):hover,
.subpage-guide .step-card:nth-child(4):hover {
  border-color: transparent;
}

.subpage-guide .step-card .showcase-number {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 24px;
  color: var(--orange);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(15, 57, 69, 0.08);
  font-size: 1.15rem;
  line-height: 1;
}

.subpage-guide .step-card:first-child .showcase-number {
  background: var(--orange-soft);
}

.subpage-guide .step-card:nth-child(4) .showcase-number {
  color: var(--ink);
  background: var(--cyan);
}

.subpage-guide .account-callout {
  border-color: rgba(8, 127, 145, 0.16);
  color: var(--ink);
  background-color: var(--cyan-soft);
  background-image: radial-gradient(circle at 92% 12%, rgba(8, 201, 232, 0.24), transparent 18rem);
  box-shadow: 0 24px 60px rgba(15, 57, 69, 0.12);
}

.subpage-guide .account-callout p {
  color: var(--muted);
}

.operator-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.operator-logo {
  position: relative;
  inset: auto;
  width: min(100%, 470px);
  height: auto;
  aspect-ratio: 1;
}

.operator-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.operator-badge {
  right: 0;
  bottom: 18px;
}

@media (max-width: 1040px) {
  .naming-grid {
    grid-template-columns: 1fr;
  }

  .naming-words {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .page-title,
  .section-title,
  .hero-title,
  .home-hero-copy h1,
  .final-cta h2 {
    letter-spacing: -0.025em;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.55rem, 11.4vw, 3.55rem);
  }

  .home-hero-copy h1 > span,
  .subpage-v3 .subpage-hero .hero-title span,
  .feature-section-title span,
  .beta-join-title span,
  .story-home-title span,
  .final-cta-title span {
    white-space: normal;
  }

  .rail-note {
    align-items: stretch;
  }

  .recruitment-guide-link {
    width: 100%;
  }

  .naming-words > div {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-visual::before {
    transform: rotate(2deg);
  }

  .operator-visual {
    min-height: 430px;
  }

  .operator-logo {
    inset: auto;
    width: min(100%, 380px);
  }
}

/* 2026-08-10: keep subpage copy and visuals in separate readable lanes. */
.page-main.subpage-v3 .subpage-hero .subpage-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(64px, 7vw, 104px);
}

.page-main.subpage-v3 .subpage-hero .subpage-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.page-main.subpage-v3 .subpage-hero .hero-title {
  max-width: 100%;
  font-size: clamp(2.15rem, 2.55vw, 2.75rem);
  line-height: 1.18;
}

.page-main.subpage-games .subpage-hero .hero-title {
  font-size: clamp(2rem, 2.3vw, 2.5rem);
}

.page-main.subpage-v3 .subpage-hero .subpage-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* The rear plate tilts independently; the front face stays straight. */
.games-visual,
.beta-visual,
.guide-visual {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.games-visual-face,
.beta-visual-face,
.guide-visual-face {
  position: relative;
  z-index: 1;
  border-radius: 42px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.games-visual-face {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--orange-soft);
}

.beta-visual-face {
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--cyan);
}

.guide-visual-face {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.games-visual-face > p,
.beta-visual-face > p,
.guide-visual-face > p {
  position: relative;
  z-index: 1;
}

.games-visual-face > p {
  margin: 22px 0 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.beta-visual-face > p {
  margin: 24px 0 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.guide-visual-face > p {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.beta-visual h2 {
  letter-spacing: -0.025em;
  word-spacing: 0.14em;
  line-height: 0.94;
}

.guide-visual-face ol {
  position: relative;
  z-index: 1;
}

.support-title span,
.naming-title span {
  display: block;
  white-space: nowrap;
}

/* Guide cards use one consistent visual language. */
.subpage-guide .step-card,
.subpage-guide .step-card:nth-child(2),
.subpage-guide .step-card:nth-child(4) {
  border-color: rgba(15, 57, 69, 0.1);
  color: var(--ink);
  background: var(--white);
}

.subpage-guide .step-card p,
.subpage-guide .step-card:nth-child(4) p {
  color: var(--muted);
}

.subpage-guide .step-card .showcase-number,
.subpage-guide .step-card:first-child .showcase-number,
.subpage-guide .step-card:nth-child(4) .showcase-number {
  color: var(--orange);
  background: var(--orange-soft);
}

/* Operator information cards share the same surface and accent. */
.subpage-operator .info-card,
.subpage-operator .info-card:first-child,
.subpage-operator .info-card:nth-child(2),
.subpage-operator .info-card:nth-child(3) {
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-top: 6px solid var(--cyan);
  color: var(--ink);
  background: var(--white);
}

.subpage-operator .info-card:first-child p {
  color: var(--cyan-deep);
}

/* A calmer continuous word rail. */
.hero-marquee-track {
  animation-duration: 42s;
}

.naming-copy .naming-title {
  font-size: clamp(2.25rem, 3.25vw, 3.7rem);
  line-height: 1.24;
}

@media (max-width: 1040px) {
  .page-main.subpage-v3 .subpage-hero .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-main.subpage-v3 .subpage-hero .subpage-hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .page-main.subpage-v3 .subpage-hero .hero-title,
  .page-main.subpage-games .subpage-hero .hero-title {
    font-size: 1.55rem;
  }

  .games-visual,
  .beta-visual,
  .guide-visual {
    padding: 0;
    border-radius: 0;
  }

  .games-visual-face,
  .beta-visual-face,
  .guide-visual-face {
    padding: 22px;
    border-radius: 30px;
  }

  .support-title span,
  .naming-title span {
    white-space: normal;
  }

  .naming-copy .naming-title {
    font-size: clamp(2.15rem, 10.5vw, 3.05rem);
  }
}

/* 2026-08-10: numbered subpages and final visual refinements. */
.subpage-games .subpage-hero .page-kicker::after,
.subpage-guide .subpage-hero .page-kicker::after {
  background: var(--cyan);
}

.game-start-title span,
.game-upcoming-title span,
.beta-help-title span,
.operator-story-title span {
  display: block;
  white-space: nowrap;
}

.operator-badge {
  border: 2px solid rgba(8, 127, 145, 0.24);
  color: #c95600;
  background: #d9f8fc;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.operator-badge strong {
  color: #d95f00;
}

.operator-badge small,
.operator-badge span {
  color: #a94700;
}

/* The guide visual describes four equal steps, not an active fourth step. */
.guide-visual li,
.guide-visual li:last-child {
  border-color: rgba(15, 57, 69, 0.16);
  color: var(--ink);
  background: var(--white);
}

.guide-visual li:last-child b,
.guide-visual b {
  color: var(--orange);
}

.guide-visual i {
  width: 30px;
  height: 30px;
  color: #168b58;
  background: transparent;
  font-size: 1rem;
  font-weight: 950;
}

/* Beta overview cards follow one shared color rule. */
.subpage-beta .info-card,
.subpage-beta .info-card:nth-child(2),
.subpage-beta .info-card:nth-child(3) {
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-top: 6px solid var(--cyan);
  color: var(--ink);
  background: var(--white);
}

.subpage-beta .info-card p,
.subpage-beta .info-card:nth-child(2) p,
.subpage-beta .info-card:nth-child(3) p {
  color: var(--muted);
}

.subpage-beta .info-card .showcase-number {
  color: var(--cyan-deep);
}

/* Give the support illustration a clear, self-contained frame. */
.support-visual {
  padding: 28px;
  border: 2px solid rgba(134, 235, 244, 0.86);
  border-radius: 40px;
  background: rgba(8, 201, 232, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 26px 70px rgba(0, 0, 0, 0.24);
  gap: 16px;
}

.support-bubble {
  border: 1px solid rgba(15, 57, 69, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.support-visual-note {
  margin: 4px 4px 0;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

/* Keep account deletion guidance without placing it in another callout box. */
.account-delete-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin-top: 26px;
  gap: 32px;
}

.account-delete-content p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.account-delete-content .button {
  flex: none;
}

@media (max-width: 720px) {
  .game-start-title span,
  .game-upcoming-title span,
  .beta-help-title span,
  .operator-story-title span {
    white-space: normal;
  }

  .support-visual {
    padding: 18px;
    border-radius: 30px;
  }

  .account-delete-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

/* About and Games now use the same strong page-title hierarchy as other subpages. */
.page-main.subpage-about .subpage-hero .page-title,
.page-main.subpage-games .subpage-hero .page-title {
  max-width: 100%;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-main.subpage-about .subpage-hero .page-title {
  font-size: clamp(3.6rem, 5vw, 5.2rem);
}

.page-main.subpage-games .subpage-hero .page-title {
  font-size: clamp(3rem, 3.9vw, 4.2rem);
}

.page-main.subpage-about .subpage-hero .hero-title,
.page-main.subpage-games .subpage-hero .hero-title {
  margin-top: 30px;
  font-size: clamp(1.75rem, 2.1vw, 2.2rem);
  line-height: 1.28;
}

.page-main.subpage-about .subpage-hero .hero-title span:first-child,
.page-main.subpage-games .subpage-hero .hero-title span:first-child {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 720px) {
  .page-main.subpage-about .subpage-hero .page-title {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .page-main.subpage-games .subpage-hero .page-title {
    font-size: clamp(2.45rem, 10.5vw, 3.25rem);
  }

  .page-main.subpage-about .subpage-hero .hero-title,
  .page-main.subpage-games .subpage-hero .hero-title {
    font-size: 1.45rem;
  }
}

/* Final legibility pass: preserve the intended text while giving each visual enough space. */
.subpage-operator .story-grid {
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
}

.subpage-operator .story-art {
  width: 100%;
  min-height: 500px;
  aspect-ratio: 1;
}

.subpage-operator .story-copy {
  min-width: 0;
}

.subpage-operator .operator-story-title {
  font-size: clamp(2rem, 2.5vw, 2.65rem);
  line-height: 1.24;
}

.subpage-beta .info-card .showcase-number,
.subpage-beta .info-card:nth-child(2) .showcase-number,
.subpage-beta .info-card:nth-child(3) .showcase-number {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 36px;
  place-items: center;
  border: 2px solid rgba(8, 127, 145, 0.22);
  border-radius: 24px;
  color: var(--cyan-deep);
  background: var(--cyan-soft);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1;
}

.account-delete-section .wrap {
  text-align: center;
}

.account-delete-section .section-kicker {
  justify-content: center;
}

.account-delete-content {
  justify-content: center;
  max-width: 980px;
  margin: 30px auto 0;
  text-align: left;
  gap: 56px;
}

.support-visual::before {
  display: none;
}

.support-visual {
  padding: 24px;
  border: 2px solid rgba(8, 127, 145, 0.2);
  border-radius: 36px;
  background: #e8fbfd;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  gap: 14px;
}

.support-bubble,
.support-bubble-two,
.support-bubble-three {
  width: 100%;
  max-width: none;
  margin: 0;
  justify-self: stretch;
  border: 1px solid rgba(15, 57, 69, 0.12);
  border-left: 6px solid var(--cyan);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 57, 69, 0.1);
}

.support-bubble-two {
  border-left-color: var(--cyan-deep);
}

.support-bubble-three {
  border-left-color: var(--orange);
  background: var(--orange-soft);
}

.support-bubble-two small {
  color: var(--muted);
}

.support-visual-note {
  margin: 4px 4px 0;
  color: var(--cyan-deep);
  text-shadow: none;
}

.rail-note {
  justify-content: flex-end;
}

.game-orbit > div {
  display: grid;
  min-height: 180px;
  padding: 20px;
  place-content: center;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(110, 62, 17, 0.08);
  text-align: center;
  gap: 12px;
}

.guide-visual li,
.guide-visual li:last-child {
  grid-template-columns: 42px minmax(0, 1fr);
}

@media (max-width: 980px) {
  .subpage-operator .story-grid {
    grid-template-columns: 1fr;
  }

  .subpage-operator .story-art {
    width: min(100%, 520px);
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .subpage-operator .story-art {
    min-height: 340px;
  }

  .account-delete-section .wrap,
  .account-delete-content {
    text-align: left;
  }

  .account-delete-section .section-kicker {
    justify-content: flex-start;
  }

  .account-delete-content {
    gap: 20px;
  }

  .game-orbit > div {
    min-height: 150px;
    padding: 14px;
  }
}

/* Requested refinements for story, support, guide, naming and beta cards. */
.about-story-title span,
.guide-support-title span {
  display: block;
}

.about-story-title {
  font-size: clamp(2.2rem, 3.25vw, 3.45rem);
  line-height: 1.12;
}

.support-visual::before {
  display: block;
}

.support-visual {
  padding: 34px;
  border: 3px solid rgba(134, 235, 244, 0.78);
  border-radius: 40px;
  background: #59dce9;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  gap: 18px;
}

.support-bubble,
.support-bubble-two,
.support-bubble-three {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 20px 22px;
  grid-template-columns: 58px minmax(0, 1fr);
  border: 1px solid rgba(15, 57, 69, 0.12);
  border-left-width: 6px;
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(15, 57, 69, 0.16);
  gap: 16px;
}

.support-bubble-one {
  width: 91%;
  justify-self: start;
  border-left-color: var(--cyan);
}

.support-bubble-two {
  width: 82%;
  justify-self: end;
  border-left-color: var(--cyan-deep);
}

.support-bubble-three {
  width: 91%;
  justify-self: start;
  margin-left: 6%;
  border-left-color: var(--orange);
  background: var(--orange-soft);
}

.support-bubble-two > span {
  background: var(--cyan-soft);
}

.support-bubble small,
.support-bubble-two small {
  color: var(--muted);
}

.support-bubble strong {
  font-size: 1.06rem;
  line-height: 1.35;
}

.support-visual-note {
  color: var(--cyan-deep);
}

.guide-visual li,
.guide-visual li:last-child {
  border-width: 2px;
  border-color: rgba(15, 57, 69, 0.2);
}

.naming-words > div:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.naming-words > div:nth-child(2) strong {
  color: var(--cyan);
}

.naming-words > div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.72);
}

.subpage-support .support-card strong,
.subpage-support .support-card:nth-child(2) strong {
  color: var(--ink);
}

.subpage-beta .info-card:hover,
.subpage-beta .info-card:nth-child(2):hover,
.subpage-beta .info-card:nth-child(3):hover {
  border: 1px solid rgba(15, 57, 69, 0.1);
  border-top: 6px solid var(--cyan);
  box-shadow: 0 20px 55px rgba(15, 57, 69, 0.09);
  transform: none;
}

@media (max-width: 720px) {
  .support-visual {
    padding: 18px;
  }

  .support-bubble,
  .support-bubble-one,
  .support-bubble-two,
  .support-bubble-three {
    width: 100%;
    margin-left: 0;
    padding: 16px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .about-story-title,
  .guide-support-title {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }
}

/* Keep the rear support plate distinct and preserve the requested two-line title. */
.support-visual::before {
  background: var(--white);
}

.guide-support-title {
  font-size: clamp(2.1rem, 3.1vw, 3.7rem);
  letter-spacing: -0.04em;
}

.guide-support-title span:last-child {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .guide-support-title span:last-child {
    white-space: normal;
  }
}

/* Support hero: upright cyan face with a white angled plate behind it. */
.support-visual-wrap {
  position: relative;
  min-height: 470px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.support-visual-wrap::before {
  position: absolute;
  z-index: 0;
  inset: -18px 20px 18px -18px;
  border-radius: 44px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  content: "";
  transform: rotate(3deg);
}

.support-visual-wrap > .support-visual {
  position: relative;
  z-index: 1;
  min-height: 470px;
  background: #59dce9;
}

.support-visual-wrap > .support-visual::before {
  display: none;
}

@media (max-width: 720px) {
  .support-visual-wrap,
  .support-visual-wrap > .support-visual {
    min-height: 420px;
  }
}

/* Shared legal pages and the mobile navigation trigger. */
.menu-toggle {
  display: none;
}

.legal-intro .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 34px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  gap: 8px;
}

.legal-intro .breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--cyan-deep);
  content: "/";
}

.legal-intro .eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-intro > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-sheet .notice {
  margin: 34px 0;
}

.legal-document {
  overflow-wrap: anywhere;
}

.legal-document .document-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  gap: 10px 24px;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.35em;
}

.legal-version {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan-deep);
  background: rgba(255, 255, 255, 0.72);
  gap: 12px 24px;
}

.legal-version strong {
  color: var(--cyan-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.legal-version span {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-toc {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 28px;
  color: var(--ink);
  background: #eaf8fa;
}

.legal-toc > p {
  margin: 0 0 18px;
  color: var(--cyan-deep);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.legal-toc > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 2.4em minmax(0, 1fr);
  padding: 8px 0;
  border-bottom: 1px solid rgba(6, 31, 39, 0.12);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-toc a span {
  color: var(--cyan-deep);
  font-size: 0.7rem;
  font-weight: 950;
}

.legal-document h2 {
  scroll-margin-top: 96px;
}

.legal-document h3 {
  margin-top: 34px;
  font-size: 1.05rem;
}

.legal-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: white;
}

.legal-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.legal-table-wrap th {
  color: var(--ink);
  background: #eaf8fa;
  font-weight: 850;
}

.legal-related {
  display: flex;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  gap: 10px;
}

.legal-related a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 720px) {
  .legal-version {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .legal-toc {
    margin-top: 26px;
    padding: 20px 16px;
  }

  .legal-toc > div {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding-top: 34px;
  }

  .legal-table-wrap {
    margin-inline: -8px;
  }
}

/* Mobile layout is intentionally independent from the desktop composition. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  .site-header {
    background: rgba(244, 252, 253, 0.96);
    backdrop-filter: blur(22px);
  }

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: min(calc(100% - 24px), var(--content));
    min-height: 68px;
    padding: 8px 0;
    gap: 12px;
  }

  .brand {
    margin: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 12px;
    place-content: center;
    border: 1px solid rgba(15, 57, 69, 0.1);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 9px 24px rgba(15, 57, 69, 0.12);
    gap: 5px;
    touch-action: manipulation;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    max-height: min(560px, calc(100vh - 92px));
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(15, 57, 69, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 57, 69, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    gap: 2px;
    pointer-events: none;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
  }

  .site-nav a[aria-current="page"] {
    color: var(--ink);
    background: var(--cyan-soft);
    box-shadow: none;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-kicker,
  .page-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: clamp(1.95rem, 9.2vw, 2.7rem);
    line-height: 1.12;
  }

  .page-main:not(.home-v3) .page-hero,
  .subpage-v3 .subpage-hero {
    min-height: 0;
    margin: 10px;
    padding: 0 6px;
    border-radius: 28px;
  }

  .subpage-hero-grid {
    padding: 42px 0 46px;
    gap: 28px;
  }

  .page-main.subpage-v3 .subpage-hero .subpage-hero-copy {
    max-width: none;
  }

  .subpage-v3 .subpage-hero .page-title,
  .subpage-beta .subpage-hero .page-title,
  .subpage-guide .subpage-hero .page-title,
  .subpage-support .subpage-hero .page-title,
  .subpage-operator .subpage-hero .page-title {
    font-size: clamp(2.35rem, 10.8vw, 3.25rem);
    line-height: 1.02;
  }

  .page-main.subpage-v3 .subpage-hero .hero-title,
  .page-main.subpage-games .subpage-hero .hero-title {
    margin-top: 18px;
    font-size: clamp(1.5rem, 6.7vw, 2rem);
    line-height: 1.2;
  }

  .subpage-v3 .subpage-hero .lead {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .subpage-visual {
    width: 100%;
    min-height: 0;
    transform: none;
  }

  .home-hero-grid {
    min-height: 0;
    padding: 42px 0 76px;
    gap: 28px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  .home-hero-lead {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero-product {
    padding: 24px 0 20px;
  }

  .app-shell {
    border-radius: 26px;
  }

  .feature-card,
  .info-card,
  .support-card,
  .step-card,
  .dark-callout,
  .final-cta {
    padding: 24px;
    border-radius: 26px;
  }

  .feature-card h3,
  .info-card h3,
  .support-card h3,
  .step-card h3 {
    font-size: 1.35rem;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 17px;
  }

  .experience-grid,
  .feature-grid,
  .info-grid,
  .support-grid {
    display: grid;
    margin-right: -14px;
    padding: 4px 14px 22px 1px;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 350px);
    grid-template-columns: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .experience-grid::-webkit-scrollbar,
  .feature-grid::-webkit-scrollbar,
  .info-grid::-webkit-scrollbar,
  .support-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-grid > *,
  .feature-grid > *,
  .info-grid > *,
  .support-grid > * {
    min-width: 0;
    scroll-snap-align: center;
  }

  .step-grid,
  .journey-columns,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .games-visual-face,
  .beta-visual-face,
  .guide-visual-face {
    padding: 20px;
    border-radius: 28px;
  }

  .about-visual {
    padding: 24px 6px 18px;
  }

  .about-party-card {
    padding: 20px;
    border-radius: 26px;
  }

  .operator-visual {
    min-height: 370px;
  }

  .support-visual-wrap,
  .support-visual-wrap > .support-visual {
    min-height: 380px;
  }

  .support-visual-wrap > .support-visual {
    padding: 18px;
    border-radius: 30px;
    gap: 12px;
  }

  .support-visual-wrap::before {
    inset: -10px 12px 10px -10px;
    border-radius: 32px;
    transform: rotate(2deg);
  }

  .support-bubble,
  .support-bubble-one,
  .support-bubble-two,
  .support-bubble-three {
    width: 100%;
    margin-left: 0;
    padding: 14px;
    grid-template-columns: 44px minmax(0, 1fr);
    border-radius: 20px;
    gap: 12px;
  }

  .support-bubble > span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .support-bubble strong {
    font-size: 0.92rem;
  }

  .dark-callout h2,
  .dark-callout h3,
  .final-cta h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.55rem);
    line-height: 1.15;
  }

  .dark-callout p,
  .final-cta p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .final-cta {
    gap: 24px;
  }

  .final-cta-actions,
  .final-cta-actions .button,
  .page-end .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    margin-top: 64px;
    padding: 48px 0 26px;
  }

  .footer-top {
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
  }

  .footer-links a {
    padding: 9px 0;
    font-size: 0.82rem;
  }

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

  .legal-page {
    padding: 28px 0 72px;
  }

  .legal-sheet {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .legal-sheet h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .legal-sheet h2 {
    margin-top: 36px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .legal-sheet h3 {
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .legal-sheet p,
  .legal-sheet li {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .legal-sheet .notice {
    margin: 26px 0;
    padding: 18px;
  }

  .legal-intro .breadcrumb {
    margin-bottom: 24px;
    font-size: 0.78rem;
  }

  .legal-intro > p:last-child {
    font-size: 0.94rem;
  }
}

@media (max-width: 390px) {
  .subpage-v3 .subpage-hero .page-title,
  .subpage-beta .subpage-hero .page-title,
  .subpage-guide .subpage-hero .page-title,
  .subpage-support .subpage-hero .page-title,
  .subpage-operator .subpage-hero .page-title {
    font-size: 2.25rem;
  }

  .support-visual-wrap,
  .support-visual-wrap > .support-visual {
    min-height: 360px;
  }

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

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  html.mobile-effects .mobile-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  html.mobile-effects .mobile-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* 2026-08-10: compact phone composition. Desktop rules intentionally stay untouched. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    font-size: 13.5px;
    -webkit-tap-highlight-color: transparent;
  }

  a,
  button {
    touch-action: manipulation;
  }

  /* Phone-only brand bar: centered wordmark with the menu kept within thumb reach. */
  .site-header {
    border-bottom-color: rgba(15, 57, 69, 0.12);
    background: rgba(8, 201, 232, 0.96);
  }

  .header-inner {
    justify-content: center;
    min-height: 62px;
    padding: 7px 0;
  }

  .brand {
    position: absolute;
    left: 50%;
    gap: 0;
    transform: translateX(-50%);
  }

  .brand img {
    display: none;
  }

  .brand span {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.96);
    paint-order: stroke fill;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-color: rgba(15, 57, 69, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 20px rgba(15, 57, 69, 0.16);
  }

  .site-nav {
    top: calc(100% + 7px);
    border-radius: 20px;
    overscroll-behavior: contain;
  }

  .site-nav a {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .wrap {
    width: min(calc(100% - 24px), var(--content));
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-title {
    font-size: clamp(1.75rem, 8.2vw, 2.3rem);
    line-height: 1.12;
  }

  /* Home: keep the same message, but make the opening fit an actual phone viewport. */
  .home-hero-grid {
    padding: 30px 0 48px;
    gap: 22px;
  }

  .hero-badges {
    margin-bottom: 18px;
    gap: 7px;
  }

  .hero-badges > span {
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .home-hero-copy h1 {
    font-size: clamp(2rem, 9.2vw, 2.7rem);
    line-height: 1.02;
  }

  .home-hero-copy h1 > span,
  .home-hero-copy h1 > span:nth-child(2) {
    white-space: nowrap;
  }

  .home-hero-lead {
    margin-top: 20px;
    font-size: 0.84rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .home-hero .hero-note {
    margin-top: 15px;
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .hero-product {
    padding: 40px 0 12px;
  }

  .experience-grid,
  .feature-grid,
  .info-grid,
  .support-grid,
  .game-carousel,
  .upcoming-rail {
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 12px;
  }

  .product-label {
    gap: 8px;
  }

  .product-label strong {
    font-size: 0.72rem;
  }

  /* Subpage openings use a smaller editorial scale on phones. */
  .page-main:not(.home-v3) .page-hero,
  .subpage-v3 .subpage-hero {
    margin: 8px;
    padding: 0 4px;
    border-radius: 26px;
  }

  .subpage-hero-grid {
    padding: 32px 0 36px;
    gap: 22px;
  }

  .subpage-v3 .subpage-hero .page-title,
  .subpage-beta .subpage-hero .page-title,
  .subpage-guide .subpage-hero .page-title,
  .subpage-support .subpage-hero .page-title,
  .subpage-operator .subpage-hero .page-title {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    line-height: 1.03;
  }

  .page-main.subpage-v3 .subpage-hero .hero-title,
  .page-main.subpage-games .subpage-hero .hero-title {
    margin-top: 15px;
    font-size: clamp(1.32rem, 6vw, 1.7rem);
    line-height: 1.2;
  }

  .subpage-v3 .subpage-hero .lead {
    margin-top: 15px;
    font-size: 0.84rem;
    line-height: 1.68;
  }

  /* The support illustration keeps its desktop personality without occupying a full screen. */
  .support-visual-wrap,
  .support-visual-wrap > .support-visual {
    min-height: 300px;
  }

  .support-visual-wrap::before {
    inset: -7px 10px 8px -7px;
    border-radius: 28px;
    transform: rotate(2deg);
  }

  .support-visual-wrap > .support-visual {
    align-content: center;
    padding: 12px;
    border-radius: 27px;
    gap: 8px;
  }

  .support-bubble,
  .support-bubble-one,
  .support-bubble-two,
  .support-bubble-three {
    min-height: 66px;
    padding: 9px 10px;
    border-left-width: 4px;
    border-radius: 16px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
  }

  .support-bubble > span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 1.05rem;
  }

  .support-bubble small {
    margin-bottom: 2px;
    font-size: 0.67rem;
  }

  .support-bubble strong {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .support-visual-note {
    margin: 2px 4px 0;
    font-size: 0.58rem;
  }

  /* Operator artwork and the name card become two independent blocks on phones. */
  .operator-visual {
    display: flex;
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .operator-logo {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .operator-logo img {
    padding: 12px;
  }

  .operator-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    padding: 17px 19px;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  }

  .operator-badge span {
    font-size: 0.57rem;
  }

  .operator-badge strong {
    margin: 5px 0 2px;
    font-size: 1.55rem;
  }

  .operator-badge small {
    font-size: 0.72rem;
  }

  /* A shorter footer keeps legal and navigation links easy to scan. */
  .site-footer {
    margin-top: 44px;
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-brand {
    gap: 9px;
    font-size: 1.1rem;
  }

  .footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .footer-tagline {
    margin-top: 13px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .footer-disclaimer {
    margin-top: 10px;
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .footer-links,
  .footer-links:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }

  .footer-links a {
    min-width: 0;
    padding: 6px 0;
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 14px;
    font-size: 0.67rem;
    line-height: 1.45;
    gap: 4px;
  }

  @media (hover: none) and (pointer: coarse) {
    .button:active,
    .menu-toggle:active,
    .site-nav a:active,
    .footer-links a:active {
      transform: scale(0.97);
    }

    .feature-card:hover,
    .info-card:hover,
    .support-card:hover,
    .step-card:hover {
      transform: none;
    }
  }
}

@media (max-width: 390px) {
  .home-hero-copy h1 {
    font-size: clamp(1.85rem, 9.4vw, 2.25rem);
  }

  .subpage-v3 .subpage-hero .page-title,
  .subpage-beta .subpage-hero .page-title,
  .subpage-guide .subpage-hero .page-title,
  .subpage-support .subpage-hero .page-title,
  .subpage-operator .subpage-hero .page-title {
    font-size: 2rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .footer-links,
  .footer-links:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 2026-08-10 — final phone polish. Desktop remains unchanged except legal-sheet centering. */
.legal-sheet {
  margin-inline: auto;
}

@media (max-width: 720px) {
  /* The mobile masthead is one cyan surface; the menu icon sits directly on it. */
  .site-header {
    background: var(--cyan);
    box-shadow: 0 10px 26px rgba(8, 109, 128, 0.18);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    margin-inline: auto;
    background: var(--navy);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Keep the app preview, reply toast and HUBBY rail in separate rows. */
  .home-hero-grid {
    padding-bottom: 82px;
  }

  .hero-product {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .hero-product .app-shell {
    width: 100%;
  }

  .floating-message {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(88%, 278px);
    min-width: 0;
    margin: -7px 8px 8px 0;
    padding: 10px 12px;
    border-radius: 18px;
    transform: none;
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.2);
  }

  .floating-message > span {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .floating-message strong {
    font-size: 0.78rem;
  }

  .floating-message small {
    font-size: 0.62rem;
  }

  .hero-marquee-track {
    animation-duration: 46s;
  }

  .hero-marquee-track span {
    padding: 10px 0;
    font-size: 0.61rem;
    letter-spacing: 0.12em;
    word-spacing: 0.24em;
  }

  .hero-marquee i {
    margin-inline: 0.08em;
    font-size: 0.7em;
  }

  /* Logo art owns real space on phones, so it cannot escape or cover its frame. */
  .story-home-art {
    display: grid;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 66px 18px 18px;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(5, 40, 49, 0.14);
  }

  .story-home-art::before {
    inset: 14px;
    z-index: 2;
    border-radius: 24px;
    pointer-events: none;
  }

  .story-home-art img {
    position: relative;
    inset: auto;
    z-index: 1;
    display: block;
    width: auto;
    max-width: calc(100% - 20px);
    height: auto;
    max-height: calc(100% - 20px);
    margin: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    transform: none;
  }

  .story-home-art span {
    z-index: 3;
    top: 27px;
    left: 27px;
  }

  .subpage-v3 .story-grid {
    gap: 26px;
  }

  .subpage-v3 .story-art {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 16px;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(5, 40, 49, 0.12);
  }

  .subpage-v3 .story-art img {
    position: relative;
    inset: auto;
    display: block;
    width: auto;
    max-width: calc(100% - 12px);
    height: auto;
    max-height: calc(100% - 12px);
    margin: auto;
    padding: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    transform: none;
  }

  /* Operator information stays compact, legible and entirely inside its card. */
  .subpage-operator .subpage-hero-grid {
    gap: 20px;
    padding-bottom: 30px;
  }

  .subpage-operator .subpage-hero-copy {
    padding: 2px 2px 0;
  }

  .subpage-operator .subpage-hero .lead {
    margin-top: 14px;
    padding: 13px 15px;
    border-left: 3px solid #ff938d;
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, 0.06);
    line-height: 1.65;
  }

  .subpage-operator .operator-visual {
    gap: 10px;
  }

  .subpage-operator .operator-visual::before {
    inset: -5px 10px 6px -5px;
    border-radius: 27px;
    transform: rotate(1.4deg);
  }

  .subpage-operator .operator-logo {
    display: grid;
    aspect-ratio: 5 / 4;
    place-items: center;
    border-radius: 24px;
  }

  .subpage-operator .operator-logo img {
    display: block;
    width: auto;
    max-width: calc(100% - 16px);
    height: auto;
    max-height: calc(100% - 16px);
    margin: auto;
    padding: 0;
    object-fit: contain;
    object-position: center;
  }

  .subpage-operator .operator-badge {
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .subpage-operator .operator-badge strong {
    font-size: 1.38rem;
  }

  /* Remove the pale dead zone before the footer and keep the footer concise. */
  .page-main > .page-end:last-child,
  .page-main > .section:last-child {
    padding-bottom: 20px;
  }

  .subpage-games > .section:last-child {
    padding-bottom: 0;
  }

  .site-footer {
    margin-top: 0;
    padding: 24px 0 12px;
  }

  .footer-top {
    gap: 14px;
  }

  .footer-brand {
    gap: 8px;
    font-size: 1rem;
  }

  .footer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .footer-tagline {
    margin-top: 10px;
    font-size: 0.8rem;
  }

  .footer-disclaimer {
    margin-top: 8px;
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .footer-links a {
    padding: 5px 0;
    font-size: 0.7rem;
  }

  .footer-bottom {
    margin-top: 13px;
    padding-top: 10px;
    font-size: 0.62rem;
  }

  /* Touch interfaces get depth without inheriting desktop hover movement. */
  .feature-card,
  .info-card,
  .support-card,
  .step-card,
  .candidate-card,
  .game-card {
    box-shadow: 0 12px 28px rgba(5, 40, 49, 0.09);
  }
}
