:root {
  --bg: #05070a;
  --page-deep: #080b0f;
  --surface: rgba(19, 19, 23, 0.88);
  --surface-strong: rgba(11, 11, 14, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.68);
  --green: #b6ff36;
  --pink: #ff68bf;
  --orange: #ff7d2f;
  --blue: #4da2ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(118, 174, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 12% 12%, rgba(255, 125, 47, 0.14), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(182, 255, 54, 0.1), transparent 24rem),
    linear-gradient(180deg, #05070a 0%, #080a0f 28%, #090d10 58%, #07080b 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 18% 22%, rgba(164, 255, 74, 0.08), transparent 18rem),
    radial-gradient(circle at 78% 14%, rgba(255, 128, 76, 0.08), transparent 20rem),
    radial-gradient(circle at 46% 48%, rgba(122, 169, 255, 0.07), transparent 24rem),
    linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(8, 11, 15, 0.88) 22rem, rgba(8, 11, 15, 0.96) 100%);
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.4;
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite;
}

.ambient-a {
  top: 8%;
  left: -6%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 111, 47, 0.72), rgba(255, 111, 47, 0));
}

.ambient-b {
  top: 34%;
  right: -8%;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(177, 255, 54, 0.44), rgba(177, 255, 54, 0));
  animation-delay: -6s;
}

.ambient-c {
  bottom: 10%;
  left: 28%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 104, 191, 0.38), rgba(255, 104, 191, 0));
  animation-delay: -12s;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
  opacity: 0.18;
  pointer-events: none;
}

main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 9rem;
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0) 0, rgba(8, 10, 14, 0.38) 36rem, rgba(8, 11, 15, 0.78) 54rem, rgba(8, 11, 15, 0.98) 100%),
    radial-gradient(circle at 18% 26rem, rgba(164, 255, 74, 0.08), transparent 17rem),
    radial-gradient(circle at 74% 18rem, rgba(255, 128, 76, 0.07), transparent 20rem),
    radial-gradient(circle at 34% 58rem, rgba(122, 169, 255, 0.06), transparent 22rem);
  pointer-events: none;
  z-index: -2;
}

main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 28%, rgba(0, 0, 0, 0.16) 100%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.03), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

.section {
  position: relative;
  padding: 5.25rem 0;
  scroll-margin-top: 2rem;
}

.hero {
  display: block;
  min-height: 100vh;
  padding-top: 0;
}

.hero-scene {
  position: relative;
  min-height: 100vh;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.8rem 1.5rem 6.5rem;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at var(--hero-x, 48%) var(--hero-y, 20%), rgba(63, 135, 255, 0.68), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(35, 99, 255, 0.78), transparent 30rem),
    radial-gradient(circle at 78% 24%, rgba(21, 42, 141, 0.86), transparent 34rem),
    radial-gradient(circle at 58% 78%, rgba(0, 129, 255, 0.32), transparent 30rem),
    linear-gradient(115deg, #154cff 0%, #071d79 42%, #030615 100%);
  border: none;
  box-shadow: none;
  isolation: isolate;
}

.hero-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 17rem;
  background:
    radial-gradient(circle at 24% 50%, rgba(73, 111, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 74% 36%, rgba(170, 82, 255, 0.12), transparent 23rem),
    linear-gradient(180deg, rgba(5, 7, 11, 0), rgba(8, 11, 15, 0.56) 56%, rgba(8, 11, 15, 0.98));
  pointer-events: none;
  z-index: 1;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 10, 0.02), rgba(4, 6, 10, 0.12) 56%, rgba(4, 6, 10, 0.08)),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(rgba(91, 127, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 127, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.64));
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.46;
  pointer-events: none;
  animation: heroGlowDrift 18s ease-in-out infinite;
}

.bg-a {
  top: 2rem;
  left: 18%;
  width: 14rem;
  height: 14rem;
  background: rgba(111, 182, 255, 0.24);
}

.bg-b {
  right: 12%;
  bottom: 8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 115, 64, 0.18);
  animation-delay: -6s;
}

.bg-c {
  bottom: 3rem;
  left: 24%;
  width: 22rem;
  height: 10rem;
  background: rgba(163, 255, 72, 0.11);
  animation-delay: -12s;
}

.hero-cover-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-back-word {
  position: absolute;
  left: 48%;
  top: 49%;
  display: grid;
  gap: 0;
  transform:
    translate3d(calc(-50% + var(--hero-depth-x, 0px) * -0.16), calc(-50% + var(--hero-depth-y, 0px) * -0.12), -120px)
    rotateZ(-2deg);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(9rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.22),
    0 28px 80px rgba(2, 18, 89, 0.64);
  opacity: 0.94;
}

.hero-code-rain {
  position: absolute;
  left: 6%;
  top: 18%;
  z-index: 2;
  display: grid;
  gap: 0.62rem;
  width: min(23rem, 28vw);
  color: rgba(220, 236, 255, 0.54);
  font-family: "Outfit", monospace;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  line-height: 1.35;
  letter-spacing: 0;
  transform:
    translate3d(calc(var(--hero-depth-x, 0px) * -0.24), calc(var(--hero-depth-y, 0px) * -0.14), 20px);
  mask-image: linear-gradient(180deg, transparent, black 14%, black 82%, transparent);
  opacity: 0.78;
}

.hero-code-rain span {
  display: block;
  padding: 0.42rem 0.72rem;
  border-left: 2px solid rgba(116, 184, 255, 0.36);
  border-radius: 0.45rem;
  background: linear-gradient(90deg, rgba(7, 18, 56, 0.36), rgba(7, 18, 56, 0));
  animation: codeFloat 8s ease-in-out infinite;
}

.hero-code-rain span:nth-child(2) {
  animation-delay: -1s;
}

.hero-code-rain span:nth-child(3) {
  animation-delay: -2s;
}

.hero-code-rain span:nth-child(4) {
  animation-delay: -3s;
}

.hero-code-rain span:nth-child(5) {
  animation-delay: -4s;
}

.hero-code-rain span:nth-child(6) {
  animation-delay: -5s;
}

.skill-icon {
  position: absolute;
  width: clamp(4.4rem, 7vw, 7.4rem);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.42));
  transform:
    translate3d(calc(var(--hero-depth-x, 0px) * var(--icon-depth, 0.2)), calc(var(--hero-depth-y, 0px) * var(--icon-depth, 0.2)), 90px)
    rotate(var(--icon-rotate, 0deg));
  animation: skillFloat 6.8s ease-in-out infinite;
}

.skill-icon-a {
  left: 6%;
  bottom: 9%;
  --icon-rotate: -8deg;
  --icon-depth: -0.24;
}

.skill-icon-b {
  left: 13%;
  top: 37%;
  --icon-rotate: -10deg;
  --icon-depth: 0.32;
  animation-delay: -1s;
}

.skill-icon-c {
  left: 18%;
  top: 15%;
  --icon-rotate: 9deg;
  --icon-depth: 0.22;
  animation-delay: -2s;
}

.skill-icon-d {
  right: 10%;
  top: 14%;
  --icon-rotate: 9deg;
  --icon-depth: 0.24;
  animation-delay: -3s;
}

.skill-icon-e {
  right: 8%;
  bottom: 11%;
  --icon-rotate: -8deg;
  --icon-depth: -0.3;
  animation-delay: -4s;
}

.skill-icon-f {
  right: 7%;
  top: 42%;
  --icon-rotate: 8deg;
  --icon-depth: 0.36;
  animation-delay: -5s;
}

.hero-person {
  position: absolute;
  left: 53%;
  bottom: -16%;
  z-index: 3;
  width: min(92rem, 84vw);
  max-width: none;
  transform:
    translate3d(calc(-50% + var(--hero-depth-x, 0px) * 0.42), calc(var(--hero-depth-y, 0px) * 0.26), 160px)
    rotateX(calc(var(--hero-tilt-y, 0deg) * -1))
    rotateY(var(--hero-tilt-x, 0deg));
  transform-origin: 50% 62%;
  filter:
    drop-shadow(0 34px 60px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 18px rgba(128, 182, 255, 0.36))
    drop-shadow(0 0 42px rgba(31, 102, 255, 0.22));
  transition: transform 160ms ease-out;
}

.hero-rim-light {
  position: absolute;
  left: 54%;
  top: 32%;
  z-index: 2;
  width: min(70rem, 64vw);
  height: min(46rem, 48vw);
  transform:
    translate3d(calc(-50% + var(--hero-depth-x, 0px) * 0.18), calc(-50% + var(--hero-depth-y, 0px) * 0.12), 70px);
  background:
    radial-gradient(circle at 52% 32%, rgba(245, 250, 255, 0.74), rgba(121, 180, 255, 0.34) 18%, rgba(48, 112, 255, 0.16) 42%, transparent 68%),
    radial-gradient(circle at 48% 48%, rgba(34, 99, 255, 0.38), transparent 60%);
  filter: blur(24px);
  opacity: 0.86;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-rim-light::after {
  content: "";
  position: absolute;
  inset: 18% 17% 14%;
  border-radius: 50%;
  border: 1px solid rgba(154, 205, 255, 0.26);
  box-shadow:
    0 0 36px rgba(85, 151, 255, 0.42),
    inset 0 0 44px rgba(85, 151, 255, 0.18);
  opacity: 0.72;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: min(86rem, 86vw);
  height: 13rem;
  border: 2px solid rgba(36, 115, 255, 0.62);
  border-top-color: rgba(36, 115, 255, 0.08);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-7deg);
  filter: drop-shadow(0 0 18px rgba(36, 115, 255, 0.44));
  opacity: 0.8;
}

.hero-orbit-b {
  bottom: 0;
  width: min(68rem, 72vw);
  height: 8rem;
  opacity: 0.34;
  transform: translateX(-50%) rotate(6deg);
}

.hero-copy-centered,
.hero-copy-flow {
  position: relative;
  z-index: 2;
}

.hero-copy-flow {
  display: grid;
  gap: 1.25rem;
  width: min(100%, 68rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vh, 5.4rem) 1rem 0;
}

.hero-intro-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.3rem;
  position: relative;
  z-index: 5;
}

.hero-summary-card {
  width: min(100%, 41rem);
  margin: 0 auto;
  padding: 1.25rem 1.45rem 1.45rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 12, 18, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(128%);
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-meta-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-strip span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(190, 218, 255, 0.78);
}

