:root {
  --page-bg: #f5f5f7;
  --nav-bg: rgba(245, 245, 247, 0.88);
  --text: #1d1d1f;
  --muted: #48484a;
  --line: rgba(0, 0, 0, 0.08);
  --stage-width: 1180px;
  --nav-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: min(100% - 40px, var(--stage-width));
  height: var(--nav-height);
  margin: 0 auto;
}

.brand {
  display: none;
  align-items: center;
  justify-content: flex-start;
  width: 78px;
  height: 36px;
}

.brand img {
  display: block;
  width: 74px;
  height: 34px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  align-items: center;
  height: 100%;
  text-align: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 12px;
  color: #262628;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 140ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.46);
}

.nav-links a:active {
  transform: translateY(1px) scale(0.98);
  background: rgba(0, 113, 227, 0.1);
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.42);
  outline-offset: -8px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100% - 48px, var(--stage-width));
  min-height: calc(100svh - var(--nav-height));
  margin: 0 auto;
  padding: clamp(58px, 8vh, 92px) 0 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.26;
}

.persona-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(14px, 3vw, 44px);
  width: 100%;
  margin-top: clamp(36px, 6vh, 70px);
  padding: 0 clamp(4px, 2vw, 22px);
}

.persona-card {
  position: relative;
  --tilt: 0deg;
  --lift: 0px;
  --stagger: 0ms;
  --hover-shift: 0px;
  --hover-rotate: 0deg;
  height: min(51vw, 545px);
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 28px 34px 22px 38px;
  background: #fff;
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateY(var(--lift)) rotate(var(--tilt));
  animation:
    personaEntrance 4.2s steps(1, end) var(--stagger) both,
    personaIdle 6.4s ease-in-out calc(4.2s + var(--stagger)) infinite;
  cursor: default;
  transition: box-shadow 260ms ease, filter 260ms ease;
  will-change: transform, filter;
}

.persona-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.06) 0 1px,
      transparent 1px 5px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      transparent 1px 6px
    );
  mix-blend-mode: multiply;
  opacity: 0.26;
  animation: pixelScan 780ms steps(3, end) infinite;
}

.persona-card::after {
  position: absolute;
  inset: -10px;
  z-index: 3;
  pointer-events: none;
  content: "";
  border: 3px solid #fff;
  border-radius: inherit;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.12));
  transition: border-color 220ms ease, filter 220ms ease;
}

.persona-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: translateX(var(--img-x, 0)) scale(1);
  transition: transform 220ms steps(2, end), filter 220ms steps(2, end);
}

.persona-left {
  --tilt: -2deg;
  --stagger: 80ms;
  --img-x: 0;
  --hover-shift: -8px;
  --hover-rotate: 2deg;
}

.persona-center {
  z-index: 1;
  --lift: -12px;
  --stagger: 260ms;
  --img-x: -33.333%;
  --hover-shift: -14px;
  --hover-rotate: -1deg;
  height: min(54vw, 585px);
  min-height: 380px;
  border-radius: 34px 28px 40px 24px;
}

.persona-right {
  --tilt: 2deg;
  --stagger: 160ms;
  --img-x: -66.666%;
  --hover-shift: -10px;
  --hover-rotate: -2deg;
}

.persona-left img {
  --img-x: 0;
}

.persona-center img {
  --img-x: -33.333%;
}

.persona-right img {
  --img-x: -66.666%;
}

.persona-card:hover {
  z-index: 4;
  animation-play-state: paused;
  filter: saturate(1.1) contrast(1.05);
  box-shadow:
    0 34px 64px rgba(0, 0, 0, 0.13),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translate(var(--hover-shift), calc(var(--lift) - 16px))
    rotate(var(--hover-rotate)) scale(1.035);
}

.persona-card:hover::before {
  opacity: 0.16;
  animation-duration: 360ms;
}

.persona-card:hover::after {
  border-color: #fefefe;
  filter:
    drop-shadow(0 3px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.16));
}

.persona-card:hover img {
  filter: saturate(1.18) contrast(1.08) brightness(1.03);
  transform: translateX(var(--img-x)) translateY(-9px) scale(1.065);
}

.next-anchor {
  height: 1px;
  scroll-margin-top: var(--nav-height);
}

.profile-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(78px, 11vh, 128px) 0 clamp(72px, 10vh, 110px);
}

.profile-inner {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 132px);
  width: min(100% - 64px, var(--stage-width));
  margin: 0 auto;
}

.id-badge {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 590px;
}

.lanyard {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 34px;
  height: 172px;
  transform: translateX(-50%);
}

.lanyard::before,
.lanyard::after {
  position: absolute;
  top: 0;
  width: 9px;
  height: 150px;
  content: "";
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 45%),
    #1d1d1f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lanyard::before {
  left: 7px;
}

.lanyard::after {
  right: 7px;
}

.lanyard span {
  position: absolute;
  right: 3px;
  bottom: 0;
  left: 3px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 7px;
  background: linear-gradient(#f8f8f8, #d8d8d8);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.14);
}

.badge-card {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: min(100%, 332px);
  padding: 16px 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(249, 247, 241, 0.82)),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.035) 0 1px,
      transparent 1px 32px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.03) 0 1px,
      transparent 1px 32px
    );
  box-shadow:
    0 34px 68px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge-card::before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 62px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.13);
  transform: translateX(-50%);
}

.badge-card::after {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: #8d7aff;
  box-shadow: 0 0 0 4px rgba(141, 122, 255, 0.12);
}

.badge-photo {
  height: 214px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  background: #efefef;
}

.badge-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 36%;
  filter: saturate(0.92) contrast(1.02);
}

.badge-meta {
  padding: 22px 2px 0;
  text-align: center;
}

.badge-id,
.section-kicker {
  display: block;
  color: #8c8c91;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.badge-meta h2 {
  margin: 14px 0 4px;
  color: #111;
  font-size: 30px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
}

.badge-meta p {
  margin: 0;
  color: #6a6a6d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.badge-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.badge-keywords span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #555558;
  font-size: 13px;
  font-weight: 500;
}

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

.profile-copy h2 {
  margin: 20px 0 26px;
  max-width: 560px;
  color: #151517;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.profile-text {
  display: grid;
  gap: 20px;
  max-width: 660px;
}

.profile-text p {
  margin: 0;
  color: #5c5c60;
  font-size: clamp(15px, 1.08vw, 16px);
  font-weight: 400;
  line-height: 1.86;
  letter-spacing: 0;
}

.works-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(72px, 10vh, 108px) 0 clamp(82px, 11vh, 122px);
}

.works-inner {
  width: min(100% - 64px, var(--stage-width));
  margin: 0 auto;
}

.works-heading {
  max-width: 560px;
}

.works-heading h2 {
  margin: 18px 0 0;
  color: #151517;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: 0;
}

.works-diagonal {
  position: relative;
  height: clamp(520px, 61vw, 720px);
  margin-top: clamp(16px, 3vw, 38px);
}

