/* SPNVISUALZ VISUAL LAB — dark editorial system */
@font-face {
  font-family: "SPN System";
  src: local("Helvetica Neue");
  font-display: swap;
}
:root {
  --lab-black: #050507;
  --lab-black-2: #09090d;
  --lab-paper: #f4f1f8;
  --lab-muted: #9a96a2;
  --lab-line: rgba(230,226,239,.14);
  --lab-line-strong: rgba(230,226,239,.28);
  --lab-violet: #b998ff;
  --lab-silver: #d7d6de;
  --lab-gutter: clamp(20px, 4.4vw, 72px);
  --lab-max: 1500px;
}
* { box-sizing: border-box; }
html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--lab-black);
}
body.lab-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(112,72,164,.1), transparent 32rem),
    radial-gradient(circle at -8% 38%, rgba(185,152,255,.055), transparent 34rem),
    var(--lab-black);
  color: var(--lab-paper);
  font-family: "SPN System", Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.lab-page::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .21;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }
::selection {
  background: var(--lab-violet);
  color: #08070a;
}
.lab-skip {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--lab-paper);
  color: var(--lab-black);
}
.lab-skip:focus { transform: none; }
.lab-shell {
  width: min(100%, var(--lab-max));
  margin-inline: auto;
  padding-inline: var(--lab-gutter);
}
.lab-header {
  position: relative;
  z-index: 100;
  width: 100%;
  min-height: 92px;
  border-bottom: 1px solid var(--lab-line);
}
.lab-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: inherit;
}
.lab-brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
}
.lab-brand__name {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -.055em;
}
.lab-brand__tag {
  margin-top: 3px;
  color: var(--lab-muted);
  font-size: 7px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.lab-header__section {
  color: var(--lab-muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.lab-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.lab-header__link,
.lab-footer a,
.lab-crumbs a {
  color: var(--lab-muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.lab-header__link:hover,
.lab-header__link:focus-visible,
.lab-footer a:hover,
.lab-footer a:focus-visible,
.lab-crumbs a:hover,
.lab-crumbs a:focus-visible { color: var(--lab-paper); }
.lab-header__order {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--lab-line-strong);
  color: var(--lab-paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease;
}
.lab-header__order:hover,
.lab-header__order:focus-visible {
  border-color: var(--lab-silver);
  background: rgba(255,255,255,.05);
}
.lab-arrow {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 9px;
  flex: 0 0 auto;
}
.lab-arrow::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
}
.lab-arrow::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.lab-hero {
  position: relative;
  min-height: min(780px, calc(100svh - 92px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--lab-line);
}
.lab-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .45fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  padding-top: clamp(110px, 17vh, 190px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.lab-orbit {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -9vw;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(216,214,222,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(255,255,255,.009),
    0 0 0 14vw rgba(255,255,255,.006);
  animation: lab-orbit 30s linear infinite;
}
.lab-orbit::before,
.lab-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.lab-orbit::before {
  inset: 17%;
  border: 1px solid rgba(185,152,255,.25);
  transform: rotate(28deg) scaleY(.38);
}
.lab-orbit::after {
  top: 21%;
  left: 16%;
  width: 7px;
  height: 7px;
  background: #ece9f3;
  box-shadow: 0 0 22px 7px rgba(185,152,255,.46);
}
@keyframes lab-orbit { to { transform: rotate(360deg); } }
.lab-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--lab-violet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.lab-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}
.lab-hero h1,
.lab-article-hero h1 {
  margin: 0;
  font-size: clamp(66px, 12.7vw, 188px);
  font-weight: 650;
  line-height: .77;
  letter-spacing: -.085em;
}
.lab-hero h1 span {
  display: block;
  margin-left: clamp(36px, 10vw, 170px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,241,248,.58);
}
.lab-hero__side {
  padding-bottom: 5px;
}
.lab-hero__side p {
  margin: 0;
  color: #bab5c1;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
}
.lab-hero__index {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--lab-line);
  color: var(--lab-muted);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lab-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--lab-line);
  white-space: nowrap;
}
.lab-marquee__track {
  display: inline-flex;
  gap: 40px;
  min-width: max-content;
  padding: 17px 0;
  animation: lab-marquee 36s linear infinite;
  color: rgba(244,241,248,.43);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.lab-marquee__track span::after {
  content: "✦";
  margin-left: 40px;
  color: var(--lab-violet);
  font-size: 7px;
}
@keyframes lab-marquee { to { transform: translateX(-50%); } }
.lab-section {
  position: relative;
  padding-block: clamp(90px, 13vw, 180px);
  border-bottom: 1px solid var(--lab-line);
}
.lab-section__head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 92px);
}
.lab-section__no {
  color: var(--lab-violet);
  font-size: 10px;
  letter-spacing: .2em;
}
.lab-section__title {
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.065em;
}
.lab-section__intro {
  grid-column: 2;
  max-width: 660px;
  margin: 4px 0 0;
  color: var(--lab-muted);
  font-size: 15px;
  line-height: 1.65;
}
.lab-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
  min-height: clamp(520px, 65vw, 820px);
  border: 1px solid var(--lab-line);
  color: inherit;
  text-decoration: none;
}
.lab-feature__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0b0a0d;
}
.lab-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55) contrast(1.06) brightness(.72);
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .8s ease;
}
.lab-feature:hover .lab-feature__visual img {
  transform: scale(1.045);
  filter: saturate(.72) contrast(1.06) brightness(.78);
}
.lab-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,7,.72), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(185,152,255,.18), transparent 42%);
}
.lab-feature__scan {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(220,208,255,.14) 50%, transparent 55%);
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.lab-feature:hover .lab-feature__scan { transform: translateY(100%); }
.lab-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 58px);
  background:
    linear-gradient(150deg, rgba(185,152,255,.08), transparent 43%),
    var(--lab-black-2);
}
.lab-feature__meta,
.lab-card__meta,
.lab-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  color: var(--lab-muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lab-feature__body h3 {
  margin: 32px 0 22px;
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.065em;
}
.lab-feature__body p {
  max-width: 430px;
  margin: 0;
  color: var(--lab-muted);
  font-size: 14px;
  line-height: 1.65;
}
.lab-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--lab-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lab-categories {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--lab-line);
  border-left: 1px solid var(--lab-line);
}
.lab-category {
  flex: 1 1 220px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--lab-line);
  border-bottom: 1px solid var(--lab-line);
  color: var(--lab-muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.lab-category::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}
