*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --white: #ffffff;
  --paper: #f3f3f1;
  --ink: #101010;
  --muted: #6f6f73;
  --line: rgba(7, 7, 7, 0.14);
  --accent: #b8f500;
  --accent-ink: #080808;
  --hero-position: center;
  --progress: 0;
  --font:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading * {
  cursor: wait;
}

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

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

button {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.reading-progress::after {
  content: "";
  display: block;
  width: calc(var(--progress) * 100%);
  height: 100%;
  background: var(--accent);
  transform-origin: left;
}

.project-nav {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 18px;
  left: 18px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.56);
  color: var(--white);
  box-shadow: 0 18px 56px rgba(8, 8, 8, 0.14);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.project-brand {
  font-size: 20px;
  font-weight: 500;
}

.project-brand span {
  color: var(--accent);
}

.project-nav a:not(.project-brand) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 180ms ease;
}

.project-nav a:hover {
  color: var(--white);
}

.case-hero {
  position: relative;
  min-height: 700px;
  height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 5vw 58px;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.case-hero-media,
.case-hero-media::after {
  position: absolute;
  inset: 0;
}

.case-hero-media {
  z-index: -2;
  margin: 0;
}

.case-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position);
  filter: brightness(0.68) saturate(0.96);
  transform: scale(1.015);
  animation: hero-settle 1.5s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.case-hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.08) 22%, rgba(7, 7, 7, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.56), transparent 68%);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
}

.case-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.case-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: 118px;
  font-weight: 600;
  line-height: 0.86;
}

.case-hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.5;
}

.case-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
}

.case-scroll-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.case-hero-facts {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}

.case-hero-fact {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.case-hero-fact small {
  color: var(--accent);
  font-size: 10px;
}

.case-hero-fact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.case-origin {
  padding: 150px 5vw;
  background: var(--white);
}

.case-section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: start;
}

.case-section-label {
  color: #7a7a7e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-section-head h2,
.case-turn h2,
.case-process h2,
.case-value h2,
.case-launch h2 {
  margin: 0;
  font-size: 76px;
  font-weight: 600;
  line-height: 0.96;
}

.case-section-head h2 em,
.case-value h2 em {
  color: var(--accent);
  font-style: normal;
}

.case-origin-body {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 0.96fr) minmax(280px, 0.69fr);
  gap: clamp(36px, 7vw, 120px);
  margin-top: 82px;
}

.case-origin-copy {
  grid-column: 2;
}

.case-origin-copy p {
  margin: 0 0 26px;
  color: #535358;
  font-size: 20px;
  line-height: 1.64;
}

.case-origin-aside {
  align-self: start;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.case-origin-aside strong {
  display: block;
  margin-top: 24px;
  font-size: 32px;
  font-weight: 540;
  line-height: 1.08;
}

.case-origin-aside p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.case-turn {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 5vw;
  background: var(--accent);
  color: var(--accent-ink);
  isolation: isolate;
}

.case-turn::after {
  content: attr(data-word);
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.21em;
  color: rgba(255, 255, 255, 0.22);
  font-size: 30vw;
  font-weight: 700;
  line-height: 0.7;
  pointer-events: none;
}

.case-turn-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.case-turn .case-section-label {
  color: currentColor;
  opacity: 0.62;
}

.case-turn h2 {
  max-width: 1220px;
  margin-top: 40px;
  font-size: 92px;
}

.case-turn p {
  max-width: 760px;
  margin: 34px 0 0 auto;
  font-size: 22px;
  line-height: 1.48;
}

.case-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 150px);
  padding: 150px 5vw;
  background: var(--black);
  color: var(--white);
}

.case-process-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.case-process .case-section-label {
  color: rgba(255, 255, 255, 0.46);
}

.case-process h2 {
  max-width: 610px;
  margin-top: 30px;
}

.case-process-intro p {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.58;
}

.case-process-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.case-process-step {
  min-height: 330px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 30px;
  align-content: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.case-process-step > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.case-process-step h3 {
  margin: 0;
  font-size: 42px;
  font-weight: 520;
  line-height: 1;
}

.case-process-step p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.62;
}

.case-gallery {
  padding: 150px 5vw;
  background: var(--paper);
}

.case-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 76px;
}

