:root {
  --ink: #101014;
  --muted: #5f636d;
  --paper: #fff8ed;
  --paper-strong: #fffdf8;
  --line: rgba(16, 16, 20, 0.16);
  --acid: #d7ff42;
  --cyan: #31d8ff;
  --coral: #ff5b4a;
  --pink: #ff4fc3;
  --blue: #2545ff;
  --green: #00d987;
  --violet: #7437ff;
  --shadow: 0 28px 80px rgba(16, 16, 20, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.05) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(180deg, #fff8ed 0%, #fff1e4 36%, #f8fff0 70%, #f7f4ff 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 91, 74, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(49, 216, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(215, 255, 66, 0.14), transparent 42%);
  pointer-events: none;
}

.motion-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-stage span {
  position: absolute;
  display: block;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(16, 16, 20, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
    rgba(255, 253, 248, 0.2);
  transform: translateY(calc(var(--scroll-progress, 0) * -40px)) rotate(var(--angle, 0deg));
  animation: stageDrift 18s ease-in-out infinite alternate;
}

.motion-stage span:nth-child(1) {
  left: -6vw;
  top: 18vh;
  width: 26vw;
  height: 36vh;
  --angle: -9deg;
}

.motion-stage span:nth-child(2) {
  right: -9vw;
  top: 42vh;
  width: 32vw;
  height: 42vh;
  --angle: 7deg;
  animation-delay: -5s;
}

.motion-stage span:nth-child(3) {
  left: 34vw;
  bottom: -18vh;
  width: 34vw;
  height: 34vh;
  --angle: 4deg;
  animation-delay: -9s;
}

::selection {
  background: var(--ink);
  color: var(--acid);
}

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

img.is-missing {
  display: none;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  background: rgba(16, 16, 20, 0.08);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--acid), var(--cyan), var(--pink));
  transition: width 0.12s linear;
}

.cursor,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 16, 20, 0.45);
  border-radius: 50%;
  transition:
    width 0.22s var(--ease),
    height 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease),
    opacity 0.18s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  transition: opacity 0.18s ease;
}

html.has-custom-cursor .cursor,
html.has-custom-cursor .cursor-dot {
  opacity: 1;
}

