:root {
  --ink: #101211;
  --paper: #f2f4ef;
  --paper-muted: #d9ddd7;
  --hero: #090b0a;
  --hero-ink: #f3f5f0;
  --line-dark: rgba(243, 245, 240, 0.16);
  --line-light: rgba(16, 18, 17, 0.18);
  --acid: #b8ff43;
  --signal: #ff624d;
  --blue: #78a9ff;
  --lavender: #c789c7;
  --header-bg: rgba(8, 10, 9, 0.66);
  --header-ink: #f3f5f0;
  --header-border: rgba(255, 255, 255, 0.14);
  --header-control-border: rgba(255, 255, 255, 0.18);
  --header-control-hover: rgba(255, 255, 255, 0.09);
  --header-sheen: rgba(255, 255, 255, 0.14);
  --header-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 42px rgba(0, 0, 0, 0.18);
  --page-width: 1320px;
  --font-ui: "MiSans VF", "MiSans", Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color-scheme: dark;
  font-family: var(--font-ui);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  background: var(--hero);
}

html.direct-system-port-entry {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

html.compare-dialog-open {
  overflow: hidden;
}

body.compare-dialog-open {
  position: fixed;
  top: var(--compare-scroll-offset, 0);
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body[data-mode="light"] {
  --hero: #eef1ec;
  --hero-ink: #111311;
  --line-dark: rgba(17, 19, 17, 0.18);
  --header-bg: rgba(242, 245, 241, 0.68);
  --header-ink: #111311;
  --header-border: rgba(255, 255, 255, 0.72);
  --header-control-border: rgba(17, 19, 17, 0.15);
  --header-control-hover: rgba(17, 19, 17, 0.07);
  --header-sheen: rgba(255, 255, 255, 0.52);
  --header-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 14px 42px rgba(9, 12, 10, 0.12);
  color-scheme: light;
}

body[data-mode="light"] .site-header .wordmark-mark {
  color: #e6b3ff;
}

body[data-mode="light"] .hero .eyebrow {
  color: #477900;
}

body[data-mode="light"] .hero .hero-mark {
  color: #e6b3ff;
}

body[data-mode="light"] .hero .primary-action {
  border-color: #477900;
  background: #477900;
  color: #ffffff;
}

body[data-mode="light"] .scroll-progress span {
  background: #f0eeff;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #f0eeff;
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  color: var(--header-ink);
  -webkit-backdrop-filter: blur(28px) saturate(175%) contrast(108%);
  backdrop-filter: blur(28px) saturate(175%) contrast(108%);
  box-shadow: var(--header-shadow);
  transition:
    transform 240ms ease,
    background-color 320ms ease,
    border-color 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(105deg, var(--header-sheen), transparent 30%, transparent 70%, rgba(184, 255, 67, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 62%);
  opacity: 0.52;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100% - var(--page-width)) / 2));
  bottom: 0;
  left: max(28px, calc((100% - var(--page-width)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34) 22%, rgba(184, 255, 67, 0.16) 50%, rgba(255, 255, 255, 0.24) 78%, transparent);
  opacity: 0.7;
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header:not(.header-scrolled) {
  --header-ink: #f3f5f0;
  --header-control-border: rgba(255, 255, 255, 0.2);
  --header-control-hover: rgba(255, 255, 255, 0.1);
  --header-sheen: rgba(255, 255, 255, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 8, 0.3);
  color: #f3f5f0;
  -webkit-backdrop-filter: blur(22px) saturate(165%) contrast(110%);
  backdrop-filter: blur(22px) saturate(165%) contrast(110%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 44px rgba(0, 0, 0, 0.14);
}

body[data-mode="light"] .site-header:not(.header-scrolled) .wordmark-mark {
  color: #e6b3ff;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  font-size: 18px;
  font-weight: 720;
  white-space: nowrap;
}

.wordmark-mark {
  color: var(--acid);
  font-weight: 500;
}

.site-header .wordmark-mark {
  color: #e6b3ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: color-mix(in srgb, var(--header-ink) 70%, transparent);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: #e6b3ff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--header-ink);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.icon-button,
.command-button {
  height: 44px;
  border: 1px solid var(--header-control-border);
  border-radius: 4px;
  background: color-mix(in srgb, var(--header-ink) 2%, transparent);
  color: inherit;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--header-ink) 7%, transparent);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.icon-button:hover,
.command-button:hover {
  border-color: color-mix(in srgb, var(--header-ink) 58%, transparent);
  background: var(--header-control-hover);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--header-ink) 12%, transparent);
}

.icon-button {
  width: 44px;
  padding: 0;
  font-size: 17px;
}

.command-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 9px 0 13px;
  font-size: 12px;
}

.command-symbol {
  display: none;
  font-size: 18px;
}

kbd {
  display: inline-flex;
  min-width: 34px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: inherit;
  font: inherit;
  opacity: 0.62;
}

.hero {
  --hero: #090b0a;
  --hero-ink: #f3f5f0;
  --line-dark: rgba(243, 245, 240, 0.16);
  position: relative;
  isolation: isolate;
  height: 88svh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  background: var(--hero);
  color: var(--hero-ink);
}

body[data-mode="light"] .hero {
  background: #090b0a;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #090b0a;
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  transform: scale(1.01);
  pointer-events: none;
}

.hero-mobile-canvas {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transform: scale(1.01);
  pointer-events: none;
}

.hero-mobile-decoder {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 1px;
  height: 1px;
  opacity: 0.001;
  pointer-events: none;
}

.hero-mobile-frame {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.hero.mobile-canvas-ready .hero-mobile-canvas {
  opacity: 1;
}

.hero.mobile-frame-ready .hero-mobile-frame {
  opacity: 1;
}

.hero.video-static .hero-media {
  background: #090b0a url("assets/video/mi10-ultra-poster.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.72) 0%, rgba(4, 6, 5, 0.48) 42%, rgba(4, 6, 5, 0.2) 72%, rgba(4, 6, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 6, 5, 0.26) 0%, transparent 38%, rgba(4, 6, 5, 0.36) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-dark);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: max(28px, calc((100% - var(--page-width)) / 2));
  bottom: 106px;
  width: min(620px, 46vw);
}

.eyebrow,
.section-number {
  margin: 0 0 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.hero-title {
  display: flex;
  align-items: baseline;
  margin: 0;
  font-size: 78px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.hero-mark {
  color: #e6b3ff;
  font-size: 0.52em;
  font-weight: 500;
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.hero-mark-left {
  transform: translateX(18px);
}

.hero-mark-right {
  transform: translateX(-18px);
}

.hero-name {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease 80ms, transform 700ms cubic-bezier(.2, .8, .2, 1) 80ms;
}

.page-ready .hero-mark,
.page-ready .hero-name {
  opacity: 1;
  transform: translate(0);
}

.hero-statement {
  margin: 24px 0 0;
  color: color-mix(in srgb, var(--hero-ink) 78%, transparent);
  font-size: 24px;
  font-weight: 450;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.primary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.primary-action {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--acid);
  border-radius: 3px;
  background: var(--acid);
  color: #0b0c0b;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #d2ff88;
}

.text-action {
  min-height: 46px;
  color: color-mix(in srgb, var(--hero-ink) 72%, transparent);
}

.text-action:hover {
  color: var(--hero-ink);
}

/* Adapted from Uiverse.io by adamgiebl. */
.hero-io-button {
  position: relative;
  height: 2.8em;
  min-height: 2.8em;
  gap: 0;
  padding: 0.35em 3.3em 0.35em 1.2em;
  overflow: hidden;
  border: 0;
  border-radius: 0.9em;
  background: #a370f0;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
}

.hero-project-button {
  background: #70f0d6;
}

.hero-io-button__icon {
  position: absolute;
  right: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin-left: 1em;
  border-radius: 0.7em;
  background: #ffffff;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  transition: width 300ms ease, transform 300ms ease;
}

.hero-io-button__icon svg {
  width: 1.1em;
  height: 1.1em;
  color: #7b52b9;
  transition: transform 300ms ease;
}

.hero-io-button:hover,
.hero-io-button:focus-visible {
  color: #ffffff;
}

.hero-io-button:hover .hero-io-button__icon,
.hero-io-button:focus-visible .hero-io-button__icon {
  width: calc(100% - 0.6em);
}

.hero-io-button:hover .hero-io-button__icon svg,
.hero-io-button:focus-visible .hero-io-button__icon svg {
  transform: translateX(0.1em);
}

.hero-project-button:hover .hero-io-button__icon svg,
.hero-project-button:focus-visible .hero-io-button__icon svg {
  transform: translateY(0.1em);
}

.hero-io-button:active .hero-io-button__icon {
  transform: scale(0.95);
}

.hero-product {
  --hero-card-step-x: 30px;
  --hero-card-step-y: 38px;
  --hero-card-stack-x: 120px;
  --hero-card-stack-y: 152px;
  --hero-card-scale-step: 0.019;
  --hero-card-blur-step: 0.28;
  --hero-card-skew: 0deg;
  position: absolute;
  z-index: 2;
  top: auto;
  right: calc(max(28px, calc((100% - var(--page-width)) / 2)) + var(--hero-card-stack-x) - 127px);
  bottom: 130px;
  display: block;
  width: min(calc(53vw + 82px), 760px);
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms ease 180ms,
    transform 800ms cubic-bezier(.2, .8, .2, 1) 180ms,
    bottom 420ms cubic-bezier(.2, .8, .2, 1),
    right 420ms cubic-bezier(.2, .8, .2, 1),
    width 420ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.page-ready .hero-product {
  opacity: 1;
  transform: translateY(0);
}

.product-swap-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 9;
  perspective: 900px;
  overflow: visible;
  isolation: isolate;
}

.product-swap-card {
  --hero-card-blur: 0px;
  --hero-card-saturation: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform;
}

.product-swap-card.is-active {
  border-color: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
}

.product-card-version {
  appearance: none;
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.product-card-version:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -4px;
}

.product-swap-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  filter: blur(var(--hero-card-blur)) saturate(var(--hero-card-saturation));
  transition: filter 520ms cubic-bezier(.2, .8, .2, 1);
  user-select: none;
}

.product-swap-card::after {
  content: attr(data-fallback-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-ui);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
}

.product-swap-card.image-failed img {
  opacity: 0;
}

.product-swap-card.image-failed::after {
  opacity: 1;
}

.hero-product:hover .product-swap-card.is-active {
  --hero-card-saturation: 1.05;
}

.screen-meta {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(39, 20, 39, 0.24);
  color: #2d222d;
  font-family: var(--font-ui);
  font-size: 9px;
}


.hero-proof {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100% - var(--page-width)) / 2));
  bottom: 32px;
  display: flex;
  gap: 30px;
}

