

.case-hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-items: stretch;
  border-bottom: 1px solid rgba(245, 213, 138, 0.24);
  background: #070707;
}

.case-hero__art {
  position: absolute;
  z-index: 0;
  top: 21%;
  right: -10%;
  width: min(75vw, 1080px);
  overflow: hidden;
  border: 1px solid rgba(245, 213, 138, 0.24);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.56);
  opacity: 0.72;
  transform: perspective(1400px) rotateY(-5deg);
  transform-origin: right center;
}

.case-hero__art img {
  width: 100%;
  height: auto;
  filter: saturate(0.88) contrast(1.04);
}

.case-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.99) 0%, rgba(3, 4, 6, 0.94) 39%, rgba(3, 4, 6, 0.66) 61%, rgba(3, 4, 6, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 4, 6, 0.88) 0%, transparent 42%, rgba(3, 4, 6, 0.28) 100%);
}

.case-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 42px;
  grid-template-rows: auto 1fr auto;
}

.case-hero .breadcrumbs {
  align-self: start;
}

.case-hero__copy {
  max-width: 900px;
  align-self: end;
  padding: 80px 0 58px;
}

.case-hero__copy h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 8.3vw, 8.8rem);
}

.case-hero__copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.case-hero__facts {
  display: grid;
  margin: 0;
  grid-template-columns: 0.65fr 0.8fr 1.55fr;
  border-top: 1px solid rgba(245, 241, 232, 0.22);
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(4, 5, 7, 0.34);
  backdrop-filter: blur(16px);
}

.case-hero__facts > div {
  padding: 18px 24px;
  border-right: 1px solid rgba(245, 241, 232, 0.14);
}

.case-hero__facts > div:last-child {
  border-right: 0;
}

.case-hero__facts dt,
.case-shift small,
.case-gallery figcaption,
.case-shipped__evidence span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-hero__facts dd {
  margin: 4px 0 0;
  color: rgba(245, 241, 232, 0.84);
  font-size: 0.82rem;
}

.case-opening {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 36%, rgba(54, 114, 255, 0.08), transparent 28rem),
    #090a0d;
}

.case-opening__grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 130px);
}

.case-opening__grid h2 {
  max-width: 950px;
  margin-bottom: 34px;
}

.case-opening__grid > div > p {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 241, 232, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.78;
}

.case-compare-section {
  background:
    linear-gradient(rgba(245, 241, 232, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.022) 1px, transparent 1px),
    #070707;
  background-size: 72px 72px;
}

.case-comparison {
  margin-top: clamp(48px, 7vw, 88px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.case-comparison__toolbar {
  display: flex;
  min-height: 82px;
  margin-bottom: 14px;
  padding: 14px 16px 14px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 13, 0.9);
}

.case-comparison__toolbar > div:first-child > span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-comparison__toolbar p {
  margin: 5px 0 0;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.78rem;
}

.case-comparison__presets {
  display: inline-grid;
  padding: 4px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #07080a;
}

.case-comparison__presets button {
  min-width: 108px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  background: rgba(245, 241, 232, 0.055);
  color: rgba(245, 241, 232, 0.88);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.case-comparison__presets button:hover {
  border-color: rgba(245, 213, 138, 0.38);
  background: rgba(245, 213, 138, 0.1);
  color: #fff;
}

.case-comparison__presets button[aria-pressed="true"] {
  background: linear-gradient(115deg, var(--gold-pale), var(--gold));
  box-shadow: 0 8px 24px rgba(214, 168, 74, 0.16);
  color: #141006;
}

.case-comparison__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(245, 213, 138, 0.35);
  background: #e9e9e9;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  cursor: ew-resize;
  touch-action: none;
}

.case-comparison__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.case-comparison__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--case-split)) 0 0);
  transition: clip-path 420ms var(--ease-out);
}

.case-comparison.is-dragging .case-comparison__after {
  transition: none;
}

.case-comparison__label {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(4, 5, 7, 0.72);
  color: #fff;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.case-comparison__label--before {
  left: 18px;
}

.case-comparison__label--after {
  right: 18px;
}

