/* Laboratorio — division styles. Does not replace S-35 globals. */
.ml-page [data-ml-lang][hidden] {
  display: none !important;
}

.ml-page {
  --ml-black: #000000;
  --ml-white: #ffffff;
  --ml-gray: #767676;
  --ml-gray-line: #d4d4d4;
  --ml-gray-soft: #e5e5e5;
  --ml-signal: #000000;
  --ml-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ml-sans: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --ml-mono: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --ml-pad: 1.5rem;
  background: var(--ml-white);
  color: var(--ml-black);
  font-family: var(--ml-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ml-page .nav {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ml-page .nav-link,
.ml-page .contact-btn {
  color: #fff;
}

.ml-kicker,
.ml-meta,
.ml-label,
.ml-code,
.ml-subnav a,
.ml-footer,
.ml-axis,
.ml-prov {
  font-family: var(--ml-sans);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ml-gray);
}

.ml-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.5rem;
  padding: 0 var(--ml-pad);
  max-width: 980px;
  margin: 0 auto;
}

.ml-rule {
  border: 0;
  border-top: 1px solid var(--ml-gray-line);
  margin: 0;
}

.ml-rule--heavy {
  border-top-width: 2px;
  border-top-color: var(--ml-black);
}

/* Subnav */
.ml-subnav {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-gray-line);
}

.ml-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.55rem var(--ml-pad);
  min-height: 40px;
}

.ml-subnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.ml-subnav a {
  color: var(--ml-gray);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ml-ease), border-color 200ms var(--ml-ease);
}

.ml-subnav a:hover,
.ml-subnav a[aria-current="page"] {
  color: var(--ml-black);
  border-bottom-color: var(--ml-black);
}

.ml-subnav a:focus-visible,
.ml-page a:focus-visible,
.ml-page button:focus-visible {
  outline: 1px solid var(--ml-signal);
  outline-offset: 3px;
}

.ml-subnav-back {
  color: var(--ml-gray) !important;
  white-space: nowrap;
}

/* Hero */
.ml-hero {
  padding: 0 0 0.5rem;
}

.ml-hero-kicker {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
  color: var(--ml-gray);
}

.ml-hero-title,
.ml-archive-title {
  font-size: clamp(48px, 9vw, 72px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: none;
  color: var(--ml-black);
  margin: 0 0 16px;
}

.ml-hero-side {
  grid-column: 10 / -1;
  align-self: end;
  padding-bottom: 0.4em;
}

.ml-hero-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-gray);
  margin-bottom: 1.25rem;
}

.ml-hero-line {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 36em;
  margin-bottom: 0.75rem;
}

.ml-hero-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  max-width: 40em;
}

.ml-archive-lead {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 40em;
}

.ml-rail {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--ml-gray);
}

.ml-rail strong {
  display: block;
  color: #000;
  font-weight: 400;
}

.ml-hero-plate {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ml-hero-plate span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-gray);
}

.ml-hero-plate span:nth-child(1),
.ml-hero-plate span:nth-child(2),
.ml-hero-plate span:nth-child(3),
.ml-hero-plate span:nth-child(4) {
  grid-column: auto;
  color: var(--ml-gray);
}

/* Manifesto */
.ml-block {
  padding: 0 0 2rem;
  border-top: 0;
}

.ml-block h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.ml-prose {
  grid-column: 1 / -1;
  font-size: 15px;
  line-height: 1.55;
  color: #000;
}

.ml-prose p + p { margin-top: 1rem; }

.ml-close {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-gray);
}

/* Material index */
.ml-index-table-wrap {
  overflow-x: auto;
}

.ml-grid > .ml-index-table-wrap {
  grid-column: 1 / -1;
  min-width: 0;
}

.ml-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.ml-table th {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ml-gray);
  text-align: left;
  padding: 0 10px 5px 0;
  border-bottom: 3px solid var(--ml-black);
  white-space: nowrap;
}

.ml-table td {
  padding: 7px 10px 7px 0;
  border-bottom: 1px solid var(--ml-gray-line);
  vertical-align: middle;
  font-size: 15px;
}

.ml-table td:first-child,
.ml-table th:first-child {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ml-gray);
  white-space: nowrap;
}

.ml-table a {
  color: inherit;
  text-decoration: none;
}

.ml-table tbody tr:focus,
.ml-table tbody tr:focus-visible {
  outline: 1px solid var(--ml-signal);
  outline-offset: -1px;
}

.ml-table a:hover .ml-name {
  border-bottom: 1px solid var(--ml-black);
}