.lab-category:hover,
.lab-category:focus-visible {
  color: var(--lab-paper);
  background: rgba(185,152,255,.055);
}
.lab-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--lab-line);
  border-left: 1px solid var(--lab-line);
}
.lab-card {
  position: relative;
  grid-column: span 6;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--lab-line);
  border-bottom: 1px solid var(--lab-line);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
.lab-card:nth-child(even) { margin-top: 70px; }
.lab-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0c10;
}
.lab-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) contrast(1.08) brightness(.68);
  transition: transform .65s cubic-bezier(.2,.75,.25,1), filter .65s ease;
}
.lab-card:hover .lab-card__image img {
  transform: scale(1.04);
  filter: saturate(.7) contrast(1.08) brightness(.76);
}
.lab-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,.44), transparent);
}
.lab-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}
.lab-card h3 {
  margin: 24px 0 14px;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 580;
  line-height: 1;
  letter-spacing: -.055em;
}
.lab-card p {
  margin: 0 0 30px;
  color: var(--lab-muted);
  font-size: 13px;
  line-height: 1.6;
}
.lab-card .lab-read-link {
  margin-top: auto;
}
.lab-manifesto {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(44px, 9vw, 150px);
  align-items: start;
}
.lab-manifesto__index {
  position: sticky;
  top: 36px;
  color: var(--lab-violet);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.lab-manifesto__copy {
  margin: 0;
  font-size: clamp(36px, 5.8vw, 84px);
  font-weight: 520;
  line-height: 1.03;
  letter-spacing: -.062em;
}
.lab-manifesto__copy em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(244,241,248,.55);
}
.lab-newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .7fr);
  gap: clamp(50px, 10vw, 170px);
  align-items: end;
  padding-block: clamp(90px, 12vw, 150px);
}
.lab-newsletter h2 {
  margin: 0;
  font-size: clamp(45px, 7vw, 94px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.068em;
}
.lab-newsletter p {
  color: var(--lab-muted);
  font-size: 14px;
  line-height: 1.6;
}
.lab-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--lab-line-strong);
}
.lab-newsletter__form input {
  min-width: 0;
  height: 60px;
  border: 0;
  background: transparent;
  color: var(--lab-paper);
  outline: 0;
}
.lab-newsletter__form input::placeholder { color: #706c77; }
.lab-newsletter__form button {
  width: 60px;
  border: 0;
  background: transparent;
  color: var(--lab-paper);
  cursor: pointer;
}
.lab-newsletter__note {
  margin-top: 12px !important;
  font-size: 10px !important;
}
.lab-footer {
  padding-block: 48px 34px;
  border-top: 1px solid var(--lab-line);
}
.lab-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.lab-footer__wordmark {
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.085em;
}
.lab-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.lab-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid var(--lab-line);
  color: #74717a;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
/* Article */
.lab-reading-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lab-violet), #f0edf6);
  box-shadow: 0 0 18px rgba(185,152,255,.75);
}
.lab-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 32px;
}
.lab-crumbs span { color: #5d5963; }
.lab-article-hero {
  padding-block: clamp(88px, 13vw, 165px) clamp(60px, 9vw, 110px);
  border-bottom: 1px solid var(--lab-line);
}
.lab-article-hero h1 {
  max-width: 1260px;
  font-size: clamp(54px, 9.2vw, 140px);
  line-height: .87;
}
.lab-article-hero__deck {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .35fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: end;
  margin-top: clamp(50px, 8vw, 100px);
}
.lab-article-hero__deck > p {
  max-width: 820px;
  margin: 0;
  color: #b7b2bd;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.5;
}
.lab-article-meta {
  padding-top: 16px;
  border-top: 1px solid var(--lab-line);
}
.lab-article-figure {
  position: relative;
  width: 100%;
  max-height: 880px;
  margin: 0;
  overflow: hidden;
  background: #0b0a0d;
}
.lab-article-figure img {
  display: block;
  width: 100%;
  max-height: 880px;
  object-fit: cover;
  filter: saturate(.62) contrast(1.07) brightness(.75);
}
.lab-article-figure figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(5,5,7,.7);
  color: rgba(244,241,248,.62);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lab-article-layout {
  display: grid;
  grid-template-columns: minmax(190px, .35fr) minmax(0, 780px) minmax(80px, .25fr);
  gap: clamp(28px, 6vw, 100px);
  justify-content: center;
  padding-block: clamp(70px, 10vw, 140px);
}
.lab-toc {
  position: sticky;
  top: 26px;
  align-self: start;
  padding-top: 8px;
}
.lab-toc__label {
  display: block;
  margin-bottom: 18px;
  color: var(--lab-violet);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lab-toc a {
  display: block;
  padding: 9px 0;
  color: #77727e;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.lab-toc a:hover,
.lab-toc a:focus-visible { color: var(--lab-paper); }
.lab-article-body {
  min-width: 0;
}
.lab-article-body > p:first-of-type::first-letter {
  float: left;
  margin: .02em .13em 0 0;
  color: var(--lab-paper);
  font-size: 5.2em;
  font-weight: 500;
  line-height: .75;
}
.lab-article-body h2 {
  margin: 2.25em 0 .65em;
  scroll-margin-top: 24px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 590;
  line-height: .98;
  letter-spacing: -.055em;
}
.lab-article-body h3 {
  margin: 2em 0 .6em;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.lab-article-body p,
.lab-article-body li {
  color: #bab6c0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.78;
}
.lab-article-body strong {
  color: var(--lab-paper);
  font-weight: 600;
}
.lab-article-body a {
  text-decoration-color: var(--lab-violet);
  text-underline-offset: 4px;
}
.lab-article-body ul,
.lab-article-body ol {
  margin: 1.3em 0;
  padding-left: 1.25em;
}
.lab-article-body li { padding-left: .35em; margin-bottom: .55em; }
.lab-pullquote {
  margin: clamp(50px, 8vw, 90px) calc(clamp(0px, 5vw, 70px) * -1);
  padding: 38px 0 38px clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--lab-line-strong);
  border-bottom: 1px solid var(--lab-line-strong);
  color: var(--lab-paper);
  font-size: clamp(31px, 4.5vw, 56px);
  font-weight: 520;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.lab-article-aside {
  color: #615d67;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.lab-inline-cta {
  position: relative;
  margin: clamp(70px, 10vw, 120px) 0;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--lab-line-strong);
  background:
    radial-gradient(circle at 100% 0, rgba(185,152,255,.16), transparent 44%),
    rgba(255,255,255,.018);
}
.lab-inline-cta::before {
  content: "";
  position: absolute;
  top: -62px;
  right: -62px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(185,152,255,.2);
  border-radius: 50%;
}
.lab-inline-cta__label {
  color: var(--lab-violet);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lab-inline-cta h2 {
  max-width: 600px;
  margin: 22px 0 16px;
  font-size: clamp(33px, 4.8vw, 57px);
}
.lab-inline-cta p {
  max-width: 560px;
  margin-bottom: 30px;
}
.lab-inline-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--lab-paper);
  color: var(--lab-paper);
  font-family: "SPN System", Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}
.lab-related {
  padding-block: clamp(80px, 11vw, 150px);
  border-top: 1px solid var(--lab-line);
}
.lab-related__head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}
.lab-related__head h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 80px);
  line-height: .9;
  letter-spacing: -.06em;
}
.lab-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lab-line);
  border-left: 1px solid var(--lab-line);
}
.lab-related__item {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid var(--lab-line);
  border-bottom: 1px solid var(--lab-line);
  color: inherit;
  text-decoration: none;
}
.lab-related__item span {
  color: var(--lab-violet);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lab-related__item h3 {
  max-width: 520px;
  margin: 30px 0 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -.05em;
}
.lab-boot {
  position: fixed;
  z-index: 2147482000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050507;
  transition: opacity .45s ease, visibility .45s ease;
}
.lab-boot[hidden] { display: none; }
.lab-boot.is-finished {
  opacity: 0;
  visibility: hidden;
}
.lab-boot__inner {
  width: min(670px, calc(100vw - 40px));
}
.lab-boot__top {
  display: flex;
  justify-content: space-between;
  color: #8e8996;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lab-boot__title {
  margin: 22px 0;
  color: var(--lab-paper);
  font-size: clamp(42px, 9vw, 88px);
  font-weight: 650;
  line-height: .84;
  letter-spacing: -.075em;
}
.lab-boot__rail {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}
.lab-boot__rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--lab-violet), #f3effa);
  transform: translateX(-100%);
  animation: lab-boot-rail .72s cubic-bezier(.7,0,.25,1) forwards;
}
@keyframes lab-boot-rail { to { transform: translateX(0); } }
.lab-boot__status {
  margin-top: 14px;
  color: #6f6a76;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.lab-no-js .lab-boot { display: none; }
@media (max-width: 980px) {
  .lab-header__inner { grid-template-columns: 1fr auto; }
  .lab-header__section { display: none; }
  .lab-hero__grid,
  .lab-feature,
  .lab-newsletter,
  .lab-article-hero__deck { grid-template-columns: 1fr; }
  .lab-hero { min-height: 760px; }
  .lab-hero__side { max-width: 560px; }
  .lab-feature__visual { min-height: 480px; }
  .lab-card { grid-column: span 6; }
  .lab-card:nth-child(even) { margin-top: 0; }
  .lab-article-layout {
    grid-template-columns: minmax(0, 780px);
  }
  .lab-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--lab-line);
  }
  .lab-toc__label { grid-column: 1 / -1; }
  .lab-article-aside { display: none; }
}
@media (max-width: 680px) {
  :root { --lab-gutter: 20px; }
  body.lab-page::before { background-size: 54px 54px; }
  .lab-header { min-height: 76px; }
  .lab-brand__tag { font-size: 6px; }
  .lab-header__actions { gap: 13px; }
  .lab-header__link { display: none; }
  .lab-header__order { min-height: 38px; padding: 0 12px; }
  .lab-hero { min-height: 650px; }
  .lab-hero__grid {
    padding-top: 100px;
    padding-bottom: 44px;
  }
  .lab-hero h1 { font-size: clamp(67px, 25vw, 105px); }
  .lab-hero h1 span { margin-left: 23px; }
  .lab-orbit { top: 18%; right: -35vw; width: 110vw; }
  .lab-section__head {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .lab-section__intro { grid-column: 1 / -1; }
  .lab-feature { min-height: 0; }
  .lab-feature__visual { min-height: 390px; }
  .lab-grid { grid-template-columns: 1fr; }
  .lab-card {
    grid-column: 1;
    min-height: 0;
  }
  .lab-card h3 { font-size: 34px; }
  .lab-category { flex-basis: 100%; min-height: 72px; }
  .lab-manifesto { grid-template-columns: 1fr; }
  .lab-manifesto__index { position: static; }
  .lab-newsletter__form { grid-template-columns: 1fr 48px; }
  .lab-footer__top,
  .lab-related__grid { grid-template-columns: 1fr; }
  .lab-footer__links { justify-content: flex-start; }
  .lab-footer__bottom { flex-direction: column; }
  .lab-article-hero h1 { font-size: clamp(50px, 15vw, 82px); }
  .lab-article-hero__deck { margin-top: 42px; }
  .lab-article-figure { margin-inline: -20px; width: calc(100% + 40px); }
  .lab-toc { grid-template-columns: 1fr; }
  .lab-pullquote { margin-inline: 0; padding-left: 0; }
  .lab-related__head { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lab-orbit,
  .lab-marquee__track,
  .lab-boot__rail::after { animation: none; }
  .lab-feature__visual img,
  .lab-feature__scan,
  .lab-card__image img,
  .lab-boot { transition: none; }
}

.lab-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}
.lab-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .lab-js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.lab-policy {
  max-width: 900px;
  padding-block: clamp(70px, 10vw, 140px);
}
.lab-policy__hero {
  margin-bottom: clamp(64px, 9vw, 110px);
}
.lab-policy__hero h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 620;
  line-height: .82;
  letter-spacing: -.075em;
}
.lab-policy__hero p {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--lab-muted);
  font-size: 16px;
  line-height: 1.65;
}
.lab-policy__section {
  padding: 42px 0;
  border-top: 1px solid var(--lab-line);
}
.lab-policy__section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 590;
  letter-spacing: -.045em;
}
.lab-policy__section h3 {
  margin: 26px 0 9px;
  font-size: 18px;
}
.lab-policy__section p,
.lab-policy__section li {
  color: #aca7b2;
  font-size: 14px;
  line-height: 1.75;
}
.lab-policy__section a {
  color: var(--lab-paper);
  text-underline-offset: 4px;
  text-decoration-color: var(--lab-violet);
}
.lab-policy__section ul { padding-left: 20px; }
.lab-404 {
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: center;
  padding-block: 80px;
}
.lab-404__code {
  color: transparent;
  font-size: clamp(120px, 28vw, 420px);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.1em;
  -webkit-text-stroke: 1px rgba(244,241,248,.28);
}
.lab-404 h1 {
  margin: 32px 0 16px;
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: -.055em;
}
.lab-404 p {
  max-width: 520px;
  color: var(--lab-muted);
  line-height: 1.65;
}
.lab-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* VISUAL LAB / SPATIAL DESKTOP EDITION */
:root {
  --lab-world-x: 0px;
  --lab-world-y: 0px;
  --lab-world-rx: 0deg;
  --lab-world-ry: 0deg;
  --lab-hero-drift: 0px;
}

