:root {
  --coral: #ff6472;
  --coral-deep: #ee4f60;
  --rose: #fff0f3;
  --mint: #dcfff3;
  --navy: #131826;
  --navy-soft: #20283a;
  --ink: #23252c;
  --muted: #747985;
  --line: rgba(19, 24, 38, 0.1);
  --white: #fff;
  --cream: #fffaf5;
  --gold: #d7ad6f;
  --shadow: 0 26px 70px rgba(17, 23, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--navy);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  border: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.global-nav.is-light,
.global-nav.is-scrolled,
body.nav-open .global-nav {
  background: rgba(19, 24, 38, 0.88);
  box-shadow: 0 14px 42px rgba(8, 11, 18, 0.22);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-grid;
  gap: 3px;
  min-width: 130px;
}

.brand-mark span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  white-space: nowrap;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.site-shell {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
}

.section-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(100% - 48px, 1220px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 116px 0 78px;
}

.section-heading {
  width: min(100%, 820px);
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.16;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 56px);
}

.section-heading p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
}

.hero,
.mcn,
.matchmaking,
.footer {
  color: var(--white);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 27, 0.88), rgba(12, 16, 27, 0.54)),
    url("./assets/inmyshow/index/video-bg.png") center / cover no-repeat;
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.28);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1280px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 112px 0 70px;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 170px;
  text-align: center;
}

.hero-copy {
  padding-top: 28px;
}

.hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 400;
}

.hero h1 span {
  display: inline;
  white-space: nowrap;
}

.hero-lead {
  max-width: 620px;
  margin: 46px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-btn {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(255, 100, 114, 0.28);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.9);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  content: "";
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  color: var(--ink);
  background: #f6f6f6;
  box-shadow: var(--shadow);
}

.phone-feed {
  top: 0;
  left: 0;
  width: 330px;
  min-height: 610px;
  padding: 18px;
  background: linear-gradient(#ffd9df 0 18%, #f7f7f7 18% 100%);
}

.phone-message {
  right: 0;
  bottom: 0;
  width: 300px;
  min-height: 540px;
  padding: 20px 22px;
  background: #fff;
}

.phone-status,
.mini-app-top,
.tab-row,
.message-item,
.button-row {
  display: flex;
  align-items: center;
}

.phone-status {
  justify-content: space-between;
  color: #151923;
  font-weight: 700;
}

.phone-status.dark {
  color: #111;
}

.phone-status i {
  width: 44px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 10px;
}

.mini-app-top {
  justify-content: space-between;
  margin-top: 26px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.mini-app-top b {
  padding: 7px 14px;
  border-radius: 999px;
  color: #333;
  background: rgba(255, 255, 255, 0.72);
}

.search-pill {
  height: 39px;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1.5px solid var(--coral);
  border-radius: 999px;
  color: #7b7f88;
  background: #fff;
  font-size: 14px;
}

.tab-row {
  gap: 18px;
  margin-top: 14px;
  color: #666b75;
  font-size: 14px;
}

.tab-row strong {
  position: relative;
  color: #1f2230;
}

.tab-row strong::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.banner-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 10px;
  color: #ffd223;
  background:
    radial-gradient(circle at 82% 36%, rgba(103, 119, 183, 0.56), transparent 24%),
    linear-gradient(135deg, #121830, #202a55);
  text-align: center;
}

.banner-card b {
  font-size: 22px;
}

.banner-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.profile-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
}

.profile-card h3,
.request-card h3,
.app-screen h3,
.message-item b {
  margin: 0;
  color: #2a2d35;
}

.profile-card p {
  margin: 8px 0 0;
  color: #525760;
  font-size: 13px;
  line-height: 1.6;
}

.avatar {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eef1f5;
}

.avatar::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ff6472;
  font-size: 18px;
  font-weight: 800;
  content: "约";
}

.avatar::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #17d170;
  content: "";
}

.avatar-warm {
  width: 48px;
  height: 48px;
  background: #f7e8eb;
}

.avatar-cool,
.avatar-soft {
  width: 54px;
  height: 54px;
}

.avatar-cool {
  background: #edf4ff;
}

.avatar-soft {
  background: #f6edf9;
}

