@charset "UTF-8";

.case-detail-page .signal-field { opacity: 0.62; }

.case-detail-page main section[id] { scroll-margin-top: calc(var(--header-height) + 12px); }

.project-passport :focus-visible,
.case-journey :focus-visible,
.case-screens :focus-visible,
.case-tech :focus-visible,
.case-contact :focus-visible {
  outline-color: var(--ink);
}

.case-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(49, 86, 239, 0.055) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    linear-gradient(rgba(244, 241, 232, 0.04) 1px, transparent 1px) 0 0 / 100% 96px,
    radial-gradient(circle at 80% 49%, rgba(49, 86, 239, 0.2), transparent 30%),
    radial-gradient(circle at 11% 86%, rgba(255, 98, 69, 0.07), transparent 24%),
    var(--ink);
}

.case-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 68%, rgba(170, 182, 255, 0.045) 68% 68.15%, transparent 68.15%);
  content: "";
}

.case-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 0 clamp(20px, 2.1vw, 36px);
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 28px;
}

.case-hero__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-secondary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.case-hero__meta a { transition: color 180ms ease, transform 250ms var(--ease-out); }
.case-hero__meta a:hover { color: var(--paper); transform: translateX(-4px); }

.case-hero__copy {
  grid-row: 2;
  grid-column: 1 / 9;
  align-self: center;
  padding-block: clamp(46px, 6.5vh, 82px) 26px;
}

.case-hero__copy .eyebrow { color: var(--acid); }

.case-hero__title {
  margin: 20px 0 0;
  font-size: clamp(61px, 6.65vw, 120px);
  font-weight: 860;
  letter-spacing: -0.078em;
  line-height: 0.76;
  text-transform: uppercase;
}

.case-title-line {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
}

.case-title-line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 930ms var(--ease-out);
}

body.is-ready .case-title-line > span { transform: none; }
body.is-ready .case-title-line:nth-child(3) > span { transition-delay: 70ms; }
body.is-ready .case-title-line:nth-child(4) > span { transition-delay: 140ms; }
body.is-ready .case-title-line:nth-child(5) > span { transition-delay: 210ms; }

.case-title-line--accent { color: var(--blue); }
.case-title-line--last { color: var(--blue); }
.case-title-line--last > span > span { color: var(--coral); }

.case-hero__intro {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  max-width: 930px;
  margin-top: clamp(30px, 4.5vh, 52px);
}

.case-hero__intro > p {
  margin: 0;
  color: var(--text-secondary-dark);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.case-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }

.case-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 235px;
  min-height: 58px;
  padding: 14px 18px 14px 21px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 300ms var(--ease-out);
}

.case-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.case-button--coral { background: var(--coral); color: var(--ink); }
.case-button--coral:hover { background: var(--paper); }

.fuel-core {
  grid-row: 2;
  grid-column: 9 / -1;
  align-self: center;
  justify-self: end;
  width: min(100%, 500px);
  min-width: 315px;
  padding: 15px;
  border: 1px solid var(--line-dark);
  background: rgba(5, 7, 6, 0.58);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.36);
  transform: perspective(900px) rotateX(var(--core-rx, 0deg)) rotateY(var(--core-ry, 0deg));
  transition: transform 700ms var(--ease-out);
}

.fuel-core__meta,
.fuel-core__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-secondary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.fuel-core__meta { margin-bottom: 13px; }
.fuel-core__legend { margin-top: 13px; }
.fuel-core__legend span { display: flex; align-items: center; gap: 6px; }
.fuel-core__legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-soft); }
.fuel-core__legend span:nth-child(2) i { background: var(--coral); }
.fuel-core__legend span:nth-child(3) i { background: var(--acid); }

.fuel-core__field {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(244, 241, 232, 0.045) 1px, transparent 1px) 0 0 / 100% 16.666%,
    linear-gradient(90deg, rgba(244, 241, 232, 0.045) 1px, transparent 1px) 0 0 / 16.666% 100%,
    radial-gradient(circle, rgba(49, 86, 239, 0.16), transparent 58%);
}

.fuel-core__matrix {
  position: absolute;
  inset: 14%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 5px;
  opacity: 0.46;
  -webkit-mask-image: radial-gradient(circle, black 0 53%, transparent 72%);
  mask-image: radial-gradient(circle, black 0 53%, transparent 72%);
  animation: fuel-matrix 7s ease-in-out infinite alternate;
}

.fuel-core__matrix i {
  aspect-ratio: 1;
  border: 1px solid rgba(170, 182, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 182, 255, 0.25), transparent 60%);
}

@keyframes fuel-matrix { to { transform: scale(1.045) rotate(2deg); opacity: 0.7; } }

.fuel-core__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 255, 42, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  box-shadow: 0 0 70px rgba(49, 86, 239, 0.35), 0 0 30px rgba(199, 255, 42, 0.08);
}

.fuel-core__center strong { align-self: end; font-size: 25px; letter-spacing: -0.045em; }
.fuel-core__center span { align-self: start; color: var(--text-secondary-dark); font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: 0.15em; }