.hero-proof div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-proof strong {
  color: var(--hero-ink);
  font-size: 16px;
}

.hero-proof span {
  color: color-mix(in srgb, var(--hero-ink) 54%, transparent);
  font-size: 11px;
}

.manifesto {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  min-height: 136px;
  padding: 42px max(28px, calc((100% - var(--page-width)) / 2));
  border-bottom: 1px solid var(--line-light);
  background: #f0eeff;
  font-size: 17px;
}

.manifesto p {
  margin: 0;
}

.manifesto p:last-child {
  color: #626962;
}

.section-shell {
  width: min(var(--page-width), calc(100% - 56px));
  margin: 0 auto;
}

.project-section,
.writing {
  padding: 120px 0;
}

.system-port {
  --line-light: rgba(224, 255, 248, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0c;
  color: #f3f8f6;
}

.system-port-particle-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #0a0a0c;
  pointer-events: none;
}

.system-port > .section-shell {
  position: relative;
  z-index: 1;
}

.system-port .section-number,
.system-port .archive-overview span,
.system-port .archive-overview small {
  color: rgba(222, 241, 235, 0.66);
}

.system-port .section-heading > p {
  color: rgba(230, 247, 242, 0.8);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 9%;
  align-items: end;
  margin-bottom: 72px;
}

.section-number {
  display: block;
  margin-bottom: 25px;
  color: #6f776f;
}

.section-heading h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 680;
  line-height: 1.12;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: #606760;
  font-size: 16px;
  line-height: 1.8;
}

.archive-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 34px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.archive-overview > div {
  display: grid;
  min-width: 0;
  min-height: 142px;
  align-content: center;
  padding: 20px 22px;
}

.archive-overview > div + div {
  border-left: 1px solid var(--line-light);
}

.archive-overview span,
.archive-overview small,
.archive-workbench-head,
.milestone-kicker,
.milestone-media-meta,
.release-table-head,
.archive-toolbar label > span,
.release-row-sequence,
.release-row-feedback,
.release-dialog-head span,
.compare-dialog header span,
.comparison-bar span {
  font-family: var(--font-ui);
}

.archive-overview span {
  color: #6d746d;
  font-size: 9px;
}

.archive-overview strong {
  margin: 7px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.archive-overview small {
  color: #747b74;
  font-size: 10px;
}

.archive-workbench {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}

.archive-workbench-head {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(242, 244, 239, 0.15);
  background: #000000;
  color: #727a72;
  font-size: 9px;
}

.archive-view-control {
  display: grid;
  grid-template-columns: repeat(2, 128px);
  align-self: stretch;
}

.archive-view-control button {
  position: relative;
  border: 0;
  background: transparent;
  color: #7f877f;
  cursor: pointer;
  font-size: 13px;
}

.archive-view-control button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  background: #9c7bff;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.archive-view-control button:hover,
.archive-view-control button.active {
  color: #f2f4ef;
}

.archive-view-control button.active::after {
  transform: scaleX(1);
}

.milestone-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 690px;
}

.milestone-media {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 74px 54px;
  overflow: hidden;
  background: #d9ddda;
}

.milestone-media::before,
.milestone-media::after {
  content: "";
  position: absolute;
  background: rgba(16, 18, 17, 0.15);
}

.milestone-media::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.milestone-media::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.milestone-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: 530px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(24, 20, 24, 0.18);
  transition: opacity 180ms ease, transform 480ms cubic-bezier(.2, .8, .2, 1);
}

.milestone-media.is-changing img {
  opacity: 0;
  transform: translateY(10px);
}

.milestone-media-meta {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: #505750;
  font-size: 9px;
}

.milestone-media-controls {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}

.milestone-media-controls button,
.release-dialog-head button,
.compare-dialog header button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(16, 18, 17, 0.28);
  border-radius: 3px;
  background: rgba(242, 244, 239, 0.78);
  color: #101211;
  cursor: pointer;
}

.milestone-media-controls button:hover {
  border-color: #101211;
  background: #ffffff;
}

.milestone-media-controls button:disabled,
.release-dialog-foot button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.milestone-story {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 36px 38px;
  color: #f2f4ef;
}

.milestone-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(242, 244, 239, 0.16);
}

.milestone-selector button {
  position: relative;
  min-width: 0;
  height: 62px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #6e756e;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.milestone-selector button::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -1px;
  left: 4px;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
}

.milestone-selector button:hover,
.milestone-selector button.active {
  color: #f2f4ef;
}

.milestone-selector button.active::after {
  transform: scaleX(1);
}

.milestone-kicker {
  color: var(--acid);
  font-size: 10px;
}

.milestone-story h3 {
  max-width: 520px;
  margin: 16px 0 18px;
  font-size: 32px;
  line-height: 1.32;
}

.milestone-story > p {
  max-width: 540px;
  margin: 0;
  color: #aeb5ae;
  font-size: 14px;
  line-height: 1.8;
}

.milestone-specs {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.5fr;
  margin: 34px 0 0;
  border-top: 1px solid rgba(242, 244, 239, 0.14);
  border-bottom: 1px solid rgba(242, 244, 239, 0.14);
}

.milestone-specs div {
  min-width: 0;
  padding: 16px 10px 16px 0;
}

.milestone-specs div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(242, 244, 239, 0.14);
}

.milestone-specs dt,
.milestone-specs dd {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.milestone-specs dt {
  margin-bottom: 8px;
  color: #6f776f;
  font-family: var(--font-ui);
  font-size: 8px;
}

.milestone-specs dd {
  color: #e7ebe6;
  font-size: 12px;
}

.milestone-updates {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #d4d9d3;
  font-size: 12px;
}

.milestone-updates li {
  display: flex;
  gap: 10px;
  line-height: 1.55;
}

.milestone-updates li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  margin-top: 7px;
  background: var(--acid);
}

.milestone-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 30px;
}

.archive-primary {
  border: 0;
  cursor: pointer;
}

.archive-text {
  color: #aeb5ae;
}

.archive-download {
  color: var(--acid);
}

.archive-library {
  min-width: 0;
  background: #f4f6f2;
  color: #101211;
}

.release-list {
  min-width: 0;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px minmax(150px, auto);
  gap: 12px;
  align-items: end;
  padding: 22px;
  border-bottom: 1px solid var(--line-light);
}

.archive-search {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(156, 123, 255, 0.32);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 22px rgba(51, 39, 64, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.archive-search span {
  color: #77668c;
  font-size: 18px;
}

.archive-search .archive-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.archive-search-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
}

.archive-search:focus-within {
  border-color: #9c7bff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 0 0 3px rgba(156, 123, 255, 0.16), 0 12px 28px rgba(51, 39, 64, 0.11);
}

.archive-library button:focus-visible,
.archive-library input:focus-visible,
.archive-library select:focus-visible {
  outline-color: #9c7bff;
}

.archive-search input,
.archive-toolbar select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  background: #ffffff;
  color: #101211;
}

.archive-search input {
  height: auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: #211d27;
  caret-color: #9c7bff;
  font-size: 14px;
}

.archive-search input::placeholder {
  color: #877f8d;
  opacity: 1;
}

.archive-toolbar label:not(.archive-search) {
  display: grid;
  gap: 7px;
}

.archive-toolbar label > span {
  color: #77668c;
  font-size: 8px;
}

.archive-toolbar select {
  height: 52px;
  padding: 0 42px 0 15px;
  border-color: rgba(156, 123, 255, 0.32);
  border-radius: 8px;
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%2377668c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 22px rgba(51, 39, 64, 0.08);
  color: #211d27;
  cursor: pointer;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.archive-toolbar select:focus {
  border-color: #9c7bff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 0 0 3px rgba(156, 123, 255, 0.16), 0 12px 28px rgba(51, 39, 64, 0.11);
}

.archive-toolbar output {
  padding-bottom: 15px;
  color: #697069;
  font-size: 11px;
  text-align: right;
}

.release-table-head,
.release-row {
  display: grid;
  grid-template-columns: 42px 108px minmax(190px, 0.85fr) minmax(250px, 1.35fr) 125px 30px;
  gap: 16px;
  align-items: center;
}

.release-table-head {
  min-height: 42px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-light);
  color: #7b827b;
  font-size: 8px;
}

.release-row {
  position: relative;
  min-height: 112px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-light);
  transition: background-color 160ms ease;
}

.release-row:hover {
  background: #ffffff;
}