.hero-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d4f0ff;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  color: rgba(216, 230, 255, 0.82);
  font-size: clamp(0.95rem, 1.7vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-text-centered {
  max-width: 38rem;
}

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

.hero-copy-centered h1,
.hero-copy-flow h1 {
  max-width: 14ch;
  text-shadow:
    0 16px 52px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(112, 150, 255, 0.18);
}

.hero-copy-centered .button {
  backdrop-filter: blur(12px);
}

.eyebrow,
.card-label {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12em;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  max-width: 14ch;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-art-title {
  color: rgba(246, 243, 237, 0.94);
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-weight: 900;
}

.hero-art-title span:first-child {
  color: rgba(246, 243, 237, 0.94);
  font-style: normal;
  transform: none;
  text-shadow:
    0 12px 40px rgba(41, 118, 255, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-text,
.section-heading p,
.project-copy p,
.video-copy p,
.profile-note,
.timeline-item p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.hero-actions-single {
  margin-top: 0.8rem;
  position: relative;
  z-index: 5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background:
    linear-gradient(135deg, rgba(232, 248, 255, 0.76), rgba(86, 158, 255, 0.62)),
    rgba(255, 255, 255, 0.08);
  color: #071019;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(76, 162, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-resume-button {
  min-width: 10rem;
  padding: 0.9rem 1.55rem;
  font-weight: 700;
  box-shadow:
    0 18px 42px rgba(76, 162, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.hero-meta li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.card {
  background: linear-gradient(180deg, rgba(23, 23, 28, 0.92), rgba(10, 10, 12, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
  min-height: 28rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  height: calc(100% - 2rem);
}

.mini-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 12rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.mini-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 46%);
  opacity: 0.75;
}

.mini-panel span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}

.mini-panel strong {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
}

.mini-panel.wide {
  grid-column: span 2;
}

.accent-green {
  background: linear-gradient(135deg, rgba(182, 255, 54, 0.28), rgba(182, 255, 54, 0.04));
}

.accent-pink {
  background: linear-gradient(135deg, rgba(255, 104, 191, 0.28), rgba(255, 104, 191, 0.05));
}

.accent-orange {
  background: linear-gradient(135deg, rgba(255, 125, 47, 0.28), rgba(255, 125, 47, 0.05));
}

.intro-strip {
  width: 100vw;
  margin-top: -7.3rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  z-index: 3;
}

.intro-strip::before {
  content: "";
  position: absolute;
  inset: -5rem 0 auto;
  height: 16rem;
  background:
    radial-gradient(circle at 12% 60%, rgba(173, 255, 72, 0.08), transparent 28%),
    radial-gradient(circle at 58% 70%, rgba(255, 139, 92, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 10, 14, 0), rgba(8, 11, 15, 0.9));
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.marquee {
  overflow: hidden;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0), rgba(255, 255, 255, 0.055), rgba(8, 11, 15, 0));
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: fit-content;
  min-width: max-content;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  animation: marquee 26s linear infinite;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.practice-masonry {
  column-count: 4;
  column-gap: 1rem;
}

.practice-work-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.practice-work-card:hover,
.practice-work-card:focus-visible {
  transform: translateY(-0.35rem);
  border-color: rgba(89, 215, 255, 0.34);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.28);
}

.practice-work-card img,
.practice-work-card video {
  display: block;
  width: 100%;
  height: auto;
  background: #111721;
}

.practice-work-card video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.practice-work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 12, 0.76));
  pointer-events: none;
}

.practice-work-card span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.practice-work-card.is-video span::before {
  content: "Motion";
  display: inline-flex;
  margin-right: 0.5rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(80, 226, 255, 0.18);
  color: #7eefff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.motion-projects {
  position: relative;
  overflow: hidden;
}

.motion-projects::before {
  content: "";
  position: absolute;
  inset: 8rem -10rem auto auto;
  width: 34rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(89, 215, 255, 0.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.motion-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.8rem 0 1.6rem;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
}

.motion-showcase::-webkit-scrollbar {
  display: none;
}

.motion-showcase.is-dragging {
  cursor: grabbing;
}

.motion-track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0 clamp(1rem, 5vw, 4rem);
  animation: motionScroll 38s linear infinite;
  will-change: transform;
}

.motion-showcase:hover .motion-track,
.motion-showcase.is-dragging .motion-track {
  animation-play-state: paused;
}

.phone-video-card {
  position: relative;
  flex: 0 0 clamp(13rem, 18vw, 18rem);
  display: grid;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  cursor: zoom-in;
  outline: none;
}

.phone-frame {
  position: relative;
  padding: 0.62rem;
  border-radius: 2.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05) 36%, rgba(0, 0, 0, 0.42)),
    #151923;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 0 0 0.34rem rgba(0, 0, 0, 0.86),
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.phone-frame::before,
.phone-frame::after {
  pointer-events: none;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 0.86rem;
  left: 50%;
  z-index: 2;
  width: 4.1rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #05070b;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0.52rem;
  border-radius: 1.65rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 1.55rem;
  background: #070a0f;
  object-fit: cover;
  pointer-events: none;
}

.phone-video-card span {
  justify-self: center;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.phone-video-card:hover .phone-frame,
.phone-video-card:focus-visible .phone-frame {
  transform: translateY(-0.28rem);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 0.34rem rgba(0, 0, 0, 0.86),
    0 1.6rem 3.4rem rgba(32, 151, 255, 0.24);
}

.online-activities {
  position: relative;
  overflow: visible;
}

.online-activities::before {
  content: "";
  position: absolute;
  left: -12rem;
  top: 5rem;
  width: 38rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(183, 255, 61, 0.11), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.online-activities-heading {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.online-activities-heading > div:first-child {
  max-width: 48rem;
}

.online-activities-meta {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
  padding-bottom: 0.25rem;
}

.online-activities-meta span {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.online-activities-meta strong {
  color: #b7ff3d;
  font-size: 0.95rem;
}

.online-activities-meta i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #b7ff3d;
  box-shadow: 0 0 0.8rem rgba(183, 255, 61, 0.78);
  animation: livePulse 1.8s ease-in-out infinite;
}

.online-activities-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.8rem 0 1.8rem;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
}

.motion-showcase,
.online-activities-showcase {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 clamp(4rem, 5.5vw, 7rem),
    #000 calc(100% - clamp(4rem, 5.5vw, 7rem)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 clamp(4rem, 5.5vw, 7rem),
    #000 calc(100% - clamp(4rem, 5.5vw, 7rem)),
    transparent 100%
  );
}

.online-activities-showcase::-webkit-scrollbar {
  display: none;
}

.online-activities-showcase.is-dragging {
  cursor: grabbing;
}

.online-activities-track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0 clamp(1rem, 5vw, 4rem);
  animation: motionScroll 68s linear infinite;
  will-change: transform;
}

.online-activities-showcase:hover .online-activities-track,
.online-activities-showcase.is-dragging .online-activities-track,
.online-activities-showcase:focus-within .online-activities-track {
  animation-play-state: paused;
}

.online-activity-card {
  flex: 0 0 clamp(13rem, 18vw, 18rem);
  display: grid;
  gap: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: zoom-in;
  font: inherit;
  outline: none;
}

.online-phone-frame {
  display: block;
  overflow: hidden;
}

.online-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1125 / 2436;
  border-radius: 1.55rem;
  background: #070a0f;
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
}

.online-activity-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online-activity-label em {
  color: #b7ff3d;
  font-size: 0.72rem;
  font-style: normal;
}

.online-activity-card:hover .online-phone-frame,
.online-activity-card:focus-visible .online-phone-frame {
  transform: translateY(-0.28rem);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 0.34rem rgba(0, 0, 0, 0.86),
    0 1.6rem 3.4rem rgba(183, 255, 61, 0.16);
}

.online-activity-lightbox {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.online-activity-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.online-activity-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.84);
  backdrop-filter: blur(18px);
}

.online-activity-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 33rem);
  max-height: 94vh;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.6rem;
  background: rgba(9, 12, 18, 0.96);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.48);
  transform: translateY(16px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.online-activity-lightbox.is-open .online-activity-dialog {
  transform: translateY(0) scale(1);
}

.online-activity-dialog .motion-video-head {
  padding-right: 3rem;
}

.online-activity-dialog .motion-video-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.online-activity-preview {
  overflow-y: auto;
  width: min(100%, 24rem);
  max-height: 76vh;
  justify-self: center;
  border: 0.52rem solid #0b0e14;
  border-radius: 1.45rem;
  background: #070a0f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 255, 61, 0.46) transparent;
}

.online-activity-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.9rem;
}

.series-designs {
  position: relative;
  isolation: isolate;
  padding-top: 7rem;
  overflow: visible;
}

.series-designs::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1.5rem calc(50% - 50vw) 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 24% 42%, rgba(123, 82, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 82% 60%, rgba(255, 124, 65, 0.1), transparent 26rem);
  background-size: 8rem 100%, auto, auto;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  pointer-events: none;
}

.series-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.series-heading .section-heading {
  margin-bottom: 1.3rem;
}

.series-count {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 1.55rem;
}

.series-count strong {
  color: #a98cff;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.series-count span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.series-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.7rem 0 2.4rem;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 clamp(4rem, 5.5vw, 7rem),
    #000 calc(100% - clamp(4rem, 5.5vw, 7rem)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 clamp(4rem, 5.5vw, 7rem),
    #000 calc(100% - clamp(4rem, 5.5vw, 7rem)),
    transparent 100%
  );
}

.series-showcase::-webkit-scrollbar {
  display: none;
}

.series-showcase.is-dragging {
  cursor: grabbing;
}

.series-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  gap: clamp(1rem, 1.8vw, 1.45rem);
  padding: 0.8rem clamp(1rem, 5vw, 4rem) 3.2rem;
  animation: seriesScroll 82s linear infinite;
  will-change: transform;
}

.motion-track,
.online-activities-track,
.series-track {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
}

.motion-track:not(.is-loop-ready),
.online-activities-track:not(.is-loop-ready),
.series-track:not(.is-loop-ready) {
  animation-play-state: paused;
}

.series-showcase:hover .series-track,
.series-showcase:focus-within .series-track,
.series-showcase.is-dragging .series-track {
  animation-play-state: paused;
}

.series-design-card {
  flex: 0 0 clamp(12.5rem, 17vw, 17.5rem);
  display: grid;
  gap: 0.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: zoom-in;
  font: inherit;
  outline: none;
}

.series-design-card:nth-child(4n + 2),
.series-design-card:nth-child(4n + 4) {
  padding-top: 2.4rem;
}

.series-phone-frame {
  display: block;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(218, 207, 255, 0.54), rgba(255, 255, 255, 0.08) 30%, rgba(255, 141, 82, 0.2) 74%, rgba(0, 0, 0, 0.5)),
    #17151d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 0 0.34rem rgba(4, 3, 7, 0.9),
    0 1.4rem 3rem rgba(37, 20, 70, 0.34);
}

.series-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1125 / 2436;
  border-radius: 1.55rem;
  background: #07080c;
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
}

.series-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0 0.25rem;
}

.series-card-meta em {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.series-card-meta small {
  color: #a98cff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.series-design-card:hover .series-phone-frame,
.series-design-card:focus-visible .series-phone-frame {
  transform: translateY(-0.3rem) rotate(-0.35deg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset 0 0 0 0.34rem rgba(4, 3, 7, 0.9),
    0 1.8rem 3.8rem rgba(126, 81, 255, 0.24),
    0 0 2rem rgba(255, 133, 72, 0.1);
}

.motion-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.motion-video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.motion-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.18);
  -webkit-backdrop-filter: blur(24px) brightness(0.72);
  backdrop-filter: blur(24px) brightness(0.72);
}

.motion-video-dialog {
  position: relative;
  z-index: 1;
  width: min(82vw, 39.5vh, 24rem);
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(16px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-video-lightbox.is-open .motion-video-dialog {
  transform: translateY(0) scale(1);
}

.motion-video-close {
  position: absolute;
  top: 0;
  right: -3.4rem;
  z-index: 4;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.motion-video-close:hover,
.motion-video-close:focus-visible {
  background: rgba(89, 215, 255, 0.18);
}

.motion-video-title-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.motion-video-phone-frame {
  position: relative;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2.15rem;
  background: #101217;
  box-shadow: inset 0 0 0 0.34rem #050608;
}

.motion-video-phone-frame::before {
  content: "";
  position: absolute;
  top: 0.88rem;
  left: 50%;
  z-index: 3;
  width: 4.1rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
}

.motion-video-phone-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 9 / 19.5;
  border-radius: 1.55rem;
  background: #05070b;
  object-fit: cover;
}

@media (max-width: 560px) {
  .motion-video-dialog {
    width: min(82vw, 38vh, 22rem);
  }

  .motion-video-close {
    top: -3.2rem;
    right: 0;
  }
}

.resume-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 3rem;
  align-items: start;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 34rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(171, 255, 78, 0.1), rgba(171, 255, 78, 0));
  filter: blur(26px);
  pointer-events: none;
  opacity: 0.54;
}

.about::after {
  content: "";
  position: absolute;
  top: 12rem;
  right: -4rem;
  width: 28rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 129, 77, 0.08), rgba(255, 129, 77, 0));
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.58;
}