.work-card {
  position: absolute;
  display: block;
  width: min(34vw, 360px);
  min-width: 270px;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translate(var(--start-x), var(--start-y)) scale(0.78) rotate(var(--start-rotate));
  opacity: 0;
  animation:
    diagonalUnfold 950ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards,
    workFloat 5.8s ease-in-out 1.05s infinite;
  transition:
    box-shadow 260ms ease,
    filter 260ms ease,
    transform 260ms ease;
  will-change: transform;
}

.work-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.48), transparent 30%);
  opacity: 0.72;
  transition: opacity 260ms ease;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.work-card span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.work-card:hover,
.work-card:focus-visible {
  box-shadow:
    0 38px 72px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  filter: saturate(1.08);
}

.work-card:hover::before,
.work-card:focus-visible::before {
  opacity: 0.58;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.055);
}

.work-card:active {
  filter: saturate(1.16) brightness(0.98);
}

.work-video {
  --end-x: 3%;
  --end-y: 4%;
  --end-rotate: -5deg;
  --float-rotate: -2deg;
  --start-x: 118%;
  --start-y: 54%;
  --start-rotate: -1deg;
  top: 0;
  left: 0;
  animation-delay: 80ms, 1080ms;
}

.work-design {
  --end-x: 0%;
  --end-y: 0%;
  --end-rotate: 3deg;
  --float-rotate: 1deg;
  --start-x: 4%;
  --start-y: -16%;
  --start-rotate: 0deg;
  top: 28%;
  left: 34%;
  animation-delay: 210ms, 1210ms;
}

.work-code {
  --end-x: -4%;
  --end-y: 2%;
  --end-rotate: -2deg;
  --float-rotate: 2deg;
  --start-x: -108%;
  --start-y: -58%;
  --start-rotate: 1deg;
  right: 0;
  bottom: 0;
  animation-delay: 340ms, 1340ms;
}

.projects-section {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(70px, 9vh, 106px) 0 clamp(78px, 10vh, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    var(--page-bg);
}

.projects-inner {
  width: min(100% - 64px, var(--stage-width));
  margin: 0 auto;
}

.projects-heading {
  max-width: 650px;
}

.projects-heading h2 {
  margin: 14px 0 0;
  color: #151517;
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

.projects-heading p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: #5b5b60;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
}

.project-roadmap {
  position: relative;
  height: clamp(450px, 44vw, 560px);
  margin-top: clamp(-132px, -9vw, -86px);
  isolation: isolate;
}

.road {
  position: absolute;
  z-index: -1;
  height: 72px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 50%),
    #dedee5;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 20px 46px rgba(0, 0, 0, 0.08);
}

.road::after {
  position: absolute;
  top: 50%;
  right: 26px;
  left: 26px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.86) 0 22px,
    transparent 22px 40px
  );
  transform: translateY(-50%);
}

.road-a {
  bottom: 70px;
  left: -72px;
  width: 420px;
  transform: rotate(-12deg);
}

.road-b {
  bottom: 188px;
  left: 220px;
  width: 410px;
  transform: rotate(38deg);
}

.road-c {
  top: 172px;
  left: 510px;
  width: 390px;
  transform: rotate(-24deg);
}

.road-d {
  top: 74px;
  right: -66px;
  width: 430px;
  transform: rotate(8deg);
}

.project-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 240ms ease, filter 240ms ease;
}

.project-node:hover,
.project-node:focus-within {
  z-index: 4;
  filter: saturate(1.06);
  transform: translateY(-8px);
}

.project-node-one {
  bottom: 72px;
  left: 2%;
}

.project-node-two {
  top: 238px;
  left: 30%;
}

.project-node-three {
  top: 116px;
  right: 17%;
}

.project-node-four {
  top: 8px;
  right: 0;
}

.project-pin {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 18px;
  font-weight: 760;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.project-node-two .project-pin {
  background: #6e6e73;
}

.project-node-three .project-pin {
  background: #635bff;
}

.project-node-four .project-pin {
  background: #ffd60a;
  color: #111;
}

.project-popover {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(330px, 31vw);
  min-height: 94px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.project-popover::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.project-popover img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.project-popover h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #1d1d1f;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.project-popover p {
  margin: 6px 0 0;
  color: #5f5f63;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.32;
}

.cheerscloud-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(74px, 10vh, 118px) 0 clamp(86px, 12vh, 136px);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(180deg, #f5f5f7 0%, #efeff3 100%);
}

.cheerscloud-inner {
  width: min(100% - 64px, var(--stage-width));
  margin: 0 auto;
}

.cheerscloud-heading {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.cheerscloud-heading h2 {
  margin: 14px 0 0;
  color: #151517;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.cheerscloud-heading p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: #5b5b60;
  font-size: clamp(15px, 1.22vw, 17px);
  line-height: 1.74;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 4.8vw, 56px);
}

.impact-strip article {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.impact-strip span,
.project-brief span,
.cheerscloud-focus span {
  display: block;
  color: #8a8a8f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.impact-strip strong {
  display: block;
  margin-top: 12px;
  color: #111;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 780;
  line-height: 1.1;
}

.impact-strip p {
  margin: 12px 0 0;
  color: #5f5f63;
  font-size: 14px;
  line-height: 1.62;
}

.cheerscloud-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.project-brief {
  display: grid;
  gap: 14px;
}

.project-brief > div {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.project-brief h3,
.cheerscloud-focus h3 {
  margin: 10px 0 0;
  color: #151517;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 760;
  line-height: 1.18;
}

.project-brief p,
.cheerscloud-focus p {
  margin: 12px 0 0;
  color: #5d5d62;
  font-size: 15px;
  line-height: 1.76;
}

.cheerscloud-focus {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.cheerscloud-focus img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: left center;
  background: #e8e8ed;
  transition: opacity 180ms ease, transform 420ms ease;
}

.cheerscloud-focus.is-switching img {
  opacity: 0.28;
  transform: scale(1.018);
}

.cheerscloud-focus > div {
  padding: 26px 28px 30px;
}

.bookmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(26px, 4.5vw, 50px);
}

.bookmark-card {
  position: relative;
  display: grid;
  grid-template-rows: 178px auto auto;
  min-height: 330px;
  padding: 18px 18px 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px 30px 20px 20px;
  background: rgba(255, 255, 255, 0.86);
  color: #1d1d1f;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.bookmark-card::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 52px;
  height: 72px;
  content: "";
  border-radius: 0 0 18px 18px;
  background: #d7ff4f;
  box-shadow: 0 12px 24px rgba(126, 160, 0, 0.2);
}

.bookmark-card:nth-child(2)::before {
  background: #b5dcff;
}

.bookmark-card:nth-child(3)::before {
  background: #e5ddff;
}

.bookmark-card:nth-child(4)::before {
  background: #ffd6e8;
}

.bookmark-card:nth-child(5)::before {
  background: #d6fff0;
}

.bookmark-card:nth-child(6)::before {
  background: #ffe9a6;
}

.bookmark-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 178px;
  overflow: hidden;
  border-radius: 20px;
  object-fit: cover;
  object-position: left center;
  background: #e8e8ed;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 300ms ease, filter 300ms ease;
}

.bookmark-card span {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #747479;
  font-size: 13px;
  font-weight: 720;
}

.bookmark-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: #1d1d1f;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 780;
  line-height: 1.16;
}