.cursor.is-active {
  width: 72px;
  height: 72px;
  border-color: rgba(16, 16, 20, 0.12);
  background: rgba(215, 255, 66, 0.35);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 55px rgba(16, 16, 20, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav,
.header-action,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  padding: 8px 10px 8px 8px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.nav {
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(16, 16, 20, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    color 0.18s var(--ease);
}

.nav a:hover,
.header-action:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.nav a[aria-current="page"] {
  background: rgba(215, 255, 66, 0.92);
  color: var(--ink);
}

.header-action {
  gap: 8px;
  justify-content: center;
  background: var(--acid);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.section-pad {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

#about,
#experience,
#work,
#contact {
  scroll-margin-top: 104px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  min-height: 92vh;
  padding-top: 132px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.case-number,
.mini-label {
  margin: 0;
  color: rgba(16, 16, 20, 0.72);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 34px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: var(--acid);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 920px;
  margin: 26px 0 0;
  font-size: 82px;
  font-weight: 950;
  line-height: 0.96;
}

.word-switch {
  position: relative;
  display: block;
  min-height: 2.04em;
  overflow: hidden;
  color: var(--blue);
}

.word-switch span {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(110%);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  max-width: 100%;
  white-space: normal;
}

.word-switch span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-bottom {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 780px;
  margin-top: 34px;
}

.hero-bottom p,
.work-head p,
.sticky-title p,
.about-copy p,
.case-copy p,
.process-step p {
  color: var(--muted);
  font-size: 18px;
}

.hero-bottom p {
  max-width: 540px;
  margin-bottom: 0;
}

.button {
  flex: 0 0 auto;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(16, 16, 20, 0.18);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 16, 20, 0.24);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 248, 237, 0.58);
  box-shadow: none;
}

.hero-visual {
  --mx: 0;
  --my: 0;
  position: relative;
  min-height: 630px;
  border: 1px solid rgba(16, 16, 20, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(49, 216, 255, 0.9), rgba(215, 255, 66, 0.82) 48%, rgba(255, 91, 74, 0.88)),
    var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: perspective(1200px) rotateX(calc(var(--my) * -3deg)) rotateY(calc(var(--mx) * 4deg));
  transition: transform 0.16s ease-out;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.hero-visual::after {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 8px;
  content: "";
}

.visual-grid {
  position: absolute;
  inset: 34px;
}

.hero-project-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 28px 70px rgba(16, 16, 20, 0.26);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.hero-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.hero-project-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.hero-project-card:hover {
  box-shadow: 0 34px 90px rgba(16, 16, 20, 0.32);
}

.hero-project-card:hover img {
  transform: scale(1.05);
}

.hero-logistics-card {
  left: 0;
  top: 12px;
  z-index: 2;
  width: 78%;
  height: 336px;
  transform: rotate(-5deg);
  animation: floatOne 7s ease-in-out infinite;
}

.hero-banking-card {
  right: 0;
  bottom: 20px;
  z-index: 3;
  width: 68%;
  height: 300px;
  transform: rotate(6deg);
  animation: floatTwo 7.4s ease-in-out infinite;
}

.hero-process-card {
  position: absolute;
  left: 28px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  width: 244px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 8px;
  background: var(--acid);
  box-shadow: 0 20px 54px rgba(16, 16, 20, 0.18);
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-2deg);
}

.hero-process-card span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-process-card strong {
  font-size: 30px;
  line-height: 1;
}

.hero-process-card small {
  color: rgba(16, 16, 20, 0.68);
  font-weight: 800;
}

.phone {
  position: absolute;
  width: 188px;
  height: 386px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background: #121216;
  box-shadow: 0 26px 60px rgba(16, 16, 20, 0.3);
}

.phone-top {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 54px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.phone-a {
  left: 0;
  top: 40px;
  transform: rotate(-9deg);
  animation: floatOne 6.2s ease-in-out infinite;
}

.phone-b {
  right: 18px;
  bottom: 28px;
  transform: rotate(8deg);
  animation: floatTwo 7s ease-in-out infinite;
}

.app-screen {
  width: 100%;
  height: 100%;
  padding: 34px 16px 18px;
  border-radius: 23px;
  color: #fff;
  overflow: hidden;
}

.gradient-one {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(145deg, #1222a6 0%, #7f36ff 42%, #ff4fc3 100%);
}

.gradient-two {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(145deg, #0039ff 0%, #00d987 54%, #d7ff42 100%);
  color: #101014;
}

.app-screen strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
}

.ring-chart {
  width: 106px;
  height: 106px;
  margin: 34px auto 24px;
  border: 16px solid rgba(255, 255, 255, 0.22);
  border-right-color: var(--acid);
  border-bottom-color: var(--cyan);
  border-radius: 50%;
  animation: spinBadge 8s linear infinite;
}

.app-row {
  width: 100%;
  height: 14px;
  margin-top: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.app-row.short {
  width: 66%;
}

.bars {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 132px;
  margin: 32px 0 22px;
}

.bars span {
  display: block;
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #101014;
  animation: growBar 2.8s ease-in-out infinite;
}

.bars span:nth-child(1) {
  height: 48%;
}

.bars span:nth-child(2) {
  height: 82%;
  animation-delay: 0.12s;
}

.bars span:nth-child(3) {
  height: 58%;
  animation-delay: 0.22s;
}

.bars span:nth-child(4) {
  height: 94%;
  animation-delay: 0.34s;
}

.app-card,
.daily-card,
.ticket {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 850;
}

.slide-stack {
  position: absolute;
  left: 34%;
  top: 94px;
  width: 280px;
  height: 360px;
  transform: rotate(4deg);
}

.deck {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 238px;
  height: 156px;
  padding: 18px;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(16, 16, 20, 0.18);
  animation: deckWave 5.5s ease-in-out infinite;
}

.deck span,
.case-slide span,
.presentation-slide span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.deck strong,
.case-slide strong,
.presentation-slide strong {
  font-size: 28px;
  line-height: 1;
}

.deck small,
.presentation-slide small {
  color: rgba(16, 16, 20, 0.66);
  font-weight: 750;
}

.deck-one {
  left: 0;
  top: 0;
  background: var(--acid);
}

.deck-two {
  right: 0;
  top: 104px;
  background: var(--cyan);
  animation-delay: 0.18s;
}

.deck-three {
  left: 24px;
  bottom: 0;
  background: var(--paper-strong);
  animation-delay: 0.32s;
}

.floating-note {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 8;
  padding: 10px 12px;
  border: 1px solid rgba(16, 16, 20, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.hero-lifestyle-visual {
  background: #dcff44;
}

.lifestyle-collage {
  position: absolute;
  inset: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  background: #ef654d;
}

.lifestyle-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 0.9s var(--ease);
}

.hero-lifestyle-visual:hover .lifestyle-collage img {
  transform: scale(1.035);
}

.lifestyle-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  max-width: 280px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background: rgba(16, 16, 20, 0.82);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.lifestyle-caption span,
.lifestyle-stamp {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lifestyle-caption strong {
  font-size: 24px;
  line-height: 1.02;
}

.lifestyle-stamp {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(16, 16, 20, 0.44);
  border-radius: 50%;
  background: rgba(215, 255, 66, 0.88);
  color: var(--ink);
  line-height: 1.25;
  place-items: center;
  text-align: center;
  transform: rotate(11deg);
}

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 34px;
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  width: 10px;
  height: 10px;
  margin-left: 34px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.about-grid,
.experience-layout,
.work-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: start;
}

.about h2,
.sticky-title h2,
.work-head h2,
.contact-panel h2 {
  margin: 18px 0 0;
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.about-copy {
  padding-top: 42px;
}

.about-copy p:last-child,
.sticky-title p:last-child,
.case-copy p:last-child {
  margin-bottom: 0;
}

.identity-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) minmax(240px, 0.56fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 58px;
}

.portrait-frame,
.identity-card,
.life-frame {
  position: relative;
  border: 1px solid rgba(16, 16, 20, 0.15);
  border-radius: 8px;
  box-shadow: 0 22px 68px rgba(16, 16, 20, 0.1);
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--frame-lift, 0px)), 0) rotate(var(--frame-tilt, 0deg));
  transition:
    transform 0.42s var(--ease),
    box-shadow 0.42s var(--ease),
    background 0.42s var(--ease);
}

.portrait-frame:hover,
.identity-card:hover,
.life-frame:hover {
  box-shadow: 0 32px 86px rgba(16, 16, 20, 0.16);
}

.portrait-frame {
  grid-row: span 2;
  min-height: 548px;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
}

.portrait-collage {
  position: relative;
  height: 438px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(49, 216, 255, 0.42), transparent 44%),
    linear-gradient(20deg, rgba(215, 255, 66, 0.3), transparent 42%),
    #24242c;
}

.portrait-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.54);
  border-radius: 7px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  transform-origin: center;
}

.portrait-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-photo-one {
  left: 8%;
  top: 12%;
  z-index: 3;
  width: 57%;
  height: 76%;
  transform: rotate(-6deg);
  animation: portraitDriftOne 8s var(--ease) infinite;
}

.portrait-photo-two {
  right: -8%;
  top: 4%;
  z-index: 2;
  width: 55%;
  height: 51%;
  transform: rotate(7deg);
  animation: portraitDriftTwo 9s var(--ease) infinite;
}

.portrait-photo-three {
  right: -1%;
  bottom: -8%;
  z-index: 4;
  width: 52%;
  height: 51%;
  transform: rotate(4deg);
  animation: portraitDriftThree 8.4s var(--ease) infinite;
}

.portrait-route {
  position: absolute;
  left: 2%;
  bottom: 6%;
  z-index: 5;
  width: 72%;
  height: 35%;
  border: 2px dashed rgba(215, 255, 66, 0.82);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.82;
  transform: rotate(-10deg);
}

.portrait-tag {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 6;
  display: grid;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(16, 16, 20, 0.24);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.2;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.portrait-placeholder {
  display: flex;
  height: 410px;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(255, 248, 237, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255, 248, 237, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    #a7a9ad;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(16, 16, 20, 0.72);
}

.portrait-placeholder span {
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.portrait-placeholder small {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.portrait-caption {
  display: flex;
  min-height: 72px;
  padding: 18px 4px 2px;
  flex-direction: column;
  justify-content: center;
}

.portrait-caption strong {
  font-size: 26px;
  line-height: 1;
}

.portrait-caption span {
  margin-top: 8px;
  color: rgba(255, 248, 237, 0.68);
  font-weight: 800;
}

@keyframes portraitDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }

  50% {
    transform: translate3d(-5px, -10px, 0) rotate(-3deg);
  }
}

@keyframes portraitDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }

  50% {
    transform: translate3d(7px, 8px, 0) rotate(4deg);
  }
}

@keyframes portraitDriftThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }

  50% {
    transform: translate3d(-7px, 7px, 0) rotate(7deg);
  }
}