.resume-profile {
  position: sticky;
  top: 7rem;
}

.photo-frame {
  position: relative;
  width: min(100%, 24rem);
  margin: 0 auto;
  padding: 0.7rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f2eee8);
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.9rem;
  background: #16161a;
}

.photo-pin,
.photo-tape {
  position: absolute;
}

.photo-pin {
  top: -0.8rem;
  right: -0.8rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5c5c, #ff2f78);
  box-shadow: 0 12px 30px rgba(255, 53, 96, 0.32);
}

.photo-pin::before {
  content: "";
  position: absolute;
  inset: 0.95rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.photo-tape {
  left: -1.6rem;
  top: 52%;
  width: 5rem;
  height: 1.7rem;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-14deg);
  backdrop-filter: blur(4px);
}

.resume-name-block {
  padding-top: 2rem;
  text-align: center;
}

.resume-name-block h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.resume-name-block p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.resume-name-block strong {
  color: #1be6a5;
}

.resume-detail {
  padding-top: 0.8rem;
}

.resume-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  transform: skewX(-10deg);
  transform-origin: left center;
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.resume-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.resume-tag::before {
  content: "★";
  color: #ffd84e;
}

.resume-tag-secondary::before {
  content: "●";
  color: #6ea9ff;
}

.experience-list {
  display: grid;
  gap: 2.8rem;
}

.experience-item {
  padding: 0 0 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.experience-role {
  margin: 0 0 1.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.experience-role span {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.experience-points {
  display: grid;
  gap: 0.95rem;
  padding-left: 1.4rem;
  margin: 0;
}

.experience-points li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  font-weight: 600;
}

.experience-points li::marker {
  color: #06d4ab;
}

.profile-card,
.timeline-card,
.media-column,
.contact-panel,
.stats-card {
  padding: 1.6rem;
}

.info-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-list span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.year {
  color: var(--orange);
  font-weight: 700;
}

.timeline-item h4,
.project-copy h3,
.video-copy h3 {
  margin: 0;
  font-size: 1.3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 0.6rem;
}

.project-work-item {
  position: relative;
  padding: 1.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
}

.project-work-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-work-item::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 162, 255, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.project-work-item:hover::before,
.project-work-item:focus-within::before {
  opacity: 1;
}

.project-summary {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.project-summary-featured,
.project-summary-list {
  grid-template-columns: 2.8rem minmax(0, 1fr) 2.4rem;
  gap: 1.2rem;
}

.project-summary .card-label {
  margin: 0;
}

.project-summary h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4.3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.project-index {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-arrow {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: #4c9cff;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.project-work-item:hover .project-arrow,
.project-work-item:focus-within .project-arrow {
  transform: translateX(2px) translateY(-1px);
  background: #6fb4ff;
}

.project-feature-preview {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: min(100%, 58rem);
  padding: 0 clamp(0.55rem, 1.5vw, 0.8rem);
  border-radius: 1.1rem;
  background: transparent;
  border: 0 solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px) scale(0.985);
  transition:
    max-height 360ms ease,
    opacity 240ms ease,
    transform 300ms ease,
    margin-top 260ms ease,
    padding 260ms ease,
    border-width 260ms ease,
    background 260ms ease;
}

.project-work-item:hover .project-feature-preview,
.project-work-item:focus-within .project-feature-preview {
  max-height: 46rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  margin-top: 1.35rem;
  padding: clamp(0.55rem, 1.5vw, 0.8rem);
  background: rgba(0, 0, 0, 0.34);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.12);
}

.project-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: auto;
  border-radius: 0.82rem;
  overflow: hidden;
  background: #090b10;
  display: block;
  cursor: pointer;
}

.project-feature-media::before {
  content: "点击查看";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.62);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-0.4rem);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  pointer-events: none;
}

.project-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 5, 10, 0.94) 0%, rgba(3, 5, 10, 0.72) 22%, rgba(3, 5, 10, 0.28) 48%, rgba(3, 5, 10, 0.02) 74%),
    linear-gradient(90deg, rgba(5, 6, 10, 0.3), transparent 42%, rgba(5, 6, 10, 0.16));
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.project-feature-media:hover::before,
.project-feature-media:focus-visible::before,
.project-work-item:hover .project-feature-media::before,
.project-work-item:focus-within .project-feature-media::before {
  opacity: 1;
  transform: translateY(0);
}

.project-feature-media:hover::after,
.project-feature-media:focus-visible::after {
  background:
    linear-gradient(0deg, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.62) 18%, rgba(3, 5, 10, 0.22) 48%, rgba(3, 5, 10, 0.03) 74%),
    radial-gradient(circle at 78% 18%, rgba(74, 178, 255, 0.24), transparent 14rem),
    linear-gradient(90deg, rgba(5, 6, 10, 0.26), transparent 42%, rgba(5, 6, 10, 0.12));
}

.project-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 360ms ease;
}

.project-work-item:hover .project-feature-media img,
.project-work-item:focus-within .project-feature-media img,
.project-feature-media:hover img,
.project-feature-media:focus-visible img {
  transform: scale(1.045);
}

.project-feature-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta action"
    "copy action";
  align-items: end;
  gap: 0.6rem 1.5rem;
  padding: clamp(1rem, 2.6vw, 1.8rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(0deg, rgba(3, 5, 10, 0.94), rgba(3, 5, 10, 0.52) 68%, rgba(3, 5, 10, 0));
  border-top: 0;
  backdrop-filter: none;
}

.project-feature-copy .project-meta {
  grid-area: meta;
}

.project-feature-copy p {
  grid-area: copy;
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}

.project-feature-copy .project-detail-pill {
  grid-area: action;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  flex: 0 0 auto;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #2ad9ff, #3f72ff 48%, #795dff);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(43, 117, 255, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.project-feature-copy .project-detail-pill:hover,
.project-feature-copy .project-detail-pill:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 20px 42px rgba(43, 117, 255, 0.4);
}

.project-summary-list h3 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.project-feature-abstract {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.2), transparent 16rem),
    linear-gradient(135deg, #101827, #091018 72%);
}