.bookmark-card:hover,
.bookmark-card:focus-visible,
.bookmark-card.is-active {
  background: #fff;
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-8px);
}

.bookmark-card:hover img,
.bookmark-card:focus-visible img,
.bookmark-card.is-active img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.025);
}

.bookmark-card.is-active {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 4px;
}

.cheerscloud-section {
  position: relative;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 255, 79, 0.18), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(100, 91, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #25251f 0%, #172323 52%, #111516 100%);
}

.cheerscloud-section::before,
.cheerscloud-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 76px;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.5) 22px 24px,
      transparent 24px 44px
    );
}

.cheerscloud-section::before {
  left: 0;
}

.cheerscloud-section::after {
  right: 0;
}

.company-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(46px, 7vw, 88px);
}

.company-ticket {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  display: grid;
  gap: 24px;
  justify-items: start;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.detail-back::before {
  content: "←";
  margin-right: 7px;
}

.detail-back:hover,
.detail-back:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateX(-3px);
}

.ticket-card {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 330px);
  min-height: 450px;
  padding: 52px 34px 42px;
  color: #20302d;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 229, 0.92)),
    #fff4d8;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.ticket-card::before,
.ticket-card::after {
  position: absolute;
  right: -12px;
  left: -12px;
  height: 24px;
  content: "";
  background: radial-gradient(circle, transparent 0 10px, #fff4d8 11px) 0 0 / 28px 24px repeat-x;
}

.ticket-card::before {
  top: -12px;
}

.ticket-card::after {
  bottom: -12px;
}

.ticket-card img {
  display: block;
  width: 128px;
  height: 128px;
  margin-top: 28px;
  border-radius: 30px;
  object-fit: cover;
  background: #fff;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ticket-card span {
  margin-top: 42px;
  color: #9a6b17;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.ticket-card strong {
  margin-top: 12px;
  color: #1d1d1f;
  font-size: 34px;
  font-weight: 780;
  line-height: 1.1;
}

.ticket-card p {
  margin: 10px 0 0;
  color: #9a6b17;
  font-size: 15px;
  font-weight: 650;
}

.company-copy {
  max-width: 820px;
  padding-top: 20px;
}

.company-copy .section-kicker {
  color: #d7ff4f;
}

.company-copy h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.role-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.role-line span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.role-line span:first-child {
  background: #d7ff4f;
  color: #172323;
}

.company-summary {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 520;
  line-height: 1.72;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.result-metrics div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.result-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 720;
}

.result-metrics strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 780;
  line-height: 1.18;
}

.content-columns {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.content-columns section {
  position: relative;
  padding: 22px 24px 22px 28px;
  border-left: 3px solid #d7ff4f;
  border-radius: 0 22px 22px 0;
  background: rgba(255, 255, 255, 0.07);
}

.content-columns h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
}

.content-columns p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.cheerscloud-section .bookmark-grid {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 7vw, 86px);
}

.cheerscloud-section .bookmark-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.9)),
    #fff;
}

.cheerscloud-section .bookmark-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  content: "点击放大";
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cheerscloud-section .bookmark-card:hover::after,
.cheerscloud-section .bookmark-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.78);
  backdrop-filter: blur(18px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  max-height: min(86vh, 860px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #111516;
  color: #fff;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58);
}

.image-lightbox-dialog img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: #0b0d0e;
}

.image-lightbox-dialog figcaption {
  padding: 20px 24px 24px;
  background: rgba(255, 255, 255, 0.06);
}

.image-lightbox-dialog span {
  display: block;
  color: #d7ff4f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.image-lightbox-dialog strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.image-lightbox-dialog p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.film-section {
  background: #050505;
  scroll-margin-top: var(--nav-height);
}

.film-panel {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.film-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  transform: scale(1.02);
}

.film-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 32% 35%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 32%, rgba(0, 0, 0, 0.74));
}

.film-top,
.film-bottom {
  position: absolute;
  z-index: 1;
}

.film-top {
  top: clamp(56px, 9vh, 86px);
  left: max(34px, calc((100vw - var(--stage-width)) / 2 + 24px));
  width: min(560px, calc(100vw - 68px));
}

.film-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.film-top h2 {
  margin: 0;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(54px, 8.2vw, 118px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.36);
}

.film-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.82);
  color: rgba(22, 22, 24, 0.74);
  backdrop-filter: blur(18px);
}

.film-meta span {
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.film-meta span + span {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.film-award {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
}

.film-bottom {
  right: max(34px, calc((100vw - var(--stage-width)) / 2 + 24px));
  bottom: clamp(54px, 9vh, 90px);
  width: min(470px, calc(100vw - 68px));
}

.film-bottom p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.22vw, 17px);
  font-weight: 650;
  line-height: 1.72;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.4);
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 48px;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.84);
  color: #1d1d1f;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  transform: translateX(1px);
}

.play-button:hover,
.play-button:focus-visible {
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.film-scroll-cue {
  position: absolute;
  right: max(34px, calc((100vw - var(--stage-width)) / 2 + 24px));
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.film-scroll-cue span {
  display: inline-block;
  font-size: 18px;
  animation: scrollCueBounce 1.5s ease-in-out infinite;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.modal-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 14px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-bar h2 {
  margin: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.modal-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-dialog iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.vibe-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(78px, 10vh, 116px) 0 clamp(84px, 11vh, 124px);
  background: var(--page-bg);
}

.vibe-inner {
  width: min(100% - 64px, var(--stage-width));
  margin: 0 auto;
}

.vibe-heading {
  max-width: 720px;
}

.vibe-heading h2 {
  margin: 18px 0 0;
  color: #151517;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(34px, 5vw, 58px);
}

.vibe-grid-single {
  grid-template-columns: minmax(300px, 560px);
  justify-content: center;
}

.vibe-project {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.vibe-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  background: #e9e9ed;
}

.vibe-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.vibe-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.vibe-preview:hover img,
.vibe-preview:focus-visible img,
.vibe-project:hover .vibe-preview img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.vibe-preview.is-pending {
  cursor: default;
}

.vibe-copy {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px clamp(24px, 4vw, 48px) 40px;
  text-align: center;
}

.vibe-copy p {
  margin: 0;
  color: #8a8a8f;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.vibe-copy h3 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.vibe-copy span {
  display: block;
  max-width: 620px;
  color: #5f5f63;
  font-size: 15px;
  line-height: 1.76;
}

.contact-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  display: grid;
  place-items: center;
  padding: clamp(82px, 11vh, 132px) 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 214, 10, 0.16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(10, 132, 255, 0.13), transparent 30%),
    var(--page-bg);
}

.contact-inner {
  width: min(100% - 56px, 980px);
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(56px, 7vw, 86px) clamp(28px, 6vw, 82px);
  border-radius: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(18px);
}

.contact-inner h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-inner > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: #5f5f63;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 560;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.contact-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #1d1d1f;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.contact-button:active {
  transform: translateY(0) scale(0.98);
}

.contact-button-primary {
  color: #fff;
  background: #0071e3;
}

