:root {
  --bg: #050506;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f7f2;
  --muted: #9a9ca3;
  --soft: #6f7a72;
  --line: rgba(255, 255, 255, 0.075);
  --green: #a3ff53;
  --green-2: #c8ff85;
  --blue: #4b7cff;
  --orange: #ff8652;
  --yellow: #ffd93b;
  --radius: 8px;
  --content: 1040px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.035), transparent 34rem),
    linear-gradient(180deg, #08080a 0%, #050506 28%, #050506 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18rem);
}

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

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

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    width 180ms var(--ease),
    height 180ms var(--ease),
    background 180ms var(--ease);
}

.cursor.is-active {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.08);
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--content), calc(100% - 32px));
  min-height: 64px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand,
.nav,
.hero-actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--green-2);
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #08100a;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--green-2) 52%, #ffe66d);
  box-shadow: 0 0 36px rgba(104, 240, 154, 0.32);
}

.nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.nav a,
.header-cta,
.button,
.contact-links a {
  transition:
    transform 180ms var(--ease),
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease);
}

.nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.header-cta {
  justify-self: end;
  padding: 11px 20px;
  color: #061007;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.header-cta:hover,
.button.primary:hover,
.contact-links a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.section {
  width: min(var(--content), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(78px, 8vw, 124px) 0;
}

.hero {
  min-height: 840px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(132px, 12vw, 178px);
  padding-bottom: clamp(78px, 8vw, 132px);
}

.kicker,
.section-label {
  margin: 0 0 22px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.intro h2,
.section-heading h2,
.sticky-copy h2,
.process h2,
.cta h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green);
}

.hero-lede {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #071008;
  background: #fff;
}

.button.ghost {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.portrait-shell {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  max-height: 560px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px 40px 999px 999px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012));
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.5);
}

.portrait-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.42));
}

.portrait-shell img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.04);
  transform: translate(-50%, -50%);
}

.talk-orbit {
  position: absolute;
  right: calc(50% - min(50%, 210px) - 8px);
  bottom: -8px;
  z-index: 3;
  width: clamp(132px, 13vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 12px solid var(--bg);
  border-radius: 50%;
  color: #061007;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.talk-ring {
  position: absolute;
  inset: 8px;
  fill: rgba(0, 0, 0, 0.72);
  font-weight: 950;
  letter-spacing: 1px;
  animation: spin 9s linear infinite;
}

.talk-ring path {
  fill: none;
}

.talk-ring-main {
  font-size: 8px;
}

.talk-ring-sub {
  fill: rgba(0, 0, 0, 0.28);
  font-size: 4.8px;
  letter-spacing: 1.4px;
}

.talk-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  font-size: 24px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.skill-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.marquee {
  width: 100%;
  margin-inline: 0;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 46%, rgba(255, 255, 255, 0.012)),
    #050506;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  padding-inline: 9px;
}

.tool-pill {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #15151b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tool-logo {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  object-fit: contain;
  overflow: hidden;
  border-radius: 4px;
}

.invert-logo {
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

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

.intro-grid,
.section-heading,
.work-layout,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.sticky-copy h2,
.process h2,
.cta h2 {
  font-size: clamp(34px, 4.3vw, 64px);
  line-height: 1.08;
  max-width: 760px;
}

.intro-text p,
.section-heading p,
.sticky-copy p,
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.9;
}

.intro-text {
  display: grid;
  gap: 22px;
}

.skills {
  background: #050506;
}

.creative-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 56px;
  text-align: center;
}

.creative-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.creative-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  color: var(--green);
  font-size: clamp(48px, 7.2vw, 86px);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.creative-title .pink {
  color: #ffb4dc;
}

.creative-title .script {
  color: var(--green);
  font-style: italic;
  letter-spacing: 0;
  transform: skewX(-10deg);
}