.identity-card {
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.76);
}

.identity-card::after,
.life-frame::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(16, 16, 20, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(16, 16, 20, 0.12) 47%, rgba(16, 16, 20, 0.12) 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(16, 16, 20, 0.12) 47%, rgba(16, 16, 20, 0.12) 53%, transparent 54%);
  content: "";
  opacity: 0.64;
  transform: rotate(11deg);
}

.identity-card span,
.life-frame span {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(16, 16, 20, 0.62);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.identity-card h3,
.life-frame h3 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.identity-card p,
.life-frame p,
.life-head p {
  color: var(--muted);
  font-size: 17px;
}

.identity-card-main {
  grid-column: span 2;
  min-height: 286px;
  background:
    linear-gradient(135deg, rgba(215, 255, 66, 0.74), rgba(255, 253, 248, 0.78)),
    var(--paper-strong);
}

.identity-card-main h3 {
  font-size: 46px;
}

.identity-card-edu {
  background: var(--cyan);
}

.identity-card-life {
  background: var(--coral);
  color: var(--paper);
}

.identity-card-life p,
.identity-card-life span {
  color: rgba(255, 248, 237, 0.78);
}

.life {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 91, 74, 0.1), rgba(49, 216, 255, 0.14)),
    rgba(255, 253, 248, 0.46);
  border-top: 1px solid rgba(16, 16, 20, 0.1);
  border-bottom: 1px solid rgba(16, 16, 20, 0.1);
}

.life-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.life-head h2 {
  margin: 18px 0 0;
  font-size: 56px;
  font-weight: 950;
  line-height: 1;
}

.life-head p {
  margin-bottom: 4px;
}

.frame-gallery {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 16, 20, 0.16);
}

.life-frame {
  min-height: 360px;
  padding: 30px 24px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #fdf9f1;
}

.life-frame:nth-child(2) {
  margin-top: 0;
}

.life-frame:nth-child(3) {
  margin-top: 0;
}

.life-frame::after {
  display: none;
}

.life-frame span {
  margin-bottom: 72px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.life-frame h3 {
  margin-bottom: 18px;
  font-size: 36px;
}

.life-frame p {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.5;
}

.life-frame:not(:first-child) {
  border-left: 1px solid rgba(16, 16, 20, 0.16);
}

.frame-team {
  background: var(--ink);
  color: var(--paper);
}

.frame-team p,
.frame-team span {
  color: rgba(255, 248, 237, 0.72);
}

.frame-study {
  background: #f3ffd1;
}

.frame-motion {
  background: #dff8ff;
}

.frame-world {
  background: #ffe0ef;
  color: var(--ink);
}

.frame-world p,
.frame-world span {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 62px;
}

.metrics div,
.timeline-item,
.process-step {
  border: 1px solid rgba(16, 16, 20, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 54px rgba(16, 16, 20, 0.07);
}

.metrics div {
  min-height: 152px;
  padding: 18px;
}

.metrics strong {
  display: block;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 750;
}

.experience {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  background: linear-gradient(135deg, rgba(49, 216, 255, 0.24), rgba(255, 79, 195, 0.14));
  border-top: 1px solid rgba(16, 16, 20, 0.12);
  border-bottom: 1px solid rgba(16, 16, 20, 0.12);
}

.sticky-title {
  position: sticky;
  top: 116px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.timeline-item::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(16, 16, 20, 0.16) 48%, rgba(16, 16, 20, 0.16) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(16, 16, 20, 0.16) 48%, rgba(16, 16, 20, 0.16) 52%, transparent 53%);
  content: "";
  opacity: 0.42;
  transform: rotate(18deg);
}

.timeline-item span,
.process-step span {
  display: inline-grid;
  width: 42px;
  height: 32px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
}

.timeline-item:nth-child(2) span {
  background: var(--coral);
}

.timeline-item:nth-child(3) span {
  background: var(--blue);
}

.timeline-item:nth-child(4) span {
  background: var(--green);
  color: var(--ink);
}

.timeline-item h3,
.process-step h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1;
}

.capabilities {
  padding-top: 70px;
  padding-bottom: 40px;
}

