@font-face {
  font-family: "Roboto Condensed ORTOZENIX";
  src: url("/ru-v1-projects-v1/assets/fonts/roboto-condensed-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --orto-blue: #087ce9;
  --orto-blue-deep: #006bc9;
  --orto-navy: #002640;
  --orto-navy-dark: #051a2e;
  --orto-sky: #bfeafb;
  --orto-sky-pale: #e9f9ff;
  --orto-paper: #f4f6f4;
  --orto-mint: #92e7b1;
  --orto-line: rgba(11, 41, 73, 0.18);
  --orto-line-light: rgba(255, 255, 255, 0.22);
  --orto-gradient: linear-gradient(120deg, #087ce9 0%, #45b7eb 48%, #92e7b1 100%);
}

.case-page {
  background: var(--orto-paper);
  color: var(--orto-navy);
}

.case-page::selection {
  background: var(--orto-mint);
  color: var(--orto-navy-dark);
}

.case-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 26, 46, 0.94);
}

.case-page figure,
.case-page blockquote {
  margin: 0;
}

.case-page a:focus-visible,
.case-page button:focus-visible {
  outline-color: var(--orto-blue);
}

.case-page .site-header a:focus-visible,
.case-page .mobile-menu a:focus-visible,
.case-page .mobile-menu button:focus-visible,
.case-page .case-contact a:focus-visible,
.case-page .case-contact button:focus-visible,
.case-page .archetypes a:focus-visible,
.case-page .identity a:focus-visible,
.case-page .credits a:focus-visible {
  outline-color: var(--white);
}

.case-page .button {
  background: var(--orto-blue);
}

.case-page .button:hover {
  background: var(--orto-blue-deep);
}

.case-kicker,
.case-number,
.case-page .eyebrow {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-section {
  padding-block: clamp(104px, 10vw, 176px);
}

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

.section-heading .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 12px;
  color: rgba(11, 41, 73, 0.58);
}

.section-heading h2 {
  grid-column: 4 / -1;
  max-width: 1220px;
  font-size: clamp(62px, 7vw, 118px);
}

.section-heading--light .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

/* Hero */

.case-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: #d0d1c8;
  color: var(--white);
  isolation: isolate;
}

.case-hero::before {
  content: none;
}

.case-hero__composition {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  min-height: calc(100svh - var(--header-h));
  min-width: 0;
  padding-block: clamp(30px, 3vw, 48px);
}

.case-hero .case-kicker {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(0, 38, 64, 0.62);
  text-align: center;
}

.case-hero__soft {
  position: relative;
  width: min(76vmin, 900px, calc(100vw - 128px));
  aspect-ratio: 1;
  align-self: center;
  margin-top: clamp(12px, 1.4vw, 24px);
  container-type: inline-size;
}

.case-hero__soft-media {
  position: absolute;
  inset: 0;
  cursor: crosshair;
  user-select: none;
  -webkit-user-drag: none;
}

.case-hero__soft-fallback,
.case-hero__soft-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.case-hero__soft-fallback {
  opacity: 1;
}

.case-hero__soft-canvas {
  opacity: 0;
}

.case-hero__soft.is-ready .case-hero__soft-fallback {
  opacity: 0;
}

.case-hero__soft.is-ready .case-hero__soft-canvas {
  opacity: 1;
}

.case-hero__message {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(70%, 650px);
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 49, 86, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.case-hero__claim {
  margin: 0;
  font-family: "Roboto Condensed ORTOZENIX", "Arial Narrow", sans-serif;
  font-size: clamp(44px, 7.2cqi, 65px);
  font-style: normal;
  font-weight: 300;
  font-synthesis: none;
  line-height: 0.98;
  letter-spacing: 0;
}

.case-hero__claim span {
  display: block;
}

.case-hero__message h2 {
  max-width: 540px;
  margin: clamp(15px, 2.2cqi, 22px) auto 0;
  color: var(--white);
  font: 500 clamp(15px, 2.25cqi, 20px)/1.28 var(--sans);
  letter-spacing: 0;
}

.case-hero__message > p:last-child {
  max-width: 600px;
  margin: clamp(9px, 1.35cqi, 13px) auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(10px, 1.45cqi, 13px);
  line-height: 1.48;
}

/* Case navigation */

.case-index {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--orto-line);
  background: var(--orto-paper);
}