.creative-title .work-word {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.creative-title .eye {
  width: 0.86em;
  height: 0.86em;
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-inline: 0.02em;
  color: transparent;
  border: 0.075em solid #f8f8f2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 36%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at 52% 52%, #1a120d 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, #8d5b39 0 44%, #5f3d28 45% 62%, #fff7ef 63% 100%);
  box-shadow:
    inset 0 0 0 0.025em rgba(0, 0, 0, 0.18),
    0 0 0 0.018em rgba(163, 255, 83, 0.22),
    0 0 0.18em rgba(163, 255, 83, 0.28);
}

.creative-title .eye::before {
  width: 22%;
  height: 22%;
  content: "";
  border-radius: 50%;
  background: #050506;
  box-shadow:
    0.08em -0.06em 0 -0.025em #fff,
    0 0 0.06em rgba(0, 0, 0, 0.55);
}

.creative-title .eye::after {
  position: absolute;
  right: -0.05em;
  top: 0.16em;
  width: 0.18em;
  height: 0.18em;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.12em rgba(163, 255, 83, 0.75);
}

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

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

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

.skill-card {
  position: relative;
  min-height: 338px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.045);
  border-radius: 24px;
  background: #111113;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.skill-card span,
.project-card span,
.timeline span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.skill-card .card-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.skill-card .card-kicker.pink {
  color: #ff9bd4;
}

.skill-card .card-kicker.cyan {
  color: #58d8ff;
}

.skill-card .card-kicker.yellow {
  color: #ffdf4a;
}

.skill-card .card-kicker.purple {
  color: #b78cff;
}

.skill-card h3,
.project-card h3,
.timeline h3 {
  margin: 22px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.skill-card p,
.project-card p,
.timeline p,
.process li span {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.skill-card img {
  height: auto;
  aspect-ratio: 2 / 1;
  margin-top: 28px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.skill-card a,
.skill-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition: color 150ms ease;
}

.skill-card a::after,
.skill-card .card-link::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background: currentColor;
  clip-path: polygon(0 42%, 62% 42%, 38% 18%, 50% 6%, 94% 50%, 50% 94%, 38% 82%, 62% 58%, 0 58%);
  transition: transform 150ms var(--ease);
}

.work-layout {
  align-items: stretch;
}

.sticky-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.sticky-copy p {
  margin-top: 26px;
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  min-height: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.project-card h3 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.project-card p {
  max-width: 620px;
  font-size: 16px;
}

.experience {
  padding-top: 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.timeline article {
  min-height: 240px;
  padding: 24px;
}

.process {
  background: #050506;
}

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

.process li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process li:first-child {
  border-top: 1px solid var(--line);
}

.process strong {
  color: #fff;
}

.cta {
  min-height: 560px;
  display: grid;
  align-content: center;
  text-align: center;
}

.cta h2 {
  max-width: 980px;
  margin-inline: auto;
}

.cta p {
  max-width: 760px;
  margin: 28px auto 0;
}

.contact-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.contact-links a {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
}

.footer {
  width: min(var(--content), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.mobile-dock {
  display: none;
}

.case-page {
  background:
    radial-gradient(circle at 70% 6%, rgba(163, 255, 83, 0.08), transparent 28rem),
    linear-gradient(180deg, #070708 0%, #050506 45%, #050506 100%);
}

.case-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(112px, 10vw, 148px);
  padding-bottom: 48px;
}

.case-title {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
}

.case-hero-copy p:not(.kicker, .case-title) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.9;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 850;
}

.case-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #111113;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.46);
}

.case-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.case-hero-media img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.case-section {
  padding-top: 30px;
  padding-bottom: 44px;
}

.case-page main > .case-section:first-child {
  padding-top: clamp(112px, 10vw, 148px);
  padding-bottom: 24px;
}

.case-section-heading {
  max-width: 680px;
  margin-bottom: 16px;
}

.case-section-heading p:not(.section-label) {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.case-video-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 0%, rgba(163, 255, 83, 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #101012;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.case-video-card video {
  display: block;
  width: 100%;
  max-height: min(70vh, 680px);
  border-radius: 16px;
  background: #050506;
  object-fit: contain;
}

.case-script-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.ip-hero-media img {
  aspect-ratio: 16 / 9;
}

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

.ip-principles article {
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #111113;
}

.ip-principles span,
.sticker-card span,
.scene-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.ip-principles h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

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

.sticker-board {
  position: relative;
  min-height: 660px;
}

.sticker-card {
  --x: 0%;
  --y: 0%;
  --r: 0deg;
  --w: 170px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(163, 255, 83, 0.08), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #111113;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  transform: rotate(var(--r));
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.sticker-card:hover {
  z-index: 10;
  transform: translateY(-10px) rotate(0deg) scale(1.06);
  border-color: rgba(163, 255, 83, 0.36);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
}

.sticker-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.sticker-card.is-featured img {
  aspect-ratio: 3 / 4;
}

.sticker-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.88));
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

.sticker-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.xiaojiu-board .sticker-card figcaption {
  display: none;
}

.sticker-card strong,
.scene-card strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.18;
}

.sticker-card p,
.scene-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.sticker-card:nth-child(1) {
  --x: 2%;
  --y: 6%;
  --r: -5deg;
  --w: 198px;
}

.sticker-card:nth-child(2) {
  --x: 24%;
  --y: 0%;
  --r: 6deg;
}

.sticker-card:nth-child(3) {
  --x: 43%;
  --y: 8%;
  --r: -4deg;
}

.sticker-card:nth-child(4) {
  --x: 62%;
  --y: 0%;
  --r: 3deg;
}

.sticker-card:nth-child(5) {
  --x: 80%;
  --y: 11%;
  --r: -6deg;
}

.sticker-card:nth-child(6) {
  --x: 18%;
  --y: 35%;
  --r: -2deg;
}

.sticker-card:nth-child(7) {
  --x: 37%;
  --y: 38%;
  --r: 5deg;
}

.sticker-card:nth-child(8) {
  --x: 57%;
  --y: 34%;
  --r: -5deg;
}

.sticker-card:nth-child(9) {
  --x: 76%;
  --y: 43%;
  --r: 4deg;
}

.sticker-card:nth-child(10) {
  --x: 8%;
  --y: 66%;
  --r: 5deg;
}

.sticker-card:nth-child(11) {
  --x: 45%;
  --y: 67%;
  --r: -3deg;
}

.ip-scene-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "scene scene pose1 pose2"
    "scene scene pose3 pose4"
    "pose5 pose6 pose7 pose8";
  gap: 12px;
  align-items: stretch;
}

.scene-card {
  position: relative;
  grid-area: scene;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #111113;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: 388px;
  aspect-ratio: auto;
  object-fit: cover;
}

.scene-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 420px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(8, 8, 10, 0.68);
  backdrop-filter: blur(18px);
}

.character-strip {
  display: contents;
}

.character-strip figure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 188px;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(75, 124, 255, 0.14), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #101013;
  transition:
    transform 200ms var(--ease),
    border-color 200ms var(--ease);
}