.fuel-core__orbit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(170, 182, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fuel-core__orbit b {
  position: absolute;
  display: grid;
  place-items: center;
  width: 27px;
  height: 20px;
  border: 1px solid currentColor;
  background: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.fuel-core__orbit--one { width: 76%; aspect-ratio: 1; animation: fuel-orbit 18s linear infinite; }
.fuel-core__orbit--one b { top: 8%; left: 13%; color: var(--blue-soft); }
.fuel-core__orbit--two { width: 57%; aspect-ratio: 1; border-color: rgba(255, 98, 69, 0.3); animation: fuel-orbit 12s linear infinite reverse; }
.fuel-core__orbit--two b { right: -1%; bottom: 24%; color: var(--coral); }
.fuel-core__orbit--three { width: 35%; aspect-ratio: 1; border-color: rgba(199, 255, 42, 0.25); animation: fuel-orbit 9s linear infinite; }
.fuel-core__orbit--three b { right: 2%; bottom: 0; color: var(--acid); }

@keyframes fuel-orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

.case-hero__facts {
  grid-row: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.case-hero__facts > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 72px;
  padding: 13px 24px;
  border-right: 1px solid var(--line-dark);
}

.case-hero__facts > div:first-child { padding-left: 0; }
.case-hero__facts > div:last-child { padding-right: 0; border-right: 0; }
.case-hero__facts span { color: var(--text-secondary-dark); font-size: 10px; }
.case-hero__facts strong { font-size: 12px; letter-spacing: 0.02em; }

.case-stage {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 11vw, 190px) clamp(95px, 9vw, 150px);
  background:
    linear-gradient(90deg, rgba(244, 241, 232, 0.05) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--cobalt-night);
}

.case-stage::after {
  position: absolute;
  top: 11%;
  right: -13vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(170, 182, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7vw rgba(49, 86, 239, 0.05), inset 0 0 0 14vw rgba(255, 98, 69, 0.025);
  content: "";
}

.case-stage__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2vw;
  overflow: hidden;
  color: rgba(170, 182, 255, 0.035);
  font-size: clamp(130px, 19vw, 340px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  pointer-events: none;
}

.case-stage__backdrop span:last-child { writing-mode: vertical-rl; font-size: 0.18em; letter-spacing: 0.05em; }
.case-stage__inner { position: relative; z-index: 1; }

.case-stage__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
  color: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.browser-frame {
  --parallax-y: 0px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.24);
  background: var(--ink);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
  transform: perspective(1600px) translateY(var(--parallax-y)) rotateX(1.4deg);
  transform-origin: center top;
  will-change: transform;
}

.browser-frame__bar {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  min-height: 50px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-secondary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.browser-frame__bar > span { display: flex; gap: 6px; }
.browser-frame__bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.browser-frame__bar i:nth-child(2) { background: var(--paper-muted); }
.browser-frame__bar i:nth-child(3) { background: var(--acid); }
.browser-frame__bar b { justify-self: center; font-weight: 500; }
.browser-frame__bar em { justify-self: end; color: var(--acid); font-style: normal; }
.browser-frame picture,
.language-compare__screen picture,
.case-gallery__item picture { display: block; line-height: 0; }
.browser-frame img { display: block; width: 100%; height: auto; }

.case-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid rgba(244, 241, 232, 0.18);
  border-bottom: 1px solid rgba(244, 241, 232, 0.18);
  border-left: 1px solid rgba(244, 241, 232, 0.18);
}

.case-scale > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  min-height: 125px;
  padding: 22px;
  border-right: 1px solid rgba(244, 241, 232, 0.18);
}

.case-scale > div:last-child { border-right: 0; }
.case-scale strong { color: var(--paper); font-size: clamp(28px, 3vw, 50px); letter-spacing: -0.06em; line-height: 0.9; }
.case-scale span { color: var(--blue-soft); font-size: 10px; line-height: 1.45; }

.project-passport {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}

.project-passport__head {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr 0.8fr;
  gap: clamp(34px, 5vw, 88px);
  align-items: end;
}

.project-passport__head .eyebrow { align-self: start; color: var(--blue-deep); }

.project-passport__title {
  margin: 0;
  font-size: clamp(50px, 5.6vw, 102px);
  font-weight: 840;
  letter-spacing: -0.071em;
  line-height: 0.87;
}

.project-passport__title em { color: var(--blue); font-style: normal; }

.project-passport__lead { margin: 0; font-size: clamp(15px, 1.1vw, 18px); line-height: 1.57; }

.project-passport__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(72px, 8vw, 135px) 0 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.project-passport__grid > div { min-height: 130px; padding: 24px; border-right: 1px solid var(--line-light); }
.project-passport__grid > div:first-child { padding-left: 0; }
.project-passport__grid > div:last-child { padding-right: 0; border-right: 0; }
.project-passport__grid dt { margin-bottom: 20px; color: var(--text-secondary-light); font-size: 10px; }
.project-passport__grid dd { margin: 0; font-size: 14px; font-weight: 650; line-height: 1.45; }
.project-passport__grid dd i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px rgba(199, 255, 42, 0.7); }

.project-challenge {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: clamp(55px, 9vw, 150px);
  margin-top: clamp(90px, 10vw, 170px);
}