.avatar-blue {
  width: 82px;
  height: 82px;
  background: #eef4ff;
}

.photo-grid,
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.photo-grid span,
.album-grid span {
  min-height: 86px;
  border-radius: 6px;
  background:
    linear-gradient(#e5e9ef 0 0) 16px 18px / 52px 8px no-repeat,
    linear-gradient(#f2f4f7, #e8ebf0);
}

.photo-grid span:nth-child(2),
.album-grid span:nth-child(2) {
  background:
    linear-gradient(#dde2e9 0 0) 16px 18px / 52px 8px no-repeat,
    linear-gradient(#f7f4ef, #e8ece8);
}

.photo-grid span:nth-child(3),
.album-grid span:nth-child(3) {
  background:
    linear-gradient(#e0e4eb 0 0) 16px 18px / 52px 8px no-repeat,
    linear-gradient(#f3f4f6, #e4e7ed);
}

.phone-message h3 {
  margin: 26px 0 28px;
  color: #272b34;
  font-size: 24px;
  text-align: center;
}

.message-item {
  gap: 16px;
  margin-top: 24px;
}

.message-item p {
  margin: 8px 0 0;
  color: #9a9da5;
  font-size: 13px;
}

.round-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}

.round-icon.camera {
  background: radial-gradient(circle at center, #f47ee2 0 18%, transparent 19%), #f8d5fb;
}

.round-icon.send {
  background: radial-gradient(circle at center, #837bff 0 18%, transparent 19%), #cfe0ff;
}

.round-icon.bell {
  background: radial-gradient(circle at center, #ffbf41 0 18%, transparent 19%), #ffe5b9;
}

.scroll-next {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.scroll-next::before {
  position: absolute;
  inset: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  content: "";
  transform: rotate(45deg);
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.72;
  }
  50% {
    transform: translate(-50%, 9px);
    opacity: 1;
  }
}

.about,
.yuepai,
.organization,
.process {
  background: #fff;
  background-position: center;
  background-size: cover;
}

.about {
  background-image:
    linear-gradient(90deg, rgba(12, 16, 27, 0.88), rgba(12, 16, 27, 0.58)),
    url("./assets/inmyshow/index/weiq-bg.png");
}

.yuepai {
  background-image:
    linear-gradient(90deg, rgba(12, 16, 27, 0.9), rgba(12, 16, 27, 0.58)),
    url("./assets/inmyshow/index/xiwujie-bg.png");
}

.process {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
    url("./assets/inmyshow/index/bg7.png");
}

.organization {
  background: #f4f6f9;
}

.organization-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
}

.organization-details {
  margin: 0;
  border-top: 1px solid rgba(19, 24, 38, 0.18);
}

.organization-details div {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(260px, 1.3fr);
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(19, 24, 38, 0.14);
}

.organization-details dt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.organization-details dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 7vw, 110px);
  width: min(100%, 1120px);
  margin: clamp(34px, 5vw, 70px) auto 0;
}

.business-grid article,
.script-board article,
.match-panel article,
.step-line article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(17, 23, 36, 0.08);
}

.business-grid article {
  min-height: 180px;
  padding: 0 12px;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.business-grid span {
  color: var(--coral);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.9;
}

.business-grid h3,
.script-board h3,
.match-panel h3,
.step-line h3 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: 23px;
}

.business-grid p,
.script-board p,
.match-panel p,
.step-line p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.about .section-heading h2,
.yuepai .section-heading h2 {
  color: var(--white);
}

.about .section-heading p:not(.eyebrow),
.yuepai .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.about .business-grid h3 {
  color: var(--white);
  font-weight: 400;
}

.about .business-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.mcn {
  background:
    linear-gradient(90deg, rgba(14, 18, 30, 0.9), rgba(14, 18, 30, 0.66)),
    url("./assets/inmyshow/index/smart-bg.png") center / cover no-repeat;
}

.mcn .section-heading h2,
.matchmaking .section-heading h2 {
  color: var(--white);
}

.mcn .section-heading p:not(.eyebrow),
.matchmaking .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.script-board {
  display: grid;
  gap: 16px;
}

.script-board article {
  position: relative;
  padding: 28px 30px 28px 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.script-board article::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.script-board h3 {
  margin-top: 0;
  color: var(--white);
}

.script-board p {
  color: rgba(255, 255, 255, 0.74);
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(270px, 310px) minmax(260px, 330px);
  gap: 18px;
  align-items: center;
  justify-content: end;
}

.real-screens {
  display: block;
  justify-self: end;
  width: min(100%, 680px);
}

.yuepai-real-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.yuepai-real-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 22, 0.16), rgba(7, 12, 22, 0));
  content: "";
  pointer-events: none;
}

.yuepai-real-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  transform: scale(1.12);
  transform-origin: right center;
}

.yuepai-layout {
  grid-template-columns: minmax(360px, 500px) minmax(560px, 1fr);
}

.yuepai-phone-main {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 310px);
  min-height: 610px;
}