.capability-band {
  counter-reset: capability;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  border: 0;
  background: transparent;
  transform: none;
}

.capability-band span {
  position: relative;
  display: flex;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(16, 16, 20, 0.06);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.05;
  align-items: flex-end;
  text-align: left;
}

.capability-band span::before {
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(16, 16, 20, 0.52);
  content: "0" counter(capability);
  counter-increment: capability;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.capability-band span:nth-child(2) {
  background: #f3ffd1;
  transform: translateY(12px);
}

.capability-band span:nth-child(3) {
  background: #dff8ff;
}

.capability-band span:nth-child(4) {
  background: #ffe5d7;
  transform: translateY(12px);
}

.capability-band span:nth-child(5) {
  background: #ffe0ef;
}

.work {
  padding-top: 86px;
}

.work-head {
  align-items: end;
  margin-bottom: 32px;
}

.work-head p {
  margin-bottom: 4px;
}

.case-study {
  --mx: 0;
  --my: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 28px;
  min-height: 650px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 24px 80px rgba(16, 16, 20, 0.12);
  transform: perspective(1200px) rotateX(calc(var(--my) * -1.6deg)) rotateY(calc(var(--mx) * 1.8deg));
  transition: transform 0.16s ease-out;
}

.case-lime {
  background: linear-gradient(135deg, #fffdf8 0%, #f4ffe5 100%);
}

.case-coral {
  background: linear-gradient(135deg, #fffdf8 0%, #fff0ef 100%);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px 10px 12px 12px;
}

.case-copy h3 {
  max-width: 520px;
  margin: 18px 0 18px;
  font-size: 52px;
  font-weight: 950;
  line-height: 0.98;
}

.case-copy dl {
  display: grid;
  gap: 10px;
  margin: 36px 0 0;
}

.case-button {
  width: fit-content;
  margin-top: 22px;
}

.case-copy dl div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 16, 20, 0.14);
}

.case-copy dt,
.case-copy dd {
  margin: 0;
}

.case-copy dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-copy dd {
  font-weight: 850;
}

.case-visual {
  position: relative;
  min-height: 606px;
  padding: 0;
  border: 1px solid rgba(16, 16, 20, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #15151d;
  cursor: pointer;
  font: inherit;
  isolation: isolate;
  text-align: left;
}

.case-visual:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.case-visual:hover .case-art-primary {
  transform: translateY(-5px) rotate(-0.8deg) scale(1.01);
}

.case-visual:hover .case-art-secondary {
  transform: translateY(-8px) rotate(4deg) scale(1.025);
}

.habit-visual {
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.92), rgba(50, 22, 7, 0.96)),
    #21110b;
}

.route-visual {
  background:
    linear-gradient(135deg, rgba(151, 42, 255, 0.92), rgba(7, 7, 20, 0.98)),
    #090915;
}

.case-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px) 0 0 / 40px 40px;
  content: "";
  opacity: 0.42;
}

.case-art {
  position: absolute;
  display: block;
  border: 0;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 253, 248, 0.12);
  box-shadow: 0 28px 70px rgba(16, 16, 20, 0.34);
  transition: transform 0.5s var(--ease);
}

.case-art-primary {
  left: 24px;
  top: 24px;
  z-index: 1;
  width: calc(100% - 48px);
  height: auto;
  aspect-ratio: 1800 / 1234;
}

.case-art-secondary {
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 48%;
  height: auto;
  aspect-ratio: 1800 / 1234;
  transform: rotate(3deg);
}

.case-deck {
  width: min(1400px, calc(100vw - 36px));
  height: min(880px, calc(100dvh - 36px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
}

.case-deck::backdrop {
  background: rgba(16, 16, 20, 0.6);
  backdrop-filter: blur(12px);
}

.case-deck-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background:
    linear-gradient(115deg, rgba(49, 216, 255, 0.18), transparent 33%),
    linear-gradient(240deg, rgba(215, 255, 66, 0.18), transparent 32%),
    #fdf9f1;
  box-shadow: 0 44px 120px rgba(16, 16, 20, 0.44);
}

.case-deck-bar,
.case-deck-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.case-deck-bar {
  padding: 4px 4px 18px;
}

.case-deck-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-deck-bar h2 {
  margin: 3px 0 0;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.case-deck-close,
.deck-control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  place-items: center;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.case-deck-close:hover,
.deck-control:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.case-deck-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 20, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.07) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(16, 16, 20, 0.07) 1px, transparent 1px) 0 0 / 38px 38px,
    rgba(255, 253, 248, 0.64);
}

.deck-line {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  perspective: 1700px;
  transform-style: preserve-3d;
}

.deck-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: min(62vw, 860px);
  max-width: calc(100% - 52px);
  aspect-ratio: 1800 / 1234;
  padding: 0;
  border: 1px solid rgba(16, 16, 20, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: 0 28px 72px rgba(16, 16, 20, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.74);
  transform-style: preserve-3d;
  transition:
    opacity 0.62s var(--ease),
    transform 0.62s var(--ease),
    box-shadow 0.62s var(--ease);
}

.deck-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f1e9;
  transition: transform 0.62s var(--ease);
}

.deck-frame-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(16, 16, 20, 0.72);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.deck-frame.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateZ(50px) rotateX(1deg) rotateY(-2deg);
}

.deck-frame.is-active:hover img {
  transform: scale(1.018);
}

.deck-frame.is-before,
.deck-frame.is-after {
  z-index: 2;
  opacity: 0.58;
  pointer-events: auto;
}

.deck-frame.is-before {
  transform: translate(-50%, -50%) translateX(-68%) translateZ(-120px) rotateY(28deg) rotateZ(-2deg) scale(0.86);
}