.contact-button-secondary {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.14);
}

.editable-copy {
  min-width: 1ch;
  border-radius: 8px;
  outline: 0 solid transparent;
  transition: background-color 160ms ease, box-shadow 160ms ease, outline-color 160ms ease;
}

.editable-copy:hover {
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.22);
}

.editable-copy:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 2px rgba(0, 113, 227, 0.34),
    0 10px 24px rgba(0, 0, 0, 0.08);
  outline: none;
}

.editable-copy:empty::before {
  color: rgba(95, 95, 99, 0.58);
  content: "点击输入文字";
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.contact-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 247, 0.74);
  backdrop-filter: blur(18px);
}

.contact-dialog {
  position: relative;
  width: min(100%, 430px);
  display: grid;
  gap: 12px;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.contact-dialog span {
  color: #9b7a21;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.contact-dialog strong {
  color: #1d1d1f;
  font-size: 34px;
  font-weight: 820;
}

.contact-dialog p {
  margin: 0;
  color: #5f5f63;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.58;
}

.contact-dialog a {
  color: #0071e3;
  text-decoration: none;
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #5f5f63;
  background: #f2f2f5;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-close:hover,
.contact-close:focus-visible {
  background: #e8e8ed;
  transform: scale(1.06);
}

.abilities-section {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(68px, 9vh, 102px) 0 clamp(84px, 10vh, 116px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 214, 10, 0.18), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(10, 132, 255, 0.13), transparent 28%),
    var(--page-bg);
}

.abilities-inner {
  position: relative;
  width: min(100% - 56px, var(--stage-width));
  margin: 0 auto;
}

.abilities-inner h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.abilities-stage {
  position: relative;
  height: clamp(330px, 45vw, 520px);
  margin-top: clamp(28px, 5vw, 58px);
}

.abilities-path {
  position: absolute;
  z-index: 0;
  display: block;
  border: 2px dashed rgba(116, 96, 216, 0.28);
  border-color: transparent transparent rgba(116, 96, 216, 0.34) rgba(116, 96, 216, 0.28);
  pointer-events: none;
}

.path-one {
  right: 8%;
  bottom: 15%;
  width: 72%;
  height: 44%;
  border-radius: 50%;
  transform: rotate(-6deg);
}

.path-two {
  left: 12%;
  bottom: 7%;
  width: 52%;
  height: 36%;
  border-radius: 999px;
  transform: rotate(9deg);
}

.path-three {
  right: 13%;
  bottom: 2%;
  width: 28%;
  height: 24%;
  border-radius: 52% 48% 42% 58%;
  transform: rotate(-18deg);
}

.ability-card {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(190px, 20.5vw, 255px);
  min-height: clamp(178px, 19vw, 226px);
  padding: clamp(18px, 2vw, 26px);
  border-radius: 26px;
  color: #111114;
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(var(--card-y, 0)) rotate(var(--card-rotate, 0deg));
  transform-origin: 50% 4%;
  transition: filter 220ms ease, box-shadow 220ms ease;
  animation: abilityDrift 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.ability-card::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.ability-card span {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: rgba(29, 29, 31, 0.72);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.ability-card h3 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(23px, 2.45vw, 33px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.ability-card-one {
  --card-rotate: -9deg;
  --card-y: 16px;
  --delay: -0.8s;
  left: 1%;
  top: 19%;
  background: #ffcb3d;
}

.ability-card-two {
  --card-rotate: 5deg;
  --card-y: 0px;
  --delay: -2.4s;
  left: 27%;
  top: 8%;
  background: #58a6ff;
}

.ability-card-three {
  --card-rotate: 11deg;
  --card-y: 28px;
  --delay: -1.5s;
  left: 53%;
  top: 22%;
  background: #ff9f5a;
}

.ability-card-four {
  --card-rotate: -5deg;
  --card-y: 8px;
  --delay: -3.2s;
  right: 1%;
  top: 10%;
  background: #b7d94f;
}

.ability-card:hover,
.ability-card:focus-within,
.ability-card:focus-visible {
  filter: saturate(1.08);
  box-shadow:
    0 34px 68px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  animation: windSwing 900ms ease-in-out infinite;
}

.ability-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #515154;
  font-size: 13px;
  font-weight: 720;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.ability-back::before {
  content: "←";
}

.ability-back:hover,
.ability-back:focus-visible {
  background: #fff;
  color: #1d1d1f;
  transform: translateX(-3px);
}

.ability-back-light {
  position: absolute;
  top: clamp(18px, 3vh, 28px);
  right: max(34px, calc((100vw - var(--stage-width)) / 2 + 24px));
  z-index: 3;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
}

.ability-back-light:hover,
.ability-back-light:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

@keyframes abilityDrift {
  0%,
  100% {
    transform: translateY(var(--card-y)) rotate(var(--card-rotate));
  }

  50% {
    transform: translateY(calc(var(--card-y) - 9px)) rotate(calc(var(--card-rotate) + 1.5deg));
  }
}

@keyframes windSwing {
  0%,
  100% {
    transform: translateY(var(--card-y)) rotate(calc(var(--card-rotate) - 2deg));
  }

  35% {
    transform: translateY(calc(var(--card-y) - 8px)) rotate(calc(var(--card-rotate) + 4deg));
  }

  70% {
    transform: translateY(calc(var(--card-y) + 2px)) rotate(calc(var(--card-rotate) - 3deg));
  }
}

.social-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(46px, 7vh, 76px) 0 clamp(56px, 8vh, 86px);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 214, 10, 0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(10, 132, 255, 0.12), transparent 28%),
    var(--page-bg);
}

.social-inner {
  width: min(100% - 56px, var(--stage-width));
  margin: 0 auto;
  padding: clamp(24px, 3.2vw, 34px);
  border: 3px solid rgba(64, 89, 110, 0.44);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.social-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.social-heading h2 {
  margin: 0;
  color: #111114;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.social-summary {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  color: #515154;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.42;
  list-style: none;
}

.social-summary li {
  position: relative;
  padding-left: 16px;
}

.social-summary li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: #0a84ff;
}

.social-summary strong {
  color: #1d1d1f;
  font-weight: 780;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(20px, 3vw, 34px);
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 25vw, 340px);
  padding: clamp(14px, 1.6vw, 18px);
  overflow: hidden;
  border: 3px solid #5579b5;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.12);
}

.social-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.social-card h3 {
  margin: 0;
  color: #151517;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.12;
}

.social-action-hint {
  margin: 8px 0 0;
  color: rgba(81, 81, 84, 0.78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.social-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #4e73b8;
  color: #fff;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.social-arrow:hover,
.social-arrow:focus-visible {
  background: #0a84ff;
  transform: rotate(8deg) scale(1.06);
}

.social-image {
  flex: 1;
  min-height: 0;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe8ef;
}

.social-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform 360ms ease;
}

.social-card:hover .social-image img {
  transform: scale(1.035);
}

.social-xhs {
  border-color: #ff9f5a;
}

.social-douyin {
  border-color: #4e73b8;
  background: #4e73b8;
}

.social-douyin h3 {
  color: #fff;
}

.social-douyin .social-action-hint {
  color: rgba(255, 255, 255, 0.76);
}

.social-douyin .social-arrow {
  background: rgba(255, 255, 255, 0.24);
}

.social-video {
  border-color: #4e73b8;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.qr-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.qr-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 360px);
  margin: 0;
  padding: 18px 18px 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
}

.qr-modal.is-open .qr-dialog {
  transform: translateY(0) scale(1);
}

.qr-dialog img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.qr-dialog figcaption {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.qr-dialog strong {
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 760;
}

.qr-dialog p {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
}

.qr-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.design-section {
  min-height: calc(100svh - var(--nav-height));
  scroll-margin-top: var(--nav-height);
  padding: clamp(62px, 8vh, 96px) 0 clamp(68px, 9vh, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 214, 10, 0.14), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(10, 132, 255, 0.13), transparent 28%),
    var(--page-bg);
}

.design-inner {
  width: min(100% - 56px, var(--stage-width));
  margin: 0 auto;
}

.design-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.design-heading h2 {
  margin: 14px 0 0;
  color: #111114;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.design-heading p:last-child {
  margin: 0 0 8px;
  color: #515154;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.62;
}

.design-rail {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 5vh, 54px);
  padding: 18px 12px 34px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 29, 31, 0.28) rgba(29, 29, 31, 0.07);
}

