:root {
  --ink: #314a70;
  --muted: #6e7f9e;
  --blue: #638bdb;
  --line: rgba(91, 121, 174, .24);
  --glass: rgba(255, 255, 255, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background-color: #edf1fa;
  background-image: url("assets/abc16661-fab0-411b-95be-4ede3bad8ca5.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: scroll;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 252, 255, .28), rgba(239, 243, 252, .58));
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }

.creative-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 72px));
  height: 94px;
  margin: auto;
  border-bottom: 1px solid transparent;
  transition: .35s;
}
.creative-header.is-scrolled {
  width: 100%;
  padding: 0 max(36px, calc((100vw - 1368px) / 2));
  background: rgba(247, 250, 255, .76);
  border-color: rgba(111, 140, 189, .16);
  backdrop-filter: blur(18px);
}
.creative-brand {
  justify-self: start;
}
.creative-brand img {
  display: block;
  width: clamp(168px, 12vw, 218px);
  height: 66px;
  object-fit: contain;
}
.creative-header nav {
  justify-self: center;
  display: flex;
  gap: 42px;
  align-items: center;
  font-size: 14px;
}
.creative-header nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s;
  white-space: nowrap;
}
.creative-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  scale: 0 1;
  background: #79a5f0;
  box-shadow: 0 0 8px #96baff;
  transition: scale .25s;
}
.creative-header nav a:hover,
.creative-header nav .is-active { color: #5d84d5; }
.creative-header nav .is-active::after { scale: 1; }

.creative-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(530px, 1.25fr);
  align-items: center;
  gap: 40px;
  min-height: 620px;
  width: min(1370px, calc(100% - 88px));
  margin: auto;
  padding: 45px 22px 80px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 30px;
}
.overline {
  margin: 0 0 18px;
  color: #6f91ca;
  font: 600 11px/1 Arial, sans-serif;
  letter-spacing: .22em;
}
.hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Source Han Serif SC", "STZhongsong", "Songti SC", "STSong", "SimSun", serif;
  font-size: clamp(60px, 6vw, 92px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .08em;
}
.hero-tagline {
  margin: 25px 0 19px;
  font-size: 18px;
  letter-spacing: .04em;
}
.hero-body {
  max-width: 440px;
  margin: 0;
  color: #72819b;
  font-size: 14px;
  line-height: 2;
}
.soft-button {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 27px;
  padding: 12px 18px 12px 22px;
  border: 1px solid rgba(100, 133, 197, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .26);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, .42), 0 6px 18px rgba(94, 135, 202, .12);
  font-size: 14px;
  transition: transform .25s, box-shadow .25s;
}
.soft-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(90, 125, 194, .25);
}
.soft-button span { font-size: 18px; }