.project-feature-ip {
  background:
    radial-gradient(circle at 18% 30%, rgba(84, 151, 255, 0.42), transparent 15rem),
    radial-gradient(circle at 72% 55%, rgba(255, 104, 191, 0.28), transparent 18rem),
    linear-gradient(135deg, #101827, #090d14 72%);
}

.project-feature-motion {
  background:
    radial-gradient(circle at 25% 34%, rgba(182, 255, 54, 0.34), transparent 15rem),
    radial-gradient(circle at 78% 62%, rgba(77, 162, 255, 0.28), transparent 19rem),
    linear-gradient(135deg, #10160d, #090d14 72%);
}

.project-feature-graduation {
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 214, 87, 0.34), transparent 15rem),
    radial-gradient(circle at 72% 58%, rgba(86, 190, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, #15120b, #081018 72%);
}

.project-feature-lora {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 205, 78, 0.34), transparent 15rem),
    radial-gradient(circle at 76% 58%, rgba(92, 225, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, #15110b, #080d14 72%);
}

.project-enter-hint {
  justify-self: end;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease;
}

.project-expand {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(18rem, 0.45fr);
  gap: 1.4rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 320ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
}

.project-card:hover .project-expand,
.project-card:focus-within .project-expand {
  max-height: 28rem;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1.25rem;
}

.project-card-interactive {
  cursor: pointer;
}

.project-card-interactive:hover .project-enter-hint,
.project-card-interactive:focus-visible .project-enter-hint {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.project-copy a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green);
}

.project-detail-trigger {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f6f1ea;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-detail-trigger::after {
  content: "→";
  font-size: 1rem;
}

.project-visual-enter {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.project-card-interactive:hover .project-visual-enter,
.project-card-interactive:focus-visible .project-visual-enter {
  opacity: 1;
  transform: translateY(0);
}

.project-visual {
  position: relative;
  min-height: 17rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.project-visual::before {
  top: -10%;
  right: -12%;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(10px);
}

.project-visual::after {
  bottom: -15%;
  left: 10%;
  width: 9rem;
  height: 9rem;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(6px);
}

.project-visual span {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.project-visual-cover {
  isolation: isolate;
  background-size: cover;
  background-position: center top;
  color: #fff;
}

.project-visual-cover::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.1), rgba(5, 7, 10, 0.16) 42%, rgba(5, 7, 10, 0.62)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.26), rgba(5, 7, 10, 0));
  filter: none;
  z-index: 0;
}

.project-visual-cover::after {
  display: none;
}

.project-visual-cover span {
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.project-visual-cover .project-visual-enter {
  color: #fff;
  background: rgba(6, 8, 12, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.travel-season-cover {
  background-image: url("./assets/travel-season-case/cover-autumn.webp");
}

.project-card-interactive .travel-season-cover {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card-interactive:hover .travel-season-cover,
.project-card-interactive:focus-visible .travel-season-cover,
.project-card-interactive:focus-within .travel-season-cover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.gradient-pink {
  background: linear-gradient(135deg, #ff8cd4, #ff6a7d 42%, #ffb3cf);
  color: #2b0019;
}

.gradient-blue {
  background: linear-gradient(135deg, #3e82ff, #0fc4ff 42%, #c4f6ff);
  color: #031427;
}

.gradient-green {
  background: linear-gradient(135deg, #b8ff34, #39d55a 42%, #efffcc);
  color: #0b1908;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.media-header span {
  color: var(--muted);
}

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

.portrait-card,
.video-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
}

img.portrait-card {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.placeholder-art {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.placeholder-art::before,
.placeholder-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: screen;
}

.placeholder-art::before {
  width: 10rem;
  height: 10rem;
  top: -1rem;
  right: -2rem;
  filter: blur(16px);
  opacity: 0.8;
}

.placeholder-art::after {
  width: 9rem;
  height: 9rem;
  bottom: -2rem;
  left: -1rem;
  filter: blur(10px);
  opacity: 0.76;
}

.art-one {
  background: linear-gradient(180deg, #2b0143, #160718 68%, #09090c);
}

.art-one::before {
  background: #ff70bd;
}

.art-one::after {
  background: #5b8cff;
}

.art-two {
  background: linear-gradient(180deg, #0b2246, #03111f 72%, #09090c);
}

.art-two::before {
  background: #4fd2ff;
}

.art-two::after {
  background: #c4ff48;
}

.art-three {
  background: linear-gradient(180deg, #422300, #1b1306 70%, #09090c);
}

.art-three::before {
  background: #ffab43;
}

.art-three::after {
  background: #ff7f61;
}

.art-four {
  background: linear-gradient(180deg, #1d0d39, #0c0c13 70%, #09090c);
}

.art-four::before {
  background: #c47cff;
}

.art-four::after {
  background: #ff5f88;
}

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

.video-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-cover {
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 130, 66, 0.2), rgba(8, 8, 10, 0.76)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #291c17, #141417);
}

.video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 80%, rgba(0, 0, 0, 0.45)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
}

.play-button {
  position: relative;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.1rem solid #0e0e10;
}

.video-card.compact {
  min-height: 12rem;
}

.mini-wave {
  height: 0.5rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff8c46, #ff5cb6, #61b2ff, #c1ff41);
  background-size: 200% 100%;
  animation: waveMove 5s linear infinite;
}

.contact-panel {
  padding: 1.8rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.contact-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem;
  align-items: center;
  gap: 1rem;
  min-height: 10rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 54, 0.45);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.contact-button {
  width: 100%;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.contact-copy {
  min-width: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.contact-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-item strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.2;
}

.contact-item em {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.contact-brand-mark {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 1.8rem;
  opacity: 0.95;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.contact-brand-mark-wechat {
  box-shadow: 0 0 36px rgba(64, 211, 98, 0.14);
}

.contact-brand-mark-xhs {
  box-shadow: 0 0 36px rgba(255, 53, 97, 0.14);
}

.topic-qr-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
  gap: 1.6rem;
  padding: 1.8rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 134, 74, 0.16), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(91, 185, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(23, 23, 28, 0.92), rgba(10, 10, 12, 0.98));
}

.topic-qr-inline {
  margin-top: 2rem;
}

.topic-qr-copy {
  align-self: center;
}

.topic-qr-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.topic-qr-copy p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.topic-qr-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.topic-qr-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.topic-qr-chip-alt {
  color: #b9e8ff;
}

.topic-qr-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.topic-qr-shell {
  position: relative;
  width: min(100%, 21rem);
  padding: 1rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.topic-qr-shell::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.topic-qr-corner {
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.corner-a {
  top: 0.7rem;
  left: 0.7rem;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 1rem;
}

.corner-b {
  top: 0.7rem;
  right: 0.7rem;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 1rem;
}

.corner-c {
  bottom: 3.9rem;
  left: 0.7rem;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 1rem;
}

.corner-d {
  right: 0.7rem;
  bottom: 3.9rem;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 1rem;
}

.topic-qr-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.topic-qr-image {
  display: block;
  width: min(100%, 13.5rem);
  border-radius: 1rem;
  background: #fff;
}

.topic-qr-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
  text-align: center;
}

.topic-qr-caption strong {
  font-size: 1.05rem;
}

.topic-qr-caption span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 0.85rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(20, 23, 29, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bottom-dock:hover,
.bottom-dock:focus-within {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.bottom-dock::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 0.5;
  pointer-events: none;
}

.dock-link {
  position: relative;
  z-index: 1;
  min-width: 5rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dock-link:hover,
.dock-link:focus-visible {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.dock-link.is-active {
  color: #f8f5ef;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

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

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

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.42);
  backdrop-filter: blur(18px) saturate(110%);
}

.qr-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 1.35rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(18, 20, 27, 0.44);
  backdrop-filter: blur(28px) saturate(140%);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.qr-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.qr-dialog h3 {
  margin: 0;
  font-size: 1.8rem;
}

.qr-note {
  margin: 0.85rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.qr-frame {
  padding: 0.9rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.qr-image {
  display: block;
  width: 100%;
  border-radius: 1rem;
  background: #fff;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

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

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.55);
  backdrop-filter: blur(18px) saturate(105%);
}

.project-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  max-height: min(90vh, 64rem);
  overflow: auto;
  padding: 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 10% 18%, rgba(54, 130, 255, 0.2), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 142, 76, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(11, 15, 24, 0.94), rgba(7, 10, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  scrollbar-width: thin;
  scrollbar-color: rgba(68, 34, 95, 0.42) rgba(255, 255, 255, 0.08);
  transform: translateY(20px) scale(0.985);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.project-dialog::-webkit-scrollbar {
  width: 10px;
}

.project-dialog::-webkit-scrollbar-track {
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.project-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, rgba(74, 39, 103, 0.72), rgba(74, 39, 103, 0.42)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)) border-box;
}

.project-dialog::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(74, 39, 103, 0.86), rgba(74, 39, 103, 0.56)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)) border-box;
}

.project-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.project-detail {
  color: #f6f2eb;
}

.project-detail-case {
  position: relative;
  display: grid;
  gap: 2rem;
  --trend-blue: #39a7ff;
  --trend-cyan: #40f6e8;
  --trend-pink: #ff4fd8;
  --trend-orange: #ffb13d;
  --trend-lime: #c6ff44;
  --trend-ink: #070914;
}

.project-detail-case::before {
  content: "";
  position: absolute;
  inset: -2rem -1rem auto;
  height: 34rem;
  border-radius: 3rem;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 216, 0.24), transparent 34%),
    radial-gradient(circle at 74% 10%, rgba(64, 246, 232, 0.22), transparent 30%),
    radial-gradient(circle at 48% 30%, rgba(255, 177, 61, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(7, 9, 20, 0.18), transparent 60%);
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}

.project-detail h3 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: -0.06em;
}

.case-hero-image {
  display: block;
  width: 100%;
  border-radius: 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border-radius: 1.8rem;
  backdrop-filter: blur(22px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.2);
}

.travel-case-cover {
  position: relative;
  overflow: hidden;
  padding: 0.35rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.36), rgba(64, 246, 232, 0.28) 48%, rgba(255, 177, 61, 0.3)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(64, 246, 232, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 79, 216, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.32);
}

.travel-case-cover::before {
  content: "AUTUMN TRAVEL";
  position: absolute;
  left: 1.5rem;
  top: 1.1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.38);
  text-shadow:
    0 0 1.2rem rgba(64, 246, 232, 0.26),
    0 0 2.2rem rgba(255, 79, 216, 0.22);
  font-size: clamp(1.1rem, 3.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  pointer-events: none;
}

.travel-case-cover::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(100deg, rgba(255, 79, 216, 0.2), transparent 18%, transparent 78%, rgba(64, 246, 232, 0.28)),
    linear-gradient(180deg, transparent 52%, rgba(7, 9, 20, 0.38));
  pointer-events: none;
}

.travel-case-cover-image {
  display: block;
  width: 100%;
  border-radius: 1.7rem;
}

.travel-case-copy {
  padding: 1.5rem 1.6rem;
}

.travel-case-title-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
  overflow: hidden;
  border-color: rgba(64, 246, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(57, 167, 255, 0.14), rgba(255, 79, 216, 0.08) 46%, rgba(255, 177, 61, 0.1)),
    rgba(255, 255, 255, 0.045);
}

.travel-case-title-panel::after {
  content: "2025";
  position: absolute;
  right: -0.2rem;
  bottom: -1.4rem;
  color: rgba(64, 246, 232, 0.075);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.travel-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.travel-case-meta span {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(64, 246, 232, 0.14), rgba(255, 79, 216, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(64, 246, 232, 0.2);
  color: rgba(239, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.travel-case-kicker {
  margin: 0 0 0.65rem;
  color: rgba(64, 246, 232, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.travel-case-section-head {
  position: relative;
  margin-bottom: 0.95rem;
}

.travel-case-section-head span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.16), rgba(64, 246, 232, 0.12)),
    rgba(255, 255, 255, 0.055);
  color: rgba(250, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.travel-story-panel {
  position: relative;
  overflow: hidden;
}

.travel-story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 79, 216, 0.09), transparent 38%),
    repeating-linear-gradient(90deg, rgba(64, 246, 232, 0.035) 0 1px, transparent 1px 4.2rem);
  opacity: 0.44;
  pointer-events: none;
}

.travel-story-panel > * {
  position: relative;
  z-index: 1;
}

.travel-story-background {
  border-color: rgba(255, 177, 61, 0.24);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 177, 61, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.07), rgba(64, 246, 232, 0.045)),
    rgba(255, 255, 255, 0.035);
}

.travel-story-background::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 6.2rem;
  height: 4.1rem;
  border: 1px solid rgba(255, 177, 61, 0.38);
  border-radius: 0.85rem;
  box-shadow:
    inset 0 0 0 0.55rem rgba(255, 177, 61, 0.055),
    0 0 2rem rgba(255, 177, 61, 0.12);
  opacity: 0.8;
  pointer-events: none;
}

.travel-demand-panel {
  border-color: rgba(64, 246, 232, 0.22);
  background:
    radial-gradient(circle at 8% 10%, rgba(64, 246, 232, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(57, 167, 255, 0.08), rgba(255, 79, 216, 0.055)),
    rgba(255, 255, 255, 0.035);
}

.travel-case-paragraph {
  margin: 0;
  color: rgba(246, 242, 235, 0.8);
  line-height: 1.95;
  font-size: 1rem;
  max-width: 58rem;
}

.travel-case-number-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: travelStep;
}

.travel-case-number-list li {
  counter-increment: travelStep;
  display: flex;
  gap: 0.95rem;
  align-items: center;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(90deg, rgba(64, 246, 232, 0.09), rgba(255, 79, 216, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(64, 246, 232, 0.12);
  color: rgba(246, 242, 235, 0.8);
  line-height: 1.8;
  font-size: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.travel-case-number-list li:hover {
  transform: translateX(0.35rem);
  border-color: rgba(255, 79, 216, 0.3);
  background:
    linear-gradient(90deg, rgba(64, 246, 232, 0.16), rgba(255, 79, 216, 0.1), rgba(255, 177, 61, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.travel-case-number-list li::before {
  content: counter(travelStep);
  flex: 0 0 2.25rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trend-cyan), var(--trend-pink) 55%, var(--trend-orange));
  color: var(--trend-ink);
  font-weight: 900;
  box-shadow:
    0 0.55rem 1.4rem rgba(64, 246, 232, 0.18),
    0 0 1.4rem rgba(255, 79, 216, 0.16);
}

.travel-step-copy {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.travel-case-number-list-compact {
  margin-top: 0;
  gap: 1rem;
}

.travel-case-number-list-compact li {
  position: relative;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(57, 167, 255, 0.11), rgba(255, 79, 216, 0.07)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(64, 246, 232, 0.11);
}

.travel-case-number-list-compact li::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(64, 246, 232, 0.45), rgba(255, 79, 216, 0.18), transparent);
  opacity: 0.55;
}

.travel-creative-grid {
  align-items: stretch;
}

.travel-creative-grid .travel-case-card {
  position: relative;
  overflow: hidden;
}

.travel-creative-grid .travel-case-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(64, 246, 232, 0.08);
  pointer-events: none;
}

.travel-keyword-cloud {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17rem;
  isolation: isolate;
}

.travel-keyword-cloud::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 79, 216, 0.18), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(64, 246, 232, 0.16), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.travel-keyword-cloud span {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(6rem, 11vw, 8.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(64, 246, 232, 0.34), rgba(255, 79, 216, 0.26) 58%, rgba(255, 177, 61, 0.22));
  border: 1px solid rgba(64, 246, 232, 0.24);
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 2.2rem rgba(255, 79, 216, 0.16);
  animation: keywordFloat 5.8s ease-in-out infinite;
}

.travel-keyword-cloud span:nth-child(1) {
  left: 8%;
  top: 18%;
  animation-delay: -0.8s;
}

.travel-keyword-cloud span:nth-child(2) {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  animation-delay: -2.4s;
}

.travel-keyword-cloud span:nth-child(3) {
  right: 8%;
  bottom: 16%;
  animation-delay: -4s;
}

.travel-highlight {
  padding: 0 0.15em;
  font-weight: 700;
}

.travel-highlight.warm {
  color: var(--trend-orange);
}

.travel-highlight.cool {
  color: var(--trend-cyan);
}

.travel-highlight.mint {
  color: var(--trend-lime);
}

.travel-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.travel-case-grid .travel-keyword-cloud {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17rem;
  isolation: isolate;
}

.travel-case-grid .travel-keyword-cloud span {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(6rem, 11vw, 8.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(64, 246, 232, 0.34), rgba(255, 79, 216, 0.26) 58%, rgba(255, 177, 61, 0.22));
  border: 1px solid rgba(64, 246, 232, 0.24);
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 2.2rem rgba(255, 79, 216, 0.16);
}

.travel-case-grid .travel-keyword-cloud span:nth-child(1) {
  left: 8%;
  top: 18%;
}

.travel-case-grid .travel-keyword-cloud span:nth-child(2) {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.travel-case-grid .travel-keyword-cloud span:nth-child(3) {
  right: 8%;
  bottom: 16%;
}

.travel-case-card {
  padding: 1.4rem;
}

.travel-gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 0.5rem 0.2rem 0;
}

.travel-gallery-intro p {
  margin: 0;
  color: rgba(64, 246, 232, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.travel-gallery-intro h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.travel-case-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.travel-case-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
}

.travel-case-list strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.travel-case-list span {
  color: rgba(246, 242, 235, 0.7);
  line-height: 1.75;
}

.travel-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 74rem);
  margin: 0 auto;
  align-items: stretch;
}

.travel-gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.9rem;
  min-height: 34rem;
  padding: 1rem 1rem 1.35rem;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(64, 246, 232, 0.08), rgba(255, 79, 216, 0.055)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
  will-change: transform;
}

.travel-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%, transparent 60%, rgba(255, 255, 255, 0.06));
  opacity: 0.45;
  pointer-events: none;
}

.travel-gallery-card:hover,
.travel-gallery-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(64, 246, 232, 0.28);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.26),
    0 0 2.4rem rgba(64, 246, 232, 0.12);
}