.character-strip figure:hover {
  transform: translateY(-6px);
  border-color: rgba(163, 255, 83, 0.32);
}

.character-strip img {
  width: 100%;
  height: 148px;
  object-fit: contain;
}

.character-strip figure:nth-child(1) {
  grid-area: pose1;
}

.character-strip figure:nth-child(2) {
  grid-area: pose2;
}

.character-strip figure:nth-child(3) {
  grid-area: pose3;
}

.character-strip figure:nth-child(4) {
  grid-area: pose4;
}

.character-strip figure:nth-child(5) {
  grid-area: pose5;
}

.character-strip figure:nth-child(6) {
  grid-area: pose6;
}

.character-strip figure:nth-child(7) {
  grid-area: pose7;
}

.character-strip figure:nth-child(8) {
  grid-area: pose8;
}

.character-strip figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.case-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.case-process article,
.episode-list li,
.case-script-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #111113;
}

.case-process article {
  min-height: 0;
  padding: 16px;
}

.case-process span,
.episode-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.case-process h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.case-process p,
.episode-list p,
.script-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

#assets {
  padding-top: 34px;
}

#assets .case-section-heading {
  margin-bottom: 18px;
}

#assets .case-section-heading p:not(.section-label) {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
}

.asset-wall {
  position: relative;
  height: clamp(520px, 56vw, 640px);
  margin-top: 4px;
}

.asset-card {
  --asset-delay: 0ms;
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --w: 190px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  display: grid;
  gap: 7px;
  width: var(--w);
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    #111113;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  animation: asset-rise 620ms var(--ease) both;
  animation-delay: var(--asset-delay);
  transform: rotate(var(--r));
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.asset-card:nth-child(4n + 2) {
  --asset-delay: 50ms;
}

.asset-card:nth-child(4n + 3) {
  --asset-delay: 100ms;
}

.asset-card:nth-child(4n + 4) {
  --asset-delay: 150ms;
}

.asset-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 15%, rgba(255, 255, 255, 0.12), transparent 38%);
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity 220ms var(--ease),
    transform 420ms var(--ease);
}