.project-challenge__statement { position: sticky; top: 100px; align-self: start; }
.project-challenge__statement > span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.13em; }
.project-challenge__statement p { margin: 35px 0 0; font-size: clamp(31px, 3.1vw, 54px); font-weight: 760; letter-spacing: -0.055em; line-height: 1.03; }
.project-challenge__statement em { color: var(--blue); font-style: normal; }

.project-challenge__cards { border-top: 1px solid var(--line-light); }
.project-challenge__cards article { display: grid; grid-template-columns: 0.45fr 1.15fr 1.2fr; gap: 28px; align-items: baseline; min-height: 180px; padding: 35px 0; border-bottom: 1px solid var(--line-light); }
.project-challenge__cards span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }
.project-challenge__cards h3 { margin: 0; font-size: clamp(24px, 2.1vw, 36px); letter-spacing: -0.045em; line-height: 1; }
.project-challenge__cards p { margin: 0; color: #404641; font-size: 14px; line-height: 1.6; }

.project-proof {
  display: grid;
  grid-template-columns: 0.5fr 1.4fr 0.8fr;
  gap: 30px;
  align-items: center;
  margin-top: clamp(85px, 9vw, 150px);
  padding: 27px 30px;
  background: var(--ink);
  color: var(--paper);
}

.project-proof > span { color: var(--blue-soft); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }
.project-proof p { margin: 0; color: var(--text-secondary-dark); font-size: 13px; line-height: 1.55; }
.project-proof > div { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.project-proof a { color: var(--blue-soft); font-size: 11px; font-weight: 700; }
.project-proof a:hover { color: var(--paper); }

.case-architecture {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 13vw, 230px);
  background:
    radial-gradient(circle at 68% 45%, rgba(49, 86, 239, 0.2), transparent 36%),
    var(--ink);
}

.case-architecture::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(244, 241, 232, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  content: "";
}

.case-architecture .grid-shell { position: relative; z-index: 1; }
.case-architecture__head { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 60px; align-items: end; }
.case-architecture__head .eyebrow { color: var(--acid); }
.case-architecture__title { margin: 23px 0 0; font-size: clamp(55px, 6.5vw, 116px); font-weight: 850; letter-spacing: -0.074em; line-height: 0.83; text-transform: uppercase; }
.case-architecture__title em { color: var(--blue); font-style: normal; }
.case-architecture__lead { margin: 0; color: var(--text-secondary-dark); font-size: 16px; line-height: 1.6; }

.case-map {
  display: grid;
  grid-template-columns: minmax(520px, 1.35fr) minmax(330px, 0.65fr);
  min-height: 690px;
  margin-top: clamp(75px, 8vw, 140px);
  border: 1px solid var(--line-dark);
  background: rgba(5, 7, 6, 0.56);
}

.case-map__visual { position: relative; min-height: 690px; overflow: hidden; border-right: 1px solid var(--line-dark); }
.case-map__visual::before { position: absolute; inset: 9%; border: 1px solid rgba(170, 182, 255, 0.12); border-radius: 50%; content: ""; }
.case-map__visual svg { position: absolute; top: 50%; left: 50%; width: min(88%, 680px); transform: translate(-50%, -50%); fill: none; stroke: rgba(170, 182, 255, 0.26); stroke-width: 1; }

.case-map__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 145px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 255, 42, 0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  box-shadow: 0 0 70px rgba(49, 86, 239, 0.3);
}

.case-map__core strong { align-self: end; font-size: 30px; line-height: 1; }
.case-map__core span { align-self: start; color: var(--text-secondary-dark); font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: 0.13em; }
.case-map__core i { position: absolute; top: 14px; right: 19px; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }

.case-map__node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 94px;
  aspect-ratio: 1;
  border: 1px solid rgba(170, 182, 255, 0.45);
  border-radius: 50%;
  background: var(--ink);
  color: var(--blue-soft);
  cursor: pointer;
  transition: transform 350ms var(--ease-out), background 220ms ease, color 220ms ease, box-shadow 250ms ease;
}

.case-map__node::after { position: absolute; inset: -9px; border: 1px solid transparent; border-radius: 50%; content: ""; transition: border-color 220ms ease; }
.case-map__node span { align-self: end; font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; }
.case-map__node b { align-self: start; font-size: 12px; letter-spacing: 0.08em; }
.case-map__node:hover { transform: scale(1.08); }
.case-map__node.is-active { border-color: var(--coral); background: var(--coral); color: var(--ink); box-shadow: 0 0 42px rgba(255, 98, 69, 0.25); }
.case-map__node.is-active::after { border-color: rgba(255, 98, 69, 0.35); }
.case-map__node--one { top: 13%; left: 17%; }
.case-map__node--two { top: 19%; right: 9%; }
.case-map__node--three { right: 20%; bottom: 10%; }

