﻿:root {
  --bg: #04050c;
  --bg-deep: #060815;
  --ink: rgba(248, 250, 255, 0.96);
  --muted: rgba(229, 235, 255, 0.64);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(10, 13, 24, 0.72);
  --panel-strong: rgba(12, 17, 31, 0.9);
  --cyan: #67d4ff;
  --pink: #ff5c9c;
  --amber: #ffcc72;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  --font-body: "阿里巴巴普惠体 3.0 55 Regular", "阿里巴巴普惠体 2.0 55 Regular", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-heading: "阿里巴巴普惠体 3.0 65 Medium", "阿里巴巴普惠体 2.0 65 Medium", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-display: "阿里巴巴普惠体 3.0 85 Bold", "阿里巴巴普惠体 2.0 85 Bold", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

h1,
h2 {
  font-family: var(--font-display);
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

body {
  overflow: hidden;
}

body.can-scroll {
  overflow: auto;
}

.page-shell,
.screen {
  position: relative;
}

.screen {
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.screen-video,
.screen-overlay,
.noise-overlay {
  position: absolute;
  inset: 0;
}

.screen-video {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.screen-overlay,
.noise-overlay {
  pointer-events: none;
}

.hero-video,
.second-video,
.third-text-video {
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.04) saturate(1.04) contrast(1.03);
}

.fourth-video {
  object-fit: contain;
  object-position: center center;
  filter: brightness(1.02) saturate(1.03) contrast(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.014), transparent 34rem),
    linear-gradient(180deg, rgba(2, 3, 9, 0.02), rgba(2, 3, 9, 0.08));
}

.second-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(103, 212, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(4, 8, 18, 0.03), rgba(4, 8, 18, 0.14));
}

.third-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 92, 156, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(4, 8, 18, 0.03), rgba(4, 8, 18, 0.12));
}

.fourth-overlay {
  background:
    radial-gradient(circle at 50% 50%, rgba(140, 181, 255, 0.05), transparent 24rem),
    linear-gradient(180deg, rgba(3, 5, 14, 0.04), rgba(3, 5, 14, 0.18));
}

.noise-overlay {
  opacity: 0.018;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.4px),
    radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.3px);
  background-size: 140px 140px, 180px 180px, 110px 110px;
}

.hero-audio-prompt {
  position: absolute;
  left: 50%;
  bottom: 12vh;
  z-index: 8;
  transform: translateX(-50%);
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 22, 0.14);
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hero-audio-prompt.is-dismissed {
  opacity: 0;
  transform: translateX(-50%) translateY(12px) scale(0.9);
  pointer-events: none;
}

.hero-audio-prompt-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.hero-audio-prompt-rings {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-audio-prompt-ring--one {
  animation: heroAudioPulseOne 1.8s ease-out infinite;
}

.hero-audio-prompt-ring--two {
  animation: heroAudioPulseTwo 1.8s ease-out infinite;
}

.hero-audio-prompt-text {
  position: absolute;
  left: 50%;
  bottom: calc(12vh - 1.85rem);
  z-index: 8;
  transform: translateX(-50%);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(247, 250, 255, 0.8);
  margin: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hero-audio-prompt-text.is-dismissed {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.hero-screen.is-finished .hero-copy {
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}

.fragment-title {
  margin: 0;
  font-size: clamp(4.6rem, 11.8vw, 9.2rem);
  line-height: 0.96;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: rgba(248, 250, 255, 0.82);
  white-space: nowrap;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.12),
    0 0 70px rgba(255, 255, 255, 0.08);
}

.fragment-title span {
  display: inline-block;
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, 140px, 0) scale(0.42) rotate(-16deg);
  transition:
    opacity 0.95s ease,
    transform 1.12s cubic-bezier(0.18, 0.82, 0.18, 1),
    filter 0.9s ease;
}

.hero-screen.is-finished .fragment-title span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.subhead {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-family: var(--font-heading);
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.68);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease 0.28s, transform 0.9s ease 0.28s;
}