.case-gallery-head h2 {
  max-width: 880px;
  margin: 20px 0 0;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.96;
}

.case-gallery-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.case-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dededb;
  cursor: zoom-in;
}

.case-gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.case-gallery-item:hover img {
  transform: scale(1.018);
}

.case-gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.case-gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.44);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.36;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.case-gallery-item--wide {
  grid-column: 1 / 9;
  aspect-ratio: 16 / 10;
}

.case-gallery-item--tall {
  grid-column: 9 / 13;
  aspect-ratio: 4 / 5;
}

.case-gallery-item--left {
  grid-column: 1 / 6;
  aspect-ratio: 4 / 3;
  margin-top: 18px;
}

.case-gallery-item--right {
  grid-column: 6 / 13;
  aspect-ratio: 16 / 9;
  margin-top: 18px;
}

.case-lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px 74px 64px;
  background: rgba(7, 7, 7, 0.92);
  opacity: 0;
  backdrop-filter: blur(22px) saturate(112%);
  -webkit-backdrop-filter: blur(22px) saturate(112%);
  transition: opacity 240ms ease;
}

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

.case-lightbox.is-open {
  opacity: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.case-lightbox-figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 0;
}

.case-lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.2, 0.7, 0, 1);
}

.case-lightbox.is-open .case-lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.case-lightbox-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.case-lightbox-caption {
  max-width: 760px;
}

.case-lightbox-counter {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.case-lightbox-control {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.64);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.case-lightbox-control:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(7, 7, 7, 0.9);
  transform: scale(1.04);
}

.case-lightbox-control:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.case-lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 26px;
}

.case-lightbox-prev,
.case-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.case-lightbox-prev {
  left: 16px;
}

.case-lightbox-next {
  right: 16px;
}

.case-lightbox-prev:hover,
.case-lightbox-next:hover {
  transform: translateY(-50%) scale(1.04);
}

.case-value {
  padding: 150px 5vw;
  background: var(--white);
}

.case-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(56px, 10vw, 170px);
  align-items: end;
}

.case-value h2 {
  max-width: 930px;
}

.case-value h2 em {
  display: block;
}

.case-value-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.case-value-points {
  border-top: 1px solid var(--line);
}

.case-value-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-value-point small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.case-value-point strong {
  display: block;
  font-size: 23px;
  font-weight: 540;
  line-height: 1.12;
}

.case-value-point p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.case-next {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 70px 5vw;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.case-next img,
.case-next::after {
  position: absolute;
  inset: 0;
}

.case-next img {
  z-index: -2;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(0.88);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0, 1);
}

.case-next::after {
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, transparent 18%, rgba(7, 7, 7, 0.9) 100%);
}

.case-next:hover img {
  transform: scale(1.02);
}

.case-next-copy {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
}

.case-next small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-next strong {
  display: block;
  margin-top: 16px;
  font-size: 64px;
  font-weight: 560;
  line-height: 0.94;
}

.case-next-arrow {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  font-size: 25px;
}

.case-launch {
  min-height: 74svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.case-launch h2 {
  max-width: 1020px;
}

.case-launch p {
  max-width: 650px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.55;
}

.case-launch-button {
  min-width: 284px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 750;
  text-align: left;
}

.case-launch-button small {
  max-width: 92px;
  color: currentColor;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.15;
  opacity: 0.55;
  text-transform: uppercase;
}

.case-launch-button[href] {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.case-launch-button[href]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(184, 245, 0, 0.2);
}

.case-launch-button[href]:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.case-project-cta {
  position: fixed;
  z-index: 160;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  width: min(480px, calc(100% - 36px));
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.84);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translate(-50%, 16px);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  transition:
    opacity 280ms ease,
    transform 340ms cubic-bezier(0.2, 0.7, 0, 1),
    border-color 180ms ease;
}

.case-project-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.case-project-cta:hover {
  border-color: rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -3px);
}

.case-project-cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.case-project-cta-copy {
  min-width: 0;
}