.request-preview {
  align-self: center;
  min-height: 470px;
}

.app-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f5f6;
  box-shadow: var(--shadow);
}

.app-screen.large {
  min-height: 470px;
  padding: 78px 18px 24px;
}

.app-head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 74px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.app-head.coral {
  background: var(--coral);
}

.request-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  margin-top: 16px;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
}

.request-card h3 {
  font-size: 21px;
}

.request-card p {
  margin: 12px 0 0;
  color: #333743;
  font-size: 15px;
  line-height: 1.75;
}

.request-card.muted p {
  color: #4d515c;
}

.button-row {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.button-row span,
.button-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 42px;
  border-radius: 999px;
  font-size: 15px;
}

.button-row span {
  border: 1.5px solid var(--coral);
  color: var(--coral);
  font-weight: 500;
}

.button-row b {
  color: var(--white);
  background: var(--coral);
}

.app-screen.compact {
  min-height: 520px;
  padding: 28px 24px;
}

.profile-preview {
  background: #f4f4f5;
}

.profile-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  background:
    linear-gradient(90deg, rgba(255, 100, 114, 0.88), rgba(255, 100, 114, 0.72)),
    url("./assets/inmyshow/index/weiq-bg.png") center / cover no-repeat;
}

.profile-avatar {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  border: 4px solid #fff;
}

.profile-preview h3,
.profile-preview p,
.profile-preview .album-grid {
  position: relative;
  z-index: 2;
}

.profile-preview h3 {
  margin-top: 24px;
  font-size: 23px;
}

.profile-preview p {
  margin: 14px 0 0;
  color: #868b94;
  font-size: 15px;
}

.profile-preview .album-grid {
  margin-top: 36px;
}

.profile-preview .album-grid span {
  min-height: 112px;
}

.member-preview {
  background:
    linear-gradient(rgba(245, 245, 246, 0.88), rgba(245, 245, 246, 0.94)),
    url("./assets/inmyshow/index/bg7.png") center / cover no-repeat,
    #f5f5f6;
}

.member-preview h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 23px;
}

.member-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #111, #242424);
}

.member-card b {
  font-size: 20px;
}

.member-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.member-preview ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.member-preview li {
  padding: 17px 18px;
  border-radius: 10px;
  color: #444955;
  background: var(--white);
  font-size: 15px;
}

.matchmaking {
  background:
    linear-gradient(90deg, rgba(14, 18, 30, 0.9), rgba(14, 18, 30, 0.7)),
    url("./assets/inmyshow/index/klout.png") center / cover no-repeat;
}

.match-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.match-panel article {
  min-height: 210px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.match-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.match-panel h3 {
  color: var(--white);
}

.match-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.step-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step-line article {
  position: relative;
  min-height: 260px;
  padding: 34px 28px 30px;
}

.step-line span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 24px;
  font-weight: 800;
}

.footer {
  min-height: auto;
  background:
    linear-gradient(90deg, rgba(14, 18, 30, 0.94), rgba(14, 18, 30, 0.86)),
    url("./assets/inmyshow/index/video-bg.png") center / cover no-repeat;
  scroll-snap-align: end;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr) minmax(180px, 0.7fr);
  gap: clamp(34px, 5vw, 80px);
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 70px 0;
}

.footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.9;
}

.footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.footer-brand {
  color: #fff;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.copyright {
  margin: 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.26);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