.hero-screen.is-finished .subhead {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease 0.34s, transform 0.8s ease 0.34s;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.hero-screen.is-finished .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.sound-toggle,
.scroll-cue,
.enter-portfolio {
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.sound-toggle {
  min-width: 10rem;
  padding: 0.82rem 1.28rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 8, 16, 0.3);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 7;
  pointer-events: auto;
}

.scroll-cue {
  width: 3.4rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 7;
  pointer-events: auto;
}

@keyframes heroAudioPulseOne {
  0% {
    transform: scale(0.38);
    opacity: 0.68;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes heroAudioPulseTwo {
  0%,
  48% {
    transform: scale(0.38);
    opacity: 0;
  }

  52% {
    transform: scale(0.38);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.screen-arrow {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vh, 2rem);
  z-index: 7;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  padding: 0.65rem 1rem;
  cursor: pointer;
  pointer-events: auto;
}

.sequence-arrow {
  opacity: 0;
  pointer-events: none;
  border: 0;
  background: transparent;
  transition: opacity 0.45s ease;
}

.chevron-stack,
.arrow-layers {
  display: grid;
  gap: 0.18rem;
}

.chevron-stack span,
.arrow-layers span {
  width: 1.3rem;
  height: 1.3rem;
  border-right: 4px solid rgba(255, 255, 255, 0.28);
  border-bottom: 4px solid rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
}

.chevron-stack span {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
  animation: chevronPulse 1.4s ease-in-out infinite;
}

.chevron-stack span:nth-child(2) {
  animation-delay: 0.18s;
}

.chevron-stack span:nth-child(3) {
  animation-delay: 0.36s;
}

.arrow-layers span {
  width: 1.55rem;
  height: 1.55rem;
  border-right-width: 5px;
  border-bottom-width: 5px;
  border-right-color: rgba(195, 241, 255, 0.3);
  border-bottom-color: rgba(195, 241, 255, 0.3);
  filter: drop-shadow(0 0 10px rgba(137, 227, 255, 0.2));
  animation: arrowGlow 1.6s ease-in-out infinite;
}

.arrow-layers span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-layers span:nth-child(3) {
  animation-delay: 0.4s;
}

.second-screen.is-arrow-visible .second-arrow,
.third-screen.is-arrow-visible .third-arrow {
  opacity: 1;
  pointer-events: auto;
}

.fourth-prompt {
  position: absolute;
  left: 50%;
  bottom: clamp(2rem, 7vh, 4rem);
  z-index: 7;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: auto;
}

.fourth-prompt p {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.enter-portfolio {
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(103, 212, 255, 0.18), rgba(255, 92, 156, 0.18));
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.portfolio-shell {
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 92, 156, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 2%, rgba(103, 212, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #05070f 0%, #070b18 30%, #050812 100%);
}

.portfolio-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 10rem, 10rem 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 95%);
  pointer-events: none;
}


.portfolio-banner {
  position: relative;
  padding: 0 clamp(1rem, 3vw, 2rem) 1.2rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.12), rgba(5, 7, 15, 0.82)),
    #05070f;
}

.portfolio-banner::before,
.portfolio-banner::after {
  content: "";
  position: absolute;
  inset: 0 clamp(1rem, 3vw, 2rem) 1.2rem;
  border-radius: 1.7rem;
  pointer-events: none;
}

.portfolio-banner::before {
  background:
    radial-gradient(circle at 50% 48%, transparent 26%, rgba(4, 6, 14, 0.1) 54%, rgba(4, 6, 14, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 5, 12, 0.02), rgba(3, 5, 12, 0.24));
  z-index: 1;
}

.portfolio-banner::after {
  opacity: 0.07;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.88) 0 0.9px, transparent 1.4px),
    radial-gradient(circle at 76% 62%, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1.3px),
    radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.52) 0 0.7px, transparent 1.1px);
  background-size: 120px 120px, 160px 160px, 90px 90px;
  z-index: 2;
}

.portfolio-banner img {
  position: relative;
  z-index: 0;
  display: block;
  width: min(100%, 1760px);
  margin: 0 auto;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.portfolio-nav-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1.8rem clamp(1rem, 3vw, 2rem) 1rem;
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.92), rgba(5, 7, 15, 0.72), rgba(5, 7, 15, 0));
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.portfolio-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 1.4rem;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 1rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.08rem;
  color: rgba(248, 250, 255, 0.92);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font-heading);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  cursor: pointer;
  pointer-events: auto;
}

.nav-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 212, 255, 0.44);
  background: linear-gradient(180deg, rgba(103, 212, 255, 0.14), rgba(255, 92, 156, 0.06));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(103, 212, 255, 0.08);
}

.portfolio-divider {
  max-width: 1380px;
  height: 1px;
  margin: 1.05rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.section-block {
  position: relative;
  z-index: 1;
  max-width: 1760px;
  margin: 0 auto;
  padding: 4.5rem clamp(1rem, 3vw, 2rem) 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.46);
}

.section-heading,
.section-copy {
  max-width: 48rem;
}

.section-heading h2,
.section-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading p,
.section-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--muted);
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: minmax(19rem, 25rem) minmax(66rem, 1fr);
  gap: 1.35rem;
  align-items: stretch;
  position: relative;
}

.portfolio-resume-column {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  min-height: 100%;
  grid-template-rows: auto auto 1fr;
  height: 100%;
}

.portfolio-hero-grid::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  width: 30%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 28%, rgba(171, 108, 255, 0.16), transparent 44%),
    rgba(7, 10, 18, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px) rotate(-2deg);
}

.resume-drift-slot {
  position: relative;
  min-height: 35rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}