.design-rail::-webkit-scrollbar {
  height: 8px;
}

.design-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.07);
}

.design-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f0a, #0a84ff);
}

.design-card {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 310px);
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  gap: 16px;
  min-height: clamp(286px, 32vw, 390px);
  padding: 14px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  color: #1d1d1f;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  scroll-snap-align: start;
  cursor: pointer;
  transform: translateY(var(--design-y, 0)) rotate(var(--design-r, 0deg));
  animation: designFloat 6.2s ease-in-out infinite;
  animation-delay: var(--design-delay, 0s);
  transition: box-shadow 240ms ease, filter 240ms ease;
}

.design-card:nth-child(2n) {
  --design-y: 22px;
  --design-r: -2deg;
  --design-delay: -1.1s;
}

.design-card:nth-child(3n) {
  --design-y: -8px;
  --design-r: 2.5deg;
  --design-delay: -2.2s;
}

.design-card-large {
  flex-basis: clamp(260px, 30vw, 380px);
}

.design-card::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 68px;
  height: 10px;
  border-radius: 0 0 8px 8px;
  content: "";
  background: linear-gradient(90deg, #ffcf3f, #0a84ff);
}

.design-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  background: #edf0f5;
  transition: transform 320ms ease, filter 320ms ease;
}

.design-card strong {
  display: block;
  padding: 0 4px 6px;
  color: #151517;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
}

.design-card:hover,
.design-card:focus-visible {
  box-shadow:
    0 32px 68px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  filter: saturate(1.05);
  animation: designHover 1.1s ease-in-out infinite;
}

.design-card:hover img,
.design-card:focus-visible img {
  transform: scale(1.035);
}

.design-scroll-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 650;
}

.design-scroll-note span {
  display: inline-block;
  color: #0a84ff;
  font-size: 18px;
  animation: designArrow 1.4s ease-in-out infinite;
}

@keyframes designFloat {
  0%,
  100% {
    transform: translateY(var(--design-y, 0)) rotate(var(--design-r, 0deg));
  }

  50% {
    transform: translateY(calc(var(--design-y, 0) - 12px)) rotate(calc(var(--design-r, 0deg) + 1.4deg));
  }
}

@keyframes designHover {
  0%,
  100% {
    transform: translateY(var(--design-y, 0)) rotate(calc(var(--design-r, 0deg) - 1.5deg));
  }

  50% {
    transform: translateY(calc(var(--design-y, 0) - 10px)) rotate(calc(var(--design-r, 0deg) + 3deg));
  }
}

@keyframes designArrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(7px);
  }
}

.vibe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  margin-top: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.vibe-button:hover,
.vibe-button:focus-visible {
  background: #0077ed;
  box-shadow: 0 12px 26px rgba(0, 113, 227, 0.25);
  transform: translateY(-2px);
}

.vibe-button.is-disabled {
  background: #e8e8ed;
  color: #7a7a80;
  cursor: not-allowed;
}

.vibe-button.is-disabled:hover {
  box-shadow: none;
  transform: none;
}

@keyframes personaEntrance {
  0% {
    opacity: 0;
    transform: translate(0, 46px) rotate(var(--tilt)) scale(0.9);
    filter: blur(2px) saturate(0.72);
  }
  14% {
    opacity: 1;
    transform: translate(-10px, calc(var(--lift) + 20px)) rotate(var(--tilt))
      scale(0.94);
    filter: contrast(1.06);
  }
  28% {
    transform: translate(12px, calc(var(--lift) + 7px)) rotate(var(--tilt))
      scale(0.98);
    filter: saturate(1.18);
  }
  44% {
    transform: translate(-4px, calc(var(--lift) - 6px)) rotate(var(--tilt))
      scale(1.02);
    filter: brightness(1.02);
  }
  60% {
    transform: translate(5px, calc(var(--lift) + 3px)) rotate(var(--tilt))
      scale(1);
  }
  78% {
    transform: translate(-2px, calc(var(--lift) - 2px)) rotate(var(--tilt))
      scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate(0, var(--lift)) rotate(var(--tilt)) scale(1);
    filter: none;
  }
}

@keyframes personaIdle {
  0%,
  100% {
    transform: translate(0, var(--lift)) rotate(var(--tilt));
  }
  50% {
    transform: translate(0, calc(var(--lift) - 8px)) rotate(var(--tilt));
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(var(--lift)) rotate(var(--tilt));
    filter: none;
  }
  26% {
    transform: translate(2px, calc(var(--lift) - 2px)) rotate(var(--tilt));
    filter: contrast(1.07);
  }
  28% {
    transform: translate(-2px, calc(var(--lift) + 1px)) rotate(var(--tilt));
    filter: saturate(1.2);
  }
  68% {
    transform: translate(0, calc(var(--lift) - 4px)) rotate(var(--tilt));
  }
}

@keyframes pixelScan {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, -2px);
  }
}

@keyframes diagonalUnfold {
  from {
    opacity: 0;
    transform: translate(var(--start-x), var(--start-y)) scale(0.78)
      rotate(var(--start-rotate));
  }
  to {
    opacity: 1;
    transform: translate(var(--end-x), var(--end-y)) scale(1)
      rotate(var(--end-rotate));
  }
}

@keyframes workFloat {
  0%,
  100% {
    transform: translate(var(--end-x), var(--end-y)) rotate(var(--end-rotate));
  }
  50% {
    transform: translate(var(--end-x), calc(var(--end-y) - 12px))
      rotate(var(--float-rotate));
  }
}

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

  .persona-card,
  .persona-card::before,
  .work-card {
    animation: none;
  }

  .work-card {
    opacity: 1;
    transform: translate(var(--end-x), var(--end-y)) rotate(var(--end-rotate));
  }

  .project-node {
    transform: none;
  }

  .film-bg {
    display: none;
  }
}