.lab-header {
  background: rgba(5,5,7,.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.lab-header__order::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #86ffbd;
  box-shadow: 0 0 12px rgba(134,255,189,.78);
}

.lab-hero {
  isolation: isolate;
  perspective: 1600px;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 74% 45%, rgba(100,45,205,.16), transparent 30%),
    linear-gradient(145deg, rgba(5,5,7,.96), rgba(10,7,14,.82) 58%, rgba(5,5,7,.98));
}

.lab-hero::before {
  content: "INTELLIGENCE";
  position: absolute;
  z-index: -1;
  left: -1.5vw;
  bottom: 5%;
  color: transparent;
  font-size: clamp(100px, 17vw, 270px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.085em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(216,197,255,.065);
  transform: translate3d(0,var(--lab-hero-drift),-180px);
}

.lab-hero__grid {
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
}

.lab-hero__world {
  position: absolute;
  z-index: 1;
  right: -8vw;
  top: 48%;
  width: min(66vw, 980px);
  aspect-ratio: 1.553;
  opacity: .5;
  pointer-events: none;
  transform: translate3d(var(--lab-world-x),calc(-50% + var(--lab-world-y)),20px) rotateX(var(--lab-world-rx)) rotateY(var(--lab-world-ry));
  transform-style: preserve-3d;
  will-change: transform;
}

.lab-hero__world img {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(153,91,255,.46)) drop-shadow(0 44px 78px rgba(0,0,0,.72));
  animation: lab-world-float 7.5s ease-in-out infinite;
}