.case-project-cta-label {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-project-cta-title {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-project-cta-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 20px;
  line-height: 1;
}

body.lightbox-open .case-project-cta,
body.wc-lock .case-project-cta {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.case-disclaimer {
  margin: 0;
  padding: 28px 5vw;
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.58;
}

.case-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 850ms cubic-bezier(0.2, 0.7, 0, 1);
}

.case-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-settle {
  from {
    opacity: 0.5;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (max-width: 1050px) {
  .case-hero h1 {
    font-size: 88px;
  }

  .case-section-head h2,
  .case-turn h2,
  .case-process h2,
  .case-value h2,
  .case-launch h2 {
    font-size: 60px;
  }

  .case-origin-body {
    grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  }

  .case-origin-copy {
    grid-column: 2;
  }

  .case-origin-aside {
    grid-column: 2;
  }

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

  .case-process-intro {
    position: static;
  }

  .case-process-step {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .project-nav {
    top: 8px;
    right: 8px;
    left: 8px;
    min-height: 52px;
    grid-template-columns: 1fr auto;
    padding: 0 12px;
  }

  .project-nav a:nth-child(2) {
    display: none;
  }

  .project-brand {
    font-size: 18px;
  }

  .case-hero {
    min-height: 680px;
    height: 92svh;
    padding: 104px 18px 42px;
  }

  .case-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-hero h1 {
    font-size: 54px;
    line-height: 0.92;
  }

  .case-hero-lead {
    font-size: 17px;
  }

  .case-hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .case-hero-fact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-hero-fact span {
    font-size: 11px;
  }

  .case-origin,
  .case-turn,
  .case-process,
  .case-gallery,
  .case-value,
  .case-launch {
    padding-right: 18px;
    padding-left: 18px;
  }

  .case-origin,
  .case-process,
  .case-gallery,
  .case-value {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .case-section-head,
  .case-origin-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .case-section-head h2,
  .case-turn h2,
  .case-process h2,
  .case-value h2,
  .case-launch h2,
  .case-gallery-head h2 {
    font-size: 43px;
    line-height: 0.98;
  }

  .case-origin-body {
    margin-top: 52px;
  }

  .case-origin-copy,
  .case-origin-aside {
    grid-column: auto;
  }

  .case-origin-copy p {
    font-size: 17px;
  }

  .case-origin-aside strong {
    font-size: 27px;
  }

  .case-turn {
    min-height: 72svh;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .case-turn h2 {
    margin-top: 26px;
  }

  .case-turn p {
    font-size: 18px;
  }

  .case-turn::after {
    font-size: 54vw;
  }

  .case-process-step {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 46px 0;
  }

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

  .case-gallery-head {
    display: grid;
    gap: 28px;
    margin-bottom: 48px;
  }

  .case-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-gallery-item--wide,
  .case-gallery-item--tall,
  .case-gallery-item--left,
  .case-gallery-item--right {
    grid-column: auto;
    margin-top: 0;
  }

  .case-gallery-item--wide,
  .case-gallery-item--right {
    aspect-ratio: 4 / 3;
  }

  .case-gallery-item--tall {
    width: 78%;
    justify-self: end;
  }

  .case-gallery-item--left {
    width: 82%;
  }

  .case-lightbox {
    padding:
      calc(66px + env(safe-area-inset-top))
      10px
      calc(86px + env(safe-area-inset-bottom));
  }

  .case-lightbox-figure {
    gap: 10px;
  }

  .case-lightbox-meta {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 0 4px;
    font-size: 11px;
  }

  .case-lightbox-control {
    width: 44px;
    height: 44px;
  }

  .case-lightbox-close {
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
  }

  .case-lightbox-prev,
  .case-lightbox-next {
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: none;
  }

  .case-lightbox-prev {
    left: 12px;
  }

  .case-lightbox-next {
    right: 12px;
  }

  .case-lightbox-prev:hover,
  .case-lightbox-next:hover {
    transform: scale(1.04);
  }

  .case-value-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .case-next {
    min-height: 52svh;
    padding: 44px 18px;
  }

  .case-next strong {
    font-size: 42px;
  }

  .case-next-arrow {
    width: 48px;
    height: 48px;
  }

  .case-launch {
    min-height: 72svh;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .case-launch-button {
    width: 100%;
    min-width: 0;
  }

  .case-project-cta {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 12px;
    padding-left: 14px;
  }

  .case-project-cta-title {
    font-size: 14px;
  }

  .case-disclaimer {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .case-reveal {
    opacity: 1;
    transform: none;
  }
}