.ml-name {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 801px) {
  .ml-archive .ml-table:not(#ml-research-table) td:nth-child(2),
  .ml-archive .ml-table:not(#ml-research-table) th:nth-child(2),
  .ml-archive .ml-table:not(#ml-research-table) td:nth-child(5),
  .ml-archive .ml-table:not(#ml-research-table) th:nth-child(5) {
    white-space: nowrap;
    width: 1%;
  }
  .ml-sheet-row--index > :not(.ml-rail) {
    padding-top: 5rem;
  }
}

.ml-name-en {
  color: var(--ml-gray);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.ml-row-disabled {
  opacity: 0.55;
  cursor: default;
}

.ml-row.is-active td {
  border-bottom-color: var(--ml-signal);
}

.ml-status {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ml-gray);
}

.ml-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.ml-filters button {
  background: none;
  border: 0;
  padding: 0.2rem 0;
  font-family: var(--ml-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ml-gray);
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.ml-filters button[aria-pressed="true"],
.ml-filters button:hover {
  color: var(--ml-black);
  border-bottom-color: var(--ml-black);
}

/* Featured */
.ml-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-column: 1 / -1;
  gap: 0;
  border: 1px solid #000;
}

.ml-featured-visual {
  min-height: 320px;
  overflow: hidden;
  background: #f5f5f5;
}

.ml-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 200ms var(--ml-ease);
}

.ml-featured:hover img {
  transform: scale(1.02);
}

.ml-featured-meta {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #000;
}

.ml-featured-meta h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.ml-featured-meta a {
  color: inherit;
  text-decoration: none;
}

.ml-featured-meta a:hover {
  border-bottom: 1px solid var(--ml-black);
}

/* Methodology strip */
.ml-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  border-top: 0;
  border-bottom: 0;
}

.ml-step {
  padding: 8px 0 0;
  border-right: 0;
  border-top: 3px solid #000;
}

.ml-step:last-child { border-right: 0; }

.ml-step-n {
  font-size: 10px;
  color: var(--ml-gray);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.ml-step-l {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.ml-chain {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.15rem;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ml-black);
  padding: 4px 0 0;
}

.ml-chain span { color: var(--ml-gray); padding: 0 0.4rem; }

/* Acerca de — documento editorial */
.ml-about-sec-n {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #9a9a9a;
  margin-bottom: 10px;
}
.ml-about-sec-h {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  text-transform: none;
  letter-spacing: -0.01em;
}
.ml-about-body {
  position: relative;
  border-top: 1px solid #d8d8d8;
  padding-top: 20px;
  max-width: 760px;
}
.ml-about-body .ml-prose {
  font-size: 16px;
  line-height: 1.62;
  color: #111;
}
.ml-about-body .ml-prose p {
  margin: 0;
}
.ml-about-body .ml-prose p + p {
  margin-top: 16px;
}
.ml-about-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d8d8d8;
  margin-top: 28px;
}
.ml-about-step {
  padding: 16px 16px 0 0;
  min-width: 0;
}
.ml-about-step:last-child {
  padding-right: 0;
}
.ml-about-step-n {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #9a9a9a;
  margin-bottom: 8px;
}
.ml-about-step-l {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.ml-about-note {
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #8a8a8a;
  margin: 14px 0 0;
}
.ml-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d8d8d8;
  margin-top: 28px;
}
.ml-about-split-col {
  padding: 18px 24px 0 0;
}
.ml-about-split-col + .ml-about-split-col {
  border-left: 1px solid #d8d8d8;
  padding: 18px 0 0 24px;
}
.ml-about-split-h {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
}
.ml-about-split-col p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #111;
}
.ml-about-prov {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.ml-about-prov th,
.ml-about-prov td {
  padding: 12px 0;
  border-top: 1px solid #ebebeb;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
}
.ml-about-prov tr:first-child th,
.ml-about-prov tr:first-child td {
  border-top: 1px solid #d8d8d8;
}
.ml-about-prov tr:last-child th,
.ml-about-prov tr:last-child td {
  border-bottom: 1px solid #d8d8d8;
}
.ml-about-prov th {
  width: 74px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #000;
  padding-right: 8px;
}
.ml-about-prov-name {
  width: 210px;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.ml-about-prov td:last-child {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}
.ml-about-read {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.ml-about-read-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #000;
}
.ml-about-read-item p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #444;
}
.ml-about-body > .ml-prose + .ml-about-list {
  margin-top: 26px;
}
.ml-about-list {
  width: 100%;
  border-collapse: collapse;
}
.ml-about-list th,
.ml-about-list td {
  padding: 13px 0;
  border-top: 1px solid #ebebeb;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
}
.ml-about-list tr:first-child th,
.ml-about-list tr:first-child td {
  border-top: 1px solid #d8d8d8;
}
.ml-about-list tr:last-child th,
.ml-about-list tr:last-child td {
  border-bottom: 1px solid #d8d8d8;
}
.ml-about-list--flush tr:first-child th,
.ml-about-list--flush tr:first-child td {
  border-top: 0;
  padding-top: 0;
}
.ml-about-list--flush tr:last-child th,
.ml-about-list--flush tr:last-child td {
  border-bottom: 0;
}
.ml-about-list th {
  width: 52px;
  font-size: 11px;
  color: #9a9a9a;
  padding-right: 8px;
}
.ml-about-list-name {
  width: 190px;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.ml-about-list td:last-child {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}
.ml-about-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.ml-about-trio-col {
  padding: 0 22px;
}
.ml-about-trio-col:first-child {
  padding-left: 0;
}
.ml-about-trio-col:last-child {
  padding-right: 0;
}
.ml-about-trio-col + .ml-about-trio-col {
  border-left: 1px solid #d8d8d8;
}
.ml-about-trio-col p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #111;
}
.ml-about-trio + .ml-prose {
  margin-top: 26px;
}

/* Footer */
.ml-footer {
  background: var(--ml-white);
  color: var(--ml-gray);
  border-top: 5px solid var(--ml-black);
  padding: 8px 0 3rem;
}

.ml-footer a {
  color: var(--ml-gray);
  text-decoration: none;
}

.ml-footer a:hover { border-bottom: 1px solid var(--ml-black); color: var(--ml-black); }

.ml-footer-brand {
  grid-column: 1 / 6;
}

.ml-footer-brand strong {
  display: block;
  font-family: var(--ml-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ml-black);
  margin-bottom: 0.5rem;
}

.ml-footer-nav {
  grid-column: 6 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-content: start;
  justify-content: flex-end;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ml-footer-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 1.25rem;
  padding-top: 8px;
  border-top: 1px solid var(--ml-black);
  color: var(--ml-gray);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Material file */
.ml-file-head {
  padding: 3.5rem 0 2rem;
}

.ml-sheet {
  max-width: 980px;
  margin: 1.5rem auto 4rem;
  padding: 0 var(--ml-pad) 3rem;
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.ml-archive {
  max-width: 980px;
  margin: 1.5rem auto 4rem;
  padding: 0 var(--ml-pad) 1rem;
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.ml-archive .ml-grid {
  padding: 0;
  max-width: none;
}

.ml-sheet-mast {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 5px;
}

.ml-sheet-mast-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ml-sheet-row {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: 22px;
  margin: 0 0 30px;
}

.ml-sheet h1 {
  font-family: inherit;
  text-transform: none;
}

.ml-sheet-logo {
  height: 14px;
  width: auto;
  display: block;
}

.ml-sheet-fig picture,
.ml-sheet-fig img {
  width: 100%;
  height: auto;
  display: block;
}

.ml-sheet table {
  width: 100%;
  border-collapse: collapse;
}

.ml-m-hair {
  height: 5px;
  margin: 0 0 26px;
  background-color: #E2E2E2;
}
.ml-m-rule {
  height: 1px;
  background: #000;
  margin-bottom: 12px;
}
.ml-m-kpi {
  border-top: 5px solid #000;
  padding-top: 8px;
}
.ml-m-card {
  border-top: 3px solid #000;
  padding-top: 8px;
}
.ml-m-id {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.ml-id-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0;
}
.ml-m-notice {
  border-top: 5px solid #000;
}

/* Arena de río — prueba de motion editorial */
.ml-sheet--motion.is-armed .ml-m-hair,
.ml-sheet--motion.is-armed .ml-m-rule,
.ml-sheet--motion.is-armed .ml-m-id,
.ml-sheet--motion.is-armed .ml-m-kpi,
.ml-sheet--motion.is-armed .ml-m-card,
.ml-sheet--motion.is-armed .ml-m-notice {
  position: relative;
}
.ml-sheet--motion.is-armed .ml-m-hair {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-kpi {
  border-top-width: 0;
}
.ml-sheet--motion.is-armed .ml-m-kpi::after,
.ml-sheet--motion.is-armed .ml-m-card::after,
.ml-sheet--motion.is-armed .ml-m-notice::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.ml-sheet--motion.is-armed .ml-m-kpi::after {
  height: 5px;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-card {
  border-top-width: 0;
}
.ml-sheet--motion.is-armed .ml-m-card::after {
  height: 3px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-notice {
  border-top-width: 0;
}
.ml-sheet--motion.is-armed .ml-m-notice::after {
  height: 5px;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-id {
  border-width: 0;
}
.ml-sheet--motion.is-armed .ml-m-id::before,
.ml-sheet--motion.is-armed .ml-m-id::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-id::before { top: 0; }
.ml-sheet--motion.is-armed .ml-m-id::after { bottom: 0; transition-delay: 0.12s; }

.ml-sheet--motion.is-armed h1 {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-sheet-hero > p,
.ml-sheet--motion.is-armed .ml-archive-lead {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}
.ml-sheet--motion.is-armed .ml-m-kpi > div:first-child {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-plate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-grain {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-chart-wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-barfill {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-m-band {
  opacity: 0;
  transition: opacity 0.8s ease 0.15s;
}
.ml-sheet--motion.is-armed .ml-m-curve {
  transition: stroke-dashoffset 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}
.ml-sheet--motion.is-armed tbody tr {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 45ms),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 45ms);
}

.ml-sheet--motion .is-in .ml-m-rule,
.ml-sheet--motion .is-in .ml-m-kpi::after,
.ml-sheet--motion .is-in .ml-m-card::after,
.ml-sheet--motion .is-in .ml-m-notice::after,
.ml-sheet--motion .is-in .ml-m-id::before,
.ml-sheet--motion .is-in .ml-m-id::after,
.ml-sheet--motion .ml-m-hair.is-in {
  transform: scaleX(1);
}
.ml-sheet--motion .is-in h1,
.ml-sheet--motion .is-in .ml-sheet-hero > p,
.ml-sheet--motion .is-in .ml-archive-lead,
.ml-sheet--motion .is-in .ml-m-kpi > div:first-child,
.ml-sheet--motion .is-in .ml-m-plate,
.ml-sheet--motion .is-in .ml-m-grain,
.ml-sheet--motion .is-in .ml-m-chart-wrap,
.ml-sheet--motion .is-in .ml-m-band,
.ml-sheet--motion .is-in tbody tr {
  opacity: 1;
  transform: none;
}
.ml-sheet--motion .is-in .ml-m-barfill {
  transform: scaleX(1);
}
.ml-sheet--motion .is-in .ml-m-curve {
  stroke-dashoffset: 0;
}

.ml-sheet--motion .is-in .ml-m-kpi:nth-child(2)::after,
.ml-sheet--motion .is-in .ml-m-kpi:nth-child(2) > div:first-child { transition-delay: 0.08s; }
.ml-sheet--motion .is-in .ml-m-kpi:nth-child(3)::after,
.ml-sheet--motion .is-in .ml-m-kpi:nth-child(3) > div:first-child { transition-delay: 0.16s; }
.ml-sheet--motion .is-in .ml-m-kpi:nth-child(4)::after,
.ml-sheet--motion .is-in .ml-m-kpi:nth-child(4) > div:first-child { transition-delay: 0.24s; }
.ml-sheet--motion .is-in .ml-m-card:nth-child(2)::after { transition-delay: 0.1s; }
.ml-sheet--motion .is-in .ml-m-card:nth-child(3)::after { transition-delay: 0.2s; }

.ml-sheet--motion.is-armed .ml-about-body {
  border-top-color: transparent;
}
.ml-sheet--motion.is-armed .ml-about-body::before,
.ml-sheet--motion.is-armed .ml-about-chain::before,
.ml-sheet--motion.is-armed .ml-about-split::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #d8d8d8;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-sheet--motion.is-armed .ml-about-chain,
.ml-sheet--motion.is-armed .ml-about-split {
  position: relative;
  border-top-color: transparent;
}
.ml-sheet--motion.is-armed .ml-about-step,
.ml-sheet--motion.is-armed .ml-about-split-col,
.ml-sheet--motion.is-armed .ml-about-trio-col,
.ml-sheet--motion.is-armed .ml-about-read-item,
.ml-sheet--motion.is-armed .ml-about-note,
.ml-sheet--motion.is-armed .ml-about-body .ml-prose p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 70ms),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 70ms);
}
.ml-sheet--motion.is-armed .is-in .ml-about-body::before,
.ml-sheet--motion.is-armed .is-in .ml-about-chain::before,
.ml-sheet--motion.is-armed .is-in .ml-about-split::before {
  transform: scaleX(1);
}
.ml-sheet--motion.is-armed .is-in .ml-about-step,
.ml-sheet--motion.is-armed .is-in .ml-about-split-col,
.ml-sheet--motion.is-armed .is-in .ml-about-trio-col,
.ml-sheet--motion.is-armed .is-in .ml-about-read-item,
.ml-sheet--motion.is-armed .is-in .ml-about-note,
.ml-sheet--motion.is-armed .is-in .ml-about-body .ml-prose p {
  opacity: 1;
  transform: none;
}

@media (max-width: 800px) {
  .ml-sheet-row {
    grid-template-columns: 1fr !important;
    gap: 10px 0 !important;
  }
  .ml-sheet-row > * {
    min-width: 0;
  }
  .ml-sheet-hero {
    flex-direction: column;
  }
  .ml-sheet-hero > div[style*="width:320px"] {
    width: 100% !important;
  }
  .ml-id-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ml-sheet-mast {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.35rem 1rem;
  }
  .ml-sheet-mast-brand {
    flex-wrap: wrap;
    max-width: 100%;
    line-height: 1.45;
  }
  .ml-archive-title {
    font-size: clamp(40px, 13vw, 56px);
    line-height: 0.92;
  }
  .ml-archive-lead [data-i18n="ml.heroSub"] {
    display: block;
    margin-bottom: 0.85rem;
  }
  .ml-archive-lead br {
    display: none;
  }
  .ml-featured-visual {
    min-height: 200px;
  }
  .ml-featured-meta {
    padding: 1.15rem 1rem 1.25rem;
  }
  .ml-filters button {
    min-height: 40px;
    padding: 0.35rem 0;
  }

  /* Subnav: 2×2, tappable, no cramped single row */
  .ml-subnav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.2rem var(--ml-pad) 0.45rem;
  }
  .ml-subnav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .ml-subnav-links a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0.35rem 0.5rem 0.35rem 0;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--ml-gray-line);
  }
  .ml-subnav-links a[aria-current="page"] {
    border-bottom-color: var(--ml-black);
  }
  .ml-subnav-back {
    display: none;
  }

  /* Index tables as stacked cards — no horizontal scroll */
  .ml-archive .ml-scroll-hint {
    display: none !important;
  }
  .ml-archive .ml-index-table-wrap {
    overflow: visible;
  }
  .ml-archive .ml-table {
    min-width: 0 !important;
    width: 100%;
  }
  .ml-archive .ml-table thead {
    display: none;
  }
  .ml-archive .ml-table tbody,
  .ml-archive .ml-table tr {
    display: block;
  }
  .ml-archive .ml-table tr {
    position: relative;
    padding: 1rem 0 1rem;
    border-bottom: 1px solid var(--ml-gray-line);
  }
  .ml-archive .ml-table td {
    display: block;
    width: auto;
    max-width: none;
    padding: 0.08rem 0;
    border: none;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    vertical-align: top;
  }
  .ml-archive .ml-table th:first-child,
  .ml-archive .ml-table td:first-child {
    position: static;
    background: transparent;
    padding-right: 5.5rem;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .ml-archive .ml-table td:nth-child(2) {
    font-size: 17px;
    line-height: 1.25;
    padding-top: 0.2rem;
    padding-bottom: 0.25rem;
  }
  .ml-archive .ml-table td:nth-child(3),
  .ml-archive .ml-table td:nth-child(4) {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ml-gray);
  }
  .ml-archive .ml-table td:last-child {
    position: absolute;
    top: 1rem;
    right: 0;
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ml-gray);
    white-space: nowrap;
  }
  #ml-research-table td:nth-child(5) {
    position: static;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ml-gray);
  }
  #ml-research-table td:nth-child(5)::before {
    content: 'REV ';
  }
  .ml-about-chain {
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
  }
  .ml-about-split,
  .ml-about-read,
  .ml-about-trio {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ml-about-split-col,
  .ml-about-split-col + .ml-about-split-col {
    border-left: 0;
    padding: 16px 0 0;
  }
  .ml-about-split-col + .ml-about-split-col {
    border-top: 1px solid #d8d8d8;
  }
  .ml-about-trio-col,
  .ml-about-trio-col:first-child,
  .ml-about-trio-col:last-child {
    padding: 0;
  }
  .ml-about-trio-col + .ml-about-trio-col {
    border-left: 0;
    border-top: 1px solid #d8d8d8;
    padding-top: 16px;
  }
  .ml-about-list,
  .ml-about-list tbody,
  .ml-about-list tr,
  .ml-about-list th,
  .ml-about-list td {
    display: block;
    width: auto;
  }
  .ml-about-list th {
    padding-bottom: 2px;
  }
  .ml-about-list-name {
    width: auto;
    padding: 0 0 4px;
  }
  .ml-about-list td:last-child {
    padding-top: 0;
  }
  .ml-about-prov,
  .ml-about-prov tbody,
  .ml-about-prov tr,
  .ml-about-prov th,
  .ml-about-prov td {
    display: block;
    width: auto;
  }
  .ml-about-prov th {
    padding-bottom: 2px;
  }
  .ml-about-prov-name {
    width: auto;
    padding: 0 0 4px;
  }
  .ml-about-prov td:last-child {
    padding-top: 0;
  }
}

.ml-ft-doc {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--ml-pad) 4rem;
}