.case-index a {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px clamp(16px, 1.6vw, 28px);
  border-right: 1px solid var(--orto-line);
  font: 400 clamp(21px, 1.7vw, 28px)/1 var(--display);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.case-index a:last-child {
  border-right: 0;
}

.case-index a:hover,
.case-index a:focus-visible {
  background: var(--orto-blue);
  color: var(--white);
}

.case-index span {
  align-self: start;
  color: rgba(11, 41, 73, 0.5);
  font: 600 10px/1 var(--sans);
}

.case-index a:hover span,
.case-index a:focus-visible span {
  color: rgba(255, 255, 255, 0.62);
}

/* Context */

.context {
  background: var(--orto-paper);
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(74px, 8vw, 138px);
  align-items: start;
}

.context-grid__lead {
  grid-column: 1 / span 5;
  max-width: 650px;
  margin: 0;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.context-grid__brief {
  grid-column: 8 / -1;
  padding: clamp(30px, 4vw, 62px);
  border-top: 7px solid var(--orto-blue);
  background: var(--orto-sky-pale);
}

.context-grid__brief .eyebrow {
  margin-bottom: 34px;
  color: rgba(11, 41, 73, 0.58);
}

.context-grid__brief > p:last-child {
  max-width: 580px;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
}

.context-grid blockquote {
  grid-column: 3 / span 8;
  margin-top: clamp(76px, 9vw, 150px);
  padding: clamp(42px, 6vw, 92px);
  background: var(--orto-blue);
  color: var(--white);
}

.context-grid blockquote p {
  margin: 0;
  font: 400 clamp(50px, 5.7vw, 100px)/0.93 var(--display);
  letter-spacing: -0.04em;
}

/* Platform */

.platform {
  background: var(--orto-navy-dark);
  color: var(--white);
}

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

.platform__header .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.platform__header h2 {
  grid-column: 4 / span 6;
  color: var(--orto-sky-pale);
  font-size: clamp(68px, 8vw, 136px);
}

.platform__header > p:last-child {
  grid-column: 10 / -1;
  max-width: 390px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.platform-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(86px, 10vw, 166px) 0 0;
  padding: 0;
  border-top: 1px solid var(--orto-line-light);
  list-style: none;
}

.platform-chain li {
  display: grid;
  min-height: clamp(320px, 28vw, 460px);
  align-content: space-between;
  gap: 22px;
  padding: 24px clamp(22px, 2.5vw, 42px) 34px;
  border-right: 1px solid var(--orto-line-light);
  background: transparent;
  transition: background 220ms ease;
}

.platform-chain li:first-child {
  border-left: 1px solid var(--orto-line-light);
}

.platform-chain li:hover {
  background: rgba(22, 134, 232, 0.14);
}

.platform-chain span {
  color: var(--orto-mint);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.platform-chain strong {
  align-self: end;
  font: 400 clamp(37px, 3.4vw, 57px)/0.95 var(--display);
  letter-spacing: -0.035em;
}

.platform-chain small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.45;
}

/* Naming */

.naming {
  background: var(--orto-sky);
}

.naming__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.naming__copy {
  grid-column: 1 / span 8;
}

.naming__copy .eyebrow,
.naming__product .eyebrow {
  margin-bottom: 50px;
  color: rgba(11, 41, 73, 0.58);
}

.naming__copy h2 {
  margin-bottom: 58px;
  font-size: clamp(82px, 11vw, 188px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.naming__copy h2 em {
  color: var(--orto-blue);
  font-style: normal;
}

.naming__copy > p:last-child {
  max-width: 690px;
  margin: 0;
  font-size: clamp(19px, 1.45vw, 25px);
}

.naming__product {
  grid-column: 9 / -1;
  padding: clamp(34px, 4vw, 62px);
  background: var(--white);
}

.naming__product strong {
  display: block;
  margin-bottom: 44px;
  color: var(--orto-blue);
  font: 400 clamp(64px, 6vw, 100px)/0.84 var(--display);
  letter-spacing: -0.045em;
}

.naming__product > p:last-child {
  margin: 0;
  color: rgba(11, 41, 73, 0.72);
  font-size: 16px;
}

/* Archetypes */

.archetypes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 8%, rgba(184, 244, 203, 0.24), transparent 33%),
    linear-gradient(135deg, #0b2949 0%, #0a4a7f 100%);
  color: var(--white);
}

.archetypes::before {
  content: "X";
  position: absolute;
  right: -0.02em;
  bottom: -0.32em;
  color: rgba(255, 255, 255, 0.045);
  font: 400 min(80vw, 1180px)/0.72 var(--display);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.archetypes .section-heading {
  position: relative;
  z-index: 1;
}

.archetypes__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(78px, 8vw, 132px);
}

.archetypes__grid article {
  min-height: clamp(400px, 36vw, 570px);
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4.5vw, 74px);
  border: 1px solid var(--orto-line-light);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.archetypes__grid span {
  color: var(--orto-mint);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archetypes__grid h3 {
  margin: auto 0 46px;
  font-size: clamp(86px, 10vw, 168px);
  line-height: 0.72;
}

.archetypes__grid p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Semantics */

.semantics {
  background: var(--orto-paper);
}

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

.semantics__grid > header {
  grid-column: 1 / span 7;
}

.semantics__grid > header .eyebrow {
  margin-bottom: 38px;
  color: rgba(11, 41, 73, 0.58);
}

.semantics__grid > header h2 {
  font-size: clamp(72px, 8vw, 136px);
}

.semantics__lead {
  grid-column: 9 / -1;
  max-width: 430px;
  margin: 50px 0 0;
  font-size: clamp(18px, 1.25vw, 22px);
}

.semantics__statements {
  grid-column: 3 / span 8;
  display: grid;
  gap: 0;
  margin-top: clamp(76px, 9vw, 145px);
  border-top: 1px solid var(--orto-line);
}

.semantics__statements p {
  margin: 0;
  padding: clamp(28px, 3vw, 46px) 0;
  border-bottom: 1px solid var(--orto-line);
  font: 400 clamp(39px, 4.2vw, 72px)/0.98 var(--display);
  letter-spacing: -0.035em;
}

.semantics__statements p:nth-child(2) {
  color: var(--orto-blue);
}

/* Identity */

.identity {
  background: var(--orto-navy-dark);
  color: var(--white);
}

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

.identity__header .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.identity__header h2 {
  grid-column: 4 / span 6;
  font-size: clamp(68px, 7.6vw, 128px);
}

.identity__header > p:last-child {
  grid-column: 10 / -1;
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(76px, 8vw, 128px) 24px;
  margin-top: clamp(82px, 10vw, 160px);
  align-items: start;
}

.identity-grid figure figcaption,
.applications-grid figcaption,
.guideline figcaption {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.35;
}

.identity-grid figure figcaption {
  color: rgba(255, 255, 255, 0.5);
}

.identity-grid__wall {
  grid-column: 1 / span 8;
}

.identity-grid__wall img {
  display: block;
  width: 100%;
  height: auto;
}

.identity-grid__silver {
  grid-column: 9 / -1;
  margin-top: clamp(120px, 15vw, 240px);
}

.identity-grid__silver-stage {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle, rgba(200, 239, 255, 0.18), transparent 52%),
    var(--orto-navy);
}

.identity-grid__silver-stage img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.palette {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 2fr;
  min-height: 250px;
  border: 1px solid var(--orto-line-light);
}

.palette span {
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-right: 1px solid var(--orto-line-light);
  background: var(--swatch);
}

.palette span:first-child i,
.palette span:nth-child(2) i,
.palette__gradient i {
  color: var(--white);
}

.palette span:nth-child(3) i {
  color: var(--orto-navy);
}

.palette span:last-child {
  border-right: 0;
}

.palette i {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.palette .palette__gradient {
  background: var(--orto-gradient);
}

/* Applications */

.applications {
  background: var(--orto-paper);
}

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

.applications__header .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 12px;
  color: rgba(11, 41, 73, 0.58);
}

.applications__header h2 {
  grid-column: 4 / span 6;
  font-size: clamp(64px, 7vw, 116px);
}

.applications__header > p:last-child {
  grid-column: 10 / -1;
  margin: 12px 0 0;
  color: rgba(11, 41, 73, 0.68);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(72px, 8vw, 128px) 24px;
  margin-top: clamp(82px, 10vw, 164px);
  align-items: start;
}

.applications-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.applications-grid figcaption {
  color: rgba(11, 41, 73, 0.58);
}

.applications-grid__conference {
  grid-column: 1 / span 8;
}

.applications-grid__award {
  grid-column: 9 / -1;
  margin-top: clamp(90px, 12vw, 190px);
}

.applications-grid__box {
  grid-column: 2 / span 4;
}

.applications-grid__stationery {
  grid-column: 7 / -1;
  margin-top: clamp(54px, 7vw, 110px);
}

.applications-grid__cards {
  grid-column: 1 / span 7;
}

.applications-grid__citylight {
  grid-column: 9 / -1;
  margin-top: clamp(90px, 12vw, 190px);
}

.social {
  margin-top: clamp(110px, 14vw, 220px);
  padding: clamp(38px, 5vw, 76px);
  background: var(--orto-navy-dark);
  color: var(--white);
}

.social > header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(54px, 6vw, 96px);
}

.social > header .eyebrow {
  grid-column: 1 / span 3;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.social > header h3 {
  grid-column: 4 / span 8;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 90px);
  line-height: 0.92;
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.social__grid img {
  display: block;
  width: 100%;
  height: auto;
}

/* Guideline */

.guideline {
  background: var(--orto-sky);
}

.guideline__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.guideline__grid > div {
  grid-column: 1 / span 5;
}

.guideline__grid .eyebrow {
  margin-bottom: 42px;
  color: rgba(11, 41, 73, 0.58);
}

.guideline__grid h2 {
  margin-bottom: 42px;
  font-size: clamp(66px, 7.5vw, 126px);
}

.guideline__grid > div > p:last-child {
  max-width: 630px;
  margin: 0;
  color: rgba(11, 41, 73, 0.72);
}

.guideline__grid figure {
  grid-column: 7 / -1;
}

.guideline__grid figure img {
  display: block;
  width: 100%;
  height: auto;
}

.guideline figcaption {
  color: rgba(11, 41, 73, 0.56);
}

/* Result */

.result {
  background: var(--orto-paper);
}

.result__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(76px, 8vw, 138px);
  align-items: start;
}

.result__grid > p {
  grid-column: 1 / span 5;
  max-width: 650px;
  margin: 0;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.result__grid ul {
  grid-column: 8 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--orto-line);
  list-style: none;
}

.result__grid li {
  position: relative;
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid var(--orto-line);
  font-size: 16px;
}

.result__grid li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orto-blue);
}