.case-comparison__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--case-split);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.62);
  transform: translateX(-1px);
  pointer-events: none;
  transition: left 420ms var(--ease-out);
}

.case-comparison.is-dragging .case-comparison__divider {
  transition: none;
}

.case-comparison__divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(20, 16, 6, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-pale), var(--gold));
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
  color: #141006;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.case-comparison__divider i span {
  position: absolute;
  top: -26px;
  left: 50%;
  color: #17233f;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.case-comparison__range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  opacity: 0;
  pointer-events: auto;
  touch-action: none;
}

.case-comparison__stage:has(.case-comparison__range:focus-visible) {
  outline: 3px solid var(--gold-bright);
  outline-offset: 5px;
}

.case-comparison__guidance {
  display: flex;
  min-height: 46px;
  padding: 12px 2px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245, 241, 232, 0.48);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-transformation-proof {
  display: grid;
  margin-top: clamp(70px, 8vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid rgba(245, 213, 138, 0.2);
  background: rgba(8, 9, 12, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.case-brand-evolution,
.case-conversion-proof {
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
}

.case-brand-evolution {
  border-right: 1px solid var(--line);
}

.case-proof-heading > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-bright);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-proof-heading h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: 0.98;
}

.case-proof-heading p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.7;
}

.case-brand-evolution__assets {
  display: grid;
  margin-top: 42px;
  grid-template-columns: minmax(0, 0.76fr) 28px minmax(0, 1.24fr);
  align-items: end;
  gap: 12px;
}

.case-brand-evolution__assets figure {
  min-width: 0;
  margin: 0;
}