.release-row:last-child {
  border-bottom: 0;
}

.release-compare-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  place-content: center;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.release-compare-toggle::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #8b928b;
  border-radius: 2px;
  background: #ffffff;
}

.release-compare-toggle:checked::before {
  border-color: #9c7bff;
  background: #9c7bff;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.release-compare-toggle:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.release-row-sequence {
  display: grid;
  gap: 5px;
  color: #767d76;
  font-size: 9px;
}

.release-row-sequence strong {
  color: #101211;
  font-size: 13px;
}

.release-row-version {
  min-width: 0;
}

.release-row-version-link,
.release-row-version span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-row-version-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #101211;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: color 160ms ease;
}

.release-row-version-link:hover {
  color: #9c7bff;
}

.release-row-version-link:focus-visible {
  outline: 2px solid #9c7bff;
  outline-offset: 3px;
  border-radius: 3px;
}

.release-row-version span {
  margin-top: 7px;
  color: #747b74;
  font-size: 10px;
}

.release-row-updates {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: #4f564f;
  font-size: 11px;
  line-height: 1.45;
}

.release-row-updates span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-row-feedback {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  justify-content: start;
  color: #6c736c;
  font-size: 9px;
}

.release-feedback-metric {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  white-space: nowrap;
}

.release-feedback-metric svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.release-feedback-value {
  font-variant-numeric: tabular-nums;
}

.release-row-detail {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101211;
  cursor: pointer;
  font-size: 18px;
}

.release-row-detail:hover {
  color: #9c7bff;
}

.release-empty {
  margin: 0;
  padding: 64px 22px;
  color: #747b74;
  text-align: center;
}

.comparison-bar {
  --acid: #9c7bff;
  position: fixed;
  z-index: 86;
  right: 24px;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: 24px;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(242, 244, 239, 0.24);
  border-radius: 5px;
  background: #101211;
  color: #f2f4ef;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-bar.is-scroll-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

body.comparison-active .archive-library {
  padding-bottom: 96px;
}

.comparison-bar[hidden],
[data-archive-panel][hidden] {
  display: none;
}

.comparison-bar > div:first-child {
  display: grid;
  gap: 5px;
}

.comparison-bar span {
  color: var(--acid);
  font-size: 8px;
}

.comparison-bar strong {
  font-size: 13px;
}

.comparison-selection {
  display: flex;
  min-width: 0;
  gap: 8px;
}

.comparison-selection b {
  padding: 8px 10px;
  border: 1px solid rgba(242, 244, 239, 0.15);
  font-size: 11px;
  font-weight: 500;
}

.comparison-clear,
.comparison-open {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 3px;
  cursor: pointer;
}

.comparison-clear {
  border: 1px solid rgba(242, 244, 239, 0.2);
  background: transparent;
  color: #aab1aa;
}

.comparison-open {
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #101211;
}

.comparison-open:disabled {
  border-color: #454b45;
  background: #343934;
  color: #7e857e;
  cursor: not-allowed;
}

.release-dialog,
.compare-dialog {
  width: min(1160px, calc(100% - 36px));
  max-height: 90vh;
  padding: 0;
  border: 1px solid rgba(242, 244, 239, 0.22);
  border-radius: 6px;
  overflow: hidden;
  background: #111412;
  color: #f2f4ef;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.release-dialog::backdrop,
.compare-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.release-dialog article,
.compare-dialog article {
  display: flex;
  max-height: calc(90vh - 2px);
  flex-direction: column;
}

.release-dialog-head,
.compare-dialog header {
  display: flex;
  min-height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 24px;
  border-bottom: 1px solid rgba(242, 244, 239, 0.14);
}

.release-dialog-head > div,
.compare-dialog header > div {
  display: grid;
  gap: 4px;
}

.release-dialog-head span,
.compare-dialog header span {
  color: var(--acid);
  font-size: 8px;
}

.release-dialog-head strong,
.compare-dialog header strong {
  font-size: 16px;
}

.release-dialog-head button,
.compare-dialog header button {
  border-color: rgba(242, 244, 239, 0.22);
  background: transparent;
  color: #f2f4ef;
  font-size: 21px;
}

.release-dialog-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 0;
  overflow: auto;
}

.release-dialog-media {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #d9ddda;
}

.release-dialog-main-image {
  display: flex;
  min-height: 460px;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 17, 0.14);
}

.release-dialog-main-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}

.release-dialog-placeholder {
  display: grid;
  width: 100%;
  min-height: 460px;
  place-items: center;
  background: #171a18;
  color: var(--acid);
  font-size: 40px;
}

.release-dialog-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.release-dialog-thumbnails button {
  width: 72px;
  height: 56px;
  flex: 0 0 72px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #bec3be;
  cursor: pointer;
}

.release-dialog-thumbnails button.active {
  border-color: #101211;
}

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

.release-dialog-content {
  padding: 34px 38px 46px;
}

.release-dialog-content > p {
  margin: 0;
  color: #aeb5ae;
  font-size: 14px;
  line-height: 1.8;
}

.release-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0;
  border-top: 1px solid rgba(242, 244, 239, 0.14);
}

.release-detail-specs div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(242, 244, 239, 0.14);
}

.release-detail-specs div:nth-child(odd) {
  padding-right: 16px;
}

.release-detail-specs div:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid rgba(242, 244, 239, 0.14);
}

.release-detail-specs dt,
.release-detail-specs dd {
  margin: 0;
}

.release-detail-specs dt {
  margin-bottom: 6px;
  color: #727a72;
  font-family: var(--font-ui);
  font-size: 8px;
}

.release-detail-specs dd {
  font-size: 12px;
  line-height: 1.5;
}

.release-detail-section {
  margin-top: 30px;
}

.release-detail-section h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

.release-detail-section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bbc1bb;
  font-size: 12px;
  line-height: 1.55;
}

.release-detail-section li {
  display: flex;
  gap: 10px;
}

.release-detail-section li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  margin-top: 7px;
  background: var(--acid);
}

.release-detail-section.issues li::before {
  background: var(--signal);
}

.release-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: -8px 0 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(242, 244, 239, 0.14);
  border-bottom: 1px solid rgba(242, 244, 239, 0.14);
}

.release-download-info {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.release-download-info span {
  color: var(--acid);
  font-family: var(--font-ui);
  font-size: 8px;
}

.release-download-info strong {
  font-size: 15px;
}

.release-download-info small {
  color: #858d85;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.release-download-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.release-download-open,
.release-download-copy {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(242, 244, 239, 0.22);
  border-radius: 3px;
  background: transparent;
  color: #dce1dc;
  font-size: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.release-download-open {
  border-color: color-mix(in srgb, var(--acid) 56%, transparent);
  color: var(--acid);
}

.release-download-open:hover,
.release-download-copy:hover {
  border-color: var(--acid);
  background: rgba(184, 255, 67, 0.08);
  color: var(--acid);
}

.release-detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid rgba(242, 244, 239, 0.14);
  border-bottom: 1px solid rgba(242, 244, 239, 0.14);
}

.release-detail-metrics div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
}

.release-detail-metrics div + div {
  padding-left: 14px;
  border-left: 1px solid rgba(242, 244, 239, 0.14);
}

.release-detail-metrics strong {
  font-size: 18px;
}

.release-detail-metric-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  color: #85f6ed;
}

.release-detail-metric-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.release-dialog-content > .release-metrics-note {
  margin-top: 10px;
  color: #747c74;
  font-size: 9px;
}

.release-dialog-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 64px;
  flex: 0 0 64px;
  align-items: center;
  padding: 0 18px;
  border-top: 1px solid rgba(242, 244, 239, 0.14);
}

.release-dialog-foot button,
.release-dialog-foot a {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #aeb5ae;
  cursor: pointer;
  font-size: 11px;
}

.release-dialog-foot button:last-child {
  justify-self: end;
}

.release-dialog-foot a {
  color: var(--acid);
}

.release-dialog-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.release-dialog-foot .release-dialog-source {
  color: #aeb5ae;
}

.compare-dialog {
  width: min(980px, calc(100% - 36px));
}

.compare-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.compare-column {
  padding: 30px;
}

.compare-column + .compare-column {
  border-left: 1px solid rgba(242, 244, 239, 0.14);
}

.compare-column h3 {
  margin: 0;
  font-size: 25px;
}

.compare-column > span {
  display: block;
  margin-top: 8px;
  color: #7f877f;
  font-size: 10px;
}

.compare-column h4 {
  margin: 24px 0 0;
  font-size: 13px;
}

.compare-column dl {
  margin: 28px 0;
}

.compare-column dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 244, 239, 0.12);
}

.compare-column dt,
.compare-column dd {
  margin: 0;
  font-size: 11px;
}

.compare-column dt {
  color: #737b73;
}

.compare-column ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #bbc1bb;
  font-size: 11px;
  line-height: 1.5;
}

.pipeline-display-head,
.pipeline-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 10px;
}