.travel-gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.travel-gallery-heading span {
  font-size: 1.2rem;
  font-weight: 700;
}

.travel-gallery-heading em {
  color: rgba(64, 246, 232, 0.62);
  font-style: normal;
  font-size: 0.82rem;
}

.season-autumn {
  background:
    radial-gradient(circle at top, rgba(255, 177, 61, 0.34), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(255, 79, 216, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.season-winter {
  background:
    radial-gradient(circle at top, rgba(57, 167, 255, 0.32), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(64, 246, 232, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.season-daily {
  background:
    radial-gradient(circle at top, rgba(64, 246, 232, 0.28), transparent 42%),
    radial-gradient(circle at 76% 20%, rgba(198, 255, 68, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.travel-stack {
  position: relative;
  height: 28rem;
  border-radius: 1.65rem;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.08), rgba(64, 246, 232, 0.055)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(64, 246, 232, 0.12);
  overflow: hidden;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62%;
  border-radius: 1.7rem;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.28);
  transform-origin: center top;
  transition: transform 280ms ease, box-shadow 280ms ease, opacity 220ms ease;
}

.stack-card-a {
  transform: translateX(-50%) translateY(1rem) rotate(0deg);
  z-index: 4;
}

.stack-card-b {
  transform: translateX(-50%) translateY(1rem) rotate(0deg) scale(0.985);
  z-index: 3;
  opacity: 0;
}

.stack-card-c {
  transform: translateX(-50%) translateY(1rem) rotate(0deg) scale(0.97);
  z-index: 2;
  opacity: 0;
}

.stack-card-d {
  transform: translateX(-50%) translateY(1rem) rotate(0deg) scale(0.955);
  z-index: 1;
  opacity: 0;
}

.travel-gallery-card:hover .stack-card-a,
.travel-gallery-card:focus-visible .stack-card-a {
  transform: translateX(-61%) translateY(0.8rem) rotate(-9deg);
}

.travel-gallery-card:hover .stack-card-b,
.travel-gallery-card:focus-visible .stack-card-b {
  transform: translateX(-54%) translateY(1.25rem) rotate(-3deg);
  opacity: 1;
}

.travel-gallery-card:hover .stack-card-c,
.travel-gallery-card:focus-visible .stack-card-c {
  transform: translateX(-47%) translateY(1.85rem) rotate(4deg);
  opacity: 1;
}

.travel-gallery-card:hover .stack-card-d,
.travel-gallery-card:focus-visible .stack-card-d {
  transform: translateX(-40%) translateY(2.45rem) rotate(9deg);
  opacity: 1;
}

.stack-frost-frame {
  position: absolute;
  inset: 0;
  border-radius: 1.85rem;
  border: 1px solid rgba(64, 246, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(64, 246, 232, 0.06), rgba(255, 79, 216, 0.035)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.travel-case-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
  padding-top: 1rem;
}

/* Project 01: youth street editorial style */
.project-detail-case {
  gap: 1.45rem;
  color: #f7f3e8;
  --street-ink: #090b12;
  --street-paper: #f7f3e8;
  --street-cyan: #31f5e7;
  --street-pink: #ff3fd0;
  --street-orange: #ff9f1c;
  --street-blue: #2b6cff;
  --street-lime: #d7ff38;
}

.project-detail-case::before {
  inset: -2.5rem -1.5rem auto;
  height: 42rem;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 63, 208, 0.18) 0 16%, transparent 16% 38%, rgba(49, 245, 231, 0.16) 38% 48%, transparent 48%),
    radial-gradient(circle at 82% 8%, rgba(215, 255, 56, 0.16), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    #070914;
  filter: none;
  opacity: 0.95;
}

.project-detail-case .glass-panel,
.travel-case-card,
.travel-story-panel,
.travel-case-title-panel {
  border: 1.5px solid rgba(247, 243, 232, 0.86);
  border-radius: 0;
  background: var(--street-ink);
  backdrop-filter: none;
  box-shadow: 0.38rem 0.38rem 0 rgba(49, 245, 231, 0.78);
}

.travel-case-cover {
  padding: 0;
  border: 1.5px solid var(--street-paper);
  border-radius: 0;
  background: var(--street-orange);
  box-shadow: 0.42rem 0.42rem 0 var(--street-pink);
}

.travel-case-cover::before {
  left: 1rem;
  top: 1rem;
  padding: 0.35rem 0.65rem;
  background: var(--street-lime);
  color: var(--street-ink);
  text-shadow: none;
  font-size: clamp(0.9rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
}

.travel-case-cover::after {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 63, 208, 0.16), transparent 30%, transparent 68%, rgba(49, 245, 231, 0.2)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.12) 12px 13px);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.travel-case-cover-image {
  border-radius: 0;
  filter: saturate(1.12) contrast(1.04);
}

.travel-case-copy {
  padding: 1.35rem;
}

.travel-case-title-panel {
  grid-template-columns: minmax(0, 1fr) minmax(13rem, auto);
  align-items: stretch;
  background:
    linear-gradient(110deg, var(--street-blue) 0 32%, var(--street-ink) 32% 66%, var(--street-pink) 66% 100%);
  box-shadow: 0.38rem 0.38rem 0 var(--street-orange);
}

.travel-case-title-panel::before {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem auto;
  width: 7.5rem;
  height: 7.5rem;
  background:
    radial-gradient(circle, var(--street-lime) 0 2px, transparent 2.5px) 0 0 / 16px 16px;
  opacity: 0.55;
  pointer-events: none;
}

.travel-case-title-panel::after {
  right: 1rem;
  bottom: 0.1rem;
  color: rgba(247, 243, 232, 0.16);
  font-size: clamp(4rem, 13vw, 9rem);
}

.travel-case-title-panel h3 {
  width: fit-content;
  padding: 0.1rem 0.45rem 0.25rem;
  background: var(--street-paper);
  color: var(--street-ink);
  letter-spacing: -0.08em;
  line-height: 0.95;
  transform: rotate(-1.5deg);
}

.travel-case-kicker {
  color: var(--street-lime);
  text-shadow: none;
}

.travel-case-meta {
  align-content: end;
  justify-content: flex-end;
}

.travel-case-meta span {
  border: 1.5px solid var(--street-paper);
  border-radius: 0;
  background: var(--street-cyan);
  color: var(--street-ink);
  box-shadow: 0.18rem 0.18rem 0 var(--street-ink);
}

.travel-case-section-head span {
  border: 1.5px solid var(--street-paper);
  border-radius: 0;
  background: var(--street-lime);
  color: var(--street-ink);
  box-shadow: 0.18rem 0.18rem 0 var(--street-pink);
  transform: rotate(-1.5deg);
}

.travel-story-panel::before {
  background:
    radial-gradient(circle, rgba(247, 243, 232, 0.12) 0 1.5px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255, 63, 208, 0.16), transparent 42%);
  opacity: 0.9;
}

.travel-story-background,
.travel-demand-panel {
  background: #111522;
}

.travel-story-background {
  box-shadow: 0.38rem 0.38rem 0 var(--street-orange);
}

.travel-story-background::after {
  right: 1rem;
  top: 1rem;
  width: 7rem;
  height: 4.4rem;
  border: 1.5px solid var(--street-orange);
  border-radius: 0;
  box-shadow: 0.24rem 0.24rem 0 var(--street-pink);
}

.travel-demand-panel {
  box-shadow: 0.38rem 0.38rem 0 var(--street-cyan);
}

.travel-case-paragraph,
.travel-case-number-list li,
.travel-case-number-list-compact li {
  color: rgba(247, 243, 232, 0.88);
}

.travel-highlight {
  padding: 0.05rem 0.28rem;
  color: var(--street-ink) !important;
  background: var(--street-lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.travel-highlight.cool {
  background: var(--street-cyan);
}

.travel-case-number-list li {
  padding: 0.85rem 0.95rem;
  border: 1.5px solid rgba(247, 243, 232, 0.78);
  border-radius: 0;
  background: #171b2a;
  box-shadow: 0.24rem 0.24rem 0 rgba(255, 63, 208, 0.7);
}

.travel-case-number-list li:hover {
  transform: translate(-0.12rem, -0.12rem);
  border-color: var(--street-lime);
  background: #1f2436;
  box-shadow: 0.34rem 0.34rem 0 var(--street-cyan);
}

.travel-case-number-list li::before {
  flex-basis: 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  border: 1.5px solid var(--street-ink);
  border-radius: 0.15rem;
  background: var(--street-orange);
  color: var(--street-ink);
  box-shadow: 0.2rem 0.2rem 0 var(--street-cyan);
  transform: rotate(-4deg);
}

.travel-case-number-list-compact li {
  border-color: rgba(247, 243, 232, 0.78);
  background: #171b2a;
}

.travel-case-number-list-compact li::after {
  background: var(--street-lime);
  opacity: 1;
}

.travel-case-grid {
  gap: 1rem;
}

.travel-creative-grid .travel-case-card {
  background: #101420;
}

.travel-creative-grid .travel-case-card:first-child {
  box-shadow: 0.38rem 0.38rem 0 var(--street-pink);
}

.travel-creative-grid .travel-case-card:last-child {
  box-shadow: 0.38rem 0.38rem 0 var(--street-lime);
}

.travel-creative-grid .travel-case-card::before {
  inset: 0.9rem;
  border: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 232, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(247, 243, 232, 0.08) 1px, transparent 1px) 0 0 / 24px 24px;
}

.travel-keyword-cloud::before {
  inset: 12% 10%;
  border-radius: 0;
  background:
    linear-gradient(135deg, var(--street-blue), var(--street-pink));
  filter: none;
  opacity: 0.22;
  transform: skew(-10deg);
}

.travel-keyword-cloud span,
.travel-case-grid .travel-keyword-cloud span {
  border: 1.5px solid var(--street-paper);
  border-radius: 0;
  background: var(--street-pink);
  color: var(--street-paper);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  text-shadow: 0.12rem 0.12rem 0 var(--street-ink);
  box-shadow: 0.32rem 0.32rem 0 var(--street-cyan);
}

.travel-keyword-cloud span:nth-child(2),
.travel-case-grid .travel-keyword-cloud span:nth-child(2) {
  background: var(--street-orange);
  color: var(--street-ink);
  text-shadow: none;
  box-shadow: 0.32rem 0.32rem 0 var(--street-pink);
}

.travel-keyword-cloud span:nth-child(3),
.travel-case-grid .travel-keyword-cloud span:nth-child(3) {
  background: var(--street-cyan);
  color: var(--street-ink);
  text-shadow: none;
  box-shadow: 0.32rem 0.32rem 0 var(--street-lime);
}

.travel-gallery-intro {
  padding: 1rem 0 0.25rem;
  border-top: 1.5px solid var(--street-paper);
}

.travel-gallery-intro p {
  color: var(--street-cyan);
}

.travel-gallery-intro h4 {
  padding: 0.1rem 0.45rem 0.2rem;
  background: var(--street-paper);
  color: var(--street-ink);
  transform: rotate(-1deg);
}

.travel-gallery-card {
  border: 1.5px solid var(--street-paper);
  border-radius: 0;
  background: #111522;
  box-shadow: 0.32rem 0.32rem 0 var(--street-blue);
}

.travel-gallery-card::before {
  background:
    radial-gradient(circle, rgba(247, 243, 232, 0.12) 0 1.5px, transparent 2px) 0 0 / 18px 18px;
  opacity: 0.8;
}

.travel-gallery-card:hover,
.travel-gallery-card:focus-visible {
  transform: translate(-0.18rem, -0.18rem);
  border-color: var(--street-lime);
  box-shadow: 0.44rem 0.44rem 0 var(--street-pink);
}

.season-autumn,
.season-winter,
.season-daily {
  background: #111522;
}

.travel-gallery-heading span {
  padding: 0.12rem 0.42rem;
  background: var(--street-paper);
  color: var(--street-ink);
}

.travel-gallery-heading em {
  color: var(--street-cyan);
}

.travel-stack {
  border: 1.5px solid rgba(247, 243, 232, 0.78);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 63, 208, 0.18), transparent 48%, rgba(49, 245, 231, 0.16)),
    #0a0d16;
}

.stack-card,
.stack-frost-frame {
  border-radius: 0;
}

.stack-frost-frame {
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

/* Project 01: modern youth trend style */
.project-detail-case {
  gap: 1.8rem;
  color: #f8fbff;
  --modern-ink: #070914;
  --modern-panel: #101421;
  --modern-panel-2: #161b2b;
  --modern-blue: #4d7cff;
  --modern-cyan: #35e7ff;
  --modern-violet: #8c5cff;
  --modern-pink: #ff5bc8;
  --modern-orange: #ffae45;
  --modern-line: rgba(255, 255, 255, 0.12);
}

.project-detail-case::before {
  inset: -2.5rem -2rem auto;
  height: 48rem;
  border-radius: 3rem;
  background:
    linear-gradient(120deg, rgba(77, 124, 255, 0.22), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(255, 91, 200, 0.22), transparent 28%),
    radial-gradient(circle at 42% 20%, rgba(53, 231, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #070914, rgba(7, 9, 20, 0));
  filter: blur(0);
  opacity: 1;
}

.project-detail-case .glass-panel,
.travel-case-card,
.travel-story-panel,
.travel-case-title-panel {
  border: 1px solid var(--modern-line);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--modern-panel);
  backdrop-filter: none;
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.26);
}

.travel-case-cover {
  padding: 0.22rem;
  border: 0;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, var(--modern-blue), var(--modern-pink) 52%, var(--modern-orange));
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.34);
}

.travel-case-cover::before {
  left: 1.15rem;
  top: 1.05rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 9, 20, 0.74);
  color: #ffffff;
  text-shadow: none;
  font-size: clamp(0.78rem, 1.5vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: none;
}

.travel-case-cover::after {
  inset: 0.22rem;
  border-radius: 1.38rem;
  background:
    linear-gradient(110deg, rgba(77, 124, 255, 0.12), transparent 24%, transparent 72%, rgba(255, 91, 200, 0.18)),
    linear-gradient(180deg, transparent 52%, rgba(7, 9, 20, 0.42));
  mix-blend-mode: normal;
  opacity: 1;
}

.travel-case-cover-image {
  border-radius: 1.38rem;
  filter: saturate(1.08) contrast(1.02);
}

.travel-case-title-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 10rem;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(77, 124, 255, 0.24) 0 28%, transparent 28% 100%),
    radial-gradient(circle at 88% 28%, rgba(255, 91, 200, 0.22), transparent 32%),
    linear-gradient(145deg, #11182a, #0b0e18);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

.travel-case-title-panel::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--modern-cyan), var(--modern-pink), var(--modern-orange), var(--modern-cyan));
  opacity: 0.15;
  pointer-events: none;
}