.resume-drift-card {
  width: min(100%, 25.5rem);
  aspect-ratio: 0.707;
  opacity: 1;
  transform: none;
}

.resume-drift-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.85rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(12, 17, 29, 0.5), rgba(8, 10, 20, 0.26)),
    rgba(10, 12, 22, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 34px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 214, 166, 0.08);
  backdrop-filter: blur(24px) saturate(1.08);
  overflow: hidden;
}

.resume-drift-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.26), transparent 18%, transparent 72%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 229, 182, 0.08), transparent 24%);
  pointer-events: none;
}

.resume-drift-showcase::after {
  display: none;
}

.resume-showcase-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.resume-showcase-light::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 14%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 232, 196, 0.98), rgba(255, 211, 142, 0.3) 44%, transparent 72%);
  box-shadow:
    0 0 20px rgba(255, 218, 158, 0.34),
    0 0 40px rgba(255, 218, 158, 0.26);
  filter: blur(0.1px);
}

.resume-showcase-light::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 14%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 232, 196, 0.98), rgba(255, 211, 142, 0.3) 44%, transparent 72%);
  box-shadow:
    0 0 20px rgba(255, 218, 158, 0.34),
    0 0 40px rgba(255, 218, 158, 0.26);
  filter: blur(0.1px);
}

.resume-showcase-light {
  background:
    linear-gradient(157deg, rgba(255, 220, 168, 0.17), transparent 16%) 13% 1.8rem / 46% 62% no-repeat,
    linear-gradient(203deg, rgba(255, 220, 168, 0.17), transparent 16%) 87% 1.8rem / 46% 62% no-repeat;
  filter: blur(6px);
}

.resume-drift-sheet {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0.46rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 28px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.resume-drift-sheet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.resume-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(245, 249, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(9, 12, 22, 0.3);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.portfolio-hero-section .section-copy {
  text-align: left;
  justify-self: start;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  padding: 0 0.2rem;
}

.portfolio-hero-section .section-copy .section-kicker,
.portfolio-hero-section .section-copy h2,
.portfolio-hero-section .section-copy p,
.portfolio-hero-section .section-copy .hero-links {
  text-align: left;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
}

.portfolio-hero-section .section-copy h2 {
  margin-bottom: 0.7rem;
}

.portfolio-hero-section .section-copy p {
  max-width: none;
}

.hero-links--resume {
  margin-top: 0.9rem;
}

.hero-links--about {
  margin-top: 1.35rem;
}

.contact-glass-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 0;
  height: 100%;
  padding: 1rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 118, 175, 0.12), transparent 16rem),
    radial-gradient(circle at 84% 18%, rgba(111, 210, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 22, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.05);
  overflow: hidden;
}

.contact-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 74%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.contact-glass-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.contact-glass-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(222, 231, 244, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.contact-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(247, 249, 252, 0.92);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(10, 14, 24, 0.28);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.16);
}

.contact-glass-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem;
  gap: 0.95rem;
  align-items: start;
}

.contact-glass-meta {
  display: grid;
  gap: 0.72rem;
}

.contact-glass-item {
  display: grid;
  gap: 0.28rem;
  padding: 0.75rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 22, 0.28);
}

.contact-glass-item span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(201, 212, 228, 0.58);
}

.contact-glass-item strong {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
  font-family: var(--font-heading);
  color: rgba(246, 249, 255, 0.95);
  word-break: break-all;
}

.contact-glass-qr {
  display: grid;
  place-items: center;
  padding: 0.6rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(9, 12, 22, 0.26);
}

.contact-glass-qr img {
  display: block;
  width: 100%;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.98);
}

.portrait-intro-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
  min-height: auto;
  width: 100%;
  padding: 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 16% 20%, rgba(114, 210, 255, 0.1), transparent 20rem),
    radial-gradient(circle at 84% 22%, rgba(255, 124, 181, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 22, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(1.06);
  overflow: hidden;
}

.portrait-intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 20%, transparent 72%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.portrait-intro-figure {
  position: relative;
  min-height: 29rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.portrait-intro-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: contrast(1.04) brightness(0.96);
  background: rgba(0, 0, 0, 0.18);
}

.portrait-intro-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 0.55rem 0.2rem 0.55rem;
  background: rgba(10, 14, 22, 0.78);
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.portrait-intro-columns {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.9rem;
  padding: 0 1rem 0.65rem;
}

.portrait-intro-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  width: fit-content;
  margin: 1rem 1rem 0;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.73rem;
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
  color: rgba(222, 231, 244, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.portrait-intro-copy h3 {
  margin: 0;
  padding: 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.portrait-intro-copy p {
  margin: 0;
  padding: 0;
  color: rgba(214, 223, 235, 0.8);
  font-size: 0.98rem;
  line-height: 1.9;
}

.resume-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.resume-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.resume-lightbox[hidden] {
  display: none;
}

.resume-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 14, 0.76);
  backdrop-filter: blur(10px);
}

.resume-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 58rem);
  max-height: 90vh;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 22, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.resume-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 4.5rem);
  object-fit: contain;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
}