.automation {
  --automation-ink: #1c1820;
  --automation-muted: #625b68;
  --automation-line: rgba(53, 43, 62, 0.16);
  --automation-line-soft: rgba(53, 43, 62, 0.1);
  --automation-accent: #9c7bff;
  background-color: #fbe9f0;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.280'/></svg>"),
    radial-gradient(circle at 66.94% 46.43%, rgba(251, 233, 240, 1) 0%, rgba(251, 233, 240, 0.844) 19.02%, rgba(251, 233, 240, 0.5) 38.05%, rgba(251, 233, 240, 0.156) 57.07%, rgba(251, 233, 240, 0) 76.1%),
    radial-gradient(circle at 34.69% 66.31%, rgba(205, 231, 240, 1) 0%, rgba(205, 231, 240, 0.844) 12.73%, rgba(205, 231, 240, 0.5) 25.45%, rgba(205, 231, 240, 0.156) 38.18%, rgba(205, 231, 240, 0) 50.9%),
    radial-gradient(circle at 48.93% 19.32%, rgba(230, 214, 245, 1) 0%, rgba(230, 214, 245, 0.844) 16.75%, rgba(230, 214, 245, 0.5) 33.5%, rgba(230, 214, 245, 0.156) 50.25%, rgba(230, 214, 245, 0) 67%),
    radial-gradient(circle at 80.23% 87.54%, rgba(214, 240, 228, 1) 0%, rgba(214, 240, 228, 0.844) 10.28%, rgba(214, 240, 228, 0.5) 20.55%, rgba(214, 240, 228, 0.156) 30.83%, rgba(214, 240, 228, 0) 41.1%);
  background-size: 120px 120px, auto, auto, auto, auto;
  background-blend-mode: overlay, normal, normal, normal, normal;
  color: var(--automation-ink);
}

.automation .section-number {
  color: var(--automation-accent);
}

.automation .section-heading > p {
  color: var(--automation-muted);
}

.automation button:focus-visible {
  outline-color: var(--automation-accent);
}

.pipeline-lab {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 570px;
  border: 1px solid var(--automation-line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 66px rgba(61, 47, 68, 0.07);
}

.pipeline-steps {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-right: 1px solid var(--automation-line);
  background: rgba(255, 255, 255, 0.22);
}

.pipeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--automation-line-soft);
  background: transparent;
  color: #6a6270;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.pipeline-step:last-child {
  border-bottom: 0;
}

.pipeline-step span {
  grid-row: 1 / 3;
  color: #746c7a;
  font-family: var(--font-ui);
  font-size: 11px;
}

.pipeline-step strong {
  color: inherit;
  font-size: 17px;
  font-weight: 600;
}

.pipeline-step small {
  grid-column: 2;
  font-family: var(--font-ui);
  font-size: 9px;
  text-transform: uppercase;
}

.pipeline-step::after {
  content: "";
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  border: 1px solid #847b8a;
  background: transparent;
}

.pipeline-step:hover {
  color: var(--automation-ink);
}

.pipeline-step.active {
  background: rgba(156, 123, 255, 0.14);
  color: var(--automation-ink);
}

.pipeline-step.active::after {
  border-color: var(--automation-accent);
  background: var(--automation-accent);
}

.pipeline-display {
  display: flex;
  flex-direction: column;
  padding: 30px 36px;
  background-color: rgba(255, 255, 255, 0.46);
  background-image: linear-gradient(rgba(67, 54, 78, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 54, 78, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.pipeline-display-head {
  color: #6f6676;
}

.live-status {
  color: var(--automation-accent);
}

.live-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: currentColor;
  animation: status-pulse 1.6s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}

.pipeline-focus {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  margin: auto 0;
}

.pipeline-focus > span {
  color: var(--automation-accent);
  font-family: var(--font-ui);
  font-size: 74px;
  line-height: 1;
}

.pipeline-focus p {
  margin: 0;
  color: #6f6676;
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 1.6;
}

.pipeline-focus h3 {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.25;
}

.pipeline-focus div p:last-child {
  max-width: 480px;
  color: var(--automation-muted);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
}

.pipeline-bars {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.pipeline-bars span {
  width: var(--bar);
  height: 2px;
  background: #b1a7b8;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), background-color 300ms ease;
}

.pipeline-lab.pipeline-active .pipeline-bars span {
  background: var(--automation-accent);
  transform: scaleX(1);
}

.pipeline-foot {
  padding-top: 18px;
  border-top: 1px solid var(--automation-line-soft);
  color: #756c7b;
}

.tutorial {
  --tutorial-accent: #1f5ed7;
  --tutorial-accent-strong: #174aa9;
  --tutorial-accent-secondary: #d64a3a;
  --tutorial-ink: #151917;
  --tutorial-muted: #62706e;
  --tutorial-line: rgba(21, 25, 23, 0.16);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #05030d;
  color: #f4f5ff;
}

.tutorial-shader-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 64% 32%, rgba(96, 62, 220, 0.62), transparent 42%),
    radial-gradient(circle at 24% 76%, rgba(22, 137, 197, 0.5), transparent 46%),
    #05030d;
  pointer-events: none;
}

.tutorial > .section-shell {
  position: relative;
  z-index: 1;
}

.tutorial .section-number {
  color: #d4d2fb;
}

.tutorial .section-heading > p {
  color: rgba(239, 241, 255, 0.82);
}

.tutorial .section-heading h2 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.54);
}

.tutorial button:focus-visible {
  outline-color: var(--tutorial-accent);
}

.tutorial-workbench {
  display: grid;
  grid-template-columns: minmax(310px, 0.58fr) minmax(0, 1.42fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--tutorial-line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(20, 39, 34, 0.08);
}

.tutorial-chapters {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  min-width: 0;
  border-right: 1px solid var(--tutorial-line);
  background: #f3f5f5;
}

.tutorial-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  min-width: 0;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--tutorial-line);
  background: transparent;
  color: #6c7874;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tutorial-chapter:last-child {
  border-bottom: 0;
}

.tutorial-chapter > span {
  grid-row: 1 / 3;
  color: #87928e;
  font-family: var(--font-ui);
  font-size: 11px;
}

.tutorial-chapter strong {
  min-width: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 650;
}

.tutorial-chapter small {
  grid-column: 2;
  color: #8a9591;
  font-family: var(--font-ui);
  font-size: 9px;
}

.tutorial-chapter::after {
  content: "";
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  border: 1px solid #8a9591;
  border-radius: 50%;
}

.tutorial-chapter:hover {
  background: #e8edeb;
  color: var(--tutorial-ink);
}

.tutorial-chapter.active {
  background: #ffffff;
  color: var(--tutorial-ink);
  box-shadow: inset 3px 0 0 var(--tutorial-accent);
}

.tutorial-chapter.active > span,
.tutorial-chapter.active small {
  color: var(--tutorial-accent-strong);
}

.tutorial-chapter.active::after {
  border-color: var(--tutorial-accent);
  background: var(--tutorial-accent);
  box-shadow: 0 0 0 4px rgba(31, 94, 215, 0.1);
}

.tutorial-panel {
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  padding: 30px 36px 32px;
  background: #ffffff;
}

.tutorial-panel-head,
.tutorial-panel-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.tutorial-panel-head {
  color: var(--tutorial-muted);
  font-family: var(--font-ui);
  font-size: 10px;
}

.tutorial-panel-head span:last-child {
  color: var(--tutorial-accent-strong);
}

.tutorial-progress-track {
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: #dfe7e3;
}

.tutorial-progress-track span {
  display: block;
  width: 16.6667%;
  height: 100%;
  background: var(--tutorial-accent);
  transition: width 360ms cubic-bezier(.2, .8, .2, 1);
}

.tutorial-panel-body {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: auto 0 44px;
  min-width: 0;
  padding-top: 54px;
}

.tutorial-chapter-number {
  color: var(--tutorial-accent);
  font-family: var(--font-ui);
  font-size: 82px;
  font-weight: 500;
  line-height: 0.88;
}

.tutorial-panel-body > div {
  min-width: 0;
}

.tutorial-panel-body h3 {
  max-width: 610px;
  margin: 0 0 18px;
  color: var(--tutorial-ink);
  font-size: 34px;
  line-height: 1.25;
}

.tutorial-panel-body p {
  max-width: 650px;
  margin: 0;
  color: var(--tutorial-muted);
  font-size: 14px;
  line-height: 1.85;
}

.tutorial-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--tutorial-line);
  border-bottom: 1px solid var(--tutorial-line);
  counter-reset: tutorial-point;
  list-style: none;
}

.tutorial-points li {
  min-width: 0;
  padding: 21px 18px;
  color: #344440;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  counter-increment: tutorial-point;
}

.tutorial-points li + li {
  border-left: 1px solid var(--tutorial-line);
}

.tutorial-points li::before {
  display: block;
  margin-bottom: 9px;
  color: var(--tutorial-accent);
  font-family: var(--font-ui);
  font-size: 9px;
  content: "CHECK 0" counter(tutorial-point);
}

.tutorial-panel-foot {
  align-items: flex-end;
}

.tutorial-output {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding-left: 14px;
  border-left: 3px solid var(--tutorial-accent-secondary);
}

.tutorial-output span {
  color: var(--tutorial-accent-secondary);
  font-family: var(--font-ui);
  font-size: 9px;
}

.tutorial-output strong {
  color: var(--tutorial-ink);
  font-size: 13px;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.tutorial-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.tutorial-controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--tutorial-line);
  border-radius: 3px;
  background: #f3f6f4;
  color: var(--tutorial-ink);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.tutorial-controls button:hover:not(:disabled) {
  border-color: var(--tutorial-accent);
  background: var(--tutorial-accent);
  color: #ffffff;
}

.tutorial-controls button:disabled {
  color: #aeb8b4;
  cursor: not-allowed;
  opacity: 0.58;
}

.writing {
  background: #ffffff;
}

.article-row {
  display: grid;
  grid-template-columns: 150px 1fr 180px 32px;
  gap: 24px;
  align-items: center;
  min-height: 108px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: padding 220ms ease, background-color 220ms ease;
}

.article-row:hover {
  padding: 0 18px;
  background: #f1f3ef;
}