.case-map__panel { display: flex; flex-direction: column; min-width: 0; padding: clamp(30px, 4vw, 65px); }
.case-map__panel-meta { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line-dark); color: var(--blue-soft); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.12em; }
.case-map__panel h3 { margin: auto 0 28px; font-size: clamp(35px, 3.6vw, 65px); letter-spacing: -0.061em; line-height: 0.95; }
.case-map__panel > p { margin: 0 0 27px; color: var(--text-secondary-dark); font-size: 15px; line-height: 1.6; }
.case-map__tours { display: grid; gap: 7px; padding: 17px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-map__tours strong { color: var(--coral); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.case-map__tours span { color: var(--paper-muted); font-size: 12px; line-height: 1.45; }
.case-map__route { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 25px; color: var(--paper-muted); font-size: 10px; text-transform: uppercase; }
.case-map__route i { color: var(--coral); font-style: normal; }
.case-map__status { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--text-secondary-dark); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; }
.case-map__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }

.case-journey {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  color: var(--ink);
}

.case-journey::after { position: absolute; top: -24vw; right: -12vw; width: 50vw; aspect-ratio: 1; border: 1px solid rgba(49, 86, 239, 0.14); border-radius: 50%; box-shadow: inset 0 0 0 8vw rgba(49, 86, 239, 0.035); content: ""; }
.case-journey .grid-shell { position: relative; z-index: 1; }
.case-journey__head { display: grid; grid-template-columns: 0.72fr 2fr; gap: 60px; align-items: start; }
.case-journey__head .eyebrow { color: var(--blue-deep); }
.case-journey__title { margin: 0; font-size: clamp(54px, 6.3vw, 112px); font-weight: 850; letter-spacing: -0.074em; line-height: 0.84; text-transform: uppercase; }
.case-journey__title em { color: var(--blue); font-style: normal; }

.case-journey__track { --process-progress: 0; position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(85px, 9vw, 150px); border-top: 1px solid var(--line-light); }
.case-journey__line { position: absolute; top: -2px; right: 0; left: 0; height: 3px; overflow: hidden; }
.case-journey__line i { display: block; width: 100%; height: 100%; transform: scaleX(var(--process-progress)); transform-origin: left; background: linear-gradient(90deg, var(--blue), var(--coral)); }

.case-journey__step { position: relative; min-height: 500px; padding: 28px clamp(24px, 3vw, 52px) 30px; border-right: 1px solid var(--line-light); }
.case-journey__step:first-of-type { padding-left: 0; }
.case-journey__step:last-child { padding-right: 0; border-right: 0; }
.case-journey__step > span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 700; }
.case-journey__step h3 { margin: 56px 0 22px; font-size: clamp(32px, 3vw, 50px); letter-spacing: -0.055em; line-height: 0.95; }
.case-journey__step p { max-width: 380px; margin: 0; color: #3f4540; font-size: 14px; line-height: 1.58; }
.case-journey__step > b { position: absolute; bottom: 32px; left: inherit; color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }

.case-journey__glyph { position: relative; width: 170px; height: 90px; margin-top: 70px; }
.case-journey__glyph i { position: absolute; top: 50%; width: 38px; aspect-ratio: 1; border: 1px solid var(--blue); border-radius: 50%; transform: translateY(-50%); background: var(--sand); }
.case-journey__glyph i:nth-child(1) { left: 0; }
.case-journey__glyph i:nth-child(2) { left: 50%; transform: translate(-50%, -50%); }
.case-journey__glyph i:nth-child(3) { right: 0; }
.case-journey__glyph::before { position: absolute; top: 50%; right: 18px; left: 18px; height: 1px; background: var(--blue); content: ""; }
.case-journey__glyph i:nth-child(2)::after { position: absolute; inset: 11px; border-radius: 50%; background: var(--coral); content: ""; }
.case-journey__glyph--focus i:nth-child(1), .case-journey__glyph--focus i:nth-child(3) { opacity: 0.35; }
.case-journey__glyph--focus i:nth-child(2) { border-width: 4px; }
.case-journey__glyph--deep i { transform: translateY(-50%) scale(.65); }
.case-journey__glyph--deep i:nth-child(2) { transform: translate(-50%, -50%) scale(1.25); }

.case-dna {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 13vw, 230px);
  background: var(--surface-navy);
}

.case-dna::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(49, 86, 239, 0.11), transparent 42%), linear-gradient(90deg, transparent 69%, rgba(255, 98, 69, 0.035) 69% 70%, transparent 70%); content: ""; }
.case-dna .grid-shell { position: relative; z-index: 1; }
.case-dna__head { display: grid; grid-template-columns: 0.7fr 2fr; gap: 60px; }
.case-dna__head .eyebrow { color: var(--coral); }
.case-dna__title { margin: 0; font-size: clamp(60px, 7vw, 126px); font-weight: 850; letter-spacing: -0.078em; line-height: 0.8; text-transform: uppercase; }
.case-dna__title em { color: var(--blue); font-style: normal; }