.case-brand-evolution__assets figcaption {
  margin-bottom: 10px;
  color: rgba(245, 241, 232, 0.54);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-brand-evolution__assets figure > div {
  display: grid;
  min-height: 122px;
  padding: 18px;
  place-items: center;
  border: 1px solid rgba(23, 35, 63, 0.14);
  background: #f0f1ed;
}

.case-brand-evolution__assets img {
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.case-brand-evolution__arrow {
  padding-bottom: 48px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
}

.case-brand-palette {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
}

.case-brand-palette li {
  min-width: 0;
  color: rgba(245, 241, 232, 0.54);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-brand-palette i {
  display: block;
  width: 100%;
  height: 22px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.case-brand-palette span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-conversion-path {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  list-style: none;
}

.case-conversion-path li {
  position: relative;
  min-width: 0;
  min-height: 112px;
  padding: 17px 13px;
  border-right: 1px solid var(--line);
}

.case-conversion-path li:last-child {
  border-right: 0;
}

.case-conversion-path li span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.case-conversion-path strong {
  display: block;
  color: rgba(245, 241, 232, 0.9);
  font-size: 0.71rem;
  line-height: 1.35;
}

.case-verification-list {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  list-style: none;
}

.case-verification-list li {
  display: grid;
  min-height: 52px;
  padding: 11px 0;
  grid-template-columns: 22px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.77rem;
  line-height: 1.45;
}

.case-verification-list svg {
  color: var(--gold-bright);
}

.case-conversion-proof__note {
  margin: 24px 0 0;
  padding-left: 15px;
  border-left: 2px solid var(--gold);
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.72rem;
  line-height: 1.55;
}

.case-shift {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 16%, rgba(214, 168, 74, 0.07), transparent 26rem),
    #0a0b0e;
}

.case-shift__heading {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
}

.case-shift__heading h2 {
  margin: 0;
}

.case-shift__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-shift__list .reveal > li {
  display: grid;
  min-height: 210px;
  padding: 34px 0;
  grid-template-columns: 70px minmax(170px, 0.72fr) 50px minmax(260px, 1.28fr);
  align-items: start;
  gap: clamp(18px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.case-shift__list li > span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.case-shift__list li > i {
  color: rgba(245, 213, 138, 0.5);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: normal;
}

.case-shift__list p {
  margin: 10px 0 0;
  color: rgba(245, 241, 232, 0.62);
  line-height: 1.65;
}

.case-shift__list h3 {
  max-width: 640px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
}

.case-gallery {
  background: #070707;
}

.case-gallery__grid {
  display: grid;
  margin-top: clamp(50px, 7vw, 92px);
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-gallery figure {
  margin: 0;
}

.case-gallery__item,
.case-gallery__mobile-pair {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101115;
}

.case-gallery__item--wide,
.case-gallery__mobile-pair {
  grid-column: 1 / -1;
}

.case-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top;
}

.case-gallery__item--wide img {
  max-height: 860px;
}

.case-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(5, 6, 8, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.case-gallery__mobile-pair {
  display: flex;
  min-height: 730px;
  padding: 70px clamp(28px, 8vw, 120px);
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 168, 74, 0.14), transparent 28rem),
    linear-gradient(145deg, #171614, #0d0e12 66%);
}

.case-gallery__mobile-pair img {
  width: min(30%, 260px);
  height: auto;
  object-fit: contain;
  object-position: top;
  border: 8px solid #060708;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.case-gallery__mobile-pair img:last-of-type {
  transform: translateY(38px);
}

.case-shipped {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(245, 241, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 82% 40%, rgba(54, 114, 255, 0.08), transparent 30rem),
    #090a0d;
  background-size: 76px 76px, 76px 76px, auto, auto;
}

.case-shipped__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
}

.case-shipped__grid > div > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: rgba(245, 241, 232, 0.68);
  line-height: 1.72;
}

.case-shipped__grid ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-shipped__grid li {
  display: grid;
  min-height: 78px;
  padding: 20px 0;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(245, 241, 232, 0.78);
}

.case-shipped__grid svg {
  color: var(--gold-bright);
}

.case-shipped__evidence {
  display: grid;
  margin-top: 90px;
  padding: 28px 32px;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  border: 1px solid rgba(245, 213, 138, 0.22);
  background: rgba(214, 168, 74, 0.035);
}

.case-shipped__evidence p {
  max-width: 800px;
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
}

.case-next {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 40%, rgba(214, 168, 74, 0.12), transparent 26rem),
    radial-gradient(circle at 20% 100%, rgba(54, 114, 255, 0.08), transparent 30rem),
    #070707;
}

.case-next__inner {
  max-width: 960px;
  text-align: center;
}

.case-next__inner .eyebrow,
.case-next__inner .button-row {
  justify-content: center;
}

.case-next__inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 30px auto 38px;
  color: rgba(245, 241, 232, 0.7);
  font-size: 1.08rem;
  line-height: 1.72;
}

@media (max-width: 900px) {

  .case-hero__veil {
    background:
      linear-gradient(0deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.82) 56%, rgba(3, 4, 6, 0.22) 100%),
      linear-gradient(90deg, rgba(3, 4, 6, 0.74), transparent 86%);
  }

  .case-hero__copy {
    padding-top: 120px;
  }

  .case-hero__facts,
  .case-opening__grid,
  .case-shift__heading,
  .case-shipped__grid {
    grid-template-columns: 1fr;
  }

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

  .case-hero__facts > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(245, 241, 232, 0.14);
  }

  .case-shift__heading,
  .case-shipped__grid {
    gap: 36px;
  }

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

  .case-brand-evolution {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-shift__list .reveal > li {
    grid-template-columns: 48px 1fr;
  }

  .case-shift__list li > i {
    display: none;
  }

  .case-shift__list li > div:last-child {
    grid-column: 2;
  }

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

  .case-gallery__item,
  .case-gallery__item--wide,
  .case-gallery__mobile-pair {
    grid-column: 1;
  }

  .case-gallery__item img {
    min-height: 0;
  }

  .case-gallery__mobile-pair {
    min-height: 640px;
  }

  .case-comparison__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .case-comparison__presets {
    width: 100%;
  }

  .case-comparison__presets button {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .case-hero {
    min-height: 820px;
  }

  .case-hero__art {
    top: 17%;
    right: -88%;
    width: 165%;
    opacity: 0.34;
    transform: none;
  }

  .case-hero__inner {
    padding-bottom: 22px;
  }

  .case-hero .breadcrumbs span:nth-last-child(-n + 2) {
    display: none;
  }

  .case-hero__copy {
    padding: 90px 0 38px;
  }

  .case-hero__copy h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

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

  .case-hero__facts > div,
  .case-hero__facts > div:last-child {
    grid-column: auto;
    padding: 12px 14px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  }

  .case-opening__grid {
    gap: 26px;
  }

  .case-comparison__label {
    top: 10px;
    padding: 6px 8px;
    font-size: 0.54rem;
  }

  .case-comparison__label--before {
    left: 10px;
  }

  .case-comparison__label--after {
    right: 10px;
  }

  .case-comparison__stage {
    aspect-ratio: 4 / 3;
  }

  .case-comparison__image--after {
    object-fit: contain;
    background: #f2f1ed;
  }

  .case-comparison__divider i {
    width: 52px;
    height: 52px;
  }

  .case-comparison__divider i span {
    top: -22px;
  }

  .case-comparison__toolbar {
    padding: 16px;
  }

  .case-comparison__toolbar > div:first-child {
    display: none;
  }

  .case-comparison__presets button {
    padding-inline: 8px;
    font-size: 0.6rem;
  }

  .case-comparison__guidance {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .case-brand-evolution,
  .case-conversion-proof {
    padding: 30px 20px;
  }

  .case-brand-evolution__assets {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .case-brand-evolution__arrow {
    padding: 0;
    transform: rotate(90deg);
  }

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

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

  .case-conversion-path li {
    display: grid;
    min-height: 0;
    padding: 13px 16px;
    grid-template-columns: 34px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-conversion-path li:last-child {
    border-bottom: 0;
  }

  .case-conversion-path li span {
    margin: 0;
  }

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

  .case-shift__heading {
    margin-bottom: 46px;
  }

  .case-shift__list .reveal > li {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 34px 1fr;
    gap: 10px 14px;
  }

  .case-shift__list h3 {
    font-size: 2rem;
  }

  .case-gallery figcaption {
    position: static;
    display: block;
    border: 0;
    border-top: 1px solid var(--line);
    background: #0e0f12;
  }

  .case-gallery__mobile-pair {
    min-height: 0;
    padding: 48px 16px 72px;
    gap: 12px;
  }

  .case-gallery__mobile-pair img {
    width: 43%;
    border-width: 5px;
    border-radius: 18px;
  }

  .case-gallery__mobile-pair figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .case-shipped__evidence {
    margin-top: 54px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.case-hero {
  min-height: min(840px, 94svh);
}

.case-hero__art {
  top: 14%;
  right: -3%;
  width: min(66vw, 980px);
  opacity: 0.84;
  transform: perspective(1500px) rotateY(-4deg) rotateX(1deg);
}

.case-hero__veil {
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.995) 0%, rgba(3, 4, 6, 0.96) 38%, rgba(3, 4, 6, 0.58) 66%, rgba(3, 4, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 4, 6, 0.86) 0%, transparent 48%, rgba(3, 4, 6, 0.34) 100%);
}

.case-hero__inner {
  padding-top: calc(var(--header-height) + 26px);
  padding-bottom: 30px;
  grid-template-rows: auto 1fr auto;
}

.case-hero__copy {
  max-width: 820px;
  padding: 64px 0 46px;
  align-self: center;
}

.case-hero__copy .eyebrow {
  margin-bottom: 24px;
}

.case-hero__copy h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 7.2vw, 7.5rem);
  line-height: 0.92;
}

.case-hero__copy > p:last-child {
  max-width: 650px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.case-hero__footer {
  display: flex;
  min-height: 62px;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.case-hero__footer p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-hero__footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero__footer a:hover {
  color: #fff;
}

.case-opening {
  background:
    radial-gradient(circle at 88% 36%, rgba(54, 114, 255, 0.07), transparent 28rem),
    #090a0d;
}

.case-opening__grid {
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(36px, 7vw, 110px);
}

.case-opening__grid h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.case-opening__grid > div > p {
  max-width: 780px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.case-opening__facts {
  display: grid;
  margin: clamp(44px, 6vw, 72px) 0 0;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.58);
}

.case-opening__facts > div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.case-opening__facts > div:last-child {
  border-right: 0;
}

.case-opening__facts dt,
.case-gallery figcaption span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-opening__facts dd {
  margin: 9px 0 0;
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.case-opening__facts small {
  display: block;
  margin-top: 7px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 0.68rem;
  font-family: var(--font-body);
  line-height: 1.6;
}

.case-compare-section {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.case-compare-section .section-heading,
.case-decisions .section-heading,
.case-gallery .section-heading,
.case-shipped .section-heading {
  margin-bottom: 0;
}

.case-comparison {
  margin-top: clamp(36px, 5vw, 60px);
}

.case-comparison__toolbar {
  margin-bottom: 12px;
  border-color: rgba(245, 213, 138, 0.23);
}

.case-comparison__toolbar p {
  color: rgba(245, 241, 232, 0.76);
}

.case-comparison__stage {
  aspect-ratio: 4 / 3;
  border-color: rgba(245, 213, 138, 0.44);
  background: #f2f1ed;
}

.case-comparison__image {
  object-fit: contain;
  object-position: center top;
}

.case-comparison__label {
  background: rgba(5, 6, 8, 0.9);
  color: #fff;
  font-size: 0.65rem;
}

.case-comparison__guidance {
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.66rem;
}

.case-decisions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(214, 168, 74, 0.07), transparent 28rem),
    #0a0b0e;
}

.case-decisions__grid {
  display: grid;
  margin: clamp(44px, 6vw, 72px) 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
}

.case-decisions__grid > .reveal,
.case-decisions__grid li {
  height: 100%;
}

.case-decisions__grid li {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0e12;
}

.case-decisions__media {
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #f1f1ed;
}

.case-decisions__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 420ms var(--ease-out);
}

.case-decisions__grid li:hover .case-decisions__media img {
  transform: scale(1.018);
}

.case-decisions__copy {
  position: relative;
  min-height: 225px;
  padding: 26px 26px 30px;
}

.case-decisions__copy > span {
  position: absolute;
  top: 27px;
  right: 26px;
  color: var(--system-blue);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.case-decisions__copy > p {
  margin: 0 42px 19px 0;
  color: var(--gold-bright);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-decisions__copy h3 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(1.85rem, 2.4vw, 2.75rem);
  line-height: 1.02;
}

.case-value-story {
  background:
    radial-gradient(circle at 88% 16%, rgba(214, 168, 74, 0.09), transparent 30rem),
    #070707;
}

.case-value-story .section-heading,
.case-experience .section-heading {
  margin-bottom: 0;
}

.case-value-story__stage {
  display: grid;
  margin-top: clamp(44px, 6vw, 72px);
  grid-template-columns: minmax(0, 3.2fr) minmax(250px, 0.8fr);
  border: 1px solid rgba(245, 213, 138, 0.24);
  background: #0b0c0f;
}

.case-value-story__stage figure {
  margin: 0;
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #f0f1ed;
}

.case-value-story__stage figure img {
  display: block;
  width: 100%;
  height: auto;
}

.case-value-story__stage figcaption,
.case-experience__visual figcaption {
  padding: 12px 16px;
  border-top: 1px solid rgba(23, 35, 63, 0.14);
  color: rgba(23, 35, 63, 0.66);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-value-story__summary {
  display: flex;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 48px);
  justify-content: flex-end;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(214, 168, 74, 0.13), rgba(54, 114, 255, 0.03)),
    #0c0d10;
}

.case-value-story__summary > span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-value-story__summary strong {
  display: block;
  margin: 18px 0;
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.case-value-story__summary p {
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
  font-size: 0.78rem;
  line-height: 1.65;
}

.case-value-story__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
}

.case-value-story__proof article {
  min-height: 220px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.78);
}

.case-value-story__proof article:last-child {
  border-right: 0;
}

.case-value-story__proof article > span,
.case-experience__proof article > span {
  color: var(--system-blue);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.case-value-story__proof h3,
.case-experience__proof h3 {
  margin: 36px 0 12px;
  font-size: clamp(1.55rem, 2.1vw, 2.3rem);
  line-height: 1.03;
}

.case-value-story__proof p,
.case-experience__proof p {
  margin: 0;
  color: rgba(245, 241, 232, 0.61);
  font-size: 0.76rem;
  line-height: 1.62;
}

.case-experience {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(245, 241, 232, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.018) 1px, transparent 1px),
    #090a0d;
  background-size: 72px 72px;
}

.case-experience__visuals {
  display: grid;
  margin-top: clamp(44px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 14px;
}

.case-experience__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(245, 213, 138, 0.2);
  background: #0d0e12;
}

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

.case-experience__visual--primary img {
  aspect-ratio: 16 / 9;
}

.case-experience__visual--secondary img {
  aspect-ratio: 4 / 5;
}

.case-experience__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-color: rgba(245, 241, 232, 0.16);
  background: rgba(5, 6, 8, 0.82);
  color: rgba(245, 241, 232, 0.78);
  backdrop-filter: blur(12px);
}

.case-experience__proof {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.case-experience__proof article {
  min-height: 205px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.9);
}

.case-experience__proof article:last-child {
  border-right: 0;
}

.case-system {
  background:
    linear-gradient(rgba(245, 241, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.02) 1px, transparent 1px),
    #070707;
  background-size: 72px 72px;
}

.case-system__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(245, 213, 138, 0.22);
  background: rgba(8, 9, 12, 0.96);
}