.deck-frame.is-after {
  transform: translate(-50%, -50%) translateX(68%) translateZ(-120px) rotateY(-28deg) rotateZ(2deg) scale(0.86);
}

.deck-frame.is-far {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.64);
}

.deck-pagination {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 8;
  display: grid;
  gap: 8px;
  max-height: calc(100% - 46px);
  padding: 6px;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateY(-50%);
}

.deck-pagination::-webkit-scrollbar {
  display: none;
}

.deck-dot {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(16, 16, 20, 0.28);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    height 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.deck-dot:hover {
  background: var(--ink);
  transform: scaleX(1.35);
}

.deck-dot.is-active {
  height: 26px;
  background: var(--ink);
}

.case-deck-footer {
  padding: 18px 4px 4px;
}

.deck-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deck-counter {
  min-width: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.deck-behance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s var(--ease);
}

.deck-behance:hover {
  transform: translateY(-2px);
}

/* Vertical case story inspired by the reference layout. */
.case-deck {
  width: min(1540px, calc(100vw - 36px));
  height: min(920px, calc(100dvh - 36px));
}

.case-deck-shell {
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  border: 0;
}

.case-deck-stage {
  display: grid;
  grid-template-columns: minmax(310px, 0.42fr) minmax(440px, 0.58fr);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f6f4ed;
}

.case-deck.is-logistics .case-deck-stage {
  background:
    linear-gradient(125deg, rgba(255, 248, 237, 0.18), transparent 38%),
    #d95f18;
}

.case-deck.is-banking .case-deck-stage {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 38%),
    #301069;
}

.case-deck-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(34px, 6vw, 88px);
}

.case-deck-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.72);
}

.case-deck-copy h2 {
  max-width: 540px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(46px, 5.9vw, 104px);
  font-weight: 950;
  line-height: 0.88;
}

.case-deck-copy p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.35;
}

.case-deck-copy .deck-behance {
  width: fit-content;
  margin-top: 34px;
}

.deck-viewport {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  perspective: 1800px;
}

.deck-viewport::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.12), transparent 16%);
  content: "";
  pointer-events: none;
}

.deck-line {
  position: absolute;
  left: 9%;
  top: 0;
  display: flex;
  gap: clamp(42px, 5vw, 84px);
  width: min(680px, 82%);
  height: auto;
  perspective: none;
  transform: translate3d(0, var(--deck-y, 0px), 0) rotate(-6deg);
  transform-origin: center;
  transition: transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
  flex-direction: column;
  will-change: transform;
}

.deck-frame {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1800 / 1234;
  margin: 0;
  flex: 0 0 auto;
  opacity: 0.2;
  pointer-events: none;
  transform: translateZ(0) scale(0.9);
  transition:
    opacity 0.62s var(--ease),
    transform 0.62s var(--ease),
    filter 0.62s var(--ease),
    box-shadow 0.62s var(--ease);
  filter: saturate(0.62) brightness(0.78);
}

.deck-frame.is-before,
.deck-frame.is-after {
  z-index: 1;
  opacity: 0.62;
  pointer-events: auto;
  transform: translateZ(0) scale(0.95);
  filter: saturate(0.82) brightness(0.9);
}

.deck-frame.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(80px) scale(1);
  box-shadow: 0 34px 88px rgba(16, 16, 20, 0.34);
  filter: none;
  animation: deckFrameEnter 0.82s var(--ease) both;
}

.deck-frame.is-far {
  opacity: 0.2;
  pointer-events: none;
  transform: translateZ(0) scale(0.9);
}

.deck-frame img {
  object-fit: contain;
  background: #f6f4ed;
}

.deck-frame-caption {
  left: 14px;
  bottom: 14px;
}

.deck-pagination {
  right: 22px;
  top: 50%;
  z-index: 5;
  gap: 10px;
  max-height: calc(100% - 58px);
}

.case-deck-close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 10;
}

.case-deck-footer {
  justify-content: flex-start;
  min-height: 76px;
  padding: 14px clamp(22px, 4vw, 62px);
  background: var(--paper-strong);
}

.deck-control:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

@keyframes deckFrameEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 80px) scale(1);
  }
}

.case-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.74;
  transform: scale(1.04);
}

.image-one {
  background-image: linear-gradient(135deg, rgba(18, 34, 166, 0.72), rgba(215, 255, 66, 0.36));
}

.image-two {
  background-image: linear-gradient(135deg, rgba(255, 91, 74, 0.72), rgba(49, 216, 255, 0.32));
}

.showcase-phone {
  left: 12%;
  top: 12%;
  z-index: 3;
  width: 224px;
  height: 462px;
  transform: rotate(-5deg);
}

.travel-phone {
  right: 11%;
  bottom: 8%;
  z-index: 4;
  width: 218px;
  height: 448px;
  transform: rotate(7deg);
}

.case-screen-one {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #11131f 0%, #2545ff 48%, #00d987 100%);
}