.asset-card:hover {
  z-index: 12;
  transform: translateY(-8px) rotate(var(--r)) scale(1.05);
  border-color: rgba(163, 255, 83, 0.36);
  background:
    linear-gradient(180deg, rgba(163, 255, 83, 0.07), rgba(255, 255, 255, 0.025)),
    #121412;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.asset-card:nth-child(1) {
  --x: 0%;
  --y: 5%;
  --r: -4deg;
  --w: 245px;
}

.asset-card:nth-child(2) {
  --x: 20%;
  --y: 1%;
  --r: 5deg;
  --w: 168px;
}

.asset-card:nth-child(3) {
  --x: 37%;
  --y: 8%;
  --r: -2deg;
  --w: 205px;
}

.asset-card:nth-child(4) {
  --x: 62%;
  --y: 2%;
  --r: 4deg;
  --w: 176px;
}

.asset-card:nth-child(5) {
  --x: 78%;
  --y: 11%;
  --r: -6deg;
  --w: 178px;
}

.asset-card:nth-child(6) {
  --x: 8%;
  --y: 29%;
  --r: 6deg;
  --w: 164px;
}

.asset-card:nth-child(7) {
  --x: 24%;
  --y: 24%;
  --r: -3deg;
  --w: 230px;
}

.asset-card:nth-child(8) {
  --x: 49%;
  --y: 27%;
  --r: 4deg;
  --w: 210px;
}

.asset-card:nth-child(9) {
  --x: 70%;
  --y: 32%;
  --r: -2deg;
  --w: 235px;
}

.asset-card:nth-child(10) {
  --x: 1%;
  --y: 52%;
  --r: 3deg;
  --w: 220px;
}

.asset-card:nth-child(11) {
  --x: 22%;
  --y: 49%;
  --r: -6deg;
  --w: 205px;
}

.asset-card:nth-child(12) {
  --x: 43%;
  --y: 53%;
  --r: 5deg;
  --w: 205px;
}

.asset-card:nth-child(13) {
  --x: 63%;
  --y: 55%;
  --r: -4deg;
  --w: 198px;
}

.asset-card:nth-child(14) {
  --x: 80%;
  --y: 58%;
  --r: 5deg;
  --w: 185px;
}

.asset-card:nth-child(15) {
  --x: 16%;
  --y: 72%;
  --r: -2deg;
  --w: 250px;
}

.asset-card:nth-child(16) {
  --x: 49%;
  --y: 74%;
  --r: 3deg;
  --w: 245px;
}

.asset-card:hover::after {
  opacity: 0.55;
  transform: translateX(18%);
}

.asset-media {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(86px, 9vw, 118px);
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 12%, rgba(163, 255, 83, 0.08), transparent 12rem),
    #050506;
}

.asset-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}

.asset-card:nth-child(2) .asset-media img,
.asset-card:nth-child(4) .asset-media img,
.asset-card:nth-child(6) .asset-media img {
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: contain;
}

.asset-card figcaption {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  min-height: 0;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.12), rgba(8, 8, 10, 0.86));
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

.asset-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.asset-card span {
  color: var(--green);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
}

.asset-card h3 {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.16;
}

.asset-card p {
  display: block;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.45;
}

@keyframes asset-rise {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.episode-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 16px;
  padding: 22px;
}

.episode-list strong {
  color: #fff;
  font-size: 22px;
}

.episode-list p {
  grid-column: 2;
}

.case-script-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(24px, 4vw, 46px);
}

.script-lines {
  display: grid;
  gap: 8px;
}