.lab-hero__world-aura {
  position: absolute;
  z-index: 0;
  inset: 18% 25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179,135,255,.36), rgba(91,34,195,.16) 44%, transparent 72%);
  filter: blur(40px);
}

.lab-hero__world-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(213,190,255,.3);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(125,54,233,.1), inset 0 0 28px rgba(125,54,233,.08);
}

.lab-hero__world-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4efff;
  box-shadow: 0 0 9px #fff, 0 0 26px #8a4dff;
}

.lab-hero__world-ring--one {
  inset: 18% -1%;
  transform: rotate(-12deg);
  animation: lab-world-orbit-one 15s linear infinite;
}

.lab-hero__world-ring--two {
  inset: 4% 29%;
  opacity: .65;
  transform: rotate(62deg);
  animation: lab-world-orbit-two 21s linear infinite reverse;
}

.lab-hero__world small {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 16%;
  color: rgba(244,241,248,.46);
  font: 7px/1 "Courier New", monospace;
  letter-spacing: .18em;
}

@keyframes lab-world-float {
  50% { transform: translate3d(0,-13px,28px) rotate(1.2deg); }
}
@keyframes lab-world-orbit-one { to { transform: rotate(348deg); } }
@keyframes lab-world-orbit-two { to { transform: rotate(422deg); } }