.article-date,
.article-meta {
  color: #747b74;
  font-family: var(--font-ui);
  font-size: 11px;
}

.article-title {
  font-size: 21px;
  font-weight: 600;
}

.article-arrow {
  justify-self: end;
  font-size: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 250px;
  padding: 64px max(28px, calc((100% - var(--page-width)) / 2));
  background: #0b0d0c;
  color: #f2f4ef;
}

.footer-wordmark {
  font-size: 28px;
}

.site-footer p {
  margin: 15px 0 0;
  color: #858c85;
  font-size: 12px;
}

.command-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(242, 244, 239, 0.24);
  border-radius: 6px;
  background: #111412;
  color: #f2f4ef;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
}

.command-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.command-dialog form {
  padding: 14px;
}

.command-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px 14px;
  color: #9ba29b;
  font-size: 12px;
}

.command-head button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #f2f4ef;
  cursor: pointer;
  font-size: 20px;
}

.command-search {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(242, 244, 239, 0.18);
  background: #191d1a;
}

.command-search span {
  color: var(--acid);
  font-size: 20px;
}

.command-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f2f4ef;
}

.command-list {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.command-list a {
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: #c4cac4;
  font-size: 13px;
}

.command-list a:hover,
.command-list a.command-match {
  background: #202521;
  color: #ffffff;
}

.command-list a[hidden] {
  display: none;
}

.command-list span {
  color: #6f766f;
  font-family: var(--font-ui);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-statement {
    font-size: 21px;
  }

  .section-heading {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .section-heading h2 {
    font-size: 50px;
  }

  .archive-overview {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .archive-overview > div {
    grid-column: span 2;
  }

  .archive-overview > div:nth-child(n + 4) {
    grid-column: span 3;
    border-top: 1px solid var(--line-light);
  }

  .archive-overview > div:nth-child(4) {
    border-left: 0;
  }

  .milestone-panel {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    min-height: 640px;
  }

  .milestone-media {
    padding: 56px 36px;
  }

  .milestone-story {
    padding: 26px 28px 32px;
  }

  .milestone-selector {
    margin-bottom: 36px;
  }

  .milestone-story h3 {
    font-size: 28px;
  }

  .archive-toolbar {
    grid-template-columns: minmax(220px, 1fr) 160px auto;
  }

  .release-table-head,
  .release-row {
    grid-template-columns: 44px 92px minmax(170px, 0.85fr) minmax(190px, 1.35fr) 102px 44px;
    gap: 12px;
  }

  .release-dialog-media {
    min-height: 540px;
  }

  .release-dialog-main-image,
  .release-dialog-placeholder {
    min-height: 390px;
  }

  .pipeline-focus {
    grid-template-columns: 100px 1fr;
  }

  .pipeline-focus > span {
    font-size: 58px;
  }

  .tutorial-workbench {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  }

  .tutorial-panel-body {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .tutorial-chapter-number {
    font-size: 66px;
  }

  .tutorial-panel-body h3 {
    font-size: 30px;
  }
}

@media (min-width: 820px) and (max-height: 800px) {
  .hero-content {
    width: 42vw;
  }

  .hero-product {
    width: min(44vw, 520px);
  }
}

@media (min-width: 820px) and (max-width: 900px) {
  .hero-actions {
    gap: 20px;
  }

  .hero-io-button {
    height: 44px;
    min-height: 44px;
    font-size: 14px;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .hero {
    display: block;
    height: 92svh;
    min-height: 780px;
    max-height: 900px;
    padding: 76px 28px 56px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.28) 0%, rgba(4, 6, 5, 0.42) 50%, rgba(4, 6, 5, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 6, 5, 0.28), rgba(4, 6, 5, 0.12));
  }

  .hero-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 640px);
    margin: 446px auto 0;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-product {
    --hero-card-step-x: 22px;
    --hero-card-step-y: 32px;
    --hero-card-stack-x: 88px;
    --hero-card-stack-y: 128px;
    --hero-card-scale-step: 0.014;
    --hero-card-blur-step: 0.24;
    --hero-card-skew: 0deg;
    position: absolute;
    top: calc(76px + var(--hero-card-stack-y));
    right: calc(max(28px, calc((100% - 680px) / 2)) + var(--hero-card-stack-x));
    bottom: auto;
    left: auto;
    width: min(calc(100% - 56px - var(--hero-card-stack-x)), calc(680px - var(--hero-card-stack-x)));
    height: auto;
    margin: 0;
  }

  .hero-proof {
    right: 28px;
    bottom: 28px;
    left: 28px;
    justify-content: space-between;
  }
}

@media (max-width: 820px) {
  .site-header.header-hidden {
    transform: none;
  }

  .site-header {
    height: 62px;
    padding: 0 18px;
  }

  .command-button .command-label,
  .command-button kbd {
    display: none;
  }

  .command-button {
    gap: 0;
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .command-symbol {
    display: inline;
  }

  .hero {
    display: block;
    height: 90svh;
    min-height: 680px;
    max-height: 800px;
    padding: 76px 20px 56px;
  }

  .hero-video {
    object-position: 50% 50%;
  }

  .hero-media {
    background: #090b0a url("assets/video/mi10-ultra-poster.jpg") center / cover no-repeat;
  }

  .hero-mobile-canvas {
    display: block;
  }

  .hero-mobile-decoder {
    display: none;
  }

  .hero-mobile-frame {
    display: block;
  }

  .hero-video {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.32) 0%, rgba(4, 6, 5, 0.46) 48%, rgba(4, 6, 5, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 6, 5, 0.3), rgba(4, 6, 5, 0.14));
  }

  .hero-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 600px);
    margin: min(calc(45vw + 126px), 414px) auto 0;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-product {
    --hero-card-step-x: 18px;
    --hero-card-step-y: 30px;
    --hero-card-stack-x: 72px;
    --hero-card-stack-y: 120px;
    --hero-card-scale-step: 0.012;
    --hero-card-blur-step: 0.2;
    --hero-card-skew: 0deg;
    position: absolute;
    top: calc(76px + var(--hero-card-stack-y));
    right: calc(max(20px, calc((100% - 600px) / 2)) + var(--hero-card-stack-x));
    bottom: auto;
    left: auto;
    width: min(calc(100% - 40px - var(--hero-card-stack-x)), calc(600px - var(--hero-card-stack-x)));
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .hero-proof {
    right: 20px;
    bottom: 28px;
    left: 20px;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-proof div {
    gap: 6px;
  }

  .manifesto {
    display: grid;
    min-height: 150px;
    padding: 34px 20px;
    font-size: 15px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .project-section,
  .writing {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .archive-overview > div,
  .archive-overview > div:nth-child(n + 4) {
    grid-column: auto;
  }

  .archive-overview > div:nth-child(odd) {
    border-left: 0;
  }

  .archive-overview > div:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }

  .archive-overview > div:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .archive-overview > div:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .archive-workbench-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 72px;
    padding: 10px 14px;
  }

  .archive-view-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 50px;
  }

  .milestone-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .milestone-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 48px 40px;
  }

  .milestone-media img {
    max-height: calc(100% - 28px);
  }

  .milestone-story {
    min-height: 540px;
    padding: 26px 30px 34px;
  }

  .milestone-selector {
    margin-bottom: 34px;
  }

  .archive-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .archive-search,
  .archive-toolbar output {
    grid-column: 1 / -1;
  }

  .archive-toolbar output {
    padding: 4px 0 0;
    text-align: left;
  }

  .release-table-head {
    display: none;
  }

  .release-row {
    grid-template-columns: 44px 92px minmax(0, 1fr) 44px;
    grid-template-areas:
      "compare sequence version detail"
      "compare sequence updates detail"
      "compare sequence feedback detail";
    gap: 7px 12px;
    min-height: 134px;
    padding: 18px;
  }

  .release-compare-toggle {
    grid-area: compare;
    align-self: center;
  }

  .release-row-sequence {
    grid-area: sequence;
    align-self: center;
  }

  .release-row-version {
    grid-area: version;
  }

  .release-row-updates {
    grid-area: updates;
  }

  .release-row-feedback {
    grid-area: feedback;
  }

  .release-row-detail {
    grid-area: detail;
    align-self: center;
  }

  .comparison-bar {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body.comparison-active .archive-library {
    padding-bottom: 140px;
  }

  .comparison-selection {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }

  .comparison-selection b {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .release-dialog,
  .compare-dialog {
    width: min(760px, calc(100% - 20px));
    max-height: 94dvh;
  }

  .release-dialog article,
  .compare-dialog article {
    max-height: calc(94dvh - 2px);
  }

  .release-dialog-body {
    display: block;
    grid-template-columns: 1fr;
  }

  .release-dialog-media {
    min-height: 0;
    padding: 18px;
  }

  .release-dialog-main-image,
  .release-dialog-placeholder {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .release-dialog-main-image {
    width: 100%;
    flex: 0 0 auto;
  }

  .release-dialog-content {
    padding: 28px 30px 38px;
  }

  .compare-content {
    grid-template-columns: 1fr;
  }

  .compare-column + .compare-column {
    border-top: 1px solid rgba(242, 244, 239, 0.14);
    border-left: 0;
  }

  .pipeline-lab {
    grid-template-columns: 1fr;
  }

  .pipeline-steps {
    grid-template-rows: none;
    grid-template-columns: repeat(5, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(240, 243, 238, 0.16);
  }

  #automation .pipeline-steps {
    border-bottom-color: var(--automation-line);
  }

  .pipeline-step {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding: 16px 12px;
    border-right: 1px solid rgba(240, 243, 238, 0.12);
    border-bottom: 0;
  }

  #automation .pipeline-step {
    border-right-color: var(--automation-line-soft);
  }

  .pipeline-step::after,
  .pipeline-step small {
    display: none;
  }

  .pipeline-step strong {
    font-size: 14px;
  }

  .pipeline-display {
    min-height: 430px;
  }

  .tutorial-workbench {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tutorial-chapters {
    display: flex;
    grid-template-rows: none;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--tutorial-line);
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tutorial-chapters::-webkit-scrollbar {
    display: none;
  }

  .tutorial-chapter {
    min-width: 152px;
    min-height: 78px;
    flex: 1 0 152px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px 16px;
    border-right: 1px solid var(--tutorial-line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .tutorial-chapter::after {
    display: none;
  }

  .tutorial-chapter.active {
    box-shadow: inset 0 -3px 0 var(--tutorial-accent);
  }

  .tutorial-panel {
    min-height: 520px;
  }

  .tutorial-panel-body {
    padding-top: 44px;
  }

  .article-row {
    grid-template-columns: 120px 1fr 30px;
  }

  .article-meta {
    display: none;
  }

  .site-footer {
    display: grid;
    align-content: end;
    gap: 34px;
    min-height: 280px;
    padding: 50px 20px;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 16px;
  }

  .hero {
    height: 92svh;
    min-height: 600px;
    max-height: 740px;
    padding: 76px 20px 54px;
  }

  .hero-content {
    margin-top: calc(45vw + 88px);
  }

  .eyebrow {
    max-width: 290px;
    margin-bottom: 14px;
    font-size: 9px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 18px;
  }

  .primary-action,
  .text-action {
    gap: 9px;
    font-size: 12px;
  }

  .primary-action {
    min-height: 44px;
    padding: 0 12px;
  }

  .hero-io-button {
    height: 44px;
    min-height: 44px;
    padding: 0.35em 44px 0.35em 12px;
    font-size: 12px;
  }

  .hero-io-button__icon {
    right: 5px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .hero-io-button:hover .hero-io-button__icon,
  .hero-io-button:focus-visible .hero-io-button__icon {
    width: calc(100% - 10px);
  }

  .hero-product {
    --hero-card-step-x: 10px;
    --hero-card-step-y: 14px;
    --hero-card-stack-x: 40px;
    --hero-card-stack-y: 88px;
    --hero-card-scale-step: 0.01;
    --hero-card-blur-step: 0.14;
    --hero-card-skew: 0deg;
    bottom: auto;
    height: auto;
    padding: 0;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .archive-overview {
    margin-bottom: 24px;
  }

  .archive-overview > div {
    min-height: 112px;
    padding: 16px 14px;
  }

  .archive-overview > div:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }

  .archive-overview > div:last-child {
    border-left: 0;
  }

  .archive-overview strong {
    font-size: 28px;
  }

  .archive-workbench-head {
    min-height: 66px;
    padding: 0 12px;
  }

  .archive-view-control {
    width: 100%;
    min-height: 48px;
  }

  .milestone-media {
    aspect-ratio: 3 / 2;
    padding: 38px 18px 48px;
  }

  .milestone-media-meta {
    top: 12px;
    right: 14px;
    left: 14px;
  }

  .milestone-media-controls {
    right: 10px;
    bottom: 10px;
  }

  .milestone-story {
    min-height: 0;
    padding: 22px 20px 26px;
  }

  .milestone-selector {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .milestone-selector::-webkit-scrollbar {
    display: none;
  }

  .milestone-selector button {
    min-width: 108px;
    height: 52px;
    flex: 0 0 108px;
    scroll-snap-align: start;
  }

  .milestone-story h3 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

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

  .milestone-specs div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid rgba(242, 244, 239, 0.14);
    border-left: 0;
  }

  .milestone-specs dd {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .milestone-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .milestone-actions .archive-primary {
    width: 100%;
    justify-content: center;
  }

  .milestone-actions .archive-text {
    min-height: 44px;
  }

  .archive-toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .archive-search,
  .archive-toolbar output {
    grid-column: 1;
  }

  .release-row {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-areas:
      "compare version detail"
      ". sequence ."
      ". updates ."
      ". feedback .";
    gap: 8px;
    min-height: 174px;
    padding: 14px 10px;
  }

  .release-row-sequence {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
  }

  .release-row-version-link,
  .release-row-version span,
  .release-row-updates span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .release-row-feedback {
    display: flex;
    flex-wrap: wrap;
  }

  .comparison-bar {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  body.comparison-active .archive-library {
    padding-bottom: calc(174px + env(safe-area-inset-bottom));
  }

  .comparison-bar > div:first-child,
  .comparison-selection {
    grid-column: 1 / -1;
  }

  .comparison-selection {
    grid-row: auto;
  }

  .comparison-selection b {
    max-width: 100%;
  }

  .comparison-clear,
  .comparison-open {
    width: 100%;
    padding: 0 10px;
  }

  .release-dialog,
  .compare-dialog {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .release-dialog article,
  .compare-dialog article {
    height: 100%;
    max-height: 100dvh;
  }

  .release-dialog-head,
  .compare-dialog header {
    min-height: calc(64px + env(safe-area-inset-top));
    flex-basis: calc(64px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 10px 0 16px;
  }

  .release-dialog-head > div,
  .compare-dialog header > div {
    min-width: 0;
  }

  .release-dialog-head strong,
  .compare-dialog header strong {
    overflow-wrap: anywhere;
  }

  .release-dialog-media {
    padding: 12px;
  }

  .release-dialog-thumbnails button {
    width: 68px;
    height: 52px;
    flex-basis: 68px;
  }

  .release-dialog-content {
    min-width: 0;
    padding: 24px 18px 32px;
  }

  .release-detail-specs {
    grid-template-columns: 1fr;
  }

  .release-detail-specs div:nth-child(odd),
  .release-detail-specs div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .release-detail-specs dd,
  .release-detail-section li {
    overflow-wrap: anywhere;
  }

  .release-download {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .release-download-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-download-open,
  .release-download-copy {
    min-width: 0;
    padding: 0 8px;
  }

  .release-dialog-foot {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: calc(60px + env(safe-area-inset-bottom));
    flex-basis: calc(60px + env(safe-area-inset-bottom));
    padding: 0 8px env(safe-area-inset-bottom);
  }

  .release-dialog-foot button,
  .release-dialog-foot a {
    min-width: 0;
    padding: 0 5px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .release-dialog-links {
    gap: 4px;
  }

  .release-dialog-foot .release-dialog-download,
  .release-dialog-foot .release-dialog-source {
    font-size: 9px;
  }

  .compare-column {
    min-width: 0;
    padding: 24px 18px;
  }

  .compare-column h3,
  .compare-column dd,
  .compare-column li {
    overflow-wrap: anywhere;
  }

  .compare-column dl div {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .pipeline-steps {
    width: 100%;
    overflow-x: auto;
  }

  .pipeline-step {
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
  }

  .pipeline-step strong {
    font-size: 12px;
  }

  .pipeline-display {
    min-height: 460px;
    padding: 24px 20px;
  }

  .pipeline-focus {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pipeline-focus > span {
    font-size: 48px;
  }

  .pipeline-focus h3 {
    font-size: 27px;
  }

  .tutorial-chapter {
    min-width: 134px;
    min-height: 72px;
    flex-basis: 134px;
    padding: 12px 13px;
  }

  .tutorial-chapter strong {
    font-size: 14px;
  }

  .tutorial-panel {
    min-height: 0;
    padding: 24px 18px 26px;
  }

  .tutorial-panel-body {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 0 32px;
    padding-top: 42px;
  }

  .tutorial-chapter-number {
    font-size: 48px;
  }

  .tutorial-panel-body h3 {
    margin-bottom: 14px;
    font-size: 27px;
  }

  .tutorial-points {
    grid-template-columns: 1fr;
    margin-bottom: 26px;
  }

  .tutorial-points li {
    padding: 16px 4px;
  }

  .tutorial-points li + li {
    border-top: 1px solid var(--tutorial-line);
    border-left: 0;
  }

  .tutorial-panel-foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
  }

  .article-row {
    grid-template-columns: 1fr 30px;
    gap: 8px;
    min-height: 130px;
    padding: 22px 0;
  }

  .article-date {
    grid-column: 1;
  }

  .article-title {
    grid-column: 1;
    font-size: 17px;
    line-height: 1.5;
  }

  .article-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@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;
  }
}

/* Full-width 22-release orbit. The DOM thumbnail grid is the WebGL fallback. */
.milestone-panel {
  display: block;
  min-height: 0;
}

.milestone-story[hidden],
.milestone-media-meta[hidden],
.milestone-media-controls[hidden] {
  display: none !important;
}

.milestone-media {
  --orbit-focus-x: 50%;
  --orbit-focus-y: 50%;
  width: 100%;
  height: 600px;
  min-height: 0;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  background-color: #1b1740;
  background-image: radial-gradient(
    circle at var(--orbit-focus-x) var(--orbit-focus-y),
    #f7f3ff 0%,
    #9bb8f0 26.4%,
    #5e5cc0 53.6%,
    #1b1740 80%
  );
  box-shadow: inset 0 0 0 1px rgba(223, 236, 240, 0.12);
}

/* Let the settled disc share the section backdrop; the drag state keeps its own blue field. */
.milestone-media.orbit-ready:not(.orbit-is-moving) {
  background: transparent;
}

.milestone-media::before,
.milestone-media::after {
  display: none;
}

.milestone-fallback-image {
  position: absolute !important;
  z-index: 1 !important;
  inset: 48px;
  width: calc(100% - 96px) !important;
  max-width: none !important;
  height: calc(100% - 96px);
  max-height: none !important;
  object-fit: contain;
  opacity: 1;
  transition: opacity 260ms ease, visibility 260ms step-end;
}

.milestone-media.orbit-ready .milestone-fallback-image,
.milestone-media.orbit-fallback .milestone-fallback-image {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#infinite-grid-menu-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  outline: none;
  opacity: 0;
  touch-action: none;
  transition: opacity 280ms ease;
}

#infinite-grid-menu-canvas:active { cursor: grabbing; }

.milestone-media.orbit-ready #infinite-grid-menu-canvas { opacity: 1; }

.archive-orbit-fallback {
  position: absolute;
  z-index: 2;
  inset: 28px 28px 100px;
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  align-content: start;
  gap: 18px;
  overflow: auto;
  padding: 4px 8px 16px;
}

.archive-orbit-fallback[hidden],
#infinite-grid-menu-canvas[hidden] {
  display: none !important;
}

.archive-orbit-fallback button {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: #101211;
  color: #ffffff;
  cursor: pointer;
  aspect-ratio: 1;
}

.archive-orbit-fallback button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease;
}

.archive-orbit-fallback button:hover::after,
.archive-orbit-fallback button.active::after { border-color: #ffffff; }

.archive-orbit-fallback button:focus-visible {
  outline: 2px solid #d9f99d;
  outline-offset: 3px;
}

.archive-orbit-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-orbit-fallback span {
  position: absolute;
  right: 10px;
  bottom: 14px;
  left: 10px;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.7);
}

.archive-orbit-title,
.archive-orbit-description {
  position: absolute;
  z-index: 3;
  top: 50%;
  margin: 0;
  color: #f0eeff;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.74);
  transition: opacity 500ms ease, transform 500ms ease;
}

.archive-orbit-title {
  left: clamp(36px, 6vw, 104px);
  width: min(26vw, 290px);
  font-size: 16px;
  line-height: 1;
  white-space: normal;
  transform: translateY(-50%);
}

.archive-orbit-system,
.archive-orbit-version-number {
  display: block;
}

.archive-orbit-system {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.1;
}

.archive-orbit-version-number {
  font-size: 26px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.archive-orbit-description {
  right: clamp(28px, 4vw, 76px);
  width: min(12ch, 18vw);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
  transform: translateY(-50%);
}

.archive-orbit-action {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 3.8em;
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s ease;
}

.archive-orbit-action::before,
.archive-orbit-action::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.archive-orbit-action::before {
  border: 4px solid #9c7bff;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.archive-orbit-action::after {
  border: 4px solid #96daf0;
  opacity: 0;
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive-orbit-action:hover::before,
.archive-orbit-action:focus-visible::before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive-orbit-action:hover::after,
.archive-orbit-action:focus-visible::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.archive-orbit-action-box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.archive-orbit-action-elem {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0;
  transform: rotate(-45deg);
  fill: #9c7bff;
}

.archive-orbit-action-elem svg {
  display: block;
  width: 100%;
  height: 100%;
}

.archive-orbit-action:hover .archive-orbit-action-box,
.archive-orbit-action:focus-visible .archive-orbit-action-box {
  transform: translateX(-56px);
  transition: 0.4s;
}

.archive-orbit-rotation-hint {
  position: absolute;
  z-index: 4;
  bottom: 8px;
  left: 50%;
  margin: 0;
  color: rgba(230, 179, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
  transform: translate(-50%, 6px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  user-select: none;
  visibility: hidden;
  white-space: nowrap;
}

.milestone-media.orbit-origin-active .archive-orbit-rotation-hint {
  opacity: 0.56;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  visibility: visible;
  animation: archive-orbit-rotation-hint 2.6s ease-in-out infinite;
}

@keyframes archive-orbit-rotation-hint {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.62; }
}

.milestone-media.orbit-is-moving .archive-orbit-action {
  bottom: -80px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0);
  transition: 0.1s ease;
}

.milestone-media.orbit-is-moving .archive-orbit-rotation-hint {
  opacity: 0;
  animation: none;
  visibility: hidden;
}

.milestone-media.orbit-is-moving .archive-orbit-title {
  opacity: 0;
  pointer-events: none;
  transform: translate(-14px, -50%);
  transition-duration: 100ms;
}

.milestone-media.orbit-is-moving .archive-orbit-description {
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -50%);
  transition-duration: 100ms;
}

.milestone-media.orbit-fallback .archive-orbit-title,
.milestone-media.orbit-fallback .archive-orbit-description {
  display: none;
}

.milestone-media-meta {
  z-index: 5;
  top: 30px;
  right: 30px;
  left: 30px;
  color: #254c61;
}

.milestone-media-controls {
  z-index: 5;
  right: 24px;
  bottom: 24px;
}

.milestone-media-controls button {
  border-color: rgba(14, 48, 66, 0.28);
  background: rgba(237, 249, 253, 0.7);
  color: #10242f;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.milestone-media-controls button:hover {
  border-color: #10242f;
  background: #ffffff;
}

.milestone-selector {
  display: flex;
  gap: 7px;
  width: 100%;
  margin-bottom: 28px;
  padding: 0 0 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-bottom: 1px solid rgba(242, 244, 239, 0.16);
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 245, 251, 0.35) transparent;
}

.milestone-selector button {
  flex: 0 0 auto;
  width: auto;
  min-width: 82px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(242, 244, 239, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  color: #9fa8a0;
  overflow: visible;
  text-overflow: clip;
}

.milestone-selector button::after { display: none; }

.milestone-selector button:hover,
.milestone-selector button.active {
  border-color: #e2f5fb;
  background: #e2f5fb;
  color: #10242f;
}

.milestone-selector button:focus-visible {
  outline: 2px solid #7bd0f2;
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .milestone-media {
    height: 600px;
    aspect-ratio: auto;
  }

  .archive-orbit-fallback { grid-template-columns: repeat(5, minmax(96px, 1fr)); }
}

@media (max-width: 820px) {
  .milestone-media { height: 520px; }
  .archive-orbit-title,
  .archive-orbit-description { display: none; }
  .archive-orbit-fallback {
    inset: 22px 18px 88px;
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .milestone-media {
    height: 420px;
    aspect-ratio: auto;
  }

  .milestone-fallback-image {
    inset: 30px 16px 82px;
    width: calc(100% - 32px) !important;
    height: calc(100% - 112px);
  }

  .archive-orbit-fallback {
    inset: 16px 12px 78px;
    grid-template-columns: repeat(3, minmax(68px, 1fr));
    gap: 9px;
  }

  .archive-orbit-fallback span {
    right: 5px;
    bottom: 9px;
    left: 5px;
    font-size: 8px;
  }

  .archive-orbit-rotation-hint {
    bottom: 14px;
    font-size: 11px;
  }
}

/* Standalone release detail page. */
body.release-page {
  --release-ink: #f2f4ef;
  --release-muted: #aeb5ae;
  --release-line: rgba(242, 244, 239, 0.16);
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  background: #0a0a0c;
  color: var(--release-ink);
}

.release-page-particle-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #0a0a0c;
  pointer-events: none;
}

.release-page-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  align-items: center;
  gap: 20px;
  padding: 0 34px;
  border-bottom: 1px solid var(--release-line);
  background: rgba(10, 10, 12, 0.78);
  color: var(--release-ink);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.release-page-back,
.release-page-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #85f6ed;
  font-size: 12px;
  transition: color 180ms ease;
}

.release-page-back:hover,
.release-page-home:hover {
  color: #85f6ed;
}

.release-page-back > span:first-child {
  color: #85f6ed;
  font-size: 18px;
}

.release-page-home {
  justify-self: end;
  color: #85f6ed;
}

.release-page-header-meta {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #8d968e;
  font-family: var(--font-ui);
  font-size: 9px;
}

.release-page-header-meta span:first-child {
  color: #85f6ed;
}

.release-page-main {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 68px));
  margin: 0 auto;
  padding: 78px 0 54px;
}

.release-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--release-line);
}

.release-page-kicker {
  display: block;
  margin-bottom: 20px;
  color: #85f6ed;
  font-family: var(--font-ui);
  font-size: 10px;
  text-transform: uppercase;
}

.release-page-intro h1 {
  max-width: 900px;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.release-page-intro p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(242, 244, 239, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.release-page-workbench {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  min-height: 680px;
  margin-top: 42px;
  border-top: 1px solid var(--release-line);
  border-bottom: 1px solid var(--release-line);
  background: rgba(10, 10, 12, 0.58);
}

.release-page-media {
  display: flex;
  min-width: 0;
  min-height: 680px;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid var(--release-line);
  background: transparent;
}

.release-page-main-image {
  display: flex;
  min-height: 560px;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 17, 0.16);
  background: transparent;
}

.release-page-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.release-page-placeholder {
  display: grid;
  width: 100%;
  min-height: 460px;
  place-items: center;
  background: #171a18;
  color: #85f6ed;
  font-size: 34px;
  text-align: center;
}

.release-page-content {
  min-width: 0;
  padding: 42px 46px 58px;
}

.release-page-content-summary {
  margin: 0;
  color: var(--release-muted);
  font-size: 15px;
  line-height: 1.85;
}

.release-page-content .release-detail-specs {
  margin: 30px 0;
  border-color: var(--release-line);
}

.release-page-content .release-detail-specs div {
  border-color: var(--release-line);
}

.release-page-content .release-detail-specs dt {
  color: #7f877f;
}

.release-page-content .release-detail-specs dd {
  color: var(--release-ink);
}

.release-page-content .release-detail-section h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.release-page-content .release-detail-section ul {
  color: #bbc1bb;
}

.release-page-download-hero {
  position: relative;
  z-index: 1;
}

.release-page-download-hero .release-download {
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 32px;
  margin: 0;
  padding: 30px 0;
  border-top: 0;
  border-bottom-color: var(--release-line);
}

.release-page-download-hero .release-download-info {
  gap: 5px;
}

.release-page-download-hero .release-download-info > span {
  color: #85f6ed;
  font-size: 10px;
}

.release-page-download-hero .release-download-info strong {
  font-size: 21px;
}

.release-page-download-hero .release-download-info small {
  color: var(--release-muted);
  font-size: 11px;
}

.release-page-download-hero .release-download-actions {
  gap: 14px;
}

.release-page-download-hero .release-download-button {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  padding: 0.35em 3.35em 0.35em 1.2em;
  overflow: hidden;
  border: 0;
  border-radius: 0.9em;
  color: inherit;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.release-page-download-hero .release-download-button-label {
  position: relative;
  z-index: 1;
}

.release-page-download-hero .release-download-button-icon {
  position: absolute;
  z-index: 2;
  right: 0.3em;
  display: flex;
  width: 2.2em;
  height: 2.2em;
  align-items: center;
  justify-content: center;
  border-radius: 0.7em;
  transition: width 300ms ease, transform 300ms ease;
}

.release-page-download-hero .release-download-button-icon svg {
  width: 1.1em;
  height: 1.1em;
  transition: transform 300ms ease;
}

.release-page-download-hero .release-download-button:hover,
.release-page-download-hero .release-download-button:focus-visible {
  transform: translateY(-1px);
}

.release-page-download-hero .release-download-button:hover .release-download-button-icon,
.release-page-download-hero .release-download-button:focus-visible .release-download-button-icon {
  width: calc(100% - 0.6em);
}

.release-page-download-hero .release-download-button:active .release-download-button-icon {
  transform: scale(0.95);
}

.release-page-download-hero .release-download-button:focus-visible {
  outline: 2px solid #85f6ed;
  outline-offset: 3px;
}

.release-page-download-hero .release-download-open.release-download-button,
.release-page-download-hero .release-download-open.release-download-button:hover,
.release-page-download-hero .release-download-open.release-download-button:focus-visible {
  border: 0;
  background: #70f0d6;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  color: #ffffff;
}

@media (min-width: 561px) {
  .release-page-download-hero .release-download-open.release-download-button {
    width: 134px;
  }
}

.release-page-download-hero .release-download-open .release-download-button-icon {
  background: #ffffff;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  color: #7b52b9;
}

.release-page-download-hero .release-download-open:hover .release-download-button-icon svg,
.release-page-download-hero .release-download-open:focus-visible .release-download-button-icon svg {
  transform: translate(0.1em, -0.1em);
}

.release-page-download-hero .release-download-copy.release-download-button,
.release-page-download-hero .release-download-copy.release-download-button:hover,
.release-page-download-hero .release-download-copy.release-download-button:focus-visible {
  border: 1px solid rgba(242, 244, 239, 0.22);
  background: rgba(10, 10, 12, 0.78);
  box-shadow: inset 0 0 1.4em -0.9em rgba(242, 244, 239, 0.26);
  color: #dce1dc;
}

.release-page-download-hero .release-download-copy .release-download-button-icon {
  background: #dce1dc;
  box-shadow: 0.1em 0.1em 0.6em 0.16em rgba(242, 244, 239, 0.2);
  color: #101211;
}

.release-page-download-hero .release-download-copy:hover .release-download-button-icon svg,
.release-page-download-hero .release-download-copy:focus-visible .release-download-button-icon svg {
  transform: scale(1.06);
}

.release-page-source {
  display: inline-flex;
  margin-top: 28px;
  color: #85f6ed;
  font-size: 12px;
}

.release-page-content > .release-metrics-note {
  margin-top: 12px;
  color: #747c74;
  font-size: 9px;
}

.release-page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 34px;
}

.release-page-nav-link {
  position: relative;
  display: block;
  width: min(280px, 100%);
  min-height: 64px;
  color: #aeb5ae;
  text-decoration: none;
  isolation: isolate;
  transition: color 220ms ease;
}

.release-page-nav-link::before {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 64px;
  content: "";
  border: 1px solid rgba(133, 246, 237, 0.86);
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.68);
  box-shadow: 0 0 0 rgba(133, 246, 237, 0);
  transition: width 300ms ease-in-out, border-radius 300ms ease-in-out, background-color 300ms ease-in-out, box-shadow 300ms ease-in-out;
}

.release-page-nav-link::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 31px;
  width: 0;
  height: 1px;
  content: "";
  background: #85f6ed;
  opacity: 0;
  transform: translateY(-50%);
  transition: width 300ms ease-in-out, opacity 180ms ease;
}

.release-page-nav-arrow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  color: #85f6ed;
}

.release-page-nav-arrow-box {
  display: flex;
  width: 128px;
  height: 64px;
  align-items: center;
  transition: transform 300ms ease-in-out;
}

.release-page-nav-arrow svg {
  width: 64px;
  height: 24px;
  flex: 0 0 64px;
}

.release-page-nav-copy {
  position: relative;
  z-index: 3;
  display: grid;
  min-width: 0;
  gap: 4px;
  margin-left: 78px;
  padding: 13px 12px 12px 0;
}

.release-page-nav-copy small {
  color: #7f877f;
  font-family: var(--font-ui);
  font-size: 9px;
}

.release-page-nav-copy strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-page-nav-link:hover,
.release-page-nav-link:focus-visible {
  color: #f0f3ee;
  outline: 0;
}

.release-page-nav-link:hover::before,
.release-page-nav-link:focus-visible::before {
  width: 100%;
  border-radius: 34px 10px 10px 34px;
  background: rgba(133, 246, 237, 0.09);
  box-shadow: 0 0 22px rgba(133, 246, 237, 0.12);
}

.release-page-nav-link:hover::after,
.release-page-nav-link:focus-visible::after {
  width: 42px;
  opacity: 1;
}

.release-page-nav-link:hover .release-page-nav-arrow-box,
.release-page-nav-link:focus-visible .release-page-nav-arrow-box {
  transform: translateX(-64px);
}

.release-page-nav-next {
  justify-self: end;
}

.release-page-nav-next::before {
  right: 0;
  left: auto;
}

.release-page-nav-next::after {
  right: 31px;
  left: auto;
}

.release-page-nav-next .release-page-nav-arrow {
  right: 0;
  left: auto;
}

.release-page-nav-next .release-page-nav-arrow-box {
  transform: translateX(-64px);
}

.release-page-nav-next .release-page-nav-copy {
  margin-right: 78px;
  margin-left: 0;
  padding-right: 0;
  padding-left: 12px;
  text-align: right;
}

.release-page-nav-next:hover::before,
.release-page-nav-next:focus-visible::before {
  border-radius: 10px 34px 34px 10px;
}

.release-page-nav-next:hover .release-page-nav-arrow-box,
.release-page-nav-next:focus-visible .release-page-nav-arrow-box {
  transform: translateX(0);
}

.release-page-index-link {
  color: #85f6ed;
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  .release-page-nav-link,
  .release-page-nav-link::before,
  .release-page-nav-link::after,
  .release-page-nav-arrow-box {
    transition-duration: 0ms;
  }
}

.release-page-error {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 70svh;
  place-content: center;
  gap: 20px;
  color: var(--release-ink);
  text-align: center;
}

.release-page-error[hidden] {
  display: none;
}

.release-page-error a {
  color: #85f6ed;
}

@media (max-width: 820px) {
  .release-page-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 20px;
  }

  .release-page-header-meta {
    display: none;
  }

  .release-page-main {
    width: min(100% - 40px, 720px);
    padding-top: 52px;
  }

  .release-page-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 38px;
  }

  .release-page-intro h1 {
    font-size: 40px;
  }

  .release-page-intro p {
    font-size: 16px;
  }

  .release-page-workbench {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .release-page-media {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--release-line);
  }

  .release-page-main-image {
    min-height: 420px;
  }

  .release-page-content {
    padding: 32px 26px 44px;
  }
}

@media (max-width: 560px) {
  .release-page-header {
    padding: 0 14px;
  }

  .release-page-back,
  .release-page-home {
    font-size: 10px;
  }

  .release-page-main {
    width: calc(100% - 28px);
    padding: 36px 0 34px;
  }

  .release-page-intro h1 {
    font-size: 32px;
  }

  .release-page-intro p {
    font-size: 14px;
  }

  .release-page-media {
    min-height: 380px;
  }

  .release-page-main-image {
    min-height: 300px;
  }

  .release-page-content {
    padding: 26px 18px 36px;
  }

  .release-page-content .release-detail-specs {
    grid-template-columns: 1fr;
  }

  .release-page-content .release-detail-specs div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .release-page-content .release-detail-specs div:nth-child(odd) {
    padding-right: 0;
  }

  .release-page-download-hero .release-download {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .release-page-download-hero .release-download-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .release-page-download-hero .release-download-button {
    min-height: 48px;
    padding: 0.35em 3em 0.35em 1em;
    font-size: 11px;
  }

  .release-page-nav {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .release-page-index-link {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .release-page-nav-link {
    grid-row: 2;
    width: 100%;
  }

  .release-page-nav-copy {
    min-width: 0;
  }
}