.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 1% 7% 0;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .94), rgba(255, 255, 255, .42) 43%, transparent 73%);
  filter: blur(24px);
}
.hero-art img {
  position: relative;
  width: min(100%, 570px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(90, 112, 154, .16));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.content-stage {
  display: grid;
  grid-template-columns: minmax(280px, .67fr) minmax(540px, 1.33fr);
  align-items: center;
  gap: clamp(50px, 8vw, 145px);
  width: min(1280px, calc(100% - 88px));
  margin: auto;
  padding: 108px 24px;
}
.stage-copy { max-width: 400px; }
.stage-number {
  margin: 0 0 12px;
  color: #91a9db;
  font: 400 72px/.8 "Songti SC", serif;
}
.stage-copy h2 {
  margin: 0;
  font: 600 clamp(31px, 3.4vw, 46px)/1.2 "Songti SC", serif;
  letter-spacing: .06em;
}
.stage-title {
  margin: 16px 0 28px;
  font-size: 16px;
}
.stage-copy > p:not(.stage-number):not(.overline):not(.stage-title) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}
.media-suite { min-width: 0; }
.media-main {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 18px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 16px 35px rgba(95, 119, 165, .17), inset 0 0 26px rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
}
.sample-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #2a314b;
  object-fit: cover;
}
.video-launch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.video-label {
  position: absolute;
  bottom: 25px;
  left: 29px;
  z-index: 2;
  color: rgba(255, 255, 255, .78);
  font: 600 9px Arial, sans-serif;
  letter-spacing: .16em;
}
.media-main.is-playing .video-launch,
.media-main.is-playing .video-label {
  opacity: 0;
  pointer-events: none;
}
.media-poster {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background-color: #aeb9d0;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.media-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(34, 41, 70, .18), rgba(33, 49, 89, .42));
}
.media-poster span {
  position: absolute;
  left: 19px;
  bottom: 15px;
  color: rgba(255, 255, 255, .72);
  font: 600 9px Arial, sans-serif;
  letter-spacing: .16em;
}
.poster-drama { background-image: linear-gradient(120deg, rgba(19, 31, 60, .15), rgba(255, 195, 152, .12)), url("assets/creative-hero-art.webp"); }
.poster-love { background-image: linear-gradient(120deg, #414f70, #d49584); }
.poster-brand { background-image: linear-gradient(120deg, #203355, #a6b8de); }
.poster-city { background-image: linear-gradient(120deg, #2c547e, #b7a8cf); }
.poster-portrait { background-image: linear-gradient(120deg, #b7929d, #65769c); }
.poster-human {
  background-image: linear-gradient(150deg, rgba(227, 235, 248, .28), rgba(117, 142, 188, .3)), url("assets/creative-hero-art.webp");
  background-position: 53% center;
}
.poster-music { background-image: linear-gradient(120deg, #253250, #b28275); }
.play-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  color: white;
  font-size: 22px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.play-button:hover {
  background: rgba(255, 255, 255, .34);
}
.video-launch:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.media-tabs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow: auto;
  padding: 2px;
}
.media-tabs button {
  flex: 1 0 110px;
  min-height: 42px;
  border: 1px solid rgba(112, 143, 192, .23);
  border-radius: 8px;
  background: rgba(255, 255, 255, .38);
  color: #647694;
  font: 12px "Microsoft YaHei", sans-serif;
  cursor: pointer;
  transition: .2s;
}
.media-tabs button.is-selected,
.media-tabs button:hover {
  border-color: #829de0;
  background: rgba(255, 255, 255, .72);
  color: #5077c5;
  box-shadow: 0 4px 13px rgba(111, 141, 207, .15);
}

.human-stage {
  grid-template-columns: minmax(340px, .76fr) minmax(300px, .9fr);
  padding-top: 55px;
  padding-bottom: 55px;
}
.human-media {
  display: grid;
  place-items: center;
}
.phone-player {
  width: min(305px, 88vw);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 31px;
  background: rgba(255, 255, 255, .37);
  box-shadow: 0 18px 38px rgba(90, 117, 166, .18), inset 0 0 18px white;
  backdrop-filter: blur(10px);
}
.phone-player .media-poster {
  aspect-ratio: 9 / 16;
  border-radius: 23px;
}
.feature-tags,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}
.feature-tags span {
  padding: 7px 11px;
  border-bottom: 1px solid rgba(109, 133, 177, .35);
  color: #617598;
  font-size: 12px;
}
.mini-actions { gap: 9px; margin-top: 25px; }
.mini-actions button {
  padding: 10px 13px;
  border: 1px solid rgba(105, 137, 199, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
  color: #60769b;
  font: 12px "Microsoft YaHei", sans-serif;
  cursor: pointer;
}
.mini-actions button:hover { background: rgba(255, 255, 255, .78); }

.music-stage { padding-top: 105px; }
.waveform {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  height: 24px;
  background: repeating-linear-gradient(90deg, transparent 0 4px, rgba(218, 240, 255, .9) 4px 6px, transparent 6px 9px);
  clip-path: polygon(0 52%, 3% 31%, 6% 72%, 9% 43%, 12% 80%, 15% 24%, 18% 62%, 21% 40%, 24% 71%, 27% 22%, 30% 65%, 33% 37%, 36% 77%, 39% 30%, 42% 58%, 45% 19%, 48% 72%, 51% 41%, 54% 84%, 57% 26%, 60% 62%, 63% 36%, 66% 77%, 69% 24%, 72% 58%, 75% 35%, 78% 74%, 81% 26%, 84% 67%, 87% 40%, 90% 80%, 93% 35%, 96% 66%, 100% 50%);
  animation: wave 1.5s linear infinite;
}
.media-main .waveform {
  z-index: 2;
}

@media (min-width: 900px) {
  .drama-stage .stage-copy h2,
  .human-stage .stage-copy h2 {
    white-space: nowrap;
  }
}

.creative-consult {
  width: min(1120px, calc(100% - 64px));
  margin: 76px auto 110px;
  padding: 75px 9%;
  text-align: center;
  border-top: 1px solid rgba(111, 141, 194, .24);
  border-bottom: 1px solid rgba(111, 141, 194, .24);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .44), transparent);
}
.creative-consult h2 {
  margin: 0;
  font: 600 clamp(31px, 3.6vw, 48px)/1.25 "Songti SC", serif;
  letter-spacing: .06em;
}
.creative-consult > p:not(.overline) {
  max-width: 670px;
  margin: 22px auto 0;
  color: #6e7d98;
  line-height: 1.9;
}
.soft-button--solid {
  background: linear-gradient(100deg, #88b1ff, #c8b6f4);
  border-color: rgba(255, 255, 255, .8);
  color: white;
}

.creative-footer {
  display: block;
  min-height: clamp(132px, 14.4vh, 164px);
  padding: clamp(22px, 2.35vh, 30px) 10.5vw 16px;
  background: rgba(238, 243, 250, .7);
  border-top: 1px solid rgba(108, 127, 156, .18);
  box-shadow: inset 0 1px rgba(255, 255, 255, .62), 0 -14px 40px rgba(151, 171, 205, .12);
  color: rgba(72, 88, 112, .86);
  font-size: 12px;
  backdrop-filter: blur(12px);
}
.creative-footer__main {
  display: grid;
  grid-template-columns: minmax(380px, 1.7fr) repeat(3, minmax(160px, .6fr));
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}
.creative-footer__company {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.creative-footer__company strong {
  font: 500 clamp(14px, 1.15vw, 18px)/1.2 "Songti SC", "STSong", serif;
  letter-spacing: .1em;
  white-space: nowrap;
}
.creative-footer__company span {
  color: rgba(84, 105, 137, .58);
  font: 600 8px/1.3 Arial, sans-serif;
  letter-spacing: .2em;
  white-space: nowrap;
}
.creative-footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  color: rgba(80, 97, 122, .83);
}
.creative-footer__contact img {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  filter: grayscale(1) brightness(.78) opacity(.78);
}
.creative-footer__contact span {
  display: grid;
  gap: 3px;
  color: rgba(79, 96, 122, .78);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}
.creative-footer__contact b {
  color: rgba(55, 68, 88, .9);
  font-weight: 500;
}
.creative-footer__legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(108, 127, 156, .16);
  color: rgba(92, 109, 136, .55);
  font-size: 10px;
}
.creative-footer__legal a {
  color: inherit;
  text-decoration: none;
}
.creative-footer__legal a:hover { color: #5d84d5; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes wave {
  50% {
    opacity: .4;
    transform: scaleY(.7);
  }
}

@media (max-width: 900px) {
  .creative-header {
    width: calc(100% - 36px);
    height: 72px;
    grid-template-columns: auto 1fr;
    gap: 18px;
  }
  .creative-header.is-scrolled { padding: 0 18px; }
  .creative-header nav {
    justify-self: end;
    gap: 18px;
    overflow: auto;
    font-size: 12px;
    scrollbar-width: none;
  }
  .creative-header nav::-webkit-scrollbar { display: none; }
  .creative-brand img { width: 136px; height: 48px; }
  .creative-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    width: calc(100% - 36px);
    padding: 58px 0;
  }
  .hero-copy {
    padding: 0;
    text-align: center;
  }
  .hero-body { margin: auto; }
  .hero-art { min-height: 330px; }
  .content-stage,
  .human-stage {
    grid-template-columns: 1fr;
    gap: 35px;
    width: calc(100% - 40px);
    padding: 74px 0;
  }
  .stage-copy { max-width: 600px; }
  .human-stage .human-media { order: 2; }
  .human-stage .stage-copy { order: 1; }
  .creative-footer { padding: 24px 6vw 16px; }
  .creative-footer__main {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .creative-footer__company {
    grid-column: 1 / -1;
    text-align: center;
  }
  .creative-footer__company strong,
  .creative-footer__company span { white-space: normal; }
  .creative-footer__contact { justify-content: flex-start; }
  .creative-footer__contact img {
    width: 27px;
    height: 27px;
  }
  .creative-footer__contact span { font-size: 10px; }
  .creative-footer__legal {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    text-align: center;
    line-height: 1.6;
  }
}

@media (max-width: 560px) {
  body { background-size: auto 100%; }
  .creative-header nav { gap: 15px; }
  .creative-brand img { width: 118px; height: 42px; }
  .hero-copy h1 { font-size: 52px; letter-spacing: .06em; }
  .hero-art { min-height: 270px; }
  .content-stage { padding: 64px 0; }
  .stage-number { font-size: 55px; }
  .stage-copy h2 { font-size: 30px; }
  .media-main { padding: 7px; }
  .media-tabs button {
    flex-basis: 98px;
    font-size: 11px;
  }
  .human-stage .stage-copy { text-align: center; }
  .feature-tags,
  .mini-actions { justify-content: center; }
  .creative-consult {
    width: calc(100% - 36px);
    margin: 40px auto 72px;
    padding: 56px 22px;
  }
  .creative-footer__main {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .creative-footer__contact { justify-content: center; }
  .creative-footer__legal { display: block; }
  .creative-footer__legal a {
    display: block;
    margin-top: 4px;
  }
}

/* Section landing and long-page background tuning. */
html { scroll-padding-top: 94px; }

body {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #edf1fa !important;
  background-image: url("assets/abc16661-fab0-411b-95be-4ede3bad8ca5.png") !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: 100% auto !important;
  background-attachment: scroll !important;
}

body::before {
  position: absolute;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 252, 255, .16), rgba(239, 243, 252, .38));
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100vh;
  background-image: url("assets/abc16661-fab0-411b-95be-4ede3bad8ca5.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
  display: none;
}

.creative-header {
  justify-items: stretch;
}

.creative-brand img {
  width: clamp(210px, 13.6vw, 248px);
  height: 74px;
}

.creative-header nav {
  justify-self: center;
}

.creative-hero,
.content-stage,
.creative-consult {
  scroll-margin-top: 94px;
}

.creative-hero {
  min-height: calc(100vh - 94px);
  padding-top: clamp(64px, 7vh, 92px);
  padding-bottom: clamp(78px, 9vh, 118px);
}

.hero-art {
  min-height: min(64vh, 680px);
}

.hero-art img {
  width: min(100%, 690px);
  max-height: 660px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, .86) 68%, rgba(0, 0, 0, .28) 82%, transparent 100%);
  -webkit-mask-composite: initial;
  mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, .86) 68%, rgba(0, 0, 0, .28) 82%, transparent 100%);
  mask-composite: initial;
}

.content-stage,
.human-stage {
  min-height: calc(100svh - 94px);
  padding-top: clamp(78px, 8vh, 112px);
  padding-bottom: clamp(78px, 8vh, 112px);
}

.creative-hero {
  min-height: calc(100svh - 94px);
}

.creative-footer {
  background: rgba(226, 233, 244, .72);
}

.creative-footer__main {
  max-width: 1240px;
  margin: 0 auto;
}

.creative-footer__legal {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.media-suite.wide .media-main {
  padding: 10px;
}

.media-suite.wide .media-poster {
  min-height: 0;
}

.phone-player {
  width: min(380px, 88vw);
}

/* Mirrorisle Culture digital IP showcase. */
.human-stage {
  align-items: center;
}

.ip-player {
  width: min(390px, 92vw);
}

.ip-player__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 34px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 22px 48px rgba(73, 100, 147, .2), inset 0 0 22px rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
}

.ip-sound-toggle {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(35, 67, 113, .3);
  backdrop-filter: blur(8px);
  opacity: .72;
  transition: background .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.ip-sound-toggle:hover,
.ip-sound-toggle.is-audible {
  opacity: 1;
  background: rgba(70, 139, 218, .72);
  box-shadow: 0 0 18px rgba(102, 187, 255, .7);
}

.ip-sound-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.ip-video,
.ip-poster {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 25px;
  object-fit: cover;
  opacity: 0;
  transition: opacity .38s ease;
}

.ip-video {
  z-index: 1;
  background: #d8dfec;
}

.ip-video.is-active,
.ip-poster.is-active {
  opacity: 1;
}

.ip-poster {
  z-index: 2;
  background-position: center;
  background-size: cover;
}

.ip-player.is-playing .ip-poster.is-active {
  opacity: 0;
}

.ip-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(44, 66, 104, .34);
  color: #fff;
  font: 300 35px/30px Arial, sans-serif;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .22s ease, background .22s ease;
}

.ip-nav:hover,
.ip-player__frame:hover .ip-nav {
  opacity: 1;
}

.ip-nav:hover { background: rgba(45, 100, 169, .68); }
.ip-nav--previous { left: 20px; }
.ip-nav--next { right: 20px; }

.ip-switcher {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.ip-switcher button {
  min-height: 44px;
  border: 1px solid rgba(112, 144, 196, .26);
  border-radius: 12px;
  background: rgba(255, 255, 255, .28);
  color: #6983aa;
  cursor: pointer;
  font: 500 13px/1 "Noto Sans SC", sans-serif;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.ip-switcher button span {
  margin-right: 8px;
  color: #9aafd2;
  font-size: 10px;
  letter-spacing: .1em;
}

.ip-switcher button.is-active {
  border-color: rgba(79, 141, 225, .56);
  background: rgba(227, 241, 255, .72);
  color: #3267a6;
}

.ip-ability-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ip-ability-list article {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(129, 157, 209, .25);
  border-radius: 12px;
  background: rgba(255, 255, 255, .24);
}

.ip-ability-list b {
  display: block;
  color: #35547f;
  font-size: 15px;
}

.ip-item-kicker {
  margin: 0 !important;
  color: #82a3d1 !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .15em;
}

.ip-ability-list p {
  margin: 4px 0 0;
  color: #7d8fae;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  body {
    background: #edf1fa !important;
  }
  body::after {
    background-size: 100% auto;
    background-position: top center;
  }
  .creative-hero,
  .content-stage,
  .creative-consult {
    scroll-margin-top: 72px;
  }
  .creative-hero,
  .content-stage,
  .human-stage {
    min-height: calc(100svh - 72px);
  }
  .content-stage,
  .human-stage {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .media-suite.wide .media-poster {
    min-height: auto;
  }
  .hero-art {
    min-height: 420px;
  }
  .hero-art img {
    width: min(100%, 520px);
    max-height: 500px;
  }
  .phone-player {
    width: min(330px, 88vw);
  }
  .ip-player { width: min(360px, 90vw); }
}

@media (max-width: 560px) {
  body::after { background-size: 100% auto; }
  .creative-brand img {
    width: 150px;
    height: 54px;
  }
  .content-stage,
  .human-stage {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .hero-art {
    min-height: 360px;
  }
  .ip-player { width: min(330px, 90vw); }
  .ip-player__name { font-size: 22px; }
  .ip-nav { opacity: 1; }
}
