@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("/assets/fonts/fragment-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f1eee6;
  --paper-bright: #faf8f2;
  --ink: #101210;
  --ink-soft: #272a26;
  --mist: #c9c5ba;
  --mist-soft: #ddd9cf;
  --ultraviolet: #6446ff;
  --solar: #f2d64b;
  --blue: #275dff;
  --coral: #ff6b45;
  --hyphae: #75d9c6;
  --pliego: #d7ff28;
  --pliegocss: #2855ff;
  --mars: #3ef0b6;
  --positive: #12694b;
  --critical: #a8233a;
  --shell: min(1200px, calc(100vw - 40px));
  --shell-wide: min(1440px, calc(100vw - 40px));
  --header-height: 96px;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

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

html {
  background: var(--paper);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

body,
button,
a {
  font-family: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell-wide {
  width: var(--shell-wide);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  translate: 0 -160%;
  background: var(--ink);
  color: var(--paper-bright);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.site-header.is-condensed {
  height: 74px;
  border-color: color-mix(in srgb, var(--ink) 18%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
}

.site-header--contrast {
  border-color: color-mix(in srgb, var(--ink) 18%, transparent);
  background: var(--paper);
}

.site-header--contrast + main .route-trail {
  color: #e8ecef;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 58px;
  height: 58px;
  overflow: visible;
  flex: 0 0 auto;
  transition: width 280ms ease, height 280ms ease;
}

.brand__cell {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand__seam {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.brand:hover .brand__cell--nw,
.brand:focus-visible .brand__cell--nw {
  transform: translate(-3px, -3px);
}

.brand:hover .brand__cell--ne,
.brand:focus-visible .brand__cell--ne {
  transform: translate(3px, -3px);
}

.brand:hover .brand__cell--sw,
.brand:focus-visible .brand__cell--sw {
  transform: translate(-3px, 3px);
}

.brand:hover .brand__cell--se,
.brand:focus-visible .brand__cell--se {
  transform: translate(3px, 3px);
}

.brand__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand__wordmark {
  display: block;
  width: 150px;
  height: auto;
  transition: width 280ms ease;
}

.brand__descriptor {
  font-family: "Fragment Mono", monospace;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header.is-condensed .brand__mark {
  width: 46px;
  height: 46px;
}

.site-header.is-condensed .brand__wordmark {
  width: 128px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  scale: 0 1;
  transform-origin: right;
  background: var(--ink);
  transition: scale 240ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  scale: 1;
  transform-origin: left;
}

.nav .language-link {
  padding-inline: 13px;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav .language-link::after {
  display: none;
}

main {
  position: relative;
  overflow: clip;
}

.route-trail {
  position: absolute;
  z-index: 6;
  top: calc(var(--header-height) + 18px);
  left: 50%;
  translate: -50% 0;
  font-family: "Fragment Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.route-trail ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-trail li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.route-trail li + li::before {
  content: "/";
  color: color-mix(in srgb, var(--ink) 42%, transparent);
}

.route-trail a {
  text-decoration: none;
}

.route-trail a:hover {
  text-decoration: underline;
}

.route-trail [aria-current="page"] {
  color: color-mix(in srgb, var(--ink) 62%, transparent);
}

.home-experience {
  position: relative;
  min-height: 390vh;
  overflow: clip;
  isolation: isolate;
}

.living-stage {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.living-stage__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.living-scene,
.living-fallback {
  position: absolute;
  top: 4vh;
  right: -5vw;
  width: min(68vw, 980px);
  height: 92vh;
}

.living-scene {
  opacity: 0;
  transition: opacity 900ms ease;
}

[data-scene="active"] .living-scene {
  opacity: 0.96;
}

[data-scene="active"] .living-fallback {
  opacity: 0;
}

.living-fallback {
  transition: opacity 500ms ease;
  filter: drop-shadow(0 35px 60px color-mix(in srgb, var(--ultraviolet) 22%, transparent));
}

.living-fallback__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31%;
  height: 54%;
  border: 1px solid color-mix(in srgb, white 64%, transparent);
  border-radius: 62% 38% 54% 46% / 43% 58% 42% 57%;
  background: color-mix(in srgb, currentColor 36%, transparent);
  box-shadow: inset 0 0 80px color-mix(in srgb, white 22%, transparent);
  transform-origin: center;
  backdrop-filter: blur(3px);
}

.living-fallback__plane--one {
  color: var(--ultraviolet);
  transform: translate(-78%, -52%) rotate(-13deg) skewY(5deg);
}

.living-fallback__plane--two {
  color: var(--solar);
  transform: translate(-34%, -66%) rotate(8deg) skewY(-4deg);
}

.living-fallback__plane--three {
  color: var(--blue);
  transform: translate(-8%, -33%) rotate(23deg) skewY(8deg);
}

.living-fallback__plane--four {
  color: var(--coral);
  transform: translate(-54%, -18%) rotate(-27deg) skewY(-5deg);
}

.home-hero,
.company-passage,
.portfolio-passage {
  position: relative;
  z-index: 1;
}

.home-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  min-height: 110svh;
  padding-top: calc(var(--header-height) + 8vh);
  padding-bottom: 7vh;
}

.hero-kicker,
.section-index,
.scene-status,
.eyebrow,
.status,
.meta,
.research-record__status,
.portfolio-chapter__index,
.portfolio-chapter__name {
  font-family: "Fragment Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker {
  grid-column: 1 / 8;
  margin: 0 0 4vh;
}

.hero-title {
  grid-column: 1 / 10;
  align-self: center;
  margin: 0;
  font-size: clamp(5rem, 12.5vw, 12.8rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: clip;
  padding: 0.08em 0.12em 0.12em 0;
}

.hero-line:nth-child(2) {
  margin-left: 0.58em;
}

.hero-line:nth-child(3) {
  margin-left: 0.18em;
  margin-bottom: -0.26em;
  padding-bottom: 0.38em;
}

.hero-line__inner {
  display: block;
  transform-origin: left bottom;
}

.hero-line__inner--serif {
  color: var(--coral);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-intro {
  grid-column: 1 / 6;
  align-self: end;
  max-width: 34rem;
  margin-top: 6vh;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero-actions {
  grid-column: 1 / 7;
  margin-top: 30px;
}

.scene-status {
  grid-column: 10 / 13;
  align-self: end;
  margin: 0 0 8px;
  padding-left: 18px;
  border-left: 1px solid var(--ink);
  text-transform: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}

.actions a,
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.actions a::after,
.action::after,
.text-link::after {
  content: "↗";
  margin-left: 24px;
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
}

.actions a:first-child,
.action--primary {
  background: var(--ink);
  color: var(--paper-bright);
}

.actions a:hover,
.action:hover {
  background: var(--ultraviolet);
  border-color: var(--ultraviolet);
  color: white;
}

.action--quiet {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

.company-passage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-content: center;
  min-height: 100svh;
  padding-block: 16vh;
}

.section-index {
  margin: 0;
}

.company-passage > .section-index {
  grid-column: 1 / 3;
  align-self: start;
  margin-top: 14px;
}

.company-passage__statement {
  grid-column: 3 / 12;
}

.company-passage__statement h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.4rem, 7.2vw, 8rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.company-passage__statement h2::first-letter {
  color: var(--ultraviolet);
}

.reveal-mask {
  overflow: clip;
}

.company-passage__note {
  grid-column: 8 / 12;
  margin: 8vh 0 0;
  font-size: 16px;
}

.micro-rule {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 13px 0 0;
  vertical-align: middle;
  background: currentColor;
}

.portfolio-passage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 190svh;
  margin-bottom: 12vh;
  padding: 12vh clamp(22px, 4vw, 64px);
  background: color-mix(in srgb, var(--ink) 95%, transparent);
  color: var(--paper-bright);
  box-shadow: 0 38px 100px color-mix(in srgb, var(--ink) 28%, transparent);
  transition: background-color 800ms ease;
}

.portfolio-passage[data-active-system="hyphae"] {
  background: #102324f5;
}

.portfolio-passage[data-active-system="pliegors"] {
  background: #111315f5;
}

.portfolio-passage[data-active-system="pliegocss"] {
  background: #070a0df5;
}

.portfolio-passage[data-active-system="mars"] {
  background: #050807f7;
}

.portfolio-passage[data-active-system="research"] {
  background: #241c2cf5;
}

.portfolio-passage__heading {
  grid-column: 1 / 6;
  position: sticky;
  top: 14vh;
  align-self: start;
}

.portfolio-passage__heading h2 {
  max-width: 7ch;
  margin: 22px 0 0;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.portfolio-rail {
  grid-column: 6 / 7;
  position: relative;
  width: 1px;
  margin-inline: auto;
  background: color-mix(in srgb, var(--paper) 18%, transparent);
}

.portfolio-rail__line {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--solar);
  transform-origin: top;
}

.portfolio-chapters {
  grid-column: 7 / 13;
}

.portfolio-chapter {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 50svh;
  padding: 4vh 0 12vh;
  opacity: 0.38;
  transition: opacity 500ms ease, color 500ms ease;
}

.portfolio-chapter.is-active {
  opacity: 1;
}

.portfolio-chapter__index {
  margin: 4px 0 0;
  color: var(--mist);
}

.portfolio-chapter__name {
  margin: 0 0 28px;
  color: var(--solar);
}

[data-active-system="hyphae"] .portfolio-chapter.is-active .portfolio-chapter__name {
  color: var(--hyphae);
}

[data-active-system="pliegors"] .portfolio-chapter.is-active .portfolio-chapter__name {
  color: var(--pliego);
}

[data-active-system="pliegocss"] .portfolio-chapter.is-active .portfolio-chapter__name {
  color: #6f8cff;
}

[data-active-system="mars"] .portfolio-chapter.is-active .portfolio-chapter__name {
  color: var(--mars);
}

[data-active-system="research"] .portfolio-chapter.is-active .portfolio-chapter__name {
  color: #b9a8ff;
}

.portfolio-chapter h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.1vw, 5.9rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.portfolio-chapter__copy {
  max-width: 35rem;
  margin: 32px 0;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.text-link::before {
  content: "";
  position: absolute;
}

.research-passage {
  position: relative;
  z-index: 2;
  padding: 16vh 0;
  background: var(--coral);
  color: var(--ink);
}

.research-passage__intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.research-passage__intro .section-index {
  grid-column: 1 / 3;
  margin-top: 12px;
}

.research-passage__intro h2 {
  grid-column: 3 / 10;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.research-passage__intro > p:last-child {
  grid-column: 9 / 13;
  margin: 34px 0 0;
  font-size: 18px;
}

.research-records {
  margin-top: 14vh;
}

.research-record {
  display: grid;
  grid-template-columns: 2fr 10fr;
  padding: 7vh 0 8vh;
  border-top: 1px solid color-mix(in srgb, var(--ink) 62%, transparent);
}

.research-record:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 62%, transparent);
}

.research-record__index,
.research-record__status {
  margin: 0;
}

.research-record__body {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 22px;
}

.research-record__status,
.research-record__body > h3,
.research-record__body > .result-limit,
.research-record__body > .research-record__links {
  grid-column: 1 / -1;
}

.research-record__body h3 {
  max-width: 16ch;
  margin: 4vh 0 6vh;
  font-size: clamp(2.5rem, 5.6vw, 6.2rem);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.result-limit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.result-limit > div {
  padding-top: 16px;
  border-top: 3px solid var(--ink);
}

.result-limit span {
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.result-limit p {
  margin: 16px 0 0;
  font-size: 17px;
}

.research-record__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 18px;
}

.principles-passage {
  padding: 17vh 0 12vh;
}

.principles-passage > h2 {
  max-width: 9ch;
  margin: 3vh 0 9vh;
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.principles li {
  min-height: 290px;
  padding: 30px 30px 36px 0;
  border-bottom: 1px solid var(--ink);
}

.principles li + li {
  padding-left: 30px;
  border-left: 1px solid var(--ink);
}

.principles h3 {
  margin: 72px 0 12px;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.principles p {
  max-width: 27ch;
  margin: 0;
  font-size: 15px;
}

.c-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background: var(--ink);
}

.c-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--paper);
}

.c-icon--system::after {
  right: 4px;
  bottom: 4px;
}

.c-icon--boundary::after {
  top: 11px;
  left: 11px;
}

.c-icon--evidence::after {
  top: 4px;
  right: 4px;
  box-shadow: -17px 17px 0 var(--paper);
}

.closing-statement {
  margin-top: 18vh;
}

.closing-statement p {
  max-width: 12ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.2rem, 9vw, 10rem);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.research-detail {
  overflow: clip;
}

.research-detail__hero {
  position: relative;
  min-height: 96svh;
  padding-top: calc(var(--header-height) + 10vh);
  padding-bottom: 9vh;
}

.research-detail__hero::before,
.research-detail__hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 42% 58% 67% 33% / 55% 39% 61% 45%;
  filter: saturate(92%);
  pointer-events: none;
}

.research-detail__hero::before {
  top: 12%;
  right: -10%;
  width: min(52vw, 740px);
  aspect-ratio: 1.2;
  rotate: -13deg;
  background: color-mix(in srgb, var(--coral) 28%, transparent);
}

.research-detail__hero::after {
  right: 12%;
  bottom: -4%;
  width: min(34vw, 480px);
  aspect-ratio: 1.05;
  rotate: 19deg;
  background: color-mix(in srgb, var(--ultraviolet) 18%, transparent);
}

.research-detail--provenance .research-detail__hero::before {
  background: color-mix(in srgb, var(--blue) 19%, transparent);
}

.research-detail--provenance .research-detail__hero::after {
  background: color-mix(in srgb, var(--solar) 35%, transparent);
}

.research-detail__hero h1 {
  max-width: 11ch;
  margin: 7vh 0 0;
  font-size: clamp(4rem, 8.8vw, 9.4rem);
  font-weight: 570;
  letter-spacing: -0.068em;
  line-height: 0.89;
}

.research-detail__dek {
  max-width: 42rem;
  margin: 7vh 0 9vh auto;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.65rem, 3.1vw, 3rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.research-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.research-meta > div {
  min-height: 108px;
  padding: 20px 24px 22px 0;
}

.research-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--ink);
}

.research-meta dt,
.research-boundary__grid span {
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.research-meta dd {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.research-finding {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  min-height: 80svh;
  padding-block: 15vh;
}

.research-finding__label {
  grid-column: 1 / 5;
}

.research-finding__label h2 {
  max-width: 7ch;
  margin: 4vh 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.research-finding__result {
  grid-column: 6 / 13;
  margin: 0;
  padding-top: 24px;
  border-top: 5px solid var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  font-weight: 560;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.research-detail__section,
.research-artifacts {
  padding-block: 14vh;
}

.research-detail__section h2,
.research-artifacts h2 {
  max-width: 10ch;
  margin: 3vh 0 8vh;
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.research-prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  margin-left: 17%;
}

.research-prose p {
  margin: 0;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.5;
}

.research-boundary {
  background: var(--ink);
  color: var(--paper-bright);
}

.research-boundary__inner {
  padding-block: 15vh;
}

.research-boundary h2 {
  max-width: 12ch;
  margin: 4vh 0 10vh;
  font-size: clamp(3.7rem, 7.5vw, 8rem);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.research-boundary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--paper) 48%, transparent);
}

.research-boundary__grid > div {
  min-height: 310px;
  padding: 28px 34px 36px 0;
}

.research-boundary__grid > div + div {
  padding-left: 34px;
  border-left: 1px solid color-mix(in srgb, var(--paper) 48%, transparent);
}

.research-boundary__grid p {
  margin: 9vh 0 0;
  color: color-mix(in srgb, var(--paper) 84%, transparent);
  font-size: 16px;
}

.research-artifacts .actions {
  margin-bottom: 7vh;
}

.citation-copy {
  max-width: 58rem;
  margin: 0 0 5vh;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: "Fragment Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
}

.page-intro {
  min-height: 78svh;
  padding-top: calc(var(--header-height) + 15vh);
  padding-bottom: 10vh;
}

.page-intro .eyebrow {
  margin: 0 0 7vh;
}

.page-intro h1,
.not-found h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.page-intro .lede {
  max-width: 44rem;
  margin: 7vh 0 0 auto;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.section {
  padding-block: 11vh;
  border-top: 1px solid var(--mist);
}

.section > h2 {
  max-width: 12ch;
  margin: 2vh 0 6vh;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section > .lede {
  max-width: 42rem;
  margin: 4vh 0;
  font-size: 21px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.system-card {
  position: relative;
  min-height: 480px;
  padding: 38px;
  overflow: hidden;
}

.system-card + .system-card {
  border-left: 1px solid var(--ink);
}

.system-card::before {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -35%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  rotate: 22deg;
  opacity: 0.22;
}

.system-card--hyphae {
  grid-column: span 6;
  background: #d8ebe4;
}

.system-card--pliegors {
  grid-column: span 6;
  background: #dffc62;
}

.system-card h3 {
  margin: 10vh 0 22px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.system-card > p {
  max-width: 31ch;
}

.system-card .actions {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
}

.contact-list,
.archive-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.contact-list li,
.archive-list li {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  align-items: center;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink);
}

.contact-list h2,
.archive-list h2,
.contact-list p,
.archive-list p {
  margin: 0;
}

.contact-list a {
  justify-self: end;
}

.authority-list {
  margin: 9vh 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.authority-list li {
  display: grid;
  grid-template-columns: 0.7fr 2.2fr 5fr 1.6fr;
  align-items: baseline;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ink);
}

.authority-list__index {
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
}

.authority-list h3,
.authority-list p {
  margin: 0;
}

.authority-list h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.authority-list p {
  max-width: 43rem;
}

.authority-list a {
  justify-self: end;
  white-space: nowrap;
}

.founder-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 6vh;
}

.legal-intro {
  min-height: auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 8vw;
}

.legal-status {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 4px solid var(--critical);
  font-size: 14px;
}

.legal-section {
  padding: 0 0 8vh;
}

.legal-section h2 {
  margin: 10px 0 24px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-section p:not(.eyebrow) {
  max-width: 66ch;
}

.not-found {
  min-height: 100svh;
  padding-top: 20vh;
}

.not-found a {
  display: inline-block;
  margin-top: 7vh;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding: 8vh 0;
  background: var(--ink);
  color: var(--paper-bright);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root {
    --header-height: 80px;
  }

  .nav a:not(.language-link) {
    display: none;
  }

  .living-scene,
  .living-fallback {
    top: 9vh;
    right: -23vw;
    width: 88vw;
    opacity: 0.62;
  }

  .hero-title {
    grid-column: 1 / 13;
    font-size: clamp(4.8rem, 15vw, 9rem);
  }

  .hero-intro {
    grid-column: 1 / 8;
  }

  .scene-status {
    grid-column: 9 / 13;
  }

  .company-passage__statement {
    grid-column: 2 / 13;
  }

  .company-passage__note {
    grid-column: 7 / 13;
  }

  .portfolio-passage__heading {
    grid-column: 1 / 7;
  }

  .portfolio-rail {
    display: none;
  }

  .portfolio-chapters {
    grid-column: 7 / 13;
  }

  .research-passage__intro h2 {
    grid-column: 3 / 12;
  }

  .research-passage__intro > p:last-child {
    grid-column: 6 / 12;
  }

  .system-card .actions {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 32px, 1200px);
    --shell-wide: min(100% - 24px, 1440px);
  }

  body {
    font-size: 16px;
  }

  .site-header__inner {
    width: calc(100% - 32px);
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__wordmark {
    width: 116px;
  }

  .brand__descriptor {
    display: none;
  }

  .nav {
    gap: 8px;
  }

  .route-trail {
    top: calc(var(--header-height) + 12px);
    font-size: 8px;
  }

  .authority-list li {
    grid-template-columns: 34px 1fr;
    gap: 14px 18px;
  }

  .authority-list h3,
  .authority-list p,
  .authority-list a {
    grid-column: 2;
    justify-self: start;
  }

  .home-experience {
    min-height: auto;
  }

  .living-stage {
    height: 110svh;
  }

  .living-stage__sticky {
    position: relative;
  }

  .living-scene {
    display: none;
  }

  .living-fallback {
    top: 9vh;
    right: -46vw;
    width: 130vw;
    height: 74vh;
    opacity: 0.52;
  }

  .home-hero {
    display: block;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 9vh);
  }

  .hero-kicker {
    max-width: 25ch;
    margin-bottom: 9vh;
  }

  .hero-title {
    font-size: clamp(4.1rem, 21vw, 7rem);
    line-height: 0.78;
  }

  .hero-line:nth-child(2) {
    margin-left: 0.2em;
  }

  .hero-line:nth-child(3) {
    margin-left: 0;
  }

  .hero-intro {
    max-width: 25rem;
    margin-top: 7vh;
  }

  .scene-status {
    max-width: 26ch;
    margin-top: 7vh;
  }

  .company-passage {
    display: block;
    min-height: auto;
    padding-block: 16vh;
  }

  .company-passage__statement {
    margin-top: 5vh;
  }

  .company-passage__statement h2 {
    font-size: clamp(3.2rem, 13vw, 5.2rem);
  }

  .company-passage__note {
    max-width: 30ch;
    margin: 7vh 0 0 auto;
  }

  .portfolio-passage {
    display: block;
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 12vh 20px;
  }

  .portfolio-passage__heading {
    position: static;
  }

  .portfolio-passage__heading h2 {
    font-size: clamp(3.6rem, 15vw, 5.8rem);
  }

  .portfolio-chapters {
    margin-top: 14vh;
  }

  .portfolio-chapter {
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 0 0 18vh;
    opacity: 1;
  }

  .portfolio-chapter h3 {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }

  .research-passage {
    padding-block: 13vh;
  }

  .research-passage__intro {
    display: block;
  }

  .research-passage__intro h2 {
    margin-top: 5vh;
    font-size: clamp(3.5rem, 14vw, 5.6rem);
  }

  .research-passage__intro > p:last-child {
    max-width: 29ch;
    margin: 6vh 0 0 auto;
  }

  .research-records {
    margin-top: 10vh;
  }

  .research-record {
    display: block;
    padding-block: 6vh 8vh;
  }

  .research-record__body {
    display: block;
  }

  .research-record__status {
    margin-top: 4vh;
  }

  .research-record__body h3 {
    margin-block: 4vh 6vh;
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .result-limit {
    display: block;
  }

  .result-limit > div + div {
    margin-top: 5vh;
  }

  .principles-passage {
    width: calc(100% - 32px);
  }

  .principles-passage > h2 {
    font-size: clamp(3.8rem, 16vw, 6.4rem);
  }

  .principles {
    display: block;
  }

  .principles li,
  .principles li + li {
    min-height: auto;
    padding: 28px 0 38px;
    border-left: 0;
  }

  .principles h3 {
    margin-top: 42px;
  }

  .closing-statement p {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .page-intro {
    min-height: 70svh;
    padding-top: calc(var(--header-height) + 13vh);
  }

  .page-intro h1,
  .not-found h1 {
    font-size: clamp(3.8rem, 17vw, 6.4rem);
  }

  .page-intro .lede {
    margin-top: 6vh;
  }

  .system-grid {
    display: block;
  }

  .system-card {
    min-height: 440px;
    padding: 26px;
  }

  .system-card + .system-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .contact-list li,
  .archive-list li {
    display: block;
  }

  .contact-list p,
  .archive-list p {
    margin-block: 12px 20px;
  }

  .legal-layout {
    display: block;
  }

  .legal-status {
    position: static;
    margin-bottom: 10vh;
  }

  .site-footer__inner {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 6vh;
  }
}

@media (max-width: 980px) {
  .research-meta {
    grid-template-columns: 1fr 1fr;
  }

  .research-meta > div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .research-meta > div:nth-child(4) {
    border-top: 1px solid var(--ink);
  }

  .research-finding__label {
    grid-column: 1 / 6;
  }

  .research-finding__result {
    grid-column: 6 / 13;
  }

  .research-prose {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .research-detail__hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 12vh);
  }

  .research-detail__hero::before {
    top: 18%;
    right: -42%;
    width: 96vw;
  }

  .research-detail__hero::after {
    right: -8%;
    bottom: 14%;
    width: 64vw;
  }

  .research-detail__hero h1 {
    margin-top: 5vh;
    font-size: clamp(3.7rem, 16vw, 6.1rem);
  }

  .research-detail__dek {
    margin: 8vh 0;
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .research-meta {
    display: block;
  }

  .research-meta > div,
  .research-meta > div + div,
  .research-meta > div:nth-child(3),
  .research-meta > div:nth-child(4) {
    min-height: 0;
    padding: 20px 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .research-meta > div:first-child {
    border-top: 0;
  }

  .research-finding {
    display: block;
    min-height: auto;
    padding-block: 13vh;
  }

  .research-finding__label h2 {
    margin-block: 4vh 9vh;
  }

  .research-finding__result {
    font-size: clamp(1.8rem, 8.5vw, 3rem);
  }

  .research-prose,
  .research-boundary__grid {
    display: block;
  }

  .research-prose p + p {
    margin-top: 5vh;
  }

  .research-boundary h2 {
    font-size: clamp(3.5rem, 15vw, 5.9rem);
  }

  .research-boundary__grid > div,
  .research-boundary__grid > div + div {
    min-height: 0;
    padding: 28px 0 42px;
    border-top: 1px solid color-mix(in srgb, var(--paper) 48%, transparent);
    border-left: 0;
  }

  .research-boundary__grid > div:first-child {
    border-top: 0;
  }

  .research-boundary__grid p {
    margin-top: 4vh;
  }
}

/* Product material worlds ------------------------------------------------ */

.system-card {
  display: grid;
  grid-template-rows: auto minmax(52px, 1fr) auto auto auto;
  align-content: stretch;
  min-height: clamp(620px, 72svh, 760px);
  padding: clamp(30px, 3vw, 46px);
  isolation: isolate;
}

.system-card::before {
  z-index: 1;
}

.system-card__material {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.system-card__material::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, color-mix(in srgb, var(--ink) 88%, transparent) 0 42%, color-mix(in srgb, var(--ink) 24%, transparent) 78%, transparent);
}

.system-card__material img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.system-card:hover .system-card__material img {
  scale: 1.04;
  filter: saturate(1.1);
}

.system-card__mark {
  position: relative;
  z-index: 2;
  width: auto;
  height: 30px;
  margin: 0;
  align-self: start;
}

.system-card--pliegors .system-card__mark {
  height: 42px;
}

.system-card--pliegocss {
  grid-column: span 5;
  min-height: clamp(680px, 82svh, 880px);
  border-top: 1px solid var(--ink);
  border-left: 0 !important;
}

.system-card--mars {
  grid-column: span 7;
  min-height: clamp(680px, 82svh, 880px);
  border-top: 1px solid var(--ink);
  background: #050607;
}

.system-card--mars::before {
  right: 7%;
  bottom: 12%;
  width: 38%;
  border-color: var(--mars);
  rotate: 45deg;
  opacity: 0.18;
}

.system-card--mars .system-card__material::after {
  background:
    linear-gradient(102deg, #050607f7 0 43%, #050607b8 66%, #0506071a),
    radial-gradient(circle at 72% 38%, #3ef0b61f, transparent 38%);
}

.system-card__mars-lockup,
.note-row__mars-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e8ecef;
  font-family: "Fragment Mono", monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-card__mars-lockup .system-card__mark {
  width: 52px;
  height: 52px;
}

.system-card--mars h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.system-card--mars .status {
  color: var(--mars);
}

.system-card--pliegocss::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 11% 4% 11% auto;
  width: min(42%, 540px);
  border: 1px solid color-mix(in srgb, #65d9ff 46%, transparent);
  background:
    linear-gradient(90deg, transparent 0 24%, color-mix(in srgb, #65d9ff 34%, transparent) 24% 24.25%, transparent 24.25% 72%, color-mix(in srgb, #2855ff 62%, transparent) 72% 72.35%, transparent 72.35%),
    linear-gradient(color-mix(in srgb, #f4f7f8 7%, transparent) 1px, transparent 1px);
  background-size: auto, 100% 44px;
  pointer-events: none;
}

.system-card--pliegocss .system-card__material::after {
  background: linear-gradient(90deg, color-mix(in srgb, #070a0d 97%, transparent) 0 47%, color-mix(in srgb, #070a0d 58%, transparent) 68%, color-mix(in srgb, #070a0d 12%, transparent));
}

.system-card--pliegocss .system-card__material img {
  object-position: center;
}

.system-card--pliegocss .system-card__mark {
  height: clamp(34px, 3.4vw, 48px);
}

.system-card--pliegocss > p {
  max-width: 42ch;
}

.system-card .status,
.system-card h3,
.system-card > p,
.system-card .actions {
  position: relative;
  z-index: 2;
  color: var(--paper-bright);
}

.system-card h3 {
  margin: 22px 0 16px;
}

.system-card .status {
  align-self: end;
  max-width: 32ch;
  margin-top: 4vh;
}

.system-card > p {
  margin: 0;
}

.system-card .actions {
  position: static;
  inset: auto;
  align-self: end;
  margin-top: 32px;
}

.system-card .actions a {
  border-color: color-mix(in srgb, var(--paper-bright) 62%, transparent);
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  color: var(--paper-bright);
  backdrop-filter: blur(10px);
}

.product-detail {
  --product-field: #171916;
  --product-accent: var(--ultraviolet);
  --product-pale: var(--paper-bright);
  background: var(--paper);
}

.product-detail--hyphae,
.release-note--hyphae {
  --product-field: #0d201a;
  --product-accent: #79dcc8;
  --product-signal: #d9a05b;
}

.product-detail--pliegors,
.release-note--pliegors {
  --product-field: #171916;
  --product-accent: #c23a30;
  --product-signal: #f3f4ee;
}

.product-detail--pliegocss,
.release-note--pliegocss {
  --product-field: #070a0d;
  --product-accent: #2855ff;
  --product-signal: #65d9ff;
}

.product-detail--mars,
.release-note--mars {
  --product-field: #050607;
  --product-accent: #3ef0b6;
  --product-signal: #4dc9ff;
}

.product-detail--mars .product-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 6vh);
  padding-bottom: 8vh;
  background: #050607;
  box-shadow: 0 0 0 100vmax #050607;
  color: #e8ecef;
  clip-path: inset(0 -100vmax);
}

.release-note--mars .release-hero {
  position: relative;
  background: #050607;
  box-shadow: 0 0 0 100vmax #050607;
  color: #e8ecef;
  clip-path: inset(0 -100vmax);
}

.product-detail--mars .product-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 -100vmax;
  background:
    linear-gradient(90deg, #050607 0 18%, #050607f5 32%, #050607d6 47%, #0506074d 68%, #050607 100%),
    linear-gradient(0deg, #050607 0, transparent 21% 78%, #050607 100%);
  pointer-events: none;
}

.product-detail--mars .product-hero__copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / 9;
  align-self: center;
  max-width: 62rem;
  padding-right: 0;
}

.mars-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 3.2vh 0;
  font-family: "Fragment Mono", monospace;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mars-lockup .product-mark {
  width: 64px;
  height: 64px;
  margin: 0;
}

.product-detail--mars .product-hero h1 {
  max-width: none;
  font-size: clamp(4.2rem, 5.35vw, 6.4rem);
  color: #e8ecef;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

.mars-hero__line {
  display: block;
  white-space: nowrap;
}

.product-detail--mars .product-hero__dek,
.release-note--mars .release-hero__summary {
  color: #b8c0c6;
}

.product-detail--mars .product-hero__dek {
  margin-top: 4vh;
}

.product-detail--mars .product-hero__release {
  margin: 3.5vh 0 3vh;
  border-color: #2a313b;
}

.product-detail--mars .product-hero .actions a,
.release-note--mars .release-hero .actions a {
  border-color: #3ef0b6;
  background: #3ef0b6;
  color: #050607;
}

.product-detail--mars .product-hero .actions a + a,
.release-note--mars .release-hero .actions a + a {
  background: transparent;
  color: #e8ecef;
}

.product-detail--mars .mars-hero__media {
  position: absolute;
  z-index: 0;
  grid-column: auto;
  grid-row: auto;
  inset: 0 auto 0 50%;
  width: 100vw;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.product-detail--mars .mars-hero__field {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  min-height: 0;
  border: 0;
  background:
    radial-gradient(52% 44% at 70% 40%, #3ef0b613, transparent 70%),
    radial-gradient(38% 34% at 82% 30%, #ffc24d0b, transparent 70%),
    radial-gradient(40% 36% at 24% 66%, #ff5fd20e, transparent 70%),
    #050607;
  clip-path: none;
}

.mars-hero__fallback,
.mars-hero__canvas,
.mars-hero__labels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mars-hero__fallback {
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.8) contrast(1.12);
  transition: opacity 900ms ease;
}

.mars-hero__canvas {
  opacity: 0;
  transition: opacity 900ms ease;
}

[data-mars-graph="active"] .mars-hero__fallback {
  opacity: 0.08;
}

[data-mars-graph="active"] .mars-hero__canvas {
  opacity: 1;
}

.mars-hero__labels .kg-label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 132px;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--kg-color) 44%, transparent);
  border-radius: 4px;
  background: #050607d9;
  box-shadow: 0 0 22px color-mix(in srgb, var(--kg-color) 13%, transparent);
  color: var(--kg-color);
  font-family: "Fragment Mono", monospace;
  font-size: 9px;
  line-height: 1.45;
  opacity: 0;
  transform-origin: left top;
  transition: border-color 320ms ease, box-shadow 320ms ease, opacity 320ms ease;
}

.mars-hero__labels .kg-name,
.mars-hero__labels .kg-hash {
  display: block;
  white-space: nowrap;
}

.mars-hero__labels .kg-hash {
  color: #9aa3ad;
}

.mars-hero__labels .kg-label.is-hot {
  border-color: var(--kg-color);
  box-shadow: 0 0 30px color-mix(in srgb, var(--kg-color) 28%, transparent);
}

.mars-hero__caption {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--shell-wide)) / 2));
  bottom: 28px;
  max-width: 46ch;
  margin: 0;
  color: #9aa3ad;
  font-family: "Fragment Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.mars-authority {
  padding-block: 17vh;
}

.mars-authority > header,
.mars-receipts__inner > header {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  align-items: start;
  gap: 28px;
}

.mars-authority h2,
.mars-receipts h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 560;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.mars-authority .lede,
.mars-receipts header > p:last-child {
  margin: 0;
}

.mars-authority__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 12vh 0 0;
  padding: 0;
  border: 1px solid #1c2128;
  background: #050607;
  color: #e8ecef;
  list-style: none;
}

.mars-authority__rail li {
  position: relative;
  min-height: 420px;
  padding: 30px;
}

.mars-authority__rail li + li {
  border-left: 1px solid #1c2128;
}

.mars-authority__rail li:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 2;
  top: 45%;
  right: -12px;
  color: var(--mars);
  font-family: "Fragment Mono", monospace;
  font-size: 25px;
}

.mars-authority__index,
.mars-authority__verb,
.mars-receipt__state,
.mars-record__index,
.mars-record__state {
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mars-authority__verb {
  margin: 18vh 0 10px;
  color: var(--mars);
}

.mars-authority__rail h3 {
  margin: 0 0 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  font-weight: 400;
}

.mars-authority__rail p:last-child {
  color: #9aa3ad;
  font-size: 15px;
}

.mars-receipts {
  background: #050607;
  box-shadow: 0 0 0 100vmax #050607;
  color: #e8ecef;
  clip-path: inset(0 -100vmax);
}

.mars-receipts__inner {
  padding-block: 17vh;
}

.mars-receipts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12vh;
  border-top: 1px solid #2a313b;
  border-bottom: 1px solid #2a313b;
}

.mars-receipt {
  min-height: 390px;
  padding: 32px 26px;
}

.mars-receipt + .mars-receipt {
  border-left: 1px solid #2a313b;
}

.mars-receipt__state {
  color: var(--mars);
}

.mars-receipt--rejected .mars-receipt__state {
  color: #ffb454;
}

.mars-receipt strong {
  display: block;
  margin: 14vh 0 18px;
  color: var(--mars);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.85;
}

.mars-receipt--rejected strong {
  color: #ffb454;
}

.mars-receipt > p:last-child {
  color: #9aa3ad;
  font-size: 15px;
}

.product-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 108svh;
  padding-top: calc(var(--header-height) + 9vh);
  padding-bottom: 11vh;
  gap: 0 24px;
}

.product-hero__copy {
  grid-column: 1 / 7;
  align-self: center;
  padding-right: 3vw;
}

.product-mark {
  width: auto;
  height: clamp(28px, 3.6vw, 52px);
  margin: 7vh 0 5vh;
}

.product-detail--pliegors .product-mark {
  height: clamp(44px, 6vw, 82px);
}

.product-detail--pliegocss .product-mark {
  height: clamp(38px, 4.8vw, 64px);
}

.product-hero h1 {
  max-width: 9.8ch;
  margin: 0;
  font-size: clamp(4.2rem, 7.6vw, 8.7rem);
  font-weight: 590;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.product-detail--hyphae .product-hero h1::first-line {
  color: #1b7564;
}

.product-detail--pliegors .product-hero h1::first-letter {
  color: var(--product-accent);
}

.product-detail--pliegocss .product-hero h1::first-line {
  color: var(--product-accent);
}

.product-detail--pliegocss .product-hero__image {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.product-detail--pliegocss .product-hero__image::before,
.product-detail--pliegocss .product-hero__image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.product-detail--pliegocss .product-hero__image::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, color-mix(in srgb, #65d9ff 42%, transparent) 18% 18.2%, transparent 18.2%),
    linear-gradient(transparent 0 72%, color-mix(in srgb, #2855ff 44%, transparent) 72% 72.25%, transparent 72.25%);
}

.product-detail--pliegocss .product-hero__image::after {
  top: 11%;
  right: 8%;
  width: 92px;
  height: 92px;
  border-top: 1px solid #65d9ff;
  border-right: 1px solid #65d9ff;
}

.product-detail--pliegocss .product-thesis h2,
.product-detail--pliegocss .product-next {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-style: normal;
  font-weight: 650;
}

.product-detail--pliegocss .product-process,
.product-detail--pliegocss .product-proof,
.release-note--pliegocss .release-boundaries {
  background-color: #070a0d;
  background-image:
    linear-gradient(color-mix(in srgb, #f4f7f8 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, #f4f7f8 5%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
}

.product-detail--pliegocss .product-flow__step::before {
  border-radius: 0;
  rotate: 0deg;
}

.product-detail--pliegocss .product-proof pre {
  border-color: color-mix(in srgb, #65d9ff 36%, transparent);
  box-shadow: 18px 18px 0 #2855ff;
}

.product-hero__dek {
  max-width: 35rem;
  margin: 6vh 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.product-hero__release {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 5vh 0 4vh;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-hero__release span:first-child {
  color: var(--product-accent);
  font-weight: 700;
}

.product-hero__media {
  grid-column: 7 / 13;
  align-self: stretch;
  min-height: 720px;
  margin: 0;
}

.product-hero__image {
  height: calc(100% - 70px);
  min-height: 640px;
  overflow: hidden;
  background: var(--product-field);
  clip-path: polygon(7% 0, 100% 0, 100% 93%, 92% 100%, 0 100%, 0 8%);
}

.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__media figcaption {
  max-width: 46ch;
  margin: 18px 0 0 auto;
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-thesis {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  min-height: 95svh;
  padding-block: 18vh;
  border-top: 1px solid var(--ink);
}

.product-thesis .section-index {
  grid-column: 1 / 3;
  padding-top: 16px;
}

.product-thesis h2 {
  grid-column: 3 / 12;
  max-width: 12ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4rem, 8.4vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.product-thesis__copy {
  grid-column: 7 / 12;
  max-width: 37rem;
  margin: 11vh 0 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.36;
}

.product-process,
.product-proof,
.release-boundaries {
  background: var(--product-field);
  color: var(--paper-bright);
}

.product-process__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 150svh;
  padding-block: 16vh;
}

.product-process__heading {
  grid-column: 1 / 6;
  position: sticky;
  top: 15vh;
  align-self: start;
}

.product-process__heading h2,
.product-capabilities h2,
.product-proof h2,
.product-boundary h2,
.release-body h2,
.release-boundaries h2,
.release-unreleased h2,
.release-evidence h2 {
  max-width: 10ch;
  margin: 5vh 0 4vh;
  font-size: clamp(3.5rem, 6.5vw, 7.5rem);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.product-process__heading > p:last-child {
  max-width: 28ch;
  color: color-mix(in srgb, var(--paper-bright) 70%, transparent);
}

.product-flow {
  position: relative;
  grid-column: 7 / 13;
  padding-left: 56px;
}

.product-flow__track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1px;
  overflow: hidden;
  background: color-mix(in srgb, var(--paper-bright) 18%, transparent);
}

.product-flow__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--product-accent);
  transform-origin: top;
}

.product-flow__step {
  position: relative;
  min-height: 32svh;
  padding: 0 0 12vh;
  opacity: 0.48;
  transition: opacity 380ms ease;
}

.product-flow__step::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -51px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--paper-bright);
  background: var(--product-field);
  rotate: 45deg;
}

.product-flow__step.is-active {
  opacity: 1;
}

.product-flow__step.is-active::before {
  border-color: var(--product-accent);
  background: var(--product-accent);
}

.product-flow__index,
.product-capability__index,
.release-change > span {
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
}

.product-flow__step h3 {
  margin: 2vh 0 3vh;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.product-flow__step p {
  max-width: 36rem;
  color: color-mix(in srgb, var(--paper-bright) 78%, transparent);
}

.product-capabilities {
  padding-block: 17vh;
}

.product-capabilities > header {
  display: grid;
  grid-template-columns: 2fr 10fr;
  align-items: start;
}

.product-capabilities > header h2 {
  margin-top: 0;
}

.product-capabilities__list {
  margin-top: 12vh;
  border-top: 1px solid var(--ink);
}

.product-capability {
  display: grid;
  grid-template-columns: 1fr 4fr 5fr 1fr;
  gap: 24px;
  align-items: start;
  min-height: 34vh;
  padding-block: 6vh;
  border-bottom: 1px solid var(--ink);
}

.product-capability h3 {
  grid-column: 2;
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.product-capability p {
  grid-column: 3;
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.product-proof__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  min-height: 100svh;
  padding-block: 16vh;
  gap: 6vw;
}

.product-proof__copy {
  grid-column: 1 / 6;
}

.product-proof__copy p:last-child {
  max-width: 32ch;
  color: color-mix(in srgb, var(--paper-bright) 72%, transparent);
}

.product-proof pre {
  grid-column: 6 / 13;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid color-mix(in srgb, var(--paper-bright) 24%, transparent);
  background: color-mix(in srgb, black 46%, transparent);
  box-shadow: 18px 18px 0 var(--product-accent);
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.8rem, 1.25vw, 1rem);
  line-height: 1.9;
}

.product-boundary {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 8vw;
  padding-block: 18vh;
}

.product-boundary__heading > p:last-child {
  max-width: 35ch;
}

.product-boundary__list {
  margin: 4vh 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.product-boundary__list li {
  position: relative;
  padding: 28px 34px 28px 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.product-boundary__list li::after {
  content: "×";
  position: absolute;
  top: 25px;
  right: 0;
  color: var(--product-accent);
  font-family: "Fragment Mono", monospace;
}

.product-release {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 6vw;
  padding-block: 14vh 20vh;
  border-top: 1px solid var(--ink);
}

.product-release h2 {
  margin: 4vh 0 3vh;
  font-size: clamp(3.4rem, 6vw, 7rem);
  letter-spacing: -0.06em;
}

.product-release__actions {
  align-self: center;
}

.product-next {
  grid-column: 1 / -1;
  margin-top: 16vh;
  padding: 5vh 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 7rem);
  font-style: italic;
  line-height: 1;
  text-decoration: none;
}

.product-next::after {
  content: " →";
  color: var(--product-accent);
}

/* Notes and release dossiers -------------------------------------------- */

.notes-index {
  padding-block: 10vh 18vh;
  border-top: 1px solid var(--ink);
}

.notes-index__header {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  align-items: start;
  gap: 28px;
}

.notes-index__header h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.notes-index__header > p:last-child {
  margin: 0;
}

.notes-index__records {
  margin-top: 14vh;
  border-top: 1px solid var(--ink);
}

.note-row {
  display: grid;
  grid-template-columns: 4fr 2fr 6fr;
  min-height: 52vh;
  border-bottom: 1px solid var(--ink);
}

.note-row__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
}

.note-row__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.note-row__media:hover > img:first-child {
  scale: 1.045;
}

.note-row__mark {
  position: absolute;
  top: 28px;
  left: 28px;
  width: auto;
  height: 28px;
}

.note-row--pliegors .note-row__mark {
  height: 46px;
}

.note-row--pliegocss .note-row__mark {
  height: 38px;
}

.note-row--pliegocss .note-row__media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 1px solid color-mix(in srgb, #65d9ff 68%, transparent);
  border-right: 1px solid color-mix(in srgb, #2855ff 78%, transparent);
  pointer-events: none;
}

.note-row--mars .note-row__media {
  background: #050607;
}

.note-row__mars-lockup {
  position: absolute;
  top: 26px;
  left: 26px;
}

.note-row__mars-lockup .note-row__mark {
  position: static;
  width: 48px;
  height: 48px;
}

.release-note--mars .release-hero__media {
  border: 1px solid #1c2128;
  background: #050607;
}

.mars-status-record__meta {
  border-color: #1c2128;
  background: #0a0c0f;
  color: #e8ecef;
}

.mars-record__list {
  margin-top: 10vh;
  border-top: 1px solid var(--ink);
}

.mars-record__list article {
  display: grid;
  grid-template-columns: 1fr 10fr;
  gap: 24px;
  min-height: 260px;
  padding-block: 5vh;
  border-bottom: 1px solid var(--ink);
}

.mars-record__list article > div {
  display: grid;
  grid-template-columns: 3fr 6fr;
  gap: 24px;
}

.mars-record__state {
  grid-column: 1 / -1;
  margin: 0;
  color: #ffb454;
}

.mars-record__state--pass {
  color: #137a5b;
}

.mars-record__list h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.mars-record__list article > div > p:last-child {
  margin: 0;
}

.mars-record__open {
  background: #050607;
  color: #e8ecef;
}

.mars-record__open .mars-record__list,
.mars-record__open .mars-record__list article {
  border-color: #2a313b;
}

.mars-record__open .mars-record__list article > div > p:last-child {
  color: #9aa3ad;
}

.mars-record__signal {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border: 1px solid #ffb454;
  rotate: 45deg;
}

.note-row__meta {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 34px;
  border-left: 1px solid var(--ink);
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.note-row__meta span:nth-child(2) {
  color: var(--ultraviolet);
}

.note-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 72px);
  border-left: 1px solid var(--ink);
}

.note-row__body h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 5.4rem);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.note-row__body h2 a {
  text-decoration: none;
}

.note-row__body p {
  max-width: 38rem;
  margin: 5vh 0;
}

.note-row__body .text-link {
  margin-top: auto;
}

.release-note {
  --product-field: #171916;
  --product-accent: var(--ultraviolet);
}

.release-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 105svh;
  padding-top: calc(var(--header-height) + 10vh);
  padding-bottom: 10vh;
  gap: 32px;
}

.release-hero__copy {
  grid-column: 1 / 8;
  align-self: center;
}

.release-hero h1 {
  max-width: 9ch;
  margin: 6vh 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.release-hero__summary {
  max-width: 42rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.release-hero__media {
  grid-column: 8 / 13;
  align-self: stretch;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 89% 100%, 0 100%, 0 8%);
}

.release-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.release-meta > div {
  min-height: 128px;
  padding: 24px;
}

.release-meta > div + div {
  border-left: 1px solid var(--ink);
}

.release-meta dt {
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.release-meta dd {
  margin: 28px 0 0;
  font-size: 16px;
}

.release-body,
.release-unreleased,
.release-evidence {
  padding-block: 16vh;
}

.release-body > header {
  display: grid;
  grid-template-columns: 2fr 10fr;
}

.release-body > header h2 {
  margin-top: 0;
}

.release-changes {
  margin-top: 12vh;
  border-top: 1px solid var(--ink);
}

.release-change {
  display: grid;
  grid-template-columns: 1fr 4fr 6fr;
  gap: 28px;
  min-height: 29vh;
  padding-block: 6vh;
  border-bottom: 1px solid var(--ink);
}

.release-change h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  font-weight: 570;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.release-change p {
  max-width: 45rem;
  margin: 0;
}

.release-boundaries__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 8vw;
  padding-block: 16vh;
}

.release-boundaries__list {
  margin: 4vh 0 0;
  padding: 0;
  list-style: none;
}

.release-boundaries__list li {
  padding: 26px 0;
  border-top: 1px solid color-mix(in srgb, var(--paper-bright) 36%, transparent);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.release-unreleased {
  display: grid;
  grid-template-columns: 2fr 5fr 5fr;
  align-items: start;
  gap: 28px;
}

.release-unreleased h2 {
  margin-top: 0;
}

.release-unreleased > p:last-child {
  max-width: 40rem;
}

.release-evidence {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 6vw;
  border-top: 1px solid var(--ink);
}

.release-evidence .actions {
  align-content: center;
  height: 100%;
}

@media (max-width: 980px) {
  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card + .system-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .system-card--hyphae,
  .system-card--pliegors,
  .system-card--pliegocss,
  .system-card--mars {
    grid-column: auto;
  }

  .mars-authority__rail,
  .mars-receipts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mars-authority__rail li:nth-child(3),
  .mars-receipt:nth-child(3) {
    border-top: 1px solid #2a313b;
    border-left: 0;
  }

  .mars-authority__rail li:nth-child(4),
  .mars-receipt:nth-child(4) {
    border-top: 1px solid #2a313b;
  }

  .product-hero {
    display: block;
  }

  .product-detail--mars .product-hero {
    display: grid;
    min-height: max(820px, 100svh);
  }

  .product-detail--mars .product-hero__copy {
    grid-column: 1 / 13;
    max-width: 86%;
  }

  .product-detail--mars .product-hero h1 {
    font-size: clamp(3.4rem, 7.8vw, 5rem);
  }

  .mars-hero__labels {
    display: none;
  }

  .product-hero__copy {
    padding-right: 0;
  }

  .product-hero__media {
    min-height: 0;
    margin-top: 9vh;
  }

  .product-hero__image {
    height: 70svh;
    min-height: 600px;
  }

  .product-thesis h2 {
    grid-column: 3 / 13;
  }

  .product-thesis__copy {
    grid-column: 6 / 13;
  }

  .product-capability {
    grid-template-columns: 1fr 4fr 6fr;
  }

  .note-row {
    grid-template-columns: 5fr 7fr;
  }

  .note-row__meta {
    grid-column: 1;
    grid-row: 2;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .note-row__body {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .release-hero {
    display: block;
  }

  .release-hero__media {
    height: 70svh;
    min-height: 600px;
    margin-top: 8vh;
  }
}

@media (max-width: 720px) {
  .system-card {
    min-height: 600px;
  }

  .system-card--pliegocss::after {
    inset: auto 22px 22px;
    width: auto;
    height: 32%;
  }

  .product-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 12vh);
  }

  .product-detail--mars .product-hero {
    min-height: max(760px, 100svh);
    padding-top: calc(var(--header-height) + 8vh);
    padding-bottom: 12vh;
  }

  .product-detail--mars .product-hero__copy {
    max-width: 100%;
  }

  .product-detail--mars .product-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .mars-hero__line {
    white-space: normal;
  }

  .mars-hero__caption {
    display: none;
  }

  .product-hero h1 {
    font-size: clamp(3.9rem, 16vw, 6rem);
  }

  .product-hero__media {
    min-height: 0;
  }

  .product-hero__image {
    height: 64svh;
    min-height: 0;
  }

  .product-thesis {
    display: block;
    min-height: auto;
    padding-block: 14vh;
  }

  .product-thesis h2 {
    margin-top: 5vh;
    font-size: clamp(3.7rem, 15vw, 6rem);
  }

  .product-thesis__copy {
    margin-top: 8vh;
  }

  .product-process__inner,
  .product-capabilities > header,
  .product-proof__inner,
  .product-boundary,
  .product-release,
  .mars-authority > header,
  .mars-receipts__inner > header,
  .notes-index__header,
  .release-body > header,
  .release-boundaries__inner,
  .release-unreleased,
  .release-evidence {
    display: block;
  }

  .mars-authority .lede,
  .mars-receipts header > p:last-child {
    margin-top: 6vh;
  }

  .mars-authority__rail,
  .mars-receipts__grid {
    grid-template-columns: 1fr;
  }

  .mars-authority__rail li,
  .mars-receipt {
    min-height: 0;
  }

  .mars-authority__rail li + li,
  .mars-authority__rail li:nth-child(3),
  .mars-authority__rail li:nth-child(4),
  .mars-receipt + .mars-receipt,
  .mars-receipt:nth-child(3),
  .mars-receipt:nth-child(4) {
    border-top: 1px solid #2a313b;
    border-left: 0;
  }

  .mars-authority__rail li:not(:last-child)::after {
    top: auto;
    right: 28px;
    bottom: -18px;
    rotate: 90deg;
  }

  .mars-authority__verb,
  .mars-receipt strong {
    margin-top: 8vh;
  }

  .mars-record__list article,
  .mars-record__list article > div {
    display: block;
  }

  .mars-record__list h3,
  .mars-record__list article > div > p:last-child {
    margin-top: 5vh;
  }

  .product-process__inner {
    min-height: auto;
  }

  .product-process__heading {
    position: static;
    margin-bottom: 14vh;
  }

  .product-flow {
    padding-left: 38px;
  }

  .product-flow__step::before {
    left: -33px;
  }

  .product-capability,
  .release-change {
    display: block;
    min-height: auto;
  }

  .product-capability h3,
  .release-change h3 {
    margin: 5vh 0;
  }

  .product-proof pre {
    margin-top: 9vh;
    box-shadow: 10px 10px 0 var(--product-accent);
  }

  .product-boundary__list,
  .product-release__actions,
  .product-next,
  .notes-index__header h2,
  .release-boundaries__list,
  .release-unreleased h2,
  .release-unreleased > p:last-child,
  .release-evidence .actions {
    margin-top: 8vh;
  }

  .note-row {
    display: block;
  }

  .note-row__media {
    min-height: 58svh;
  }

  .note-row__body {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .release-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 12vh);
  }

  .release-hero h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

  .release-hero__media {
    height: 64svh;
    min-height: 0;
  }

  .release-meta {
    display: block;
  }

  .release-meta > div,
  .release-meta > div + div {
    min-height: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .release-meta > div:first-child {
    border-top: 0;
  }
}

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

  .living-scene {
    display: none;
  }

  .living-fallback {
    opacity: 0.7;
  }

  .portfolio-chapter {
    opacity: 1;
  }
}

@media (forced-colors: active) {
  .living-stage,
  .registration-field {
    display: none;
  }

  .brand__mark,
  .c-icon {
    border: 2px solid CanvasText;
    background: Canvas;
  }

  .brand__mark path:not(.brand__seam) {
    fill: CanvasText;
  }

  .brand__seam {
    stroke: Canvas;
  }

  .actions a,
  .action,
  .nav .language-link {
    border: 2px solid CanvasText;
  }
}