@media (max-width: 980px) {
  .profile-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .id-badge {
    order: 2;
    min-height: 520px;
  }

  .profile-copy {
    order: 1;
    max-width: none;
    text-align: center;
  }

  .profile-copy h2,
  .profile-text {
    margin-right: auto;
    margin-left: auto;
  }

  .profile-text {
    text-align: left;
  }

  .project-roadmap {
    height: 700px;
  }

  .project-node-two {
    left: 22%;
  }

  .project-node-three {
    right: 9%;
  }

  .project-popover {
    width: min(318px, 38vw);
  }

  .impact-strip,
  .cheerscloud-layout {
    grid-template-columns: 1fr;
  }

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

  .company-detail {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-ticket {
    position: relative;
    top: auto;
    justify-items: center;
  }

  .ticket-card {
    width: min(100%, 360px);
    min-height: 380px;
  }

  .company-copy {
    max-width: none;
    padding-top: 0;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

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

  .vibe-grid-single {
    grid-template-columns: minmax(280px, 560px);
    justify-content: center;
  }

  .design-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .design-heading p:last-child {
    max-width: 620px;
  }
}

.cheerscloud-section .ticket-logo-frame {
  background: #f2f2f4;
}

.cheerscloud-section .ticket-card img[src*="project-cheerscloud-clean"] {
  width: 92%;
  height: 92%;
  border-radius: 22px;
  object-fit: contain;
}

.insta-section .bookmark-grid {
  padding-bottom: 18px;
}

.insta-section {
  min-height: auto;
  padding-bottom: clamp(130px, 18vh, 190px);
  overflow: visible;
}

.insta-section .cheerscloud-inner,
.insta-section .company-detail {
  height: auto;
}

.insta-section .company-copy {
  padding-bottom: 58px;
}

.insta-section .bookmark-scrollbar {
  position: relative;
  bottom: auto;
  z-index: 6;
  display: block;
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  max-width: 820px;
  margin-top: 12px;
  margin-bottom: 32px;
  box-shadow: none;
}

@media (max-width: 760px) {
  :root {
    --nav-height: 60px;
  }

  .nav-inner {
    grid-template-columns: 1fr;
    width: min(100% - 24px, var(--stage-width));
  }

  .brand,
  .brand img {
    display: none;
  }

  .nav-links a {
    padding: 0 4px;
    font-size: 11px;
  }

  .hero {
    width: min(100% - 24px, var(--stage-width));
    padding-top: 48px;
  }

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

  .hero-copy p {
    font-size: 22px;
  }

  .persona-stage {
    grid-template-columns: repeat(3, 58vw);
    gap: 16px;
    width: calc(100% + 24px);
    margin-left: -12px;
    overflow-x: auto;
    padding: 0 12px 18px;
    scroll-snap-type: x proximity;
  }

  .persona-card {
    height: 400px;
    min-height: 400px;
    border-width: 8px;
    border-radius: 22px 28px 20px 30px;
    scroll-snap-align: center;
  }

  .persona-center {
    height: 424px;
    min-height: 424px;
  }

  .profile-section {
    padding-top: 72px;
  }

  .profile-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .profile-copy h2 {
    font-size: 30px;
  }

  .profile-text p {
    font-size: 15px;
    line-height: 1.78;
  }

  .id-badge {
    min-height: 500px;
  }

  .works-section {
    padding-top: 68px;
  }

  .works-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .works-heading {
    text-align: center;
  }

  .works-heading h2 {
    font-size: 32px;
  }

  .works-diagonal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    margin-top: 34px;
  }

  .work-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 360px);
    min-width: 0;
    margin: 0 auto;
    transform: translateY(24px) scale(0.96);
  }

  .work-video,
  .work-design,
  .work-code {
    --end-x: 0px;
    --end-y: 0px;
    --end-rotate: 0deg;
    --float-rotate: 0deg;
    --start-x: 0px;
    --start-y: 26px;
    --start-rotate: 0deg;
  }

  .projects-section {
    padding-top: 68px;
  }

  .projects-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .projects-heading {
    text-align: center;
  }

  .projects-heading h2 {
    font-size: 38px;
  }

  .projects-heading p:last-child {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }

  .project-roadmap {
    display: grid;
    gap: 18px;
    height: auto;
    margin-top: 34px;
  }

  .project-roadmap::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 29px;
    z-index: -1;
    width: 3px;
    content: "";
    border-radius: 999px;
    background: repeating-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16) 0 12px,
      transparent 12px 24px
    );
  }

  .road {
    display: none;
  }

  .project-node,
  .project-node-one,
  .project-node-two,
  .project-node-three,
  .project-node-four {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .project-node:hover,
  .project-node:focus-within {
    transform: translateY(-4px);
  }

  .project-popover {
    width: 100%;
  }

  .cheerscloud-section {
    padding-top: 68px;
  }

  .cheerscloud-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .cheerscloud-heading h2 {
    font-size: 34px;
  }

  .impact-strip {
    gap: 14px;
    margin-top: 30px;
  }

  .impact-strip article,
  .project-brief > div {
    padding: 20px;
    border-radius: 20px;
  }

  .impact-strip strong {
    font-size: 24px;
  }

  .cheerscloud-layout {
    gap: 18px;
    margin-top: 18px;
  }

  .cheerscloud-focus {
    border-radius: 24px;
  }

  .cheerscloud-focus img {
    min-height: 230px;
  }

  .cheerscloud-focus > div {
    padding: 22px;
  }

  .bookmark-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .bookmark-card {
    grid-template-rows: 188px auto auto;
    min-height: 320px;
    border-radius: 24px 24px 18px 18px;
  }

  .bookmark-card img {
    height: 188px;
  }

  .cheerscloud-section::before,
  .cheerscloud-section::after {
    width: 28px;
  }

  .detail-back {
    justify-self: start;
  }

  .ticket-card {
    min-height: 310px;
    padding: 34px 24px 30px;
  }

  .ticket-card img {
    width: 104px;
    height: 104px;
    margin-top: 16px;
    border-radius: 24px;
  }

  .ticket-card span {
    margin-top: 28px;
  }

  .ticket-card strong {
    font-size: 28px;
  }

  .company-copy h2 {
    font-size: 44px;
  }

  .role-line span {
    min-height: 34px;
    font-size: 13px;
  }

  .company-summary {
    font-size: 16px;
  }

  .content-columns section {
    padding: 20px;
    border-left-width: 2px;
    border-radius: 0 18px 18px 0;
  }

  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox-dialog {
    max-height: 88vh;
    border-radius: 18px;
  }

  .film-panel {
    min-height: calc(100svh - var(--nav-height));
  }

  .film-top,
  .film-bottom {
    right: 22px;
    left: 22px;
    width: auto;
  }

  .film-top {
    top: 46px;
  }

  .film-top h2 {
    font-size: 48px;
  }

  .film-meta span {
    padding: 10px 12px;
    font-size: 12px;
  }

  .film-bottom {
    bottom: 42px;
  }

  .film-bottom p {
    font-size: 15px;
  }

  .video-modal {
    padding: 12px;
  }

  .modal-bar {
    grid-template-columns: 1fr auto;
  }

  .modal-link {
    display: none;
  }

  .vibe-section {
    padding-top: 68px;
  }

  .vibe-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .vibe-heading {
    text-align: center;
  }

  .vibe-heading h2 {
    font-size: 32px;
  }

  .vibe-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .contact-inner {
    width: min(100% - 32px, 980px);
    border-radius: 24px;
  }

  .contact-inner h2 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .contact-actions {
    width: 100%;
  }

  .contact-button {
    width: min(100%, 260px);
  }

  .design-section {
    padding: 52px 0 76px;
  }

  .design-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .design-heading h2 {
    font-size: 44px;
  }

  .design-rail {
    margin-top: 24px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .design-card,
  .design-card-large {
    flex-basis: min(82vw, 300px);
    min-height: 320px;
  }

  .vibe-project {
    border-radius: 22px;
  }

  .vibe-preview {
    aspect-ratio: 16 / 10.2;
  }

  .vibe-copy {
    padding: 28px 22px 32px;
  }

  .vibe-copy h3 {
    font-size: 25px;
  }

  .vibe-copy span {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 460px) {
  .nav-links {
    grid-template-columns: repeat(4, minmax(52px, 1fr));
  }

  .nav-links a {
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 19px;
  }

  .persona-stage {
    grid-template-columns: repeat(3, 72vw);
  }

  .profile-copy h2 {
    font-size: 28px;
  }

  .badge-card {
    width: min(100%, 306px);
  }

  .works-heading h2 {
    font-size: 28px;
  }

  .work-card span {
    font-size: 19px;
  }

  .projects-heading h2 {
    font-size: 32px;
  }

  .project-node {
    gap: 10px;
  }

  .project-pin {
    width: 50px;
    height: 50px;
    border-width: 4px;
    font-size: 15px;
  }

  .project-popover {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 82px;
    padding: 12px 13px 12px 12px;
    border-radius: 16px;
  }

  .project-popover img {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .project-popover h3 {
    font-size: 16px;
  }

  .project-popover p {
    font-size: 13px;
  }

  .cheerscloud-heading h2 {
    font-size: 29px;
  }

  .cheerscloud-heading p:last-child,
  .project-brief p,
  .cheerscloud-focus p {
    font-size: 14px;
    line-height: 1.66;
  }

  .impact-strip article {
    min-height: auto;
  }

  .bookmark-card {
    grid-template-rows: 156px auto auto;
    min-height: 286px;
    padding: 14px 14px 22px;
  }

  .bookmark-card img {
    height: 156px;
    border-radius: 17px;
  }

  .bookmark-card strong {
    font-size: 20px;
  }

  .company-copy h2 {
    font-size: 36px;
  }

  .result-metrics div {
    min-height: auto;
    padding: 16px;
  }

  .result-metrics strong {
    font-size: 20px;
  }

  .content-columns h3 {
    font-size: 18px;
  }

  .image-lightbox-dialog strong {
    font-size: 18px;
  }

  .film-top h2 {
    font-size: 40px;
  }

  .film-meta {
    border-radius: 18px;
  }

  .film-bottom p {
    line-height: 1.62;
  }

  .vibe-heading h2 {
    font-size: 28px;
  }

  .vibe-copy h3 {
    font-size: 22px;
  }

  .vibe-button {
    height: 40px;
    font-size: 14px;
  }
}

/* CheersCloud one-screen project detail */
.cheerscloud-section {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  height: calc(100svh - var(--nav-height));
  padding: clamp(26px, 4vh, 42px) 0 24px;
  overflow: hidden;
  color: #1d1d1f;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 113, 227, 0.08), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(255, 214, 10, 0.16), transparent 22%),
    #f5f5f7;
}

.insta-section {
  min-height: calc(100svh - var(--nav-height));
  height: auto;
  padding-bottom: clamp(130px, 18vh, 190px);
  overflow: visible;
}

.cheerscloud-section::before,
.cheerscloud-section::after {
  display: none;
}

.cheerscloud-inner {
  position: relative;
  width: min(100% - 56px, var(--stage-width));
  height: 100%;
  margin: 0 auto;
}

.company-detail {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 5.8vw, 78px);
  height: 100%;
}

.company-ticket {
  position: relative;
  top: auto;
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
  height: 100%;
}

.detail-back {
  min-height: 28px;
  padding: 0 10px;
  border-color: transparent;
  background: transparent;
  color: #6e6e73;
  font-size: 13px;
  box-shadow: none;
  backdrop-filter: none;
}

.detail-back:hover,
.detail-back:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
}

.ticket-card {
  width: min(100%, 286px);
  min-height: clamp(360px, 58vh, 486px);
  padding: clamp(38px, 7vh, 66px) 28px 34px;
  color: #1d1d1f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 235, 0.78)),
    #fff;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.ticket-card::before,
.ticket-card::after {
  background: radial-gradient(circle, transparent 0 8px, #fff8e8 9px) 0 0 / 24px 20px repeat-x;
}

.ticket-logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(106px, 15vh, 134px);
  height: clamp(106px, 15vh, 134px);
  margin-top: clamp(12px, 4vh, 34px);
  overflow: hidden;
  border-radius: 24px;
  background: #40596e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(32, 47, 62, 0.18);
}

.ticket-card img {
  display: block;
  width: 82%;
  height: 82%;
  margin: 0;
  border-radius: 18px;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.cengjian-section .ticket-logo-frame,
.mico-section .ticket-logo-frame,
.insta-section .ticket-logo-frame {
  background: #f2f2f4;
}

.cengjian-section .ticket-card img,
.mico-section .ticket-card img,
.insta-section .ticket-card img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.ticket-card span {
  margin-top: clamp(26px, 5vh, 46px);
  color: #9b7419;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.ticket-card strong {
  margin-top: 10px;
  color: #1d1d1f;
  font-size: clamp(28px, 4vh, 36px);
}

.ticket-card p {
  color: #9b7419;
  font-size: 14px;
}

.company-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  max-width: none;
  padding-top: clamp(20px, 5vh, 54px);
}

.company-copy .section-kicker {
  color: #9b7419;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.company-copy h2 {
  margin: 14px 0 0;
  color: #1d1d1f;
  font-size: clamp(42px, 6vh, 62px);
  font-weight: 780;
  line-height: 1.02;
}

.role-line {
  gap: 10px;
  margin-top: 12px;
}

.role-line span {
  min-height: 32px;
  padding: 0 13px;
  background: #f2f2f4;
  color: #515154;
  font-size: 13px;
}

.role-line span:first-child {
  background: #ff9f0a;
  color: #fff;
}

.company-summary {
  max-width: 820px;
  margin: 20px 0 0;
  color: #606064;
  font-size: clamp(14px, 1.8vh, 16px);
  line-height: 1.78;
}

.result-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.result-metrics div {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.result-metrics span {
  color: #86868b;
  font-size: 12px;
}

.result-metrics strong {
  margin-top: 8px;
  color: #1d1d1f;
  font-size: clamp(17px, 2.5vh, 24px);
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  max-width: 820px;
  margin-top: 22px;
}

.content-columns section {
  padding: 16px 18px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.content-columns section:nth-child(3) {
  grid-column: 1 / -1;
}

.content-columns h3 {
  color: #1d1d1f;
  font-size: 16px;
}

.content-columns p {
  margin-top: 7px;
  color: #606064;
  font-size: clamp(12px, 1.55vh, 14px);
  line-height: 1.62;
}

.content-columns ul {
  display: grid;
  gap: 9px;
  margin: 9px 0 0;
  padding: 0;
  color: #606064;
  font-size: clamp(12px, 1.55vh, 14px);
  line-height: 1.58;
  list-style: none;
}

.content-columns li {
  position: relative;
  padding-left: 16px;
}

.content-columns li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #0a84ff;
}

.content-columns li strong {
  color: #1d1d1f;
  font-weight: 760;
}

.cheerscloud-section .bookmark-grid {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
  padding: 8px 2px 10px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 29, 31, 0.28) rgba(29, 29, 31, 0.07);
}

.cheerscloud-section .bookmark-grid::-webkit-scrollbar {
  height: 8px;
}

.cheerscloud-section .bookmark-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.07);
}