.lab-article-figure {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  max-height: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(114,54,210,.16), transparent 48%),
    #060509;
  background-size: 72px 72px, 72px 72px, auto, auto;
  border: 1px solid var(--lab-line);
}

.lab-article-figure::before,
.lab-article-figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.lab-article-figure::before {
  left: 14px;
  top: 14px;
  border-left: 1px solid var(--lab-violet);
  border-top: 1px solid var(--lab-violet);
}

.lab-article-figure::after {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid var(--lab-violet);
  border-bottom: 1px solid var(--lab-violet);
}

.lab-article-figure img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: clamp(12px, 2.2vw, 34px);
  object-fit: contain;
  filter: saturate(.72) contrast(1.07) brightness(.82) drop-shadow(0 25px 55px rgba(0,0,0,.45));
}

.lab-article-figure figcaption { z-index: 3; }

.lab-card__image img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.lab-card__image::after { z-index: 2; }

@media (min-width: 981px) {
  .lab-hero__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .45fr);
    min-height: calc(100svh - 92px);
  }

  .lab-hero h1 {
    position: relative;
    z-index: 4;
    max-width: 760px;
    font-size: clamp(72px, 8.2vw, 118px);
    line-height: .84;
    letter-spacing: -.07em;
    transform: translateZ(110px);
    text-shadow: 0 28px 80px rgba(0,0,0,.6);
  }

  .lab-hero h1 span {
    margin-left: clamp(28px, 6vw, 86px);
    color: transparent;
    background: linear-gradient(112deg, #7140d3 0%, #f4efff 24%, #a774ff 43%, #fff 55%, #7440d0 76%, #d4bcff 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0;
    filter: drop-shadow(0 0 28px rgba(145,80,255,.22));
    animation: lab-chrome-type 8s ease-in-out infinite alternate;
  }

  @keyframes lab-chrome-type { to { background-position: 100% 0; } }

  .lab-hero__side {
    position: relative;
    z-index: 5;
    margin-bottom: 3vh;
    padding: 25px;
    border: 1px solid rgba(230,226,239,.18);
    background: rgba(5,5,7,.64);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transform: translateZ(145px);
  }

  .lab-feature {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 0;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(140deg,rgba(185,152,255,.05),transparent 34%),rgba(7,6,10,.86);
    perspective: 1500px;
    transform-style: preserve-3d;
    box-shadow: 0 55px 130px rgba(0,0,0,.36);
  }

  .lab-feature__visual {
    grid-column: 1 / 9;
    min-height: 0;
    aspect-ratio: 16 / 10;
    align-self: start;
    background:
      radial-gradient(circle at 50% 45%,rgba(116,54,214,.17),transparent 52%),
      #050408;
  }

  .lab-feature__visual img {
    padding: clamp(24px, 4vw, 68px);
    object-fit: contain;
    filter: saturate(.7) contrast(1.06) brightness(.82) drop-shadow(0 28px 60px rgba(0,0,0,.48));
  }

  .lab-feature:hover .lab-feature__visual img {
    transform: scale(1.025) translateZ(22px);
    filter: saturate(.84) contrast(1.07) brightness(.88) drop-shadow(0 32px 68px rgba(0,0,0,.52));
  }

  .lab-feature__body {
    grid-column: 9 / 13;
    min-height: 100%;
    transform: translateZ(35px);
  }

  .lab-section__title {
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: .94;
    letter-spacing: -.05em;
  }

  .lab-newsletter h2 {
    max-width: 720px;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: .94;
    letter-spacing: -.055em;
  }

  .lab-article-hero h1 {
    max-width: 1120px;
    font-size: clamp(52px, 6.8vw, 96px);
    line-height: .92;
    letter-spacing: -.058em;
  }

  .lab-grid {
    grid-template-areas:
      "a a a a a a a b b b b b"
      "c c c c c d d d d d d d"
      "e e e e e f f f f f f f"
      ". . g g g g g g g g . .";
    gap: clamp(18px, 2.4vw, 38px);
    border: 0;
    align-items: start;
    perspective: 1800px;
    transform-style: preserve-3d;
  }

  .lab-card {
    grid-column: auto;
    min-height: 0;
    margin-top: 0 !important;
    border: 1px solid rgba(230,226,239,.15);
    background: linear-gradient(145deg,rgba(255,255,255,.025),transparent 42%),rgba(7,6,10,.82);
    box-shadow: 0 34px 100px rgba(0,0,0,.3);
    transform-style: preserve-3d;
    will-change: transform;
  }

  .lab-card:nth-child(1) { grid-area: a; }
  .lab-card:nth-child(2) { grid-area: b; margin-top: 150px !important; }
  .lab-card:nth-child(3) { grid-area: c; }
  .lab-card:nth-child(4) { grid-area: d; margin-top: 110px !important; }
  .lab-card:nth-child(5) { grid-area: e; }
  .lab-card:nth-child(6) { grid-area: f; margin-top: 120px !important; }
  .lab-card:nth-child(7) { grid-area: g; margin-top: 40px !important; }

  .lab-card::before {
    content: "FILE 00" counter(lab-file);
    position: absolute;
    z-index: 5;
    left: 15px;
    top: 15px;
    padding: 6px 8px;
    border: 1px solid rgba(230,226,239,.16);
    background: rgba(5,5,7,.72);
    color: rgba(244,241,248,.65);
    font: 7px/1 "Courier New", monospace;
    letter-spacing: .13em;
  }

  .lab-grid { counter-reset: lab-file; }
  .lab-card { counter-increment: lab-file; }

  .lab-card__image {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    padding: 0;
    background:
      linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px),
      radial-gradient(circle at center,rgba(116,54,214,.13),transparent 55%),
      #050408;
    background-size: 58px 58px,58px 58px,auto,auto;
  }

  .lab-card__image img {
    padding: clamp(12px, 1.5vw, 25px);
    object-fit: contain;
    filter: saturate(.68) contrast(1.07) brightness(.8) drop-shadow(0 20px 42px rgba(0,0,0,.4));
  }

  .lab-card:hover .lab-card__image img {
    transform: scale(1.025) translateZ(24px);
    filter: saturate(.86) contrast(1.08) brightness(.88) drop-shadow(0 26px 48px rgba(0,0,0,.46));
  }

  .lab-card__body { transform: translateZ(28px); }
  .lab-card h3 { font-size: clamp(29px, 3.15vw, 48px); }

  .lab-js .lab-card[data-reveal].is-visible,
  .lab-js .lab-feature[data-reveal].is-visible {
    transform: none;
    transition: opacity .75s ease,border-color .3s ease,box-shadow .3s ease;
  }

  .lab-js .lab-card[data-reveal].is-visible:hover,
  .lab-js .lab-feature[data-reveal].is-visible:hover {
    border-color: rgba(185,152,255,.42);
    box-shadow: 0 52px 125px rgba(0,0,0,.48), 0 0 80px rgba(113,49,221,.08);
  }

  .lab-article-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 82% 52%,rgba(115,52,213,.12),transparent 34%);
  }

  .lab-article-hero::after {
    content: "SPN / FILE";
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: 5%;
    color: transparent;
    font-size: 13vw;
    font-weight: 800;
    letter-spacing: -.08em;
    -webkit-text-stroke: 1px rgba(216,197,255,.06);
  }
}

@media (max-width: 980px) {
  .lab-hero__world { right: -31vw; width: 110vw; opacity: .3; }
  .lab-feature__visual img,
  .lab-card__image img { object-fit: contain; }
}

@media (max-width: 680px) {
  .lab-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(5,5,7,.95); }
  .lab-hero__world { display: none; }
  .lab-article-figure {
    aspect-ratio: 4 / 3;
    border-inline: 0;
    background-size: 48px 48px,48px 48px,auto,auto;
  }
  .lab-article-figure img { padding: 10px; }
  .lab-article-figure::before { left: 9px; top: 9px; }
  .lab-article-figure::after { right: 9px; bottom: 9px; }
  .lab-card__image { display: grid; place-items: center; }
  .lab-card__image img { object-fit: contain; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-hero__world,
  .lab-hero::before { transform: none; }
  .lab-hero__world img,
  .lab-hero__world-ring,
  .lab-hero h1 span { animation: none; }
  .lab-card,
  .lab-feature { transform: none !important; }
}