.ml-ft-mast,
.ml-ft-end {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--ml-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-gray);
}

.ml-ft-mast {
  padding: 0.9rem 0;
  border-top: 1px solid var(--ml-black);
  border-bottom: 1px solid var(--ml-gray-line);
}

.ml-ft-end {
  margin-top: 2.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ml-gray-line);
}

.ml-ft-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem 3rem;
  padding: 2.5rem 0 1.75rem;
  align-items: start;
}

.ml-ft-title {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0;
}

.ml-ft-kicker {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.85rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.ml-ft-lead p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #171717;
  max-width: 42em;
}

.ml-ft-lead p + p { margin-top: 0.85rem; }

.ml-ft-fig {
  margin: 0;
  background: #fff;
}

.ml-ft-fig img,
.ml-ft-fig picture {
  width: 100%;
  height: auto;
  display: block;
}

.ml-ft-fig figcaption {
  font-family: var(--ml-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-gray);
  margin-top: 0.55rem;
}

.ml-ft-scale {
  display: block;
  margin-top: 0.35rem;
  color: #a3a3a3;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 9px;
  line-height: 1.4;
}

.ml-ft-sec.ml-ft-aviso {
  border-top: 3px solid var(--ml-black);
}

.ml-micro-pending {
  padding: 1.5rem 0;
}