.case-system .case-brand-evolution,
.case-system .case-conversion-proof {
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
}

.case-system .case-brand-evolution {
  border-right: 1px solid var(--line);
}

.case-proof-heading > span {
  margin-bottom: 18px;
}

.case-proof-heading h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2.4rem, 3.8vw, 4.5rem);
  line-height: 0.98;
}

.case-proof-heading p {
  margin-top: 20px;
}

.case-brand-evolution__assets {
  margin-top: 34px;
}

.case-brand-evolution__language {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(23, 35, 63, 0.22);
  background: #f0f1ed;
  color: #17233f;
}

.case-brand-evolution__language > span {
  display: block;
  margin-bottom: 16px;
  color: #995638;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-brand-evolution__language strong {
  display: block;
  max-width: 480px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.case-brand-evolution__language p {
  margin: 14px 0 0;
  color: rgba(23, 35, 63, 0.68);
  font-size: 0.76rem;
}

.case-system .case-conversion-path {
  margin-top: 34px;
  grid-template-columns: 1fr;
}

.case-system .case-conversion-path li {
  display: grid;
  min-height: 52px;
  padding: 12px 15px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.case-system .case-conversion-path li:last-child {
  border-bottom: 0;
}

.case-system .case-conversion-path li span {
  margin: 0;
}

.case-conversion-proof__validation {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.case-conversion-proof__validation h3 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(1.65rem, 2.45vw, 2.7rem);
  line-height: 1.04;
}

.case-system .case-verification-list {
  margin-top: 20px;
  grid-template-columns: 1fr;
}

.case-system .case-verification-list li {
  min-height: 44px;
  padding: 8px 0;
}

.case-gallery {
  background: #090a0d;
}

.case-gallery__grid {
  margin-top: clamp(44px, 6vw, 72px);
  gap: 18px;
}

.case-gallery__grid--mobile-only {
  grid-template-columns: 1fr;
}

.case-gallery__item,
.case-gallery__mobile-pair {
  overflow: hidden;
  border-color: rgba(245, 213, 138, 0.2);
}

.case-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.case-gallery__item--wide img {
  max-height: none;
}

.case-gallery figcaption {
  position: static;
  display: grid;
  min-height: 86px;
  padding: 17px 20px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #0d0e12;
  color: #fff;
  backdrop-filter: none;
}

.case-gallery figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.case-gallery__mobile-pair {
  display: grid;
  min-height: 620px;
  padding: 56px clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.case-gallery__mobile-pair > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
}

.case-gallery__mobile-pair img {
  width: min(42%, 238px);
  height: auto;
  border: 7px solid #060708;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.case-gallery__mobile-pair img:last-of-type {
  transform: translateY(34px);
}

.case-gallery__mobile-proof {
  display: grid;
  min-height: 650px;
  padding: 56px clamp(32px, 7vw, 96px);
  grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  border: 1px solid rgba(245, 213, 138, 0.2);
  background:
    radial-gradient(circle at 22% 48%, rgba(54, 114, 255, 0.12), transparent 22rem),
    #0d0e12;
}

.case-gallery__phone {
  display: flex;
  justify-content: center;
}

.case-gallery__phone img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  border: 7px solid #060708;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.56);
}

.case-gallery__mobile-proof figcaption {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.case-gallery__mobile-proof figcaption strong {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 0.96;
}

.case-gallery__mobile-proof figcaption > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.65;
  text-transform: none;
}

.case-gallery__mobile-points {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.case-gallery__mobile-points li {
  display: flex;
  min-height: 46px;
  padding: 10px 0;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--line);
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.75rem;
  line-height: 1.45;
}

.case-gallery__mobile-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.case-gallery__mobile-points svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.case-gallery__mobile-pair figcaption {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.case-gallery__mobile-pair figcaption strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.case-gallery__mobile-pair figcaption p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.65;
  text-transform: none;
}

.case-shipped {
  background:
    radial-gradient(circle at 82% 38%, rgba(54, 114, 255, 0.08), transparent 30rem),
    #070707;
}

.case-shipped__pillars {
  display: grid;
  margin-top: clamp(44px, 6vw, 72px);
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.case-shipped__pillars article {
  min-height: 240px;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.case-shipped__pillars article:last-child {
  border-right: 0;
}

.case-shipped__pillars article > span {
  color: var(--system-blue);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.case-shipped__pillars h3 {
  margin: 42px 0 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.case-shipped__pillars p {
  max-width: 330px;
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.6;
}

.case-shipped__evidence {
  display: flex;
  min-height: 56px;
  margin: 20px 0 0;
  padding: 14px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(245, 213, 138, 0.2);
  background: rgba(214, 168, 74, 0.035);
  color: rgba(245, 241, 232, 0.66);
  font-size: 0.75rem;
  line-height: 1.5;
}

.case-shipped__evidence svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.case-next__inner {
  max-width: 1040px;
}

.case-next__inner > p:not(.eyebrow) {
  margin-bottom: 34px;
}

@media (max-width: 900px) {
  .case-hero {
    min-height: 780px;
  }

  .case-hero__art {
    top: 14%;
    right: -18%;
    width: 96%;
    opacity: 0.52;
    transform: none;
  }

  .case-hero__copy {
    max-width: 690px;
    padding: 54px 0 38px;
  }

  .case-hero__copy h1 {
    font-size: clamp(3.9rem, 10vw, 6rem);
  }

  .case-opening__grid,
  .case-system__grid {
    grid-template-columns: 1fr;
  }

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

  .case-opening__facts > div:nth-child(2) {
    border-right: 0;
  }

  .case-opening__facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .case-decisions__grid li {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .case-decisions__media {
    min-height: 310px;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .case-decisions__copy {
    min-height: 310px;
  }

  .case-value-story__stage,
  .case-experience__visuals {
    grid-template-columns: 1fr;
  }

  .case-value-story__stage figure {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-value-story__summary {
    min-height: 300px;
  }

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

  .case-value-story__proof article:nth-child(2) {
    border-right: 0;
  }

  .case-value-story__proof article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .case-experience__visual--secondary img {
    aspect-ratio: 16 / 9;
  }

  .case-gallery__mobile-proof {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .case-system .case-brand-evolution {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .case-gallery__item,
  .case-gallery__item--wide,
  .case-gallery__mobile-pair {
    grid-column: 1;
  }

  .case-gallery__mobile-pair {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .case-gallery__mobile-pair figcaption {
    text-align: center;
  }

  .case-gallery__mobile-pair figcaption p {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .case-hero {
    min-height: 760px;
  }

  .case-hero__art {
    top: 18%;
    right: -54%;
    width: 154%;
    opacity: 0.34;
  }

  .case-hero__inner {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 18px;
  }

  .case-hero__copy {
    padding: 42px 0 30px;
  }

  .case-hero__copy .eyebrow {
    margin-bottom: 18px;
  }

  .case-hero__copy h1 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: clamp(3.15rem, 14.8vw, 4.25rem);
  }

  .case-hero__copy > p:last-child {
    max-width: 350px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .case-hero__footer {
    padding: 12px 0 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .case-hero__footer p {
    font-size: 0.58rem;
    line-height: 1.55;
  }

  .case-opening__grid h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

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

  .case-opening__facts > div {
    padding: 18px 16px;
  }

  .case-opening__facts dd {
    font-size: 1.25rem;
  }

  .case-comparison__toolbar {
    min-height: 64px;
    padding: 10px;
  }

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

  .case-comparison__compare-preset {
    display: none;
  }

  .case-comparison.is-mobile-toggle .case-comparison__stage {
    cursor: default;
    touch-action: pan-y;
  }

  .case-comparison.is-mobile-toggle .case-comparison__range,
  .case-comparison.is-mobile-toggle .case-comparison__divider {
    display: none;
  }

  .case-comparison__label {
    font-size: 0.58rem;
  }

  .case-comparison__guidance {
    min-height: 36px;
    padding-top: 10px;
    font-size: 0.6rem;
  }

  .case-decisions__grid li {
    display: block;
  }

  .case-decisions__media {
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-decisions__copy {
    min-height: 215px;
    padding: 24px 22px 28px;
  }

  .case-decisions__copy h3 {
    font-size: 2rem;
  }

  .case-value-story__summary {
    min-height: 250px;
    padding: 26px 22px;
  }

  .case-value-story__proof,
  .case-experience__proof {
    grid-template-columns: 1fr;
  }

  .case-value-story__proof article,
  .case-value-story__proof article:nth-child(2),
  .case-experience__proof article {
    min-height: 0;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-value-story__proof article:last-child,
  .case-experience__proof article:last-child {
    border-bottom: 0;
  }

  .case-value-story__proof h3,
  .case-experience__proof h3 {
    margin-top: 20px;
  }

  .case-experience__visual--primary img,
  .case-experience__visual--secondary img {
    aspect-ratio: 4 / 3;
  }

  .case-system .case-brand-evolution,
  .case-system .case-conversion-proof {
    padding: 28px 20px;
  }

  .case-proof-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .case-brand-evolution__language {
    padding: 20px;
  }

  .case-brand-evolution__language strong {
    font-size: 1.8rem;
  }

  .case-gallery figcaption {
    grid-template-columns: 58px 1fr;
    padding: 15px 16px;
  }

  .case-gallery figcaption strong {
    font-size: 1.25rem;
  }

  .case-gallery__mobile-pair {
    min-height: 0;
    padding: 46px 16px 38px;
    gap: 58px;
  }

  .case-gallery__mobile-pair > div {
    gap: 10px;
  }

  .case-gallery__mobile-pair img {
    width: 44%;
    border-width: 5px;
    border-radius: 18px;
  }

  .case-gallery__mobile-pair figcaption {
    text-align: left;
  }

  .case-gallery__mobile-pair figcaption strong {
    font-size: 2.4rem;
  }

  .case-gallery__mobile-proof {
    min-height: 0;
    padding: 44px 18px 38px;
    gap: 54px;
  }

  .case-gallery__phone img {
    width: min(74vw, 260px);
    border-width: 5px;
    border-radius: 22px;
  }

  .case-gallery__mobile-proof figcaption {
    text-align: left;
  }

  .case-gallery__mobile-proof figcaption strong {
    font-size: 2.45rem;
  }

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

  .case-shipped__pillars article {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-shipped__pillars article:last-child {
    border-bottom: 0;
  }

  .case-shipped__pillars h3 {
    margin: 24px 0 10px;
    font-size: 2.7rem;
  }

  .case-shipped__evidence {
    margin-top: 16px;
    padding: 14px;
  }
}

.case-next__inner > .text-link { margin-top:24px; }

@media (max-width: 900px) {
  .case-hero__art {
    opacity: 0.5;
  }

  .case-hero__veil {
    background:
      linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.94) 55%, rgba(3, 4, 6, 0.72) 100%),
      linear-gradient(0deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.5) 50%, rgba(3, 4, 6, 0.6) 100%);
  }
}

.case-comparison__presets button { font-size: 0.75rem; min-height: 44px; }