.case-dna__principles { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(80px, 9vw, 155px); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-dna__principles article { display: flex; flex-direction: column; min-height: 310px; padding: 24px; border-right: 1px solid var(--line-dark); }
.case-dna__principles article:first-child { padding-left: 0; }
.case-dna__principles article:last-child { padding-right: 0; border-right: 0; }
.case-dna__principles span { color: var(--blue-soft); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }
.case-dna__principles strong { margin-top: auto; font-size: clamp(26px, 2.6vw, 45px); letter-spacing: -0.05em; line-height: 0.95; }
.case-dna__principles p { margin: 22px 0 0; color: var(--text-secondary-dark); font-size: 13px; line-height: 1.55; }

.language-compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 70px); align-items: start; margin-top: clamp(100px, 11vw, 180px); }
.language-compare__screen { margin: 0; }
.language-compare__screen--offset { margin-top: 16vw; }
.language-compare__screen figcaption { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; color: var(--paper-muted); }
.language-compare__screen figcaption span { color: var(--blue-soft); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; }
.language-compare__screen figcaption strong { font-size: 12px; }
.language-compare__screen img { display: block; width: 100%; height: auto; border: 1px solid var(--line-dark); box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28); }

.case-screens { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.case-screens__head { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.case-screens__head .eyebrow { color: var(--blue-deep); }
.case-screens__title { margin: 24px 0 0; font-size: clamp(59px, 7vw, 126px); font-weight: 850; letter-spacing: -0.077em; line-height: 0.8; text-transform: uppercase; }
.case-screens__title em { color: var(--blue); font-style: normal; }

.case-screens__control { display: flex; align-items: center; gap: 25px; }
.case-screens__control > span { font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.case-screens__control > span b { color: var(--blue-deep); font-size: 20px; }
.case-screens__control > div { display: flex; }
.case-screens__control button { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid var(--line-light); background: transparent; color: var(--ink); cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.case-screens__control button + button { border-left: 0; }
.case-screens__control button:hover { background: var(--blue); color: var(--paper); }

.case-gallery {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  margin-top: clamp(75px, 8vw, 135px);
  padding: 0 var(--gutter) 35px;
  overflow-x: auto;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.case-gallery::-webkit-scrollbar { display: none; }

.case-gallery__item {
  flex: 0 0 min(82vw, 1180px);
  margin: 0;
  opacity: 0.46;
  scroll-snap-align: center;
  transition: opacity 300ms ease, transform 500ms var(--ease-out);
}

.case-gallery__item.is-current { opacity: 1; }
.case-gallery__meta { display: flex; justify-content: space-between; gap: 25px; margin-bottom: 13px; }
.case-gallery__meta span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }
.case-gallery__meta strong { max-width: 70%; font-size: 12px; text-align: right; }

.case-gallery__item > a { position: relative; display: block; overflow: hidden; border: 1px solid var(--line-light); background: var(--ink); }
.case-gallery__item img { display: block; width: 100%; height: auto; transition: transform 750ms var(--ease-out), opacity 350ms ease; }
.case-gallery__item > a > span { position: absolute; right: 18px; bottom: 18px; padding: 11px 13px; transform: translateY(8px); background: var(--coral); color: var(--ink); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 700; opacity: 0; transition: opacity 250ms ease, transform 350ms var(--ease-out); }
.case-gallery__item > a:hover img { transform: scale(1.018); opacity: 0.82; }
.case-gallery__item > a:hover > span { transform: none; opacity: 1; }

.case-gallery__progress { height: 3px; overflow: hidden; background: rgba(5, 7, 6, 0.1); }
.case-gallery__progress span { display: block; width: 20%; height: 100%; transform: scaleX(1); transform-origin: left; background: var(--blue); transition: width 400ms var(--ease-out); }

.case-tech { position: relative; overflow: hidden; background: var(--sand); color: var(--ink); }
.case-tech::after { position: absolute; right: -12vw; bottom: -25vw; width: 52vw; aspect-ratio: 1; border: 1px solid rgba(49, 86, 239, 0.14); border-radius: 50%; box-shadow: inset 0 0 0 9vw rgba(255, 98, 69, 0.035); content: ""; }
.case-tech .grid-shell { position: relative; z-index: 1; }
.case-tech__head { display: grid; grid-template-columns: 0.65fr 1.45fr 0.9fr; gap: clamp(35px, 5vw, 85px); align-items: end; }
.case-tech__head .eyebrow { align-self: start; color: var(--blue-deep); }
.case-tech__title { margin: 0; font-size: clamp(50px, 5.8vw, 104px); font-weight: 850; letter-spacing: -0.073em; line-height: 0.85; text-transform: uppercase; }
.case-tech__title em { color: var(--blue); font-style: normal; }
.case-tech__lead { margin: 0; font-size: 15px; line-height: 1.6; }

.case-tech__diagram { display: grid; grid-template-columns: 1fr 0.3fr 1fr 0.3fr 1fr; align-items: stretch; margin-top: clamp(80px, 9vw, 145px); }
.case-tech__node { display: flex; flex-direction: column; min-height: 310px; padding: 27px; border: 1px solid var(--line-light); }
.case-tech__node span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.11em; }
.case-tech__node strong { margin-top: auto; font-size: clamp(28px, 2.6vw, 44px); letter-spacing: -0.055em; line-height: 0.97; }
.case-tech__node p { margin: 19px 0 0; font-size: 13px; }
.case-tech__node--core { border-color: var(--blue); background: var(--blue); color: var(--paper); }
.case-tech__node--core span { color: var(--paper); }
.case-tech__node--output { background: var(--ink); color: var(--paper); }
.case-tech__node--output span { color: var(--blue-soft); }

.case-tech__flow { position: relative; display: grid; place-items: center; min-width: 80px; }
.case-tech__flow i { position: absolute; right: 0; left: 0; height: 1px; background: var(--blue); }
.case-tech__flow i::after { position: absolute; top: -4px; right: 0; width: 8px; height: 8px; border-top: 1px solid var(--blue); border-right: 1px solid var(--blue); transform: rotate(45deg); content: ""; }
.case-tech__flow b { position: relative; padding: 5px; background: var(--sand); color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: 0.1em; }

.case-tech__facts { display: grid; grid-template-columns: 0.4fr 1.4fr 0.7fr; gap: 30px; align-items: center; margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.case-tech__facts > span { color: var(--blue-deep); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.12em; }
.case-tech__facts ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.case-tech__facts li { padding: 7px 10px; border: 1px solid var(--line-light); font-size: 10px; }
.case-tech__facts p { margin: 0; color: var(--text-secondary-light); font-size: 10px; line-height: 1.5; }

.case-outcome { position: relative; overflow: hidden; padding-block: clamp(140px, 13vw, 230px); background: var(--ink); }
.case-outcome::after { position: absolute; top: -18vw; right: -12vw; width: 55vw; aspect-ratio: 1; border: 1px solid rgba(49, 86, 239, 0.2); border-radius: 50%; box-shadow: inset 0 0 0 10vw rgba(49, 86, 239, 0.035); content: ""; }
.case-outcome .grid-shell { position: relative; z-index: 1; }
.case-outcome__head { display: grid; grid-template-columns: 0.68fr 2fr; gap: 65px; }
.case-outcome__head .eyebrow { color: var(--acid); }
.case-outcome__title { margin: 0; font-size: clamp(57px, 7.2vw, 130px); font-weight: 850; letter-spacing: -0.078em; line-height: 0.8; text-transform: uppercase; }
.case-outcome__title em { color: var(--blue); font-style: normal; }

.case-outcome__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(80px, 9vw, 155px); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-outcome__grid article { display: flex; flex-direction: column; min-height: 380px; padding: 27px; border-right: 1px solid var(--line-dark); }
.case-outcome__grid article:first-child { padding-left: 0; }
.case-outcome__grid article:last-child { padding-right: 0; border-right: 0; }
.case-outcome__grid span { color: var(--coral); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.case-outcome__grid h3 { margin: auto 0 23px; font-size: clamp(31px, 3.2vw, 54px); letter-spacing: -0.057em; line-height: 0.95; }
.case-outcome__grid p { margin: 0; color: var(--text-secondary-dark); font-size: 14px; line-height: 1.55; }

.case-outcome__note { max-width: 920px; margin: 45px 0 0 auto; color: var(--paper-muted); font-size: clamp(17px, 1.5vw, 23px); line-height: 1.5; }

.case-contact { position: relative; overflow: hidden; background: var(--blue); color: var(--paper); }
.case-contact::after { position: absolute; right: -19vw; bottom: -38vw; width: 77vw; aspect-ratio: 1; border: 1px solid rgba(244, 241, 232, 0.24); border-radius: 50%; box-shadow: inset 0 0 0 10vw rgba(5, 7, 6, 0.035), inset 0 0 0 21vw rgba(255, 98, 69, 0.11); content: ""; }
.case-contact__grid { position: relative; z-index: 1; min-height: 105svh; padding-top: clamp(125px, 13vw, 220px); padding-bottom: 70px; }
.case-contact .eyebrow { color: var(--paper); }
.case-contact__title { max-width: 1200px; margin: 40px 0 0; font-size: clamp(65px, 9.3vw, 168px); font-weight: 860; letter-spacing: -0.08em; line-height: 0.77; text-transform: uppercase; }
.case-contact__title span { color: var(--coral-soft); }
.case-contact__bottom { display: grid; grid-template-columns: minmax(280px, 560px) 250px; justify-content: end; align-items: center; gap: clamp(40px, 9vw, 150px); margin-top: clamp(70px, 9vw, 145px); }
.case-contact__bottom > p { margin: 0; font-size: clamp(16px, 1.4vw, 22px); line-height: 1.58; }

.case-contact__orb { position: relative; display: flex; align-items: center; justify-content: center; width: 230px; aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: var(--coral); color: var(--ink); transition: color 350ms ease, box-shadow 350ms ease; }
.case-contact__orb::before { position: absolute; inset: 0; border-radius: 50%; transform: translateY(100%); background: var(--ink); content: ""; transition: transform 500ms var(--ease-out); }
.case-contact__orb span, .case-contact__orb svg { position: relative; z-index: 1; }
.case-contact__orb span { font-size: 18px; font-weight: 750; line-height: 1.1; text-transform: uppercase; }
.case-contact__orb svg { position: absolute; top: 32px; right: 32px; width: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.case-contact__orb:hover { color: var(--paper); box-shadow: 0 30px 80px rgba(5, 7, 6, 0.25); }
.case-contact__orb:hover::before { transform: none; }

.case-contact__next { display: grid; grid-template-columns: 0.45fr 1.55fr; gap: 30px; align-items: center; margin-top: clamp(85px, 10vw, 160px); padding-top: 24px; border-top: 1px solid rgba(244, 241, 232, 0.32); }
.case-contact__next > span { font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: 0.12em; }
.case-contact__next a { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.case-contact__next strong { font-size: clamp(25px, 3.5vw, 58px); letter-spacing: -0.055em; line-height: 1; }
.case-contact__next i { display: grid; place-items: center; width: 55px; height: 55px; border: 1px solid rgba(244, 241, 232, 0.5); border-radius: 50%; font-style: normal; transition: background 180ms ease, color 180ms ease, transform 300ms var(--ease-out); }
.case-contact__next a:hover i { transform: translateX(6px); background: var(--paper); color: var(--blue); }

@media (max-width: 1180px) {
  .case-hero__copy { grid-column: 1 / 9; }
  .case-hero__intro { grid-template-columns: 1fr; }
  .case-hero__actions { flex-direction: row; align-items: center; }
  .fuel-core { grid-column: 9 / -1; }
  .case-scale > div { align-items: flex-start; flex-direction: column; }
  .project-passport__head { grid-template-columns: 0.6fr 1.4fr; }
  .project-passport__lead { grid-column: 2; }
  .project-challenge { grid-template-columns: 0.7fr 1.7fr; gap: 55px; }
  .project-challenge__cards article { grid-template-columns: 0.35fr 1fr; }
  .project-challenge__cards p { grid-column: 2; }
  .project-proof { grid-template-columns: 0.45fr 1fr; }
  .project-proof > div { grid-column: 2; align-items: flex-start; }
  .case-map { grid-template-columns: minmax(500px, 1.2fr) minmax(300px, .8fr); }
  .case-dna__principles { grid-template-columns: repeat(2, 1fr); }
  .case-dna__principles article { min-height: 280px; border-bottom: 1px solid var(--line-dark); }
  .case-dna__principles article:nth-child(2) { padding-right: 0; border-right: 0; }
  .case-dna__principles article:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .case-dna__principles article:nth-child(4) { border-bottom: 0; }
  .case-tech__head { grid-template-columns: 0.55fr 1.45fr; }
  .case-tech__lead { grid-column: 2; }
}

@media (max-width: 900px) {
  .case-hero__grid { grid-template-rows: auto auto auto auto; }
  .case-hero__copy { grid-row: 2; grid-column: 1 / -1; }
  .fuel-core { grid-row: 3; grid-column: 1 / -1; justify-self: center; width: min(75vw, 550px); margin-block: 35px 70px; }
  .case-hero__facts { grid-row: 4; grid-template-columns: repeat(2, 1fr); }
  .case-hero__facts > div:nth-child(2) { border-right: 0; }
  .case-hero__facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .case-scale { grid-template-columns: repeat(2, 1fr); }
  .case-scale > div:nth-child(2) { border-right: 0; }
  .case-scale > div:nth-child(-n+2) { border-bottom: 1px solid rgba(244, 241, 232, 0.18); }
  .project-challenge { grid-template-columns: 1fr; }
  .project-challenge__statement { position: static; }
  .project-challenge__statement p { max-width: 660px; }
  .case-architecture__head { grid-template-columns: minmax(0, 1fr); }
  .case-architecture__lead { max-width: 620px; }
  .case-map { grid-template-columns: 1fr; }
  .case-map__visual { min-height: 620px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .case-map__panel { min-height: 420px; }
  .case-journey__head { grid-template-columns: 1fr; }
  .case-journey__track { grid-template-columns: 1fr; }
  .case-journey__line { top: 0; bottom: 0; left: 0; width: 3px; height: auto; }
  .case-journey__line i { width: 100%; height: 100%; transform: scaleY(var(--process-progress)); transform-origin: top; }
  .case-journey__step,
  .case-journey__step:first-of-type,
  .case-journey__step:last-child { min-height: 390px; padding: 32px 0 30px 40px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .case-journey__step:last-child { border-bottom: 0; }
  .case-dna__head { grid-template-columns: 1fr; }
  .language-compare { grid-template-columns: 1fr; }
  .language-compare__screen--offset { margin-top: 50px; }
  .case-gallery__item { flex-basis: 88vw; }
  .case-tech__diagram { grid-template-columns: 1fr; }
  .case-tech__flow { min-height: 100px; }
  .case-tech__flow i { top: 0; bottom: 0; left: 50%; width: 1px; height: auto; }
  .case-tech__flow i::after { top: auto; right: -4px; bottom: 0; transform: rotate(135deg); }
  .case-tech__flow b { transform: rotate(0); }
  .case-tech__facts { grid-template-columns: 1fr; }
  .case-outcome__head { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .case-hero__meta span:last-child { display: none; }
  .case-hero__title { font-size: clamp(51px, 14.7vw, 88px); }
  .case-hero__intro { width: 94%; }
  .case-hero__actions { flex-direction: column; align-items: flex-start; }
  .case-button { width: 100%; }
  .fuel-core { width: min(100%, 520px); min-width: 0; }
  .case-hero__facts { grid-template-columns: 1fr; }
  .case-hero__facts > div,
  .case-hero__facts > div:first-child,
  .case-hero__facts > div:last-child { min-height: 58px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .case-hero__facts > div:last-child { border-bottom: 0; }
  .browser-frame__bar { grid-template-columns: 1fr 1fr; }
  .browser-frame__bar b { justify-self: end; }
  .browser-frame__bar em { display: none; }
  .case-scale { grid-template-columns: 1fr; }
  .case-scale > div { min-height: 95px; border-right: 0; border-bottom: 1px solid rgba(244, 241, 232, 0.18); }
  .case-scale > div:last-child { border-bottom: 0; }
  .project-passport__head { grid-template-columns: 1fr; }
  .project-passport__lead { grid-column: 1; }
  .project-passport__grid { grid-template-columns: 1fr; }
  .project-passport__grid > div,
  .project-passport__grid > div:first-child,
  .project-passport__grid > div:last-child { min-height: 92px; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .project-passport__grid > div:last-child { border-bottom: 0; }
  .project-challenge__cards article { grid-template-columns: 1fr; min-height: 0; }
  .project-challenge__cards p { grid-column: 1; }
  .project-proof { grid-template-columns: 1fr; padding: 23px; }
  .project-proof > div { grid-column: 1; }
  .case-map__visual { min-height: 500px; }
  .case-map__node { width: 76px; }
  .case-map__node--one { top: 10%; left: 9%; }
  .case-map__node--two { top: 12%; right: 5%; }
  .case-map__node--three { right: 11%; bottom: 9%; }
  .case-map__core { width: 120px; }
  .case-dna__principles { grid-template-columns: 1fr; }
  .case-dna__principles article,
  .case-dna__principles article:nth-child(n) { min-height: 250px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .case-dna__principles article:last-child { border-bottom: 0; }
  .case-screens__head { align-items: flex-start; flex-direction: column; }
  .case-screens__control { width: 100%; justify-content: space-between; }
  .case-gallery__item { flex-basis: calc(100vw - 36px); }
  .case-gallery__meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .case-gallery__meta strong { max-width: 100%; text-align: left; }
  .case-tech__head { grid-template-columns: minmax(0, 1fr); }
  .case-tech__lead { grid-column: 1; }
  .case-tech__node { min-height: 260px; }
  .case-outcome__grid { grid-template-columns: 1fr; }
  .case-outcome__grid article,
  .case-outcome__grid article:first-child,
  .case-outcome__grid article:last-child { min-height: 310px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .case-outcome__grid article:last-child { border-bottom: 0; }
  .case-contact__bottom { grid-template-columns: 1fr; justify-items: start; }
  .case-contact__orb { width: 205px; }
  .case-contact__next { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .case-hero__grid { padding-top: calc(var(--header-height) + 20px); }
  .case-hero__copy { padding-top: 50px; }
  .case-hero__title { font-size: clamp(46px, 13.8vw, 70px); }
  .case-hero__intro { margin-top: 28px; }
  .fuel-core { padding: 10px; }
  .fuel-core__meta, .fuel-core__legend { font-size: 7px; }
  .fuel-core__center { width: 96px; }
  .fuel-core__orbit b { width: 24px; height: 18px; }
  .case-stage { padding-top: 90px; }
  .browser-frame__bar { min-height: 42px; padding-inline: 12px; }
  .project-passport__title { font-size: 48px; }
  .project-challenge__statement p { font-size: 34px; }
  .case-architecture__title,
  .case-journey__title,
  .case-dna__title,
  .case-screens__title,
  .case-tech__title,
  .case-outcome__title { font-size: clamp(48px, 14vw, 73px); }
  .case-map__visual { min-height: 440px; }
  .case-map__node { width: 68px; }
  .case-map__node b { font-size: 10px; }
  .case-map__panel { min-height: 390px; padding: 25px 20px; }
  .case-map__panel h3 { font-size: 38px; }
  .case-map__route { gap: 6px; font-size: 8px; }
  .case-journey__glyph { margin-top: 50px; }
  .case-gallery { padding-inline: 18px; }
  .case-gallery__item { flex-basis: calc(100vw - 36px); }
  .case-gallery__item > a > span { display: none; }
  .case-contact__grid { min-height: 95svh; }
  .case-contact__title { font-size: clamp(51px, 14.5vw, 75px); }
  .case-contact__next strong { font-size: 29px; }
}

@media (forced-colors: active) {
  .fuel-core,
  .case-stage__backdrop,
  .case-stage::after,
  .case-journey::after,
  .case-tech::after,
  .case-outcome::after,
  .case-contact::after { display: none; }
  .project-passport__title em,
  .case-architecture__title em,
  .case-journey__title em,
  .case-dna__title em,
  .case-screens__title em,
  .case-tech__title em,
  .case-outcome__title em { color: CanvasText; }
}

@media (prefers-reduced-motion: reduce) {
  .case-title-line > span { transform: none; }
  .browser-frame { transform: none; }
}