.case-screen-two {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(150deg, #ff5b4a 0%, #ff4fc3 50%, #31d8ff 100%);
}

.habit-list {
  display: grid;
  gap: 12px;
  margin: 44px 0 24px;
}

.habit-list span {
  display: block;
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.daily-card {
  background: var(--acid);
}

.case-slide {
  position: absolute;
  z-index: 4;
  width: 272px;
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(16, 16, 20, 0.24);
}

.slide-a {
  right: 7%;
  top: 13%;
  background: var(--paper-strong);
}

.slide-b {
  left: 7%;
  bottom: 9%;
  background: var(--acid);
}

.presentation {
  position: absolute;
  left: 8%;
  top: 10%;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: 410px;
}

.presentation-slide {
  display: flex;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(16, 16, 20, 0.2);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 24px 64px rgba(16, 16, 20, 0.2);
  flex-direction: column;
  justify-content: space-between;
}

.presentation-slide:nth-child(2) {
  margin-left: 54px;
  background: var(--cyan);
}

.map-lines {
  position: relative;
  height: 178px;
  margin-top: 28px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 28px 28px,
    rgba(16, 16, 20, 0.22);
}

.map-lines::before,
.map-lines::after {
  position: absolute;
  content: "";
}

.map-lines::before {
  left: 24px;
  top: 88px;
  width: 116px;
  height: 48px;
  border-top: 4px solid var(--acid);
  border-right: 4px solid var(--acid);
  border-radius: 0 24px 0 0;
}

.map-lines::after {
  right: 30px;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: -104px 92px 0 var(--acid);
}

.ticket {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.process {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(16, 16, 20, 0.22);
  border-bottom: 1px solid rgba(16, 16, 20, 0.22);
}

.process-step {
  position: relative;
  min-height: 290px;
  padding: 48px 26px 28px;
  border: 0;
  border-left: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-step:first-child {
  border-left: 0;
}

.process-step::before {
  position: absolute;
  left: 24px;
  top: -8px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.process-step span {
  display: inline-grid;
  min-width: 48px;
  min-height: 28px;
  margin-bottom: 72px;
  padding: 0 10px;
  border: 1px solid rgba(16, 16, 20, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-shadow: none;
  place-items: center;
}

.process-step h3 {
  font-size: 36px;
}

.process-step p {
  max-width: 250px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.process-step:nth-child(2) {
  background: rgba(215, 255, 66, 0.32);
}

.process-step:nth-child(3) {
  background: rgba(49, 216, 255, 0.2);
}

.process-step:nth-child(4) {
  background: rgba(255, 79, 195, 0.14);
  color: var(--ink);
}

.process-step:nth-child(4) p {
  color: var(--muted);
}

.process-step:nth-child(4) span {
  background: var(--paper-strong);
  color: var(--ink);
}

.contact {
  padding-top: 76px;
}

.contact-panel {
  position: relative;
  min-height: 520px;
  padding: 42px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 91, 74, 0.92), rgba(37, 69, 255, 0.94) 58%, rgba(16, 16, 20, 1)),
    var(--ink);
  color: var(--paper);
}

.contact-panel::before {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 34%;
  min-width: 260px;
  height: 58%;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.18) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 248, 237, 0.18) 1px, transparent 1px) 0 0 / 34px 34px;
  content: "";
  transform: rotate(3deg);
}

.contact-panel .eyebrow {
  color: rgba(255, 248, 237, 0.76);
}

.contact-panel .eyebrow::before {
  background: var(--acid);
  color: var(--paper);
}

.contact-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-top: 26px;
  font-size: 62px;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: rgba(16, 16, 20, 0.68);
  font-weight: 750;
}

.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

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

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

@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }

  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(16px) rotate(5deg);
  }
}

@keyframes deckWave {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

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

@keyframes growBar {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.72);
  }
}