.resume-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.8rem auto;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 249, 255, 0.92);
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 14, 24, 0.28);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-family: var(--font-heading);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.ghost-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
}

.ghost-link--accent {
  background: linear-gradient(135deg, rgba(103, 212, 255, 0.18), rgba(255, 92, 156, 0.16));
}

.placeholder-panel,
.info-card,
.work-card,
.social-card,
.metrics-case-card,
.metrics-stat-pill,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.placeholder-panel::before,
.work-card::before,
.social-card::before,
.metrics-case-card::before,
.metrics-stat-pill::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -40%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(18deg);
  animation: shimmer 6.8s ease-in-out infinite;
  pointer-events: none;
}

.placeholder-panel {
  min-height: 13.5rem;
  padding: 1.4rem;
  border-radius: 1.55rem;
}

.placeholder-panel strong,
.work-card strong,
.social-card strong,
.metrics-media-overlay strong,
.info-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.18;
}

.placeholder-panel small,
.work-card p,
.social-card p,
.metrics-media-overlay small {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

.placeholder-panel--hero {
  min-height: 26rem;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 92, 156, 0.28), transparent 18rem),
    radial-gradient(circle at 80% 78%, rgba(103, 212, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(18, 22, 41, 0.96), rgba(9, 12, 24, 0.94));
  padding-left: 1.4rem;
}

.placeholder-panel--cyan,
.work-card--cyan,
.social-card--cyan {
  background:
    radial-gradient(circle at 20% 20%, rgba(103, 212, 255, 0.22), transparent 16rem),
    linear-gradient(135deg, rgba(9, 26, 37, 0.96), rgba(8, 13, 24, 0.94));
}

.placeholder-panel--pink,
.work-card--pink,
.social-card--pink {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 92, 156, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(35, 12, 25, 0.96), rgba(11, 11, 22, 0.94));
}

.placeholder-panel--amber,
.work-card--amber {
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 204, 114, 0.22), transparent 16rem),
    linear-gradient(135deg, rgba(38, 25, 10, 0.96), rgba(12, 11, 19, 0.94));
}

.panel-tag,
.card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.company-marquee {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.marquee-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: marqueeMove 22s linear infinite;
}

.marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 26s;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.info-card {
  min-height: 11rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
}

.info-card--company {
  padding: 0;
}

.company-card-link {
  display: grid;
  grid-template-rows: minmax(12rem, 14.5rem) auto;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.company-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem 1.35rem 0 0;
  background: rgba(7, 10, 18, 0.86);
}

.company-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.02), rgba(7, 10, 18, 0.18) 48%, rgba(7, 10, 18, 0.74)),
    linear-gradient(135deg, rgba(103, 212, 255, 0.08), transparent 44%, rgba(255, 92, 156, 0.06));
  pointer-events: none;
}

.company-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.company-card-copy {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.2rem 1.2rem;
}

.company-card-copy strong {
  margin-top: 0.25rem;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.04;
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(196, 228, 255, 0.9) 30%, rgba(255, 246, 222, 0.96) 58%, rgba(132, 220, 255, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 14px rgba(155, 222, 255, 0.12),
    0 0 24px rgba(255, 205, 132, 0.08);
}

.company-card-copy p {
  margin: 0;
  color: rgba(233, 241, 255, 0.76);
  line-height: 1.7;
}

.company-card-copy small {
  color: rgba(199, 213, 230, 0.7);
  line-height: 1.68;
}

.info-card span {
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.works-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.works-grid--primary {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}

.work-stack {
  display: grid;
  gap: 1rem;
}

.work-card {
  min-height: 14rem;
  display: grid;
  align-content: end;
  gap: 0;
  padding: 1.1rem;
  border-radius: 1.55rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.work-card:hover,
.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.work-card--featured {
  min-height: 29rem;
  align-content: end;
  background:
    linear-gradient(120deg, rgba(255, 92, 156, 0.16), transparent 38%),
    linear-gradient(235deg, rgba(103, 212, 255, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(11, 16, 30, 0.98), rgba(6, 8, 18, 0.96));
}

.work-card--hero-cover {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.08), rgba(7, 10, 18, 0.54) 46%, rgba(7, 10, 18, 0.9)),
    linear-gradient(135deg, rgba(103, 212, 255, 0.08), transparent 40%, rgba(255, 92, 156, 0.08)),
    url("./tvc-assets/hero-cover.png") center center / cover no-repeat;
}

.work-card--emotion {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.84)),
    url("./tvc-assets/emotion-cover.png") center center / cover no-repeat;
}

.work-card--soundwave {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.84)),
    url("./tvc-assets/soundwave-cover.png") center center / cover no-repeat;
}