.travel-case-title-panel::after {
  right: 1rem;
  bottom: -1rem;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(5rem, 14vw, 9rem);
}

.travel-case-title-panel h3 {
  width: auto;
  padding: 0;
  background: none;
  color: #fff;
  letter-spacing: -0.07em;
  line-height: 0.95;
  transform: none;
}

.travel-case-kicker {
  color: var(--modern-cyan);
}

.travel-case-meta span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.18), rgba(140, 92, 255, 0.14));
  color: rgba(248, 251, 255, 0.88);
  box-shadow: none;
}

.travel-case-section-head span {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 251, 255, 0.84);
  box-shadow: none;
  transform: none;
}

.travel-story-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--modern-panel);
}

.travel-story-panel::before {
  background:
    linear-gradient(90deg, rgba(53, 231, 255, 0.08), transparent 42%),
    linear-gradient(120deg, transparent 0 68%, rgba(255, 91, 200, 0.09) 68% 100%);
  opacity: 1;
}

.travel-story-background,
.travel-demand-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
}

.travel-story-background::after {
  right: 1.2rem;
  top: 1.2rem;
  width: 7.2rem;
  height: 4rem;
  border: 1px solid rgba(255, 174, 69, 0.35);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 174, 69, 0.16), rgba(255, 91, 200, 0.1));
  box-shadow: none;
}

.travel-case-paragraph,
.travel-case-number-list li,
.travel-case-number-list-compact li {
  color: rgba(248, 251, 255, 0.78);
}

.travel-highlight {
  padding: 0 0.15em;
  color: var(--modern-orange) !important;
  background: none;
}

.travel-highlight.cool {
  color: var(--modern-cyan) !important;
  background: none;
}

.travel-case-number-list li {
  padding: 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background:
    linear-gradient(100deg, rgba(77, 124, 255, 0.12), rgba(255, 91, 200, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.travel-case-number-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 231, 255, 0.28);
  background:
    linear-gradient(100deg, rgba(53, 231, 255, 0.13), rgba(255, 91, 200, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.travel-case-number-list li::before {
  flex-basis: 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--modern-cyan), var(--modern-violet));
  color: #071019;
  box-shadow: 0 0.6rem 1.4rem rgba(53, 231, 255, 0.18);
  transform: none;
}

.travel-case-number-list-compact li {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(110deg, rgba(140, 92, 255, 0.12), rgba(255, 91, 200, 0.055)),
    rgba(255, 255, 255, 0.035);
}

.travel-case-number-list-compact li::after {
  background: linear-gradient(90deg, var(--modern-cyan), transparent);
  opacity: 0.45;
}

.travel-creative-grid .travel-case-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel-2);
}

.travel-creative-grid .travel-case-card:first-child,
.travel-creative-grid .travel-case-card:last-child {
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
}

.travel-creative-grid .travel-case-card::before {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 231, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(255, 91, 200, 0.11), transparent 34%);
}

.travel-keyword-cloud::before {
  inset: 18% 14%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.25), rgba(255, 91, 200, 0.16));
  filter: blur(10px);
  opacity: 1;
  transform: none;
}

.travel-keyword-cloud span,
.travel-case-grid .travel-keyword-cloud span {
  border: 0;
  border-radius: 42% 58% 52% 48% / 46% 42% 58% 54%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--modern-blue), var(--modern-pink));
  color: #fff;
  font-size: clamp(1.25rem, 2.7vw, 1.9rem);
  text-shadow: none;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22);
}

.travel-keyword-cloud span:nth-child(2),
.travel-case-grid .travel-keyword-cloud span:nth-child(2) {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--modern-orange), var(--modern-pink));
  color: #fff;
  text-shadow: none;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22);
}

.travel-keyword-cloud span:nth-child(3),
.travel-case-grid .travel-keyword-cloud span:nth-child(3) {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--modern-cyan), var(--modern-blue));
  color: #071019;
  text-shadow: none;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22);
}

.travel-gallery-intro {
  padding: 1.2rem 0.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.travel-gallery-intro p {
  color: var(--modern-cyan);
}

.travel-gallery-intro h4 {
  padding: 0;
  background: none;
  color: #fff;
  transform: none;
}

.travel-gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.3rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.22);
}

.travel-gallery-card::before {
  background:
    linear-gradient(120deg, rgba(53, 231, 255, 0.08), transparent 40%, rgba(255, 91, 200, 0.07));
  opacity: 1;
}

.travel-gallery-card:hover,
.travel-gallery-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(53, 231, 255, 0.26);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
}