/* Credits and related */

.credits {
  background: var(--orto-navy);
  color: var(--white);
}

.credits__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.credits__grid > header {
  grid-column: 1 / span 8;
}

.credits__grid .eyebrow {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.5);
}

.credits__grid h2 {
  max-width: 980px;
  font-size: clamp(62px, 7vw, 116px);
}

.credits__grid > div {
  grid-column: 9 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--orto-line-light);
}

.credits__grid > div span {
  color: var(--orto-mint);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.credits__grid > div p {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.related {
  background: var(--orto-sky-pale);
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.related__grid > div {
  grid-column: 1 / span 5;
}

.related__grid .eyebrow {
  margin-bottom: 40px;
  color: rgba(11, 41, 73, 0.56);
}

.related__grid h2 {
  margin-bottom: 34px;
  font-size: clamp(88px, 10vw, 166px);
}

.related__grid > div p {
  max-width: 590px;
  color: rgba(11, 41, 73, 0.68);
}

.related__grid .text-link {
  margin-top: 24px;
}

.related__grid > a {
  position: relative;
  grid-column: 7 / -1;
  display: block;
  overflow: hidden;
  background: var(--orto-navy-dark);
  text-decoration: none;
}

.related__grid > a img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 180ms ease;
}

.related__grid > a span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(5, 26, 46, 0.88);
  color: var(--white);
  font-size: 11px;
}

.related__grid > a:hover img,
.related__grid > a:focus-visible img {
  opacity: 0.9;
}

/* Contact */

.case-contact {
  --text-gradient: var(--orto-gradient);
  background:
    radial-gradient(circle at 92% 4%, rgba(22, 134, 232, 0.19), transparent 32%),
    var(--black);
}

.case-contact .contact__main .eyebrow {
  color: var(--orto-mint);
}

.case-contact .button {
  background: var(--orto-blue);
}

.copy-feedback {
  background: var(--orto-sky-pale);
  color: var(--orto-navy-dark);
}

/* Reveal and interaction states */

.js [data-reveal] {
  transition-duration: 520ms;
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.is-static .soft-mark__canvas,
html.is-static [data-ortozenix-soft] .soft-mark__canvas {
  display: none !important;
  opacity: 0 !important;
}

html.is-static .soft-mark__fallback,
html.is-static [data-ortozenix-soft] .soft-mark__fallback {
  opacity: 1 !important;
}

html.is-static .soft-mark__surface {
  cursor: default;
}

html.is-static .case-page *,
html.is-static .case-page *::before,
html.is-static .case-page *::after {
  animation: none !important;
  transition: none !important;
}

html.is-static .js [data-reveal],
html.is-static [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  .case-hero__composition {
    min-height: calc(100svh - var(--header-h));
  }

  .case-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-index a:nth-child(3) {
    border-right: 0;
  }

  .case-index a:nth-child(-n + 3) {
    border-bottom: 1px solid var(--orto-line);
  }

  .section-heading .eyebrow,
  .platform__header .eyebrow,
  .identity__header .eyebrow,
  .applications__header .eyebrow {
    grid-column: 1 / span 3;
  }

  .section-heading h2,
  .platform__header h2,
  .identity__header h2,
  .applications__header h2 {
    grid-column: 4 / -1;
  }

  .platform__header > p:last-child,
  .identity__header > p:last-child,
  .applications__header > p:last-child {
    grid-column: 4 / span 7;
    margin-top: 28px;
  }

  .platform-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-chain li {
    min-height: 340px;
    border-bottom: 1px solid var(--orto-line-light);
  }

  .platform-chain li:nth-child(2n) {
    border-right: 1px solid var(--orto-line-light);
  }

  .naming__copy {
    grid-column: 1 / span 7;
  }

  .naming__product {
    grid-column: 8 / -1;
  }

  .semantics__grid > header {
    grid-column: 1 / span 8;
  }

  .semantics__lead {
    grid-column: 9 / -1;
  }

  .identity-grid__wall {
    grid-column: 1 / span 7;
  }

  .identity-grid__silver {
    grid-column: 8 / -1;
  }

  .palette {
    grid-column: 1 / -1;
  }

  .applications-grid__conference {
    grid-column: 1 / span 7;
  }

  .applications-grid__award {
    grid-column: 8 / -1;
  }

  .applications-grid__stationery,
  .applications-grid__citylight {
    grid-column: 7 / -1;
  }

  .social__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .case-section {
    padding-block: 84px;
  }

  .case-kicker,
  .case-page .eyebrow {
    font-size: 10px;
  }

  .case-hero {
    min-height: calc(100svh - var(--header-h));
  }

  .case-hero__composition {
    display: grid;
    min-height: calc(100svh - var(--header-h));
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .case-hero__soft {
    width: 100%;
    max-width: min(72svh, 620px);
    margin-top: 14px;
  }

  .case-hero__message {
    width: 76%;
  }

  .case-hero__claim {
    font-size: clamp(29px, 11.6cqi, 54px);
  }

  .case-hero__message h2 {
    max-width: 390px;
    font-size: clamp(13px, 4.2cqi, 18px);
  }

  .case-hero__message > p:last-child {
    max-width: 420px;
    font-size: clamp(9px, 2.85cqi, 12px);
  }

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

  .case-index a {
    min-height: 66px;
    padding: 13px 14px;
    font-size: 21px;
  }

  .case-index a:nth-child(3) {
    border-right: 1px solid var(--orto-line);
  }

  .case-index a:nth-child(2n) {
    border-right: 0;
  }

  .case-index a:nth-child(-n + 4) {
    border-bottom: 1px solid var(--orto-line);
  }

  .section-heading,
  .platform__header,
  .identity__header,
  .applications__header {
    display: block;
  }

  .section-heading .eyebrow,
  .platform__header .eyebrow,
  .identity__header .eyebrow,
  .applications__header .eyebrow {
    margin-bottom: 30px;
    padding-top: 0;
  }

  .section-heading h2,
  .platform__header h2,
  .identity__header h2,
  .applications__header h2,
  .semantics__grid > header h2,
  .guideline__grid h2,
  .credits__grid h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .platform__header > p:last-child,
  .identity__header > p:last-child,
  .applications__header > p:last-child {
    max-width: 620px;
    margin-top: 28px;
  }

  .context-grid {
    display: block;
    margin-top: 58px;
  }

  .context-grid__lead {
    font-size: 22px;
  }

  .context-grid__brief {
    margin-top: 48px;
    padding: 28px;
  }

  .context-grid blockquote {
    margin-top: 48px;
    padding: 32px 26px;
  }

  .context-grid blockquote p {
    font-size: clamp(42px, 12vw, 60px);
  }

  .platform-chain {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .platform-chain li,
  .platform-chain li:nth-child(2n) {
    min-height: 250px;
    border-right: 1px solid var(--orto-line-light);
  }

  .platform-chain strong {
    font-size: 41px;
  }

  .naming__grid,
  .semantics__grid,
  .identity-grid,
  .applications-grid,
  .guideline__grid,
  .result__grid,
  .credits__grid,
  .related__grid {
    display: block;
  }

  .naming__copy h2 {
    margin-bottom: 38px;
    font-size: clamp(66px, 20vw, 98px);
  }

  .naming__copy > p:last-child {
    font-size: 18px;
  }

  .naming__product {
    margin-top: 54px;
    padding: 30px 26px;
  }

  .naming__product strong {
    margin-bottom: 34px;
    font-size: 64px;
  }

  .archetypes__grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .archetypes__grid article {
    min-height: 350px;
    padding: 28px;
  }

  .archetypes__grid h3 {
    font-size: clamp(78px, 23vw, 112px);
  }

  .semantics__grid > header .eyebrow {
    margin-bottom: 28px;
  }

  .semantics__lead {
    max-width: 640px;
    margin-top: 32px;
  }

  .semantics__statements {
    margin-top: 62px;
  }

  .semantics__statements p {
    font-size: clamp(35px, 10.5vw, 52px);
  }

  .identity-grid,
  .applications-grid {
    margin-top: 64px;
  }

  .identity-grid > *,
  .applications-grid > * {
    width: 100%;
    margin: 0 0 52px;
  }

  .identity-grid__silver {
    width: 78%;
    margin-left: auto;
  }

  .palette {
    display: grid;
    width: 100%;
    min-height: 420px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
  }

  .palette span {
    min-height: 190px;
    border-bottom: 1px solid var(--orto-line-light);
  }

  .palette span:nth-child(2n) {
    border-right: 0;
  }

  .applications-grid__award,
  .applications-grid__box,
  .applications-grid__citylight {
    width: 82%;
  }

  .applications-grid__award,
  .applications-grid__citylight {
    margin-left: auto;
  }

  .social {
    margin-top: 76px;
    padding: 26px 18px 18px;
  }

  .social > header {
    display: block;
    margin-bottom: 42px;
  }

  .social > header .eyebrow {
    margin-bottom: 25px;
    padding-top: 0;
  }

  .social > header h3 {
    font-size: clamp(43px, 12.5vw, 62px);
  }

  .social__grid {
    gap: 6px;
  }

  .guideline__grid figure,
  .result__grid ul,
  .credits__grid > div,
  .related__grid > a {
    margin-top: 54px;
  }

  .result__grid > p {
    font-size: 22px;
  }

  .credits__grid > div {
    max-width: 620px;
  }

  .related__grid h2 {
    font-size: clamp(78px, 23vw, 118px);
  }

  .site-footer {
    margin-top: 92px;
  }
}

@media (max-width: 520px) {
  .case-hero__composition {
    width: calc(100% - 28px);
  }

  .case-hero .case-kicker {
    max-width: 290px;
    font-size: 8px;
    line-height: 1.35;
  }

  .case-hero__soft {
    max-width: 430px;
  }

  .case-hero__message {
    width: 80%;
  }

  .case-hero__message > p:last-child {
    line-height: 1.38;
  }

  .case-index a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-index span {
    align-self: auto;
  }

  .naming__copy h2 {
    font-size: clamp(56px, 17vw, 76px);
  }

  .identity-grid__silver,
  .applications-grid__award,
  .applications-grid__box,
  .applications-grid__citylight {
    width: 88%;
  }

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

  .palette span,
  .palette span:nth-child(2n) {
    min-height: 120px;
    border-right: 0;
  }

  .social__grid {
    grid-template-columns: 1fr;
  }

  .result__grid li {
    padding-left: 24px;
    font-size: 15px;
  }

  .case-contact .contact__channels strong,
  .case-contact .contact__phone strong,
  .case-contact .contact__office strong {
    font-size: 25px;
  }
}

@media (hover: none), (pointer: coarse) {
  .soft-mark__surface {
    cursor: default;
  }
}

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

  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .soft-mark__canvas {
    display: none !important;
    opacity: 0 !important;
  }

  .soft-mark__fallback {
    opacity: 1 !important;
  }

  .soft-mark__surface {
    cursor: default;
  }

  .related__grid > a img {
    transition: none;
  }
}

@media (forced-colors: active) {
  .soft-mark__canvas {
    display: none !important;
  }

  .soft-mark__fallback {
    opacity: 1 !important;
  }

  .soft-mark__surface,
  .archetypes__grid article,
  .palette {
    border: 1px solid CanvasText;
  }
}

@media print {
  .case-page {
    padding-top: 0;
  }

  .case-page .site-header,
  .case-page .mobile-menu,
  .case-page .case-index,
  .case-page .case-contact,
  .copy-feedback {
    display: none !important;
  }

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

  .soft-mark__canvas {
    display: none !important;
  }

  .soft-mark__fallback,
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .case-section {
    break-inside: avoid;
  }
}