.script-lines strong {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

.creative-grid {
  perspective: 1400px;
}

.creative-grid .skill-card.reveal {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-scale: 0.98;
  opacity: 0;
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(46px)
    scale(var(--card-scale))
    translateZ(0);
  transition:
    opacity 760ms var(--ease),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.creative-grid .skill-card.reveal.is-visible {
  --card-scale: 1;
  opacity: 1;
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(0)
    scale(var(--card-scale))
    translateZ(0);
}

.creative-grid .skill-card.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.creative-grid .skill-card.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.creative-grid .skill-card.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.creative-grid .skill-card.reveal:nth-child(4) {
  transition-delay: 60ms;
}

.creative-grid .skill-card.reveal:nth-child(5) {
  transition-delay: 150ms;
}

.creative-grid .skill-card.reveal:nth-child(6) {
  transition-delay: 240ms;
}

.creative-grid .skill-card.reveal.is-visible:hover {
  --card-scale: 1.08;
  z-index: 5;
  border-color: rgba(255, 255, 255, 0.09);
  background-color: rgba(28, 28, 31, 0.78);
  box-shadow: 0 28px 64px -18px rgba(0, 0, 0, 0.62);
  transition-delay: 0ms;
}

.creative-grid .skill-card.reveal.is-visible:hover img {
  transform: scale(1.025);
}

.creative-grid .skill-card.reveal.is-visible:hover a::after {
  transform: translateX(3px);
}

@media (hover: hover) {
  .creative-grid.is-focusing .skill-card.reveal.is-visible:not(.is-focused),
  .creative-grid:has(.skill-card.reveal.is-visible:hover) .skill-card.reveal.is-visible:not(:hover) {
    --card-scale: 0.94;
    opacity: 0.86;
    filter: saturate(0.92) brightness(0.9);
    transition-delay: 0ms;
  }
}

@media (hover: none) {
  .creative-grid .skill-card.reveal.is-visible:hover {
    --card-scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creative-grid .skill-card.reveal,
  .creative-grid .skill-card.reveal.is-visible {
    transform: none;
    transition-duration: 1ms;
  }

  .creative-grid .skill-card.reveal.is-visible:hover {
    --card-scale: 1;
  }
}

.project-card {
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

a.project-card:hover {
  border-color: rgba(163, 255, 83, 0.32);
  background:
    radial-gradient(circle at 78% 0%, rgba(163, 255, 83, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.kooya-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(61, 255, 152, 0.08), transparent 28rem),
    radial-gradient(circle at 0% 18%, rgba(20, 82, 72, 0.35), transparent 28rem),
    linear-gradient(180deg, #061015 0%, #050506 48%, #050506 100%);
}

.kooya-hero {
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.12fr);
}

.kooya-hero-media {
  border-radius: 22px;
  background: #071018;
}

.kooya-hero-media img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.kooya-insights,
.kooya-feature-grid,
.kooya-board {
  display: grid;
  gap: 16px;
}

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

.kooya-insights article {
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(87, 255, 144, 0.09), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    #101217;
}

.kooya-insights span,
.kooya-board-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.kooya-insights h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  line-height: 1.12;
}

.kooya-insights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

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

.kooya-large-plates {
  grid-template-columns: 1fr;
}

.kooya-feature-grid figure,
.kooya-board-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0b1118;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.kooya-feature-grid img,
.kooya-board-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.kooya-large-plate {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kooya-large-plate img {
  object-fit: contain;
  background: #071018;
  border-radius: 0;
}

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

.kooya-board-card.is-wide {
  grid-column: 1 / -1;
}

.kooya-board-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.kooya-board-card strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.2;
}

.kooya-board-card p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.kooya-summary-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 255, 83, 0.1), transparent 19rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #101217;
}

.work-projects-page {
  background:
    radial-gradient(circle at 76% 0%, rgba(95, 92, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 0% 26%, rgba(50, 107, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #070713 0%, #050506 50%, #050506 100%);
}

.work-projects-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.05fr);
}

.work-projects-hero-media {
  max-height: 540px;
  border-radius: 22px;
}

.work-projects-hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.work-project-panel[hidden] {
  display: none;
}

.project-tabs,
.screen-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tab,
.screen-tab {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.project-tab.is-active,
.screen-tab.is-active {
  color: #071008;
  border-color: rgba(163, 255, 83, 0.7);
  background: var(--green);
}

.project-tab:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.screen-tab:hover:not(.is-active),
.project-tab:hover:not(:disabled, .is-active) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.work-project-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 95, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #101018;
}

.work-project-summary h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.work-project-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.work-project-points article {
  min-height: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    #101018;
}

.work-project-points span,
.screen-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.work-project-points h3 {
  margin: 12px 0 6px;
  font-size: 19px;
  line-height: 1.18;
}

.work-project-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.screen-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 95, 255, 0.14), transparent 20rem),
    #09091a;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
}

.screen-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 30px);
  align-items: start;
  padding-top: 10px;
}