.work-card--interview {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.84)),
    url("./tvc-assets/interview-cover.png") center center / cover no-repeat;
}

.work-card--event {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.84)),
    url("./tvc-assets/event-cover.png") center center / cover no-repeat;
}

.work-card--product-mix {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.84)),
    url("./tvc-assets/product-mix-cover.png") center center / cover no-repeat;
}

.work-card-copy {
  max-width: 32rem;
  align-self: end;
  display: grid;
  gap: 0.75rem;
}

.work-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-self: end;
}

.work-card-link {
  display: grid;
  align-content: end;
  gap: 0;
  min-height: 8.6rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  text-decoration: none;
  color: rgba(246, 250, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 22, 0.32);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  background-size: cover;
  background-position: center center;
}

.work-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(128, 223, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(8, 13, 24, 0.4);
}

.work-card-link strong {
  margin-top: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: rgba(247, 249, 252, 0.94);
  display: flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.58rem 0.78rem;
  border-radius: 0.86rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(10, 14, 24, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.work-card-link--accent {
  background:
    linear-gradient(135deg, rgba(103, 212, 255, 0.12), rgba(255, 92, 156, 0.1)),
    rgba(8, 12, 22, 0.34);
}

.work-card-link--bili {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.82)),
    url("./tvc-assets/bili-cover.png") center center / cover no-repeat;
}

.work-card-link--douyin {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.82)),
    url("./tvc-assets/douyin-cover.png") center center / cover no-repeat;
}

.works-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.works-section .work-card > strong {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  margin-top: 0;
  padding: 0.62rem 0.82rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: rgba(247, 249, 252, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 14, 24, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.social-card {
  min-height: 14rem;
  padding: 1.3rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.7rem;
  text-decoration: none;
}

.social-card--tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 29rem;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 92, 156, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(18, 22, 41, 0.96), rgba(8, 11, 21, 0.94));
}

.social-card--wide {
  grid-column: span 8;
  min-height: 14rem;
  background:
    radial-gradient(circle at 75% 20%, rgba(103, 212, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(12, 18, 31, 0.96), rgba(9, 12, 23, 0.94));
}

.social-card--pink,
.social-card--cyan {
  grid-column: span 4;
}

.social-card--weibo {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.48) 54%, rgba(8, 10, 20, 0.88)),
    url("./social-assets/weibo-cover.png") center center / cover no-repeat;
}

.social-card--xiaohongshu {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.86)),
    url("./social-assets/xiaohongshu-cover.png") center center / cover no-repeat;
}

.social-card--hook {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.86)),
    url("./social-assets/hook-cover.png") center center / cover no-repeat;
}

.social-card--series {
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.08), rgba(8, 10, 20, 0.46) 54%, rgba(8, 10, 20, 0.86)),
    url("./social-assets/series-cover.png") center center / cover no-repeat;
}

.social-card strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0;
  padding: 0.46rem 0.86rem;
  border-radius: 0.9rem;
  color: rgba(247, 249, 252, 0.96);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 14, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.14);
}

.social-card p {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0;
  padding: 0.38rem 0.74rem;
  border-radius: 0.82rem;
  color: rgba(242, 246, 252, 0.84);
  background: rgba(9, 12, 22, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.social-card .card-chip {
  margin-bottom: 0.05rem;
}

.metrics-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.playback-showcase {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 22, 0.84);
  box-shadow: var(--shadow);
}

.playback-copy {
  max-width: 54rem;
}

.playback-copy strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  line-height: 1.12;
}

.playback-copy p {
  margin: 0.9rem 0 0;
  color: rgba(233, 241, 255, 0.72);
  line-height: 1.8;
  max-width: 48rem;
}

.playback-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.playback-highlight {
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(103, 212, 255, 0.08), rgba(103, 212, 255, 0.02)),
    rgba(7, 11, 20, 0.56);
}

.playback-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.playback-highlight strong {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  color: #f5fbff;
  text-shadow:
    0 0 12px rgba(103, 212, 255, 0.14),
    0 0 28px rgba(103, 212, 255, 0.08);
}

.playback-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.playback-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.playback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 212, 255, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.playback-card--featured {
  border-color: rgba(103, 212, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(103, 212, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.playback-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: rgba(255, 255, 255, 0.03);
}

.playback-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playback-card-meta {
  padding: 0.9rem 0.95rem 1rem;
}

.playback-card-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.playback-card-meta strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.28rem;
  line-height: 1.15;
  color: rgba(248, 250, 255, 0.95);
}

.metrics-case-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 13, 24, 0.84);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.metrics-case-card--feature {
  grid-column: 1 / -1;
}

.metrics-case-card::after,
.production-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(103, 212, 255, 0.06);
  pointer-events: none;
}

.metrics-case-card:hover,
.production-card:hover {
  transform: translateY(-8px);
  border-color: rgba(103, 212, 255, 0.24);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(103, 212, 255, 0.06);
}