.ml-ft-id {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid var(--ml-gray-line);
}

.ml-ft-id dt,
.ml-ft-kpi-lab,
.ml-ft-mini th {
  font-family: var(--ml-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-gray);
  font-weight: 500;
}

.ml-ft-id dt { margin-bottom: 0.4rem; }
.ml-ft-id dd { margin: 0; font-size: 0.95rem; line-height: 1.4; }

.ml-ft-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  padding: 0.25rem 0 2.25rem;
}

.ml-ft-kpi {
  border-top: 4px solid var(--ml-black);
  padding-top: 0.85rem;
}

.ml-ft-kpi-val {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.ml-ft-sec {
  display: grid;
  grid-template-columns: 11.5rem minmax(0, 1fr);
  gap: 1.5rem 2.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--ml-gray-line);
}

.ml-ft-n {
  display: block;
  font-family: var(--ml-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ml-gray);
  margin-bottom: 0.3rem;
}

.ml-ft-rail h2 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.ml-ft-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.ml-ft-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.ml-ft-mini th,
.ml-ft-mini td {
  text-align: left;
  padding: 0.55rem 0.75rem 0.55rem 0;
  border-bottom: 1px solid var(--ml-gray-line);
  vertical-align: top;
}

.ml-ft-mini td:last-child { font-variant-numeric: tabular-nums; }