.cheerscloud-section .bookmark-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.28);
}

.cheerscloud-section .bookmark-card {
  flex: 0 0 clamp(132px, 14vw, 168px);
  display: grid;
  grid-template-rows: clamp(72px, 10vh, 96px) auto;
  min-height: clamp(118px, 16vh, 146px);
  padding: 8px 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  scroll-snap-align: start;
}

.cheerscloud-section .bookmark-card::before {
  top: 0;
  left: 18px;
  width: 34px;
  height: 42px;
  border-radius: 0 0 12px 12px;
}

.cheerscloud-section .bookmark-card::after {
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  font-size: 11px;
}

.cheerscloud-section .bookmark-card img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: left top;
}

.cheerscloud-section .bookmark-card strong {
  margin-top: 11px;
  color: #1d1d1f;
  font-size: 14px;
  line-height: 1.2;
}

.cheerscloud-section .bookmark-card:hover,
.cheerscloud-section .bookmark-card:focus-visible,
.cheerscloud-section .bookmark-card.is-active {
  transform: translateY(-5px);
}

.bookmark-scrollbar {
  position: relative;
  width: min(100%, 820px);
  height: 8px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.07);
  overflow: hidden;
}

.bookmark-scrollbar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9f0a, #0a84ff);
  animation: scrollbarHint 2.8s ease-in-out infinite;
}