.screen-mosaic .screen-panel {
  position: relative;
  will-change: transform;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.screen-shot-support {
  width: 100%;
}

.wiselaw-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wisehub-mosaic {
  gap: 18px;
}

.wisehub-mosaic .screen-panel {
  border-radius: 16px;
}

.wisehub-mosaic .screen-panel figcaption {
  display: none;
}

.wisehub-mosaic .screen-panel strong {
  font-size: 16px;
}

.wisehub-mosaic .screen-panel p {
  font-size: 13px;
}

.work-other-mosaic .screen-panel img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vibe-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
}

.vibe-hero-media {
  border-radius: 28px;
}

.vibe-hero-media::after {
  display: none;
}

.vibe-hero-media img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.vibe-summary {
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 255, 83, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #101018;
}

.vibe-phone-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.vibe-phone-wall figure,
.vibe-cover-pair figure,
.vibe-cover-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: #101018;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.vibe-phone-wall img,
.vibe-cover-pair img,
.vibe-cover-grid img {
  width: 100%;
  height: auto;
}

.vibe-cover-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 30px);
}

.vibe-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.screen-panel img {
  width: 100%;
  height: auto;
  background: #070713;
}

.screen-panel figcaption {
  display: none;
}

.screen-panel strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
}

.screen-panel p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

@media (hover: hover) {
  .screen-mosaic .screen-panel:hover {
    z-index: 6;
    border-color: rgba(163, 255, 83, 0.34);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
    transform: scale(1.08);
  }

  .wisehub-mosaic .screen-panel:hover {
    transform: scale(1.8);
  }

  .work-other-mosaic .screen-panel:hover {
    transform: scale(1.12);
  }
}

@media (max-width: 1040px) {
  .hero,
  .case-hero,
  .intro-grid,
  .section-heading,
  .case-section-heading,
  .work-layout,
  .process-grid,
  .case-script-card {
    grid-template-columns: 1fr;
  }

  .skill-grid,
  .timeline,
  .case-process,
  .ip-principles,
  .kooya-insights,
  .work-project-points,
  .episode-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .kooya-feature-grid,
  .kooya-board,
  .work-project-summary,
  .vibe-cover-pair {
    grid-template-columns: 1fr;
  }

  .asset-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ip-scene-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
      "scene scene pose1 pose2"
      "scene scene pose3 pose4"
      "pose5 pose6 pose7 pose8";
  }

  .character-strip {
    display: contents;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .cursor {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
    top: 8px;
    width: calc(100% - 20px);
  }

  .brand span:last-child,
  .nav {
    display: none;
  }

  .section {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 96px;
  }

  .case-hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .case-title {
    font-size: 18px;
  }

  .hero-visual {
    order: 2;
  }

  .portrait-shell {
    width: min(100%, 342px);
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .skill-grid,
  .timeline,
  .case-process,
  .ip-principles,
  .kooya-insights,
  .work-project-points,
  .episode-list,
  .project-card {
    grid-template-columns: 1fr;
  }

  .work-project-summary {
    padding: 20px;
  }

  .screen-mosaic {
    grid-template-columns: 1fr;
  }

  .vibe-phone-wall {
    grid-template-columns: 1fr;
  }

  .vibe-cover-grid {
    grid-template-columns: 1fr;
  }

  .screen-shot-home,
  .screen-shot-solutions,
  .screen-shot-support,
  .screen-shot-about {
    width: 100%;
    transform: none;
  }

  .project-tab,
  .screen-tab {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .sticker-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .sticker-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .sticker-card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .character-strip {
    display: grid;
    grid-area: pose1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ip-scene-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "scene"
      "pose1";
  }

  .character-strip figure:nth-child(n) {
    grid-area: auto;
  }

  .scene-card img {
    aspect-ratio: 16 / 10;
  }

  .scene-card figcaption {
    position: static;
    max-width: none;
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .asset-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    height: auto;
  }

  .asset-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .asset-card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .asset-media {
    height: 92px;
  }

  .asset-card {
    border-radius: 14px;
    padding: 8px;
  }

  .asset-card figcaption {
    min-height: 40px;
  }

  .asset-card h3 {
    font-size: 13px;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 8, 10, 0.86);
    backdrop-filter: blur(20px);
    overflow: hidden;
  }

  .mobile-dock a {
    padding: 14px 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    text-align: center;
  }

  .project-card img {
    min-height: 220px;
  }

  .process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    flex-direction: column;
  }
}