/* Multi-page site */
.multi-page {
  color: var(--ink);
  background: #fff;
}

.multi-page .nav-menu a[aria-current="page"] {
  color: #fff;
}

.multi-page .nav-menu a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-shell {
  min-height: 100vh;
  background: #fff;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 58vh;
  padding: 142px 24px 92px;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 24, 0.92), rgba(10, 14, 24, 0.58));
  content: "";
}

.home-page-hero {
  min-height: 82vh;
  background-image: url("./assets/inmyshow/index/video-bg.png");
}

.about-page-hero {
  background-image: url("./assets/inmyshow/index/weiq-bg.png");
}

.mcn-page-hero {
  background-image: url("./assets/inmyshow/index/smart-bg.png");
}

.yuepai-page-hero {
  background-image: url("./assets/inmyshow/index/xiwujie-bg.png");
}

.matchmaking-page-hero {
  background-image: url("./assets/inmyshow/index/klout.png");
}

.process-page-hero {
  background-image: url("./assets/inmyshow/index/bg7.png");
}

.contact-page-hero {
  background-image: url("./assets/inmyshow/index/imsocial-bg.png");
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.page-hero-content h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.16;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.9;
}

.page-section {
  padding: 104px 0;
  background: #fff;
}

.page-section-alt {
  background: #f4f6f9;
}

.page-section-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.multi-page .section-heading h2 {
  font-size: 48px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--coral-deep);
  font-size: 15px;
  font-weight: 700;
}

.text-link span {
  font-size: 20px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: #fff;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-index-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(19, 24, 38, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 23, 36, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-index-item:hover {
  border-color: rgba(238, 79, 96, 0.42);
  box-shadow: 0 24px 56px rgba(17, 23, 36, 0.12);
  transform: translateY(-4px);
}