.season-autumn {
  background:
    radial-gradient(circle at 22% 6%, rgba(255, 174, 69, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel);
}

.season-winter {
  background:
    radial-gradient(circle at 22% 6%, rgba(77, 124, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel);
}

.season-daily {
  background:
    radial-gradient(circle at 22% 6%, rgba(53, 231, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--modern-panel);
}

.travel-gallery-heading span {
  padding: 0;
  background: none;
  color: #fff;
}

.travel-gallery-heading em {
  color: rgba(53, 231, 255, 0.7);
}

.travel-stack {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(77, 124, 255, 0.12), rgba(255, 91, 200, 0.055)),
    #0c101b;
}

.stack-card,
.stack-frost-frame {
  border-radius: 1rem;
}

.stack-frost-frame {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  backdrop-filter: none;
}

.travel-back-button {
  min-width: 10rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f2eb;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.travel-back-button:hover,
.travel-back-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.project-modal.is-open .project-detail-case > * {
  animation: caseReveal 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.project-modal.is-open .project-detail-case > *:nth-child(1) {
  animation-delay: 60ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(2) {
  animation-delay: 120ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(3) {
  animation-delay: 180ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(4) {
  animation-delay: 240ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(5) {
  animation-delay: 300ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(6) {
  animation-delay: 360ms;
}

.project-modal.is-open .project-detail-case > *:nth-child(7) {
  animation-delay: 420ms;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(18px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 86rem);
  max-height: 88vh;
  overflow: auto;
  padding: 1.3rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 13, 20, 0.94);
  transform: translateY(16px) scale(0.985);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.gallery-zoom-controls {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: 3.05rem;
  margin-bottom: 0.6rem;
}

.gallery-zoom-controls button {
  min-width: 2.45rem;
  height: 2.35rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.gallery-zoom-controls button:hover,
.gallery-zoom-controls button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(89, 215, 255, 0.3);
  background: rgba(89, 215, 255, 0.14);
}

.gallery-lightbox-head {
  margin-bottom: 1.1rem;
}

.gallery-lightbox-tip {
  margin: -0.65rem 0 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.gallery-lightbox-name {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.gallery-lightbox-track {
  --gallery-scale: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 1.2rem;
  transform: scale(var(--gallery-scale));
  transform-origin: top center;
  transition: transform 120ms ease;
  padding-bottom: 0;
}

.gallery-lightbox-track.is-zoomed {
  padding-bottom: 80vh;
}

.gallery-lightbox-track.is-masonry {
  display: block;
  column-count: 3;
  column-gap: 1rem;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.gallery-lightbox-track.is-grouped {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  width: min(100%, 78rem);
  margin: 0 auto;
  column-count: initial;
  column-gap: initial;
}

.gallery-group {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
}

.gallery-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.15rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-group-head span {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gallery-group-head em {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 800;
}

.gallery-group-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-group-layout-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  column-count: initial;
  column-gap: initial;
}

.gallery-group-layout-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  column-count: initial;
  column-gap: initial;
}

.gallery-group-layout-characters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  column-count: initial;
  column-gap: initial;
}

.gallery-lightbox-track img {
  display: block;
  width: calc(100% - 20px);
  max-width: 76rem;
  max-height: none;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: zoom-in;
  object-fit: contain;
}

.gallery-lightbox-track.is-masonry img {
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0 0 1rem;
  break-inside: avoid;
  cursor: zoom-in;
  filter: saturate(0.96) brightness(0.96);
  transform: translateY(0) scale(1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.gallery-group-masonry img {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0 0 1rem;
  break-inside: avoid;
}

.gallery-lightbox-track.is-grouped .gallery-group-layout-wide img {
  width: 100%;
  max-width: none;
  margin: 0;
}

.gallery-lightbox-track.is-grouped .gallery-group-layout-mobile img {
  flex: 0 1 calc((100% - 3rem) / 4);
  width: calc((100% - 3rem) / 4);
  max-width: calc((100% - 3rem) / 4);
  height: auto;
  max-height: min(72vh, 42rem);
  margin: 0;
  object-fit: contain;
}

.gallery-lightbox-track.is-grouped .gallery-group-layout-characters img {
  flex: 0 1 calc((100% - 2rem) / 3);
  width: calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  height: auto;
  max-height: min(72vh, 42rem);
  margin: 0;
  object-fit: contain;
}

.gallery-lightbox-track.is-masonry img:hover {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-track.is-yangjiaojiao {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(18rem, 0.85fr);
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
  width: min(100%, 82rem);
  column-count: initial;
  column-gap: initial;
  align-items: stretch;
}

.gallery-lightbox-track.is-yangjiaojiao img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  break-inside: initial;
  border-radius: 1rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.gallery-lightbox-track.is-yangjiaojiao img:nth-child(1),
.gallery-lightbox-track.is-yangjiaojiao img:nth-child(2),
.gallery-lightbox-track.is-yangjiaojiao img:nth-child(3),
.gallery-lightbox-track.is-yangjiaojiao img:nth-child(4) {
  aspect-ratio: 16 / 9;
}

.gallery-lightbox-track.is-yangjiaojiao img:nth-child(5) {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 100%;
  object-fit: cover;
}

.gallery-lightbox-track.is-yangjiaojiao img:nth-child(6) {
  grid-column: 1 / -1;
  height: auto;
  max-height: min(70vh, 42rem);
  object-fit: contain;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 50% 25%, rgba(89, 215, 255, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.045);
}

.gallery-lightbox-track.is-focused img {
  width: calc(100% - 20px);
  max-width: 76rem;
}

.gallery-lightbox-track.is-zoomed img {
  max-height: none;
  cursor: zoom-out;
}

.gallery-lightbox-track img:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.gallery-lightbox.is-case-gallery {
  padding: clamp(0.5rem, 1.8vw, 1.2rem);
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-backdrop {
  background:
    radial-gradient(circle at 18% 8%, rgba(87, 168, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 4%, rgba(255, 219, 94, 0.24), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.9));
  backdrop-filter: blur(8px);
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(14, 23, 46, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 23, 46, 0.045) 1px, transparent 1px),
    radial-gradient(circle, rgba(14, 23, 46, 0.06) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px, 9px 9px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-dialog {
  width: min(100%, 92rem);
  max-height: 92vh;
  padding: clamp(1rem, 2vw, 1.8rem);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
    #ffffff;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-close {
  top: 1.15rem;
  right: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.gallery-lightbox.is-case-gallery .gallery-zoom-controls {
  display: none;
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-head {
  display: none;
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped {
  --case-inner-width: 80rem;
  width: min(100%, 86rem);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  color: #101827;
  transform: none;
}

.gallery-case-hero {
  position: relative;
  display: grid;
  gap: 0.9rem;
  overflow: hidden;
  width: min(100%, var(--case-inner-width));
  justify-self: center;
  box-sizing: border-box;
  padding: clamp(2rem, 5vw, 4.6rem) clamp(1.2rem, 4vw, 4rem);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(23, 98, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 8% 15%, rgba(0, 211, 255, 0.16), transparent 17rem),
    linear-gradient(135deg, #fff7c7 0%, #eef7ff 44%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(64, 93, 158, 0.14);
}

.gallery-case-hero::before,
.gallery-case-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery-case-hero::before {
  inset: auto -8% -42% 34%;
  height: 72%;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.24), rgba(59, 130, 246, 0.24), rgba(255, 214, 64, 0.22));
  filter: blur(36px);
  animation: caseTitleGlow 6s ease-in-out infinite;
}

.gallery-case-hero::after {
  inset: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
}

.gallery-case-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #2650d8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(38, 80, 216, 0.12);
}

.gallery-case-hero h3 {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
}

.gallery-case-hero h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d5ff, #2f6bff, #ffe250, #00d5ff);
  background-size: 220% 100%;
  animation: caseTitleLine 3.6s linear infinite;
}

.gallery-case-hero p {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: clamp(0.95rem, 1.8vw, 1.16rem);
  line-height: 1.8;
  font-weight: 600;
}

.gallery-lightbox.is-case-gallery .gallery-group {
  position: relative;
  width: min(100%, var(--case-inner-width));
  justify-self: center;
  box-sizing: border-box;
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(64, 93, 158, 0.12);
}

.gallery-lightbox.is-case-gallery .gallery-group::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.8rem);
  top: 0;
  width: 4.4rem;
  height: 0.28rem;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #00d5ff, #2f6bff, #ffe250);
}

.gallery-lightbox.is-case-gallery .gallery-group-head {
  align-items: flex-start;
  padding: 0.4rem 0 clamp(0.9rem, 1.8vw, 1.3rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.gallery-lightbox.is-case-gallery .gallery-group-head div {
  display: grid;
  gap: 0.45rem;
}

.gallery-lightbox.is-case-gallery .gallery-group-head span {
  color: #111827;
  font-size: clamp(1.3rem, 2.8vw, 2.15rem);
  letter-spacing: 0;
}

.gallery-lightbox.is-case-gallery .gallery-group-head p {
  max-width: 48rem;
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 600;
}

.gallery-lightbox.is-case-gallery .gallery-group-head em {
  flex: 0 0 auto;
  color: rgba(47, 107, 255, 0.14);
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.82;
  font-weight: 900;
}

.gallery-lightbox.is-case-gallery .gallery-group-masonry {
  width: 100%;
  box-sizing: border-box;
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
}

.gallery-lightbox.is-case-gallery .gallery-group-masonry img {
  margin: 0;
  border-radius: 0.55rem;
  background: #f2f5fa;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  filter: saturate(1) brightness(1);
}

.gallery-lightbox.is-case-gallery .gallery-group-masonry img:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-wide {
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-wide img {
  width: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-mobile,
.gallery-lightbox.is-case-gallery .gallery-group-layout-characters {
  display: grid;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-mobile {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-characters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped .gallery-group-layout-mobile img,
.gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped .gallery-group-layout-characters img {
  width: 100%;
  max-width: 100%;
  height: clamp(26rem, 44vw, 34rem);
  max-height: none;
  object-fit: contain;
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-mobile img {
  align-self: start;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-mobile img:hover {
  box-shadow: none;
}

.gallery-lightbox.is-case-gallery .gallery-group-layout-characters img {
  padding: 0.45rem;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.image-pure-view {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(2, 4, 9, 0.72);
  backdrop-filter: blur(22px) brightness(0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  cursor: zoom-out;
}

.image-pure-view.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-pure-view img {
  display: block;
  max-width: calc(100vw - 20px);
  max-height: calc(100vh - 20px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transform: scale(0.985);
  transition: transform 180ms ease;
}

.image-pure-view.is-open img {
  transform: scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes floatBlob {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(2rem, -1.5rem, 0) scale(1.05);
  }
  66% {
    transform: translate3d(-1.5rem, 2rem, 0) scale(0.94);
  }
}

@keyframes heroGlowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.4rem, -0.8rem, 0) scale(1.06);
  }
}

@keyframes collageFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.7rem;
  }
}

@keyframes skillFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.9rem;
  }
}

@keyframes codeFloat {
  0%, 100% {
    opacity: 0.26;
    transform: translateY(0);
  }
  40% {
    opacity: 0.72;
  }
  65% {
    transform: translateY(-0.75rem);
  }
}

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

@keyframes motionScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(var(--loop-offset, -50%), 0, 0);
  }
}

@keyframes seriesScroll {
  0% {
    transform: translate3d(var(--loop-offset, -50%), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  .motion-showcase,
  .online-activities-showcase {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 1.75rem,
      #000 calc(100% - 1.75rem),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 1.75rem,
      #000 calc(100% - 1.75rem),
      transparent 100%
    );
  }

  .online-activities-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .online-activities-meta {
    padding-bottom: 0;
  }

  .online-activities-meta span:first-child {
    display: none;
  }

  .online-activities-track {
    animation-duration: 82s;
  }

  .series-designs {
    padding-top: 5.5rem;
  }

  .series-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .series-count {
    align-items: center;
    padding-bottom: 1.2rem;
  }

  .series-count strong {
    font-size: 3.4rem;
  }

  .series-showcase {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 1.75rem, #000 calc(100% - 1.75rem), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 1.75rem, #000 calc(100% - 1.75rem), transparent);
  }

  .series-track {
    animation-duration: 96s;
  }

  .series-design-card:nth-child(4n + 2),
  .series-design-card:nth-child(4n + 4) {
    padding-top: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .online-activities-track {
    animation: none;
  }

  .online-activities-meta i {
    animation: none;
  }

  .series-track {
    animation: none;
  }
}

@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes caseReveal {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes caseTitleLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes caseTitleGlow {
  0%, 100% {
    transform: translate3d(-3%, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(6%, -8%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes keywordFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.7rem;
  }
}

@media (max-width: 1024px) {
  .hero,
  .gallery-layout,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .practice-masonry {
    column-count: 3;
  }

  .resume-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .resume-profile {
    position: relative;
    top: 0;
  }

  .photo-frame {
    width: min(100%, 22rem);
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-scene {
    min-height: 44rem;
    padding-top: 7rem;
  }

  .hero-scene::after {
    height: 10rem;
  }

  .hero-copy-flow {
    padding-top: 6rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .skill-icon {
    width: clamp(2.8rem, 5vw, 4.2rem);
  }

  .skill-icon-e,
  .skill-icon-f {
    opacity: 0.62;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  main {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .practice-masonry {
    column-count: 2;
    column-gap: 0.75rem;
  }

  .practice-work-card {
    margin-bottom: 0.75rem;
    border-radius: 0.85rem;
  }

  .gallery-lightbox-track.is-masonry {
    column-count: 1;
  }

  .gallery-group-masonry {
    column-count: 1;
  }

  .gallery-lightbox-track.is-grouped .gallery-group-layout-mobile img {
    flex-basis: min(100%, 18rem);
    width: min(100%, 18rem);
    max-width: min(100%, 18rem);
    max-height: min(68vh, 32rem);
  }

  .gallery-lightbox-track.is-grouped .gallery-group-layout-characters img {
    flex-basis: min(100%, 18rem);
    width: min(100%, 18rem);
    max-width: min(100%, 18rem);
    max-height: min(68vh, 32rem);
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    max-width: 9ch;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-scene {
    min-height: 42rem;
    padding: 4.6rem 1rem 6rem;
  }

  .hero-copy-flow {
    width: min(100%, 100%);
    padding: 3.6rem 0.25rem 0;
    gap: 1rem;
  }

  .hero-back-word {
    left: 52%;
    top: 50%;
    font-size: clamp(5.8rem, 33vw, 8.4rem);
    opacity: 0.66;
  }

  .hero-person {
    left: 55%;
    width: 56rem;
    bottom: -4rem;
  }

  .hero-rim-light {
    left: 56%;
    top: 39%;
    width: 38rem;
    height: 30rem;
    filter: blur(20px);
    opacity: 0.72;
  }

  .skill-icon {
    width: 3.4rem;
    opacity: 0.78;
  }

  .skill-icon-a {
    left: 4%;
    bottom: 14%;
  }

  .skill-icon-b {
    left: 5%;
    top: 34%;
  }

  .skill-icon-c {
    left: 10%;
    top: 15%;
  }

  .skill-icon-d {
    right: 6%;
    top: 17%;
  }

  .hero-code-rain {
    left: 3%;
    top: 25%;
    width: 11rem;
    font-size: 0.68rem;
    opacity: 0.48;
  }

  .hero-code-rain span:nth-child(n+4) {
    display: none;
  }

  .skill-icon-e,
  .skill-icon-f {
    display: none;
  }

  .hero-summary-card {
    padding: 1.15rem 1rem 1.2rem;
    border-radius: 1.3rem;
  }

  .hero-meta-strip {
    gap: 0.6rem;
    padding-top: 0.9rem;
  }

  .hero-meta-strip span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .intro-strip {
    margin-top: -7rem;
  }

  .marquee {
    padding: 0.4rem 0;
  }

  .hero-grid,
  .portrait-grid,
  .contact-grid,
  .project-expand {
    grid-template-columns: 1fr;
  }

  .project-expand {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 1rem;
    overflow: visible;
  }

  .project-summary {
    gap: 0.8rem;
  }

  .project-summary-featured,
  .project-summary-list {
    grid-template-columns: 2rem minmax(0, 1fr) 2.2rem;
  }

  .project-summary-featured .project-arrow,
  .project-summary-list .project-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .project-feature-preview {
    margin-top: 1.1rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
    padding: clamp(0.55rem, 1.5vw, 0.8rem);
    background: rgba(0, 0, 0, 0.34);
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .project-feature-media {
    min-height: auto;
  }

  .project-feature-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "copy"
      "action";
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
  }

  .project-feature-copy p {
    line-height: 1.5;
  }

  .project-feature-copy .project-detail-pill {
    width: 100%;
    min-width: 0;
  }

  .travel-keyword-cloud {
    min-height: 8rem;
    justify-content: space-between;
  }

  .travel-keyword-cloud span {
    position: static;
    width: 5.2rem;
    transform: none !important;
    font-size: 1.2rem;
    animation: none;
  }

  .project-detail-case .glass-panel,
  .travel-case-card,
  .travel-story-panel,
  .travel-case-title-panel,
  .travel-case-cover,
  .travel-gallery-card {
    box-shadow: 0.32rem 0.32rem 0 var(--street-cyan);
  }

  .travel-case-title-panel {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .travel-gallery-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .travel-case-meta,
  .travel-gallery-intro {
    justify-content: flex-start;
  }

  .project-enter-hint {
    justify-self: start;
  }

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

  .contact-visual {
    justify-content: start;
  }

  .contact-brand-mark {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
  }

  .strategy-row {
    grid-template-columns: 1fr;
  }

  .strategy-group-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-titleband,
  .case-hero-card,
  .case-intro-panel,
  .case-section-head-split,
  .topic-qr-panel,
  .travel-case-grid,
  .travel-gallery-row,
  .case-meta-grid,
  .case-gallery-grid,
  .case-gallery-grid-featured {
    grid-template-columns: 1fr;
  }

  .case-titleband {
    align-items: flex-start;
  }

  .case-titleband-meta {
    justify-items: start;
  }

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

  .case-intro-mark {
    font-size: 1.2rem;
  }

  .travel-stack {
    height: 23rem;
  }

  .stack-card {
    width: 58%;
  }

  .gallery-lightbox-track {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-track.is-masonry {
    column-count: 2;
  }

  .gallery-group-masonry {
    column-count: 2;
  }

  .gallery-lightbox-track.is-grouped .gallery-group-layout-mobile img {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
    max-height: min(70vh, 36rem);
  }

  .gallery-lightbox-track.is-grouped .gallery-group-layout-characters img {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
    max-height: min(70vh, 36rem);
  }

  .case-shot-large {
    grid-row: span 1;
  }

  .bottom-dock {
    bottom: 0.8rem;
    width: min(calc(100% - 1rem), 24rem);
    justify-content: space-between;
    padding: 0.45rem;
  }

  .dock-link {
    min-width: auto;
    flex: 1 1 0;
    padding: 0.82rem 0.8rem;
    font-size: 0.94rem;
  }

  .qr-dialog {
    border-radius: 1.5rem;
    padding: 1.1rem;
  }

  .resume-heading h2 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
  }

  .resume-tags {
    margin: 1.5rem 0 2rem;
  }

  .experience-brand h3 {
    font-size: 1.6rem;
  }

  .mini-panel.wide {
    grid-column: span 1;
  }

  .info-list li,
  .media-header,
  .timeline-item {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (min-width: 761px) {
  .travel-keyword-cloud {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 17rem;
  }

  .travel-keyword-cloud span {
    position: absolute;
    display: grid;
    place-items: center;
    width: clamp(6rem, 11vw, 8.5rem);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: none;
    font-size: clamp(1.35rem, 3vw, 2rem);
  }

  .travel-keyword-cloud span:nth-child(1) {
    left: 8%;
    top: 18%;
  }

  .travel-keyword-cloud span:nth-child(2) {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
  }

  .travel-keyword-cloud span:nth-child(3) {
    right: 8%;
    bottom: 16%;
  }
}

@media (max-width: 1180px) {
  .gallery-lightbox-track.is-yangjiaojiao {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-lightbox-track.is-yangjiaojiao img:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: auto;
    max-height: 44rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group-layout-mobile {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-lightbox.is-case-gallery .gallery-group-layout-characters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-lightbox-track.is-yangjiaojiao {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-lightbox-track.is-yangjiaojiao img:nth-child(5),
  .gallery-lightbox-track.is-yangjiaojiao img:nth-child(6) {
    grid-column: 1;
  }

  .gallery-lightbox.is-case-gallery .gallery-lightbox-dialog {
    max-height: 94vh;
    padding: 0.75rem;
    border-radius: 1rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped {
    gap: 1rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-case-hero {
    padding: 1.6rem 1rem 2rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group {
    padding: 1rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group-head {
    display: grid;
    gap: 0.65rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group-head em {
    order: -1;
    font-size: 2.6rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group-layout-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-group-layout-characters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped .gallery-group-layout-mobile img,
  .gallery-lightbox.is-case-gallery .gallery-lightbox-track.is-grouped .gallery-group-layout-characters img {
    flex: initial;
    width: 100%;
    max-width: 100%;
    height: clamp(18rem, 72vw, 30rem);
    max-height: none;
  }
}

@media (max-width: 460px) {
  .gallery-lightbox.is-case-gallery .gallery-group-layout-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-lightbox.is-case-gallery .gallery-group-layout-characters {
    grid-template-columns: 1fr;
  }
}

/* Final travel-season gallery overrides. */
.gallery-lightbox-track.is-travel-mobile-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: min(100%, 86rem);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  column-count: initial;
  column-gap: initial;
  scroll-snap-type: x proximity;
}

.gallery-lightbox-track.is-travel-mobile-row::-webkit-scrollbar {
  height: 0.55rem;
}

.gallery-lightbox-track.is-travel-mobile-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-track.is-travel-mobile-row img {
  flex: 0 0 calc((100% - 3rem) / 4);
  width: calc((100% - 3rem) / 4);
  max-width: calc((100% - 3rem) / 4);
  max-height: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  scroll-snap-align: start;
}

.project-detail-case .travel-gallery-card .smartphone-frame img {
  object-fit: contain;
  object-position: top center;
}

@media (max-width: 1100px) {
  .gallery-lightbox-track.is-travel-mobile-row {
    flex-wrap: wrap;
  }

  .gallery-lightbox-track.is-travel-mobile-row img {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 700px) {
  .gallery-lightbox-track.is-travel-mobile-row {
    flex-wrap: nowrap;
  }

  .gallery-lightbox-track.is-travel-mobile-row img {
    flex-basis: clamp(13rem, 72vw, 18rem);
    width: clamp(13rem, 72vw, 18rem);
    max-width: clamp(13rem, 72vw, 18rem);
  }
}

.gallery-lightbox-track.is-travel-mobile-row {
  flex-wrap: nowrap;
}

.gallery-lightbox-track.is-travel-mobile-row img {
  flex: 0 0 clamp(13rem, 21vw, 19.5rem);
  width: clamp(13rem, 21vw, 19.5rem);
  max-width: clamp(13rem, 21vw, 19.5rem);
}

/* Larger generic smartphone previews for the travel season case. */
.project-detail-case .travel-gallery-row {
  width: min(100%, 82rem);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.project-detail-case .travel-gallery-card {
  min-height: clamp(33rem, 54vw, 43rem);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  overflow: hidden;
}

.project-detail-case .travel-stack {
  height: clamp(28rem, 46vw, 37rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.project-detail-case .stack-frost-frame {
  display: none;
}

.project-detail-case .smartphone-frame {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: min(74%, 18.2rem);
  aspect-ratio: 1125 / 2436;
  padding: 0.56rem;
  border-radius: 2.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06) 24%, rgba(0, 0, 0, 0.72) 55%, rgba(255, 255, 255, 0.12)),
    #0a0c11;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 0 0 0.34rem #05070a,
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.38);
  transform-origin: center top;
  transition: transform 280ms ease, box-shadow 280ms ease, opacity 220ms ease;
}

.project-detail-case .season-daily .smartphone-frame {
  aspect-ratio: 1125 / 2473;
}

.project-detail-case .smartphone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0.86rem;
  left: 50%;
  width: 4.9rem;
  height: 1.18rem;
  border-radius: 999px;
  background: #05070a;
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0.28rem 0.8rem rgba(0, 0, 0, 0.28);
}

.project-detail-case .smartphone-frame::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  z-index: 2;
  border-radius: 1.68rem;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 1.4rem rgba(255, 255, 255, 0.05);
}

.project-detail-case .smartphone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.62rem;
  object-fit: contain;
  object-position: top center;
  background: #080a0f;
}

.project-detail-case .stack-card-a {
  z-index: 4;
  opacity: 1;
  transform: translateX(-50%) translateY(0.1rem) rotate(0deg);
}

.project-detail-case .stack-card-b {
  z-index: 3;
  opacity: 0;
  transform: translateX(-50%) translateY(0.45rem) rotate(0deg) scale(0.985);
}

.project-detail-case .stack-card-c {
  z-index: 2;
  opacity: 0;
  transform: translateX(-50%) translateY(0.8rem) rotate(0deg) scale(0.97);
}

.project-detail-case .stack-card-d {
  z-index: 1;
  opacity: 0;
  transform: translateX(-50%) translateY(1.15rem) rotate(0deg) scale(0.955);
}

.project-detail-case .travel-gallery-card:hover .stack-card-a,
.project-detail-case .travel-gallery-card:focus-visible .stack-card-a {
  transform: translateX(-61%) translateY(0.25rem) rotate(-7deg);
}

.project-detail-case .travel-gallery-card:hover .stack-card-b,
.project-detail-case .travel-gallery-card:focus-visible .stack-card-b {
  opacity: 1;
  transform: translateX(-54%) translateY(0.55rem) rotate(-2deg);
}

.project-detail-case .travel-gallery-card:hover .stack-card-c,
.project-detail-case .travel-gallery-card:focus-visible .stack-card-c {
  opacity: 1;
  transform: translateX(-47%) translateY(0.9rem) rotate(3deg);
}

.project-detail-case .travel-gallery-card:hover .stack-card-d,
.project-detail-case .travel-gallery-card:focus-visible .stack-card-d {
  opacity: 1;
  transform: translateX(-40%) translateY(1.25rem) rotate(7deg);
}

.project-detail-case .travel-gallery-card:hover .smartphone-frame,
.project-detail-case .travel-gallery-card:focus-visible .smartphone-frame {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 0 0 0.34rem #05070a,
    0 1.8rem 3.6rem rgba(0, 0, 0, 0.44),
    0 0 2.2rem rgba(53, 231, 255, 0.13);
}

@media (max-width: 900px) {
  .project-detail-case .travel-gallery-card {
    min-height: 35rem;
  }

  .project-detail-case .travel-stack {
    height: 29rem;
  }

  .project-detail-case .smartphone-frame {
    width: min(68%, 16.2rem);
  }
}

@media (max-width: 560px) {
  .project-detail-case .travel-gallery-card {
    min-height: 34rem;
  }

  .project-detail-case .travel-stack {
    height: 28rem;
  }

  .project-detail-case .smartphone-frame {
    width: min(70%, 15.5rem);
  }
}