@keyframes stageDrift {
  from {
    translate: 0 0;
  }

  to {
    translate: 18px -22px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .about-grid,
  .experience-layout,
  .work-head,
  .case-study {
    grid-template-columns: 1fr;
  }

  .sticky-title {
    position: static;
  }

  .case-study {
    min-height: auto;
  }

  .case-copy {
    min-height: 430px;
  }

  .metrics,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .identity-board,
  .life-head,
  .frame-gallery {
    grid-template-columns: 1fr;
  }

  .portrait-frame,
  .identity-card-main {
    grid-column: auto;
  }

  .portrait-frame {
    grid-row: auto;
  }

  .life-frame:nth-child(2),
  .life-frame:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 52px 52px, auto;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

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

  .brand {
    padding-right: 8px;
  }

  .nav {
    display: none;
  }

  .site-header.menu-open .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(16, 16, 20, 0.16);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 42px rgba(16, 16, 20, 0.14);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav a {
    width: 100%;
    min-height: 46px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 10px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(16, 16, 20, 0.16);
    border-radius: 8px;
    background: var(--paper-strong);
    place-items: center;
    transition: background 0.18s var(--ease), transform 0.18s var(--ease);
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    content: "";
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  }

  .menu-toggle::before {
    transform: translateY(-5px);
  }

  .menu-toggle::after {
    transform: translateY(5px);
  }

  .site-header.menu-open .menu-toggle {
    background: var(--acid);
  }

  .site-header.menu-open .menu-toggle::before {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle::after {
    transform: rotate(-45deg);
  }

  .site-header.menu-open .menu-toggle span {
    opacity: 0;
  }

  .section-pad {
    width: min(100% - 28px, 1240px);
    padding: 78px 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
    gap: 28px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 52px;
    line-height: 1;
  }

  .word-switch {
    min-height: 2.04em;
  }

  .word-switch span {
    white-space: normal;
  }

  .hero-bottom {
    display: grid;
    gap: 20px;
    align-items: start;
  }

  .hero-bottom p,
  .work-head p,
  .sticky-title p,
  .about-copy p,
  .case-copy p,
  .process-step p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 540px;
  }

  .visual-grid {
    inset: 18px;
  }

  .hero-logistics-card {
    left: 0;
    top: 34px;
    width: 92%;
    height: 218px;
  }

  .hero-banking-card {
    right: 0;
    bottom: 18px;
    width: 86%;
    height: 218px;
  }

  .hero-process-card {
    left: 14px;
    bottom: 178px;
    width: 196px;
    min-height: 116px;
    padding: 14px;
  }

  .hero-process-card strong {
    font-size: 24px;
  }

  .phone-a {
    left: 2px;
    top: 40px;
  }

  .phone-b {
    right: 0;
    bottom: 14px;
  }

  .phone {
    width: 156px;
    height: 322px;
    padding: 10px;
  }

  .app-screen {
    padding: 30px 12px 14px;
  }

  .app-screen strong {
    font-size: 22px;
  }

  .slide-stack {
    left: 27%;
    top: 124px;
    width: 220px;
  }

  .deck {
    width: 190px;
    height: 136px;
    padding: 14px;
  }

  .deck strong,
  .case-slide strong,
  .presentation-slide strong {
    font-size: 22px;
  }

  .floating-note {
    right: 18px;
    top: 18px;
  }

  .ticker span {
    min-height: 66px;
    padding: 0 22px;
    font-size: 18px;
  }

  .about h2,
  .sticky-title h2,
  .work-head h2,
  .life-head h2,
  .contact-panel h2 {
    font-size: 38px;
  }

  .identity-board {
    margin-top: 34px;
  }

  .portrait-frame {
    min-height: auto;
  }

  .portrait-placeholder {
    height: 340px;
  }

  .portrait-placeholder span {
    font-size: 44px;
  }

  .identity-card,
  .life-frame {
    min-height: 250px;
    padding: 20px;
  }

  .identity-card-main h3,
  .identity-card h3,
  .life-frame h3 {
    font-size: 30px;
  }

  .life {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-copy {
    padding-top: 0;
  }

  .metrics,
  .process-grid,
  .capability-band {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 122px;
  }

  .metrics strong {
    font-size: 38px;
  }

  .capability-band {
    transform: none;
  }

  .capability-band span {
    min-height: 74px;
  }

  .case-study {
    padding: 14px;
  }

  .case-copy {
    min-height: auto;
    padding: 8px 4px 14px;
  }

  .case-copy h3 {
    font-size: 36px;
  }

  .case-copy dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .case-visual {
    min-height: 760px;
  }

  .case-art-primary {
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
    height: 260px;
  }

  .case-art-secondary {
    left: 16px;
    right: auto;
    bottom: 16px;
    width: calc(100% - 32px);
    height: 150px;
    transform: none;
  }

  .case-deck {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
  }

  .case-deck-shell {
    padding: 12px;
  }

  .case-deck-bar {
    padding: 2px 2px 12px;
  }

  .case-deck-bar h2 {
    font-size: 22px;
  }

  .case-deck-stage {
    min-height: 0;
  }

  .deck-frame {
    width: calc(100% - 26px);
    max-width: none;
  }

  .deck-frame.is-before {
    transform: translate(-50%, -50%) translateX(-67%) translateZ(-120px) rotateY(25deg) rotateZ(-2deg) scale(0.82);
  }

  .deck-frame.is-after {
    transform: translate(-50%, -50%) translateX(67%) translateZ(-120px) rotateY(-25deg) rotateZ(2deg) scale(0.82);
  }

  .deck-frame-caption {
    left: 10px;
    bottom: 10px;
    padding: 7px 8px;
    font-size: 10px;
  }

  .deck-pagination {
    right: 4px;
    gap: 5px;
    padding: 4px;
  }

  .deck-dot {
    width: 6px;
    height: 6px;
  }

  .deck-dot.is-active {
    height: 18px;
  }

  .case-deck-footer {
    padding: 12px 2px 2px;
  }

  .deck-behance {
    padding: 0 12px;
    font-size: 12px;
  }

  .showcase-phone {
    left: 20px;
    top: 96px;
    width: 126px;
    height: 264px;
  }

  .travel-phone {
    right: 20px;
    bottom: 28px;
    width: 132px;
    height: 274px;
  }

  .case-slide {
    width: 214px;
    min-height: 124px;
    padding: 16px;
  }

  .slide-a {
    right: 16px;
    top: 294px;
    width: 218px;
  }

  .slide-b {
    left: 16px;
    right: auto;
    top: 438px;
    bottom: auto;
    width: calc(100% - 32px);
  }

  .presentation {
    left: 18px;
    top: 24px;
    width: 210px;
  }

  .presentation-slide {
    min-height: 150px;
    padding: 18px;
  }

  .presentation-slide:nth-child(2) {
    margin-left: 0;
  }

  .contact-panel {
    min-height: 510px;
    padding: 26px;
  }

  .contact-panel::before {
    right: 22px;
    bottom: 22px;
    min-width: 210px;
    height: 42%;
  }

  .contact-panel h2 {
    font-size: 40px;
  }

  .footer {
    width: calc(100% - 28px);
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-logistics-card {
    height: 204px;
  }

  .hero-banking-card {
    height: 204px;
  }

  .hero-process-card {
    bottom: 164px;
  }

  .phone {
    width: 138px;
    height: 288px;
  }

  .showcase-phone {
    left: 18px;
    top: 92px;
    width: 118px;
    height: 248px;
  }

  .travel-phone {
    right: 18px;
    bottom: 22px;
    width: 122px;
    height: 254px;
  }

  .slide-b {
    bottom: 180px;
  }

  .slide-stack {
    left: 19%;
    top: 112px;
  }

  .deck {
    width: 166px;
  }

  .case-visual {
    min-height: 760px;
  }

  .case-copy h3,
  .about h2,
  .sticky-title h2,
  .work-head h2 {
    font-size: 32px;
  }

  .contact-panel h2 {
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  .case-deck {
    width: calc(100vw - 12px);
    height: calc(100dvh - 12px);
  }

  .case-deck-shell {
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 0;
  }

  .case-deck-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .case-deck-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 22px 64px 18px 22px;
  }

  .case-deck-kicker {
    margin-bottom: 10px;
  }

  .case-deck-copy h2 {
    font-size: 36px;
    line-height: 0.92;
  }

  .case-deck-copy p {
    margin-top: 12px;
    font-size: 14px;
  }

  .case-deck-copy .deck-behance {
    min-height: 38px;
    margin-top: 16px;
  }

  .deck-viewport {
    grid-column: 1;
    grid-row: 2;
  }

  .deck-line {
    left: 3%;
    gap: 34px;
    width: 94%;
    transform: translate3d(0, var(--deck-y, 0px), 0) rotate(-4deg);
  }

  .deck-pagination {
    right: 8px;
    gap: 5px;
    max-height: calc(100% - 110px);
  }

  .deck-dot {
    width: 6px;
    height: 6px;
  }

  .deck-dot.is-active {
    height: 18px;
  }

  .case-deck-close {
    right: 12px;
    top: 12px;
  }

  .case-deck-footer {
    min-height: 62px;
    padding: 9px 16px;
  }

  .deck-frame-caption {
    left: 9px;
    bottom: 9px;
  }
}

/* A shared 3D anchor keeps the deck spatial instead of becoming a flat tilted strip. */
.deck-viewport {
  perspective: 1800px;
  perspective-origin: 55% 50%;
  transform-style: preserve-3d;
}

.deck-line {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  height: 100%;
  transform: none;
  transform-style: preserve-3d;
  transition: none;
}

.deck-frame {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(680px, 76%);
  max-width: none;
  margin: 0;
  border: 0;
  outline: 0;
  box-shadow:
    0 38px 76px rgba(6, 4, 12, 0.42),
    0 10px 24px rgba(6, 4, 12, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, -420px) rotateX(7deg) rotateY(-17deg) rotateZ(-4deg) scale(0.86);
  transform-origin: center;
  transform-style: preserve-3d;
  filter: saturate(0.72) brightness(0.76);
  transition:
    opacity 0.7s var(--ease),
    transform 0.86s var(--ease),
    filter 0.7s var(--ease),
    box-shadow 0.7s var(--ease);
  will-change: transform, opacity;
}

.deck-frame.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 72px) rotateX(7deg) rotateY(-17deg) rotateZ(-4deg) scale(1);
  box-shadow:
    0 56px 120px rgba(6, 4, 12, 0.52),
    0 20px 42px rgba(6, 4, 12, 0.3);
  filter: none;
  animation: none;
}

.deck-frame.is-before,
.deck-frame.is-after {
  z-index: 2;
  opacity: 0.54;
  pointer-events: auto;
  filter: saturate(0.74) brightness(0.78);
  box-shadow:
    0 28px 64px rgba(6, 4, 12, 0.36),
    0 8px 18px rgba(6, 4, 12, 0.22);
}

.deck-frame:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.deck-frame.is-before {
  transform: translate3d(-50%, -50%, -210px) translateY(-76%) rotateX(7deg) rotateY(-17deg) rotateZ(-4deg) scale(0.91);
}

.deck-frame.is-after {
  transform: translate3d(-50%, -50%, -210px) translateY(76%) rotateX(7deg) rotateY(-17deg) rotateZ(-4deg) scale(0.91);
}

.deck-frame.is-far {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, -420px) rotateX(7deg) rotateY(-17deg) rotateZ(-4deg) scale(0.86);
}