.metrics-media {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  background: rgba(255, 255, 255, 0.04);
}

.metrics-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.metrics-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 14, 0.06), rgba(4, 6, 14, 0.12) 38%, rgba(4, 6, 14, 0.9)),
    linear-gradient(135deg, rgba(103, 212, 255, 0.06), transparent 40%, rgba(255, 92, 156, 0.08));
  pointer-events: none;
}

.metrics-media-overlay {
  position: absolute;
  inset: auto 1.2rem 1.1rem 1.2rem;
  z-index: 1;
}

.metrics-media-overlay .card-chip,
.production-overlay .card-chip {
  backdrop-filter: blur(10px);
  background: rgba(8, 14, 24, 0.42);
}

.metrics-media-overlay strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
}

.metrics-media-overlay small {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 38rem;
}

.metrics-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(5, 8, 16, 0.68);
}

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

.metrics-stat-pill {
  min-height: 7rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.metrics-stat-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.metrics-stat-pill strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  transition:
    transform 0.45s ease,
    text-shadow 0.45s ease,
    color 0.45s ease;
}

.metrics-stat-pill--primary {
  border-color: rgba(103, 212, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(103, 212, 255, 0.12), rgba(103, 212, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.metrics-stat-pill--primary strong {
  font-size: clamp(1.95rem, 3.8vw, 3.3rem);
  text-shadow: 0 0 24px rgba(103, 212, 255, 0.16);
}

.count-up--spotlight {
  color: #f5fbff;
  text-shadow:
    0 0 18px rgba(103, 212, 255, 0.18),
    0 0 42px rgba(103, 212, 255, 0.12);
}

.count-up.is-burst {
  animation: countBurst 0.48s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.metrics-feature-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.55fr);
  gap: 0.85rem;
  padding: 0.95rem 0.95rem 0;
}

.metrics-media--feature {
  min-height: 34rem;
  border-radius: 1.25rem;
}

.metrics-feature-side {
  display: grid;
  gap: 0.85rem;
}

.metrics-feature-side img {
  width: 100%;
  min-height: 16.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.production-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 13, 24, 0.84);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.production-card--hero {
  grid-column: 1 / -1;
}

.production-card--overseas {
  grid-column: 1 / -1;
  padding: 1rem;
}

.production-media {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  background: rgba(255, 255, 255, 0.04);
}

.production-card--hero .production-media {
  min-height: 32rem;
}

.production-media--overseas {
  min-height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(7, 10, 18, 0.88);
}

.production-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.production-media--overseas img {
  object-fit: contain;
  object-position: center center;
  padding: 0.3rem;
  background: rgba(7, 10, 18, 0.82);
}

.production-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.06), rgba(5, 8, 16, 0.14) 42%, rgba(5, 8, 16, 0.92)),
    linear-gradient(135deg, rgba(103, 212, 255, 0.08), transparent 44%, rgba(255, 92, 156, 0.06));
}

.production-media--overseas::after {
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.04), rgba(5, 8, 16, 0.08) 38%, rgba(5, 8, 16, 0.18)),
    linear-gradient(135deg, rgba(103, 212, 255, 0.04), transparent 46%, rgba(255, 92, 156, 0.03));
}

.production-overlay {
  position: absolute;
  inset: auto 1.25rem 1.15rem 1.25rem;
  z-index: 1;
}

.production-overlay strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.14;
}

.production-overlay small {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 42rem;
}

.production-overseas-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.production-overseas-copy strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.14;
}

.production-overseas-copy small {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 44rem;
}

.production-overseas-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(16rem, 0.92fr);
  gap: 1.2rem;
  align-items: start;
}

.production-overseas-main {
  display: grid;
  gap: 0.85rem;
}

.production-overseas-launch {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(112, 232, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 183, 107, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(7, 10, 18, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 42px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.production-overseas-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 20%, transparent 68%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(6, 10, 18, 0.04), rgba(6, 10, 18, 0.44) 58%, rgba(6, 10, 18, 0.84));
  pointer-events: none;
}

.production-overseas-launch-video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 25rem;
  object-fit: contain;
  object-position: center center;
  background: radial-gradient(circle at center, rgba(16, 23, 37, 0.95), rgba(5, 8, 16, 0.98));
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}

.production-overseas-launch-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(15, 19, 28, 0.42);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -10px 24px rgba(0, 0, 0, 0.14);
}

.production-overseas-launch-copy {
  max-width: 100%;
}

.production-overseas-launch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(240, 248, 255, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  background: rgba(255, 255, 255, 0.05);
}