@keyframes scrollbarHint {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(190%);
  }
}

.company-timeline {
  position: absolute;
  bottom: 48px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.company-timeline::before {
  position: absolute;
  right: 18px;
  left: 18px;
  z-index: -1;
  height: 2px;
  content: "";
  background: rgba(0, 0, 0, 0.1);
}

.company-timeline a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 14px;
  background: #f2f2f4;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.company-timeline a:hover,
.company-timeline a:focus-visible,
.company-timeline a.is-current {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.company-timeline a.is-current {
  outline: 2px solid #ff9f0a;
  outline-offset: 3px;
}

.company-timeline img {
  width: 82%;
  height: 82%;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
}

@media (max-height: 760px) and (min-width: 761px) {
  .cheerscloud-section {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .company-copy {
    padding-top: 18px;
  }

  .ticket-card {
    min-height: 350px;
  }

  .company-copy h2 {
    font-size: 38px;
  }

  .company-summary {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.42;
  }

  .content-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }

  .content-columns section {
    padding: 11px 13px;
  }

  .content-columns p,
  .content-columns ul {
    font-size: 12px;
    line-height: 1.36;
  }

  .content-columns ul {
    gap: 6px;
  }

  .content-columns li {
    padding-left: 14px;
  }

  .cheerscloud-section .bookmark-grid {
    margin-top: 6px;
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .cheerscloud-section .bookmark-card {
    flex-basis: 124px;
    grid-template-rows: 66px auto;
    min-height: 102px;
    padding: 7px 7px 10px;
    border-radius: 14px;
  }

  .cheerscloud-section .bookmark-card strong {
    margin-top: 8px;
    font-size: 12px;
  }

  .company-timeline {
    bottom: 40px;
  }

  .abilities-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .abilities-stage {
    height: 310px;
    margin-top: 20px;
  }

  .ability-card {
    width: 208px;
    min-height: 160px;
  }

  .ability-card h3 {
    font-size: 24px;
  }

  .social-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .social-inner {
    padding: 28px;
  }

  .social-heading {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }

  .social-summary {
    font-size: 11px;
    line-height: 1.32;
    gap: 6px;
  }

  .social-card {
    min-height: 270px;
  }
}

@media (max-width: 760px) {
  .cheerscloud-section {
    height: auto;
    min-height: calc(100svh - var(--nav-height));
    padding: 24px 0 92px;
    overflow: visible;
  }

  .cheerscloud-inner {
    width: min(100% - 28px, var(--stage-width));
    height: auto;
  }

  .company-detail {
    grid-template-columns: 1fr;
    gap: 22px;
    height: auto;
  }

  .company-ticket {
    justify-items: stretch;
  }

  .ticket-card {
    width: 100%;
    min-height: 260px;
  }

  .company-copy h2 {
    font-size: 38px;
  }

  .result-metrics,
  .content-columns {
    grid-template-columns: 1fr;
  }

  .cheerscloud-section .bookmark-grid {
    margin-top: 18px;
  }

  .company-timeline {
    position: fixed;
    bottom: 16px;
    left: 14px;
  }

  .abilities-section {
    padding: 54px 0 76px;
  }

  .abilities-inner {
    width: min(100% - 28px, var(--stage-width));
  }

  .abilities-inner h2 {
    font-size: 52px;
  }

  .abilities-stage {
    height: 850px;
    margin-top: 28px;
  }

  .abilities-path {
    width: 82%;
    height: 28%;
  }

  .path-one {
    top: 8%;
    right: 6%;
    bottom: auto;
  }

  .path-two {
    top: 35%;
    left: 2%;
    bottom: auto;
  }

  .path-three {
    right: 4%;
    bottom: 18%;
    width: 72%;
  }

  .ability-card {
    width: min(82vw, 290px);
    min-height: 178px;
  }

  .ability-card-one {
    top: 2%;
    left: 3%;
  }

  .ability-card-two {
    top: 26%;
    left: 14%;
  }

  .ability-card-three {
    top: 50%;
    right: 4%;
  }

  .ability-card-four {
    top: 74%;
    right: 10%;
  }

  .social-section {
    padding: 42px 0 70px;
  }

  .social-inner {
    width: min(100% - 28px, var(--stage-width));
    padding: 22px;
    border-radius: 28px;
  }

  .social-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-heading h2 {
    font-size: 38px;
  }

  .social-summary {
    font-size: 13px;
    line-height: 1.42;
    gap: 8px;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .social-card {
    min-height: 300px;
    padding: 18px;
    border-radius: 24px;
  }

  .social-card h3 {
    font-size: 28px;
  }

  .social-arrow {
    width: 40px;
    height: 40px;
  }
}