@media (max-width: 760px) {
  .deck-viewport {
    perspective: 1250px;
    perspective-origin: 54% 50%;
  }

  .deck-frame {
    left: 52%;
    width: 96%;
    transform: translate3d(-50%, -50%, -300px) rotateX(5deg) rotateY(-11deg) rotateZ(-3deg) scale(0.84);
  }

  .deck-frame.is-active {
    transform: translate3d(-50%, -50%, 42px) rotateX(5deg) rotateY(-11deg) rotateZ(-3deg) scale(1);
  }

  .deck-frame.is-before {
    transform: translate3d(-50%, -50%, -150px) translateY(-72%) rotateX(5deg) rotateY(-11deg) rotateZ(-3deg) scale(0.9);
  }

  .deck-frame.is-after {
    transform: translate3d(-50%, -50%, -150px) translateY(72%) rotateX(5deg) rotateY(-11deg) rotateZ(-3deg) scale(0.9);
  }

  .deck-frame.is-far {
    transform: translate3d(-50%, -50%, -300px) rotateX(5deg) rotateY(-11deg) rotateZ(-3deg) scale(0.84);
  }

  .lifestyle-collage {
    inset: 14px;
  }

  .lifestyle-collage img {
    object-position: 58% center;
  }

  .lifestyle-caption {
    left: 14px;
    bottom: 14px;
    max-width: 220px;
    padding: 12px;
  }

  .lifestyle-caption strong {
    font-size: 20px;
  }

  .lifestyle-stamp {
    right: 14px;
    top: 14px;
    width: 88px;
    height: 88px;
    font-size: 9px;
  }

  .portrait-collage {
    height: 390px;
  }

  .portrait-photo-one {
    width: 61%;
    height: 74%;
  }

  .portrait-photo-two {
    width: 55%;
  }

  .portrait-photo-three {
    width: 54%;
  }

  .frame-gallery {
    gap: 0;
  }

  .life-frame {
    min-height: 230px;
    padding: 24px 20px;
  }

  .life-frame:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 20, 0.16);
  }

  .life-frame span {
    margin-bottom: 42px;
  }

  .capability-band {
    gap: 8px;
  }

  .capability-band span {
    min-height: 96px;
    padding: 15px;
  }

  .capability-band span:nth-child(2),
  .capability-band span:nth-child(4) {
    transform: none;
  }

  .process-grid {
    gap: 0;
  }

  .process-step {
    min-height: 220px;
    padding: 42px 20px 24px;
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 20, 0.18);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step::before {
    left: 18px;
  }

  .process-step span {
    margin-bottom: 44px;
  }

  .process-step h3 {
    font-size: 30px;
  }

  .case-art-primary,
  .case-art-secondary {
    height: auto;
    aspect-ratio: 1800 / 1234;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