.ml-datasheet td:first-child {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ml-black);
  white-space: normal;
}
.ml-datasheet td:last-child { color: var(--ml-gray); font-size: 0.85rem; }
.ml-datasheet th {
  color: var(--ml-gray);
  border-bottom-color: var(--ml-gray-line);
  font-weight: 500;
}

.ml-ft-aviso {
  border-top: 3px solid var(--ml-black);
  padding-top: 1.25rem;
}

.ml-ft-aviso .ml-disclaimer {
  grid-column: auto;
  max-width: 52em;
}

.ml-ft-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.ml-ft-why article {
  padding-top: 0.85rem;
  border-top: 1px solid var(--ml-gray-line);
}

.ml-ft-why strong { display: block; margin-bottom: 0.35rem; }
.ml-ft-why p { margin: 0; color: #404040; font-size: 0.95rem; line-height: 1.5; }

.ml-ft-notes p { margin: 0 0 0.85rem; }

.ml-ft-body .ml-prose {
  grid-column: auto;
  max-width: 48em;
  font-size: 0.98rem;
}

.ml-ft-body .ml-micro-pending {
  grid-column: auto;
  border: 1px dashed #a3a3a3;
  padding: 1.25rem 1rem;
  margin: 0;
}

.ml-ft-body .ml-chart { grid-column: auto; }

@media (max-width: 1100px) {
  .ml-ft-kpis { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ml-ft-hero,
  .ml-ft-sec { grid-template-columns: 1fr; }
  .ml-ft-id,
  .ml-ft-pair,
  .ml-ft-why { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ml-ft-kpis,
  .ml-ft-id,
  .ml-ft-pair,
  .ml-ft-why { grid-template-columns: 1fr; }
}

.ml-file-code {
  grid-column: 1 / -1;
  color: var(--ml-signal);
  margin-bottom: 1rem;
}

.ml-file-title {
  grid-column: 1 / -1;
  font-size: clamp(48px, 9vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 16px;
}

.ml-file-sub {
  grid-column: 1 / 9;
  margin-top: 0.75rem;
}

.ml-meta-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ml-black);
}

.ml-meta-row dt {
  font-family: var(--ml-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-gray);
  margin-bottom: 0.35rem;
}

.ml-meta-row dd {
  font-size: 0.95rem;
  margin: 0;
}

.ml-macro {
  margin: 0;
  padding: 0;
}

.ml-macro img,
.ml-macro picture {
  width: 100%;
  display: block;
  height: auto;
}

.ml-scale {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.5rem var(--ml-pad) 0;
  font-family: var(--ml-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-gray);
  border-top: 1px solid var(--ml-gray-line);
}

.ml-scale-pending {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.6rem var(--ml-pad) 0;
  color: var(--ml-signal);
}

.ml-prov {
  font-family: var(--ml-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ml-signal);
  text-transform: uppercase;
}

.ml-empty {
  color: var(--ml-gray);
}

.ml-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1rem 0 0;
  grid-column: 1 / -1;
}

.ml-chart {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.ml-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.ml-chem {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
}

.ml-chem-row {
  display: grid;
  grid-template-columns: minmax(8rem, 2fr) 5fr minmax(4rem, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--ml-gray-line);
  padding: 0.65rem 0;
}

.ml-chem-bar {
  display: grid;
  height: 10px;
  background: var(--ml-gray-soft);
}

.ml-chem-bar > span {
  background: var(--ml-black);
  display: block;
}

.ml-chem-hero {
  grid-column: 8 / -1;
  align-self: start;
}

.ml-chem-hero strong {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.ml-notes time {
  font-family: var(--ml-mono);
  font-size: 11px;
  color: var(--ml-signal);
  letter-spacing: 0.06em;
}

.ml-banner {
  background: var(--ml-black);
  color: #fff;
  font-family: var(--ml-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem var(--ml-pad);
  text-align: center;
}

.ml-banner--warn { background: var(--ml-white); color: var(--ml-signal); border-bottom: 1px solid var(--ml-signal); }

.ml-disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ml-gray);
  grid-column: 1 / 10;
}

.ml-actions {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.ml-actions button,
.ml-actions a {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ml-black);
  padding: 0.2rem 0;
  font-family: var(--ml-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-black);
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
}

.ml-micro-pending {
  grid-column: 1 / -1;
  padding: 3rem 0;
  border-top: 1px solid var(--ml-gray-line);
  border-bottom: 1px solid var(--ml-gray-line);
}

.ml-scroll-hint {
  display: none;
  font-family: var(--ml-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ml-signal);
  margin: 0 0 0.5rem;
}

.ml-why li {
  display: grid;
  grid-template-columns: 1.2fr auto 1.6fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ml-gray-line);
  list-style: none;
}

.ml-why { padding: 0; margin: 0; grid-column: 1 / -1; }

.ml-dir { color: var(--ml-signal); font-family: var(--ml-mono); }

h2.ml-h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  grid-column: 1 / -1;
  margin: 0 0 12px;
}