.production-overseas-launch-overlay strong {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(208, 234, 255, 0.82) 28%, rgba(255, 246, 224, 0.96) 54%, rgba(141, 225, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 16px rgba(158, 226, 255, 0.12),
    0 0 28px rgba(255, 208, 132, 0.08);
}

.production-overseas-launch-overlay p {
  margin: 0.55rem 0 0;
  color: rgba(238, 245, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.68;
}

.production-overseas-launch-note {
  color: rgba(214, 228, 245, 0.72);
  max-width: 40rem;
}

.production-overseas-launch-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  align-self: end;
}

.production-overseas-launch-meta span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(9, 12, 20, 0.3);
  color: rgba(248, 251, 255, 0.86);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  backdrop-filter: blur(12px);
}

.production-overseas-sound-toggle {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  min-width: 5.7rem;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(244, 249, 255, 0.82);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: none;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 22, 0.18);
  backdrop-filter: blur(14px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.16);
  opacity: 0.86;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.production-overseas-sound-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 225, 255, 0.22);
  color: rgba(248, 252, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 24, 0.24);
  opacity: 1;
}

.production-figure--headline {
  align-self: start;
}

.production-figures {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.production-figures--footer {
  margin-top: 0;
  padding: 0.95rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(5, 8, 16, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.production-figures--overseas {
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  align-items: stretch;
}

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

.production-figure {
  min-height: 4.45rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(103, 212, 255, 0.08), rgba(103, 212, 255, 0.015)),
    rgba(7, 12, 21, 0.28);
  backdrop-filter: blur(10px);
}

.production-figure--primary {
  max-width: 14rem;
}

.production-figure--right {
  padding: 0.55rem;
}

.production-figure--ghost {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.01);
}

.production-figure--ghost strong {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: none;
}

.production-figure span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.production-figure strong {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1;
  color: #f8fcff;
  text-shadow:
    0 0 10px rgba(103, 212, 255, 0.1),
    0 0 22px rgba(103, 212, 255, 0.06);
}

.gif-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  height: auto;
}

.gif-gallery--overseas {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: 0.7rem;
}

.gif-gallery-item {
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.gif-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.72rem;
  background: rgba(7, 10, 18, 0.8);
}

.production-overseas-caption {
  align-self: start;
  margin: 0;
  padding: 0.05rem 0.05rem 0;
  color: rgba(233, 242, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.72;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 4rem;
}

.tools-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 118, 175, 0.1), transparent 16rem),
    radial-gradient(circle at 84% 16%, rgba(111, 210, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 22, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.05);
}

.tools-group {
  display: grid;
  gap: 0.9rem;
}

.tools-group-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.34rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(234, 242, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  background: rgba(255, 255, 255, 0.04);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.tools-grid--post {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tool-card {
  position: relative;
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 22, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.1), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.tool-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 250, 255, 0.96);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background:
    linear-gradient(135deg, rgba(103, 212, 255, 0.18), rgba(255, 92, 156, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.tool-card strong {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.tool-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(220, 230, 244, 0.72);
  font-size: 0.84rem;
  line-height: 1.68;
}


.tools-overview-board {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: -0.2rem 0 0;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 118, 175, 0.08), transparent 12rem),
    radial-gradient(circle at 82% 18%, rgba(111, 210, 255, 0.08), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 22, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.tools-overview-board img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes chevronPulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.26);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
    transform: rotate(45deg) translateY(0);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
    transform: rotate(45deg) translateY(3px);
  }
}

@keyframes arrowGlow {
  0%,
  100% {
    border-right-color: rgba(195, 241, 255, 0.28);
    border-bottom-color: rgba(195, 241, 255, 0.28);
    filter: drop-shadow(0 0 6px rgba(137, 227, 255, 0.12));
    transform: rotate(45deg) translateY(0);
  }

  50% {
    border-right-color: rgba(241, 252, 255, 0.98);
    border-bottom-color: rgba(241, 252, 255, 0.98);
    filter: drop-shadow(0 0 18px rgba(137, 227, 255, 0.5));
    transform: rotate(45deg) translateY(4px);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-28%) rotate(18deg);
    opacity: 0;
  }

  16%,
  48% {
    opacity: 1;
  }

  64% {
    transform: translateX(285%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes countBurst {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  52% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-22%);
  }
}