.service-index-item > span {
  color: rgba(238, 79, 96, 0.18);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.service-index-item .service-kicker {
  margin: 18px 0 0;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-index-item h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 25px;
}

.service-index-item p:not(.service-kicker) {
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.service-index-item b {
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
}

.identity-overview,
.story-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.identity-overview .section-heading,
.story-grid .section-heading,
.contact-layout .section-heading {
  margin-bottom: 0;
}

.compact-details div {
  padding: 20px 0;
}

.long-copy p {
  margin: 0;
  color: #525866;
  font-size: 18px;
  line-height: 2;
}

.long-copy p + p {
  margin-top: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-grid.four-column {
  grid-template-columns: repeat(4, 1fr);
}

.detail-item {
  min-height: 270px;
  padding: 30px 28px;
  border: 1px solid rgba(19, 24, 38, 0.1);
  border-radius: 8px;
  background: #fff;
}

.detail-item > span {
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.detail-item h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: 23px;
}

.detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.media-split .section-heading {
  margin-bottom: 0;
}

.product-image {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9ecf1;
  box-shadow: var(--shadow);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  color: #fff;
  background: var(--navy-soft);
}

.cta-band .eyebrow {
  margin-bottom: 10px;
}

.cta-band h2 {
  margin: 0;
  font-size: 34px;
}

.cta-band .text-link {
  flex: 0 0 auto;
  margin-top: 0;
}

.route-list {
  border-top: 1px solid rgba(19, 24, 38, 0.14);
}

.route-list a {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(19, 24, 38, 0.14);
}

.route-list span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.route-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.route-list b {
  color: var(--coral-deep);
  font-size: 14px;
}

.contact-details a {
  color: var(--ink);
}

.site-footer {
  position: relative;
}

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

.pagination {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 45;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: rgba(141, 148, 162, 0.7);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pagination button.active {
  border-color: var(--coral);
  background: transparent;
  transform: scale(1.35);
}

@media (max-width: 1120px) {
  .global-nav {
    min-height: 74px;
    padding: 0 20px;
  }

  .brand-mark span {
    font-size: 21px;
  }

  .nav-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    left: 6px;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: var(--white);
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span {
    top: 20px;
  }

  .nav-toggle::before {
    top: 12px;
  }

  .nav-toggle::after {
    top: 28px;
  }

  .nav-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"]::before {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 16px;
    display: grid;
    gap: 0;
    width: min(300px, calc(100vw - 32px));
    max-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(19, 24, 38, 0.96);
    box-shadow: 0 22px 48px rgba(8, 11, 18, 0.3);
    transition: max-height 200ms ease;
  }

  .nav-menu.open {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-menu a {
    min-height: 0;
    padding: 16px 22px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-inner,
  .split-layout,
  .organization-layout {
    grid-template-columns: 1fr;
  }

  .hero-centered,
  .hero-copy,
  .section-heading.align-left,
  .organization-layout .section-heading.align-left {
    text-align: center;
  }

  .hero-lead,
  .section-heading.align-left p:not(.eyebrow),
  .organization-layout .section-heading.align-left p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 580px;
    margin: 0 auto;
  }

  .phone-feed {
    left: 4%;
  }

  .yuepai-phone-main {
    left: auto;
  }

  .phone-message {
    right: 4%;
  }

  .business-grid,
  .app-showcase,
  .step-line {
    grid-template-columns: 1fr;
  }

  .app-screen.compact {
    min-height: 420px;
  }

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

  .identity-overview,
  .story-grid,
  .contact-layout,
  .media-split {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .identity-overview .section-heading,
  .story-grid .section-heading,
  .contact-layout .section-heading,
  .media-split .section-heading {
    width: min(100%, 760px);
    margin-right: auto;
    margin-left: auto;
  }

  .detail-grid.four-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-shell {
    scroll-snap-type: y proximity;
  }

  .panel {
    min-height: 100svh;
  }

  .section-shell {
    width: min(100% - 32px, 1220px);
    padding: 92px 0 56px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .page-hero {
    min-height: 54vh;
    padding: 116px 20px 70px;
  }

  .home-page-hero {
    min-height: 82svh;
  }

  .page-hero-content h1 {
    font-size: 42px;
  }

  .page-hero-content > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .page-section {
    padding: 72px 0;
  }

  .page-section-inner {
    width: min(100% - 32px, 1180px);
  }

  .multi-page .section-heading h2 {
    font-size: 32px;
  }

  .service-index,
  .detail-grid,
  .detail-grid.four-column {
    grid-template-columns: 1fr;
  }

  .service-index-item {
    min-height: 300px;
  }

  .detail-item {
    min-height: auto;
  }

  .identity-overview,
  .story-grid,
  .contact-layout,
  .media-split {
    gap: 36px;
  }

  .long-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 52px 20px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .route-list a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .hero-inner {
    width: min(100% - 32px, 1280px);
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero-centered {
    min-height: 100svh;
    justify-content: center;
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 46px;
  }

  .hero-visual {
    min-height: 725px;
  }

  .phone {
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-feed {
    top: 0;
    left: 50%;
    width: min(100%, 326px);
    transform: translateX(-50%);
  }

  .yuepai-phone-main {
    left: auto;
    width: min(100%, 326px);
    margin: 0 auto;
    transform: none;
  }

  .phone-message {
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(94%, 300px);
    min-height: 400px;
    transform: translateX(-50%);
  }

  .phone-message .message-item:nth-of-type(3) {
    display: none;
  }

  .business-grid article,
  .script-board article,
  .match-panel article,
  .step-line article {
    padding: 24px;
  }

  .business-grid article,
  .step-line article {
    min-height: auto;
  }

  .business-grid h3,
  .script-board h3,
  .match-panel h3,
  .step-line h3 {
    font-size: 20px;
  }

  .business-grid p,
  .script-board p,
  .match-panel p,
  .step-line p {
    font-size: 14px;
  }

  .app-screen.large {
    min-height: auto;
    padding: 74px 14px 16px;
  }

  .request-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .request-card p {
    font-size: 14px;
  }

  .button-row {
    justify-content: stretch;
  }

  .button-row span,
  .button-row b {
    min-width: 0;
    flex: 1;
    font-size: 13px;
  }

  .app-screen.compact {
    min-height: auto;
  }

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

  .organization-details div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .pagination {
    right: 9px;
    gap: 9px;
  }

  .pagination button {
    width: 7px;
    height: 7px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
    padding: 48px 0;
  }
}