.ml-lede {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px;
}

/* Mobile */
@media (max-width: 1024px) {
  .ml-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .ml-hero-title { grid-column: 1 / -1; }
  .ml-hero-side { grid-column: 1 / -1; padding-bottom: 0; margin-top: 1.5rem; }
  .ml-hero-plate { grid-template-columns: 1fr 1fr; }
  .ml-hero-plate span { grid-column: auto; }
  .ml-featured { grid-template-columns: 1fr; }
  .ml-featured-meta { border-left: 0; border-top: 1px solid var(--ml-gray-line); }
  .ml-steps { grid-template-columns: repeat(2, 1fr); }
  .ml-meta-row { grid-template-columns: 1fr 1fr; }
  .ml-file-title { grid-column: 1 / -1; }
  .ml-chem-hero { grid-column: 1 / -1; margin-bottom: 1rem; }
  .ml-footer-brand,
  .ml-footer-nav { grid-column: 1 / -1; }
  .ml-footer-nav { justify-content: flex-start; margin-top: 1.5rem; }
  .ml-prose, .ml-block h2, .ml-close, .ml-disclaimer { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .ml-page { --ml-pad: 1rem; }
  .ml-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ml-hero { padding-top: 2.5rem; }
  .ml-steps { grid-template-columns: repeat(2, 1fr); }
  .ml-step { border-bottom: 1px solid var(--ml-gray-line); }
  .ml-step:nth-child(even) { border-right: 0; }
  .ml-table.ml-datasheet { min-width: 640px; }
  .ml-index-table-wrap:has(.ml-datasheet) .ml-scroll-hint { display: block; }
  .ml-table-wrap,
  .ml-index-table-wrap:has(.ml-datasheet) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ml-table.ml-datasheet th:first-child,
  .ml-table.ml-datasheet td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
    padding-right: 1rem;
  }
  .ml-chem-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .ml-why li { grid-template-columns: 1fr auto; }
  .ml-why li span:last-child { grid-column: 1 / -1; }
  .ml-hero-plate { grid-template-columns: 1fr; }
  .ml-accordion-body { display: none; padding: 0 0 1rem; }
  .ml-row.is-open + .ml-accordion-body,
  .ml-accordion-body.is-open { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .ml-page *,
  .ml-page *::before,
  .ml-page *::after {
    animation: none !important;
    transition: none !important;
  }
  .ml-featured:hover img { transform: none; }
  .ml-sheet--motion.is-armed .ml-m-hair,
  .ml-sheet--motion.is-armed .ml-m-rule,
  .ml-sheet--motion.is-armed .ml-m-kpi::after,
  .ml-sheet--motion.is-armed .ml-m-card::after,
  .ml-sheet--motion.is-armed .ml-m-notice::after,
  .ml-sheet--motion.is-armed .ml-m-id::before,
  .ml-sheet--motion.is-armed .ml-m-id::after,
  .ml-sheet--motion.is-armed h1,
  .ml-sheet--motion.is-armed .ml-sheet-hero > p,
  .ml-sheet--motion.is-armed .ml-m-kpi > div:first-child,
  .ml-sheet--motion.is-armed .ml-m-plate,
  .ml-sheet--motion.is-armed .ml-m-grain,
  .ml-sheet--motion.is-armed .ml-m-chart-wrap,
  .ml-sheet--motion.is-armed .ml-m-band,
  .ml-sheet--motion.is-armed .ml-m-barfill,
  .ml-sheet--motion.is-armed .ml-m-curve,
  .ml-sheet--motion.is-armed tbody tr,
  .ml-sheet--motion.is-armed [class*="ml-method"],
  .ml-sheet--motion.is-armed [class*="ml-method"]::before,
  .ml-sheet--motion.is-armed [class*="ml-method"]::after,
  .ml-sheet--motion.is-armed [class*="ml-about"],
  .ml-sheet--motion.is-armed [class*="ml-about"]::before,
  .ml-sheet--motion.is-armed [class*="ml-about"]::after {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media print {
  .ml-page .nav,
  .ml-subnav,
  .ml-actions,
  .ml-banner,
  .lang-switcher { display: none !important; }
  .ml-page { background: #fff; color: #000; }
  .ml-file-title { font-size: 36pt; }
  .ml-ft-title { font-size: 28pt; }
  .ml-ft-kpis, .ml-ft-hero, .ml-ft-sec { break-inside: avoid; }
  a { color: inherit; text-decoration: none; }
  .ml-sheet--motion.is-armed .ml-m-hair,
  .ml-sheet--motion.is-armed .ml-m-rule,
  .ml-sheet--motion.is-armed .ml-m-kpi::after,
  .ml-sheet--motion.is-armed .ml-m-card::after,
  .ml-sheet--motion.is-armed .ml-m-notice::after,
  .ml-sheet--motion.is-armed .ml-m-id::before,
  .ml-sheet--motion.is-armed .ml-m-id::after,
  .ml-sheet--motion.is-armed h1,
  .ml-sheet--motion.is-armed .ml-sheet-hero > p,
  .ml-sheet--motion.is-armed .ml-m-kpi > div:first-child,
  .ml-sheet--motion.is-armed .ml-m-plate,
  .ml-sheet--motion.is-armed .ml-m-grain,
  .ml-sheet--motion.is-armed .ml-m-chart-wrap,
  .ml-sheet--motion.is-armed .ml-m-band,
  .ml-sheet--motion.is-armed .ml-m-barfill,
  .ml-sheet--motion.is-armed .ml-m-curve,
  .ml-sheet--motion.is-armed tbody tr,
  .ml-sheet--motion.is-armed [class*="ml-method"],
  .ml-sheet--motion.is-armed [class*="ml-method"]::before,
  .ml-sheet--motion.is-armed [class*="ml-method"]::after,
  .ml-sheet--motion.is-armed [class*="ml-about"],
  .ml-sheet--motion.is-armed [class*="ml-about"]::before,
  .ml-sheet--motion.is-armed [class*="ml-about"]::after {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    stroke-dashoffset: 0 !important;
  }
  .ml-about-body,
  .ml-sheet-row { break-inside: avoid; }
  .ml-footer::after {
    content: attr(data-print-url);
    display: block;
    margin-top: 1rem;
    font-size: 8pt;
  }
}