@keyframes resumeFloatIn {
  0% {
    opacity: 0;
    transform: translateX(-54px) translateY(18px) rotate(-10deg) scale(0.88);
  }

  65% {
    opacity: 1;
    transform: translateX(0) translateY(-4px) rotate(1.5deg) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes resumeLeafDrift {
  0% {
    opacity: 0;
    transform: translate3d(-320px, -48vh, 0) rotate(-31deg) scale(0.66);
  }

  12% {
    opacity: 1;
    transform: translate3d(-188px, -36vh, 0) rotate(-12deg) scale(0.74);
  }

  26% {
    opacity: 1;
    transform: translate3d(36px, -23vh, 0) rotate(22deg) scale(0.82);
  }

  44% {
    opacity: 1;
    transform: translate3d(-156px, -13vh, 0) rotate(-18deg) scale(0.9);
  }

  62% {
    opacity: 1;
    transform: translate3d(42px, -4.4vh, 0) rotate(12deg) scale(0.98);
  }

  80% {
    opacity: 1;
    transform: translate3d(-22px, 1.1vh, 0) rotate(-6deg) scale(1.02);
  }

  92% {
    opacity: 1;
    transform: translate3d(10px, -0.2vh, 0) rotate(2.2deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes resumeFoldOpen {
  0% {
    transform: perspective(1200px) rotateY(-104deg) rotateZ(-2deg) scaleX(0.66);
    filter: brightness(0.88);
  }

  16% {
    transform: perspective(1200px) rotateY(-82deg) rotateZ(-1.5deg) scaleX(0.72);
    filter: brightness(0.9);
  }

  34% {
    transform: perspective(1200px) rotateY(-46deg) rotateZ(0.8deg) scaleX(0.82);
    filter: brightness(0.95);
  }

  58% {
    transform: perspective(1200px) rotateY(-12deg) rotateZ(1.6deg) scaleX(0.94);
    filter: brightness(0.99);
  }

  78% {
    transform: perspective(1200px) rotateY(14deg) rotateZ(-0.7deg) scaleX(1.03);
    filter: brightness(1.01);
  }

  100% {
    transform: perspective(1200px) rotateY(0deg) rotateZ(0deg) scaleX(1);
    filter: brightness(1);
  }
}

@media (max-width: 1120px) {
  .portfolio-hero-grid,
  .works-grid--primary,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .resume-drift-card {
    width: min(72vw, 25rem);
  }

  .resume-drift-slot {
    min-height: auto;
    justify-content: center;
    padding-top: 0;
  }

  .portrait-intro-card {
    min-height: auto;
  }

  .portrait-intro-figure {
    min-height: 24rem;
  }

  .portrait-intro-columns {
    grid-template-columns: 1fr;
  }

  .contact-glass-body {
    grid-template-columns: 1fr;
  }

  .contact-glass-qr {
    max-width: 12rem;
  }

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

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

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

  .work-card-actions {
    grid-template-columns: 1fr;
  }

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

  .playback-highlight-row,
  .playback-card-grid {
    grid-template-columns: 1fr;
  }

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

  .production-overseas-head,
  .production-overseas-body {
    grid-template-columns: 1fr;
  }

  .production-overseas-launch-video {
    min-height: 27rem;
  }

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

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

  .social-card--tall,
  .social-card--wide,
  .social-card--pink,
  .social-card--cyan {
    grid-column: span 6;
  }
}

@media (max-width: 780px) {
  .hero-audio-prompt {
    width: 4.1rem;
    height: 4.1rem;
    bottom: 11vh;
  }

  .hero-audio-prompt-text {
    font-size: 0.68rem;
    bottom: calc(11vh - 1.6rem);
  }

  .fragment-title {
    font-size: clamp(3.1rem, 10.8vw, 5.8rem);
    white-space: normal;
    line-height: 1.05;
    letter-spacing: 0.03em;
  }

  .hero-copy {
    gap: 0.95rem;
    padding: 1.4rem;
  }

  .subhead {
    max-width: 24rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    width: min(100%, 24rem);
  }

  .sound-toggle {
    width: 100%;
  }

  .scroll-cue {
    width: 3.1rem;
    height: 3.8rem;
  }

  .screen-arrow {
    bottom: 1.1rem;
    padding: 0.5rem 0.9rem;
  }

  .chevron-stack span {
    width: 1.05rem;
    height: 1.05rem;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .arrow-layers span {
    width: 1.25rem;
    height: 1.25rem;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }

  .production-media--overseas img {
    padding: 0.35rem;
  }

  .production-overseas-launch-overlay {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .production-overseas-launch-video {
    min-height: 24rem;
  }

  .production-overseas-launch-overlay strong {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    white-space: normal;
  }

  .production-overseas-launch-meta {
    justify-content: flex-start;
  }

  .production-overseas-sound-toggle {
    top: 0.7rem;
    right: 0.7rem;
    min-width: 5.2rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.64rem;
  }

  .production-overseas-caption {
    padding-top: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .portfolio-nav {
    gap: 0.75rem;
  }

  .nav-pill {
    width: 100%;
  }

  .showreel-strip,
  .company-grid,
  .works-ribbon {
    grid-template-columns: 1fr;
  }

  .work-card-link {
    min-height: 7.6rem;
  }

  .metrics-stats,
  .metrics-stats--feature {
    grid-template-columns: 1fr;
  }

  .production-figures--split {
    grid-template-columns: 1fr;
  }

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

  .production-card--hero {
    grid-column: auto;
  }

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

  .social-card--tall,
  .social-card--wide,
  .social-card--pink,
  .social-card--cyan {
    grid-column: auto;
    min-height: 16rem;
  }
}





