:root, [data-theme=dark] {
  --px: 17, 204, 185;
  --ds-color-brand: rgb(17, 204, 185);
  --ds-color-brand-deep: #e8fffb;
  --ds-color-brand-medium-reverse: #11ccb9;
  --ds-color-bg-page: #070c0b;
  --ds-btn-primary-bg: rgb(17, 204, 185);
  --ds-btn-primary-text: #06221e;
  --ds-btn-primary-hover-bg: rgba(255, 255, 255, .22);
  --ds-btn-secondary-bg: hsla(170, 40%, 100%, .08);
  --ds-btn-secondary-border: rgba(17, 204, 185, .28);
  --ds-btn-secondary-hover-border: rgba(17, 204, 185, .7);
}

html, body {
  background: #070c0b;
  color: #fff;
}

.px-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 10px 0 0;
}
@media (min-width: 768px) {
  .px-header { width: min(100% - 144px, 1140px); }
}

.px-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  position: relative;
}
.px-header-bar:before {
  content: "";
  position: absolute;
  inset: -8px -16px;
  border-radius: 100px;
  background: rgba(10, 20, 18, .45);
  border: 1px solid rgba(17, 204, 185, .12);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: -1;
}
.px-header-bar.is-scrolled:before { opacity: 1; visibility: visible; }

.px-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.px-logo img {
  height: 26px;
  width: auto;
}
.px-logo-name {
  font-family: "Montserrat", var(--ds-font-sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.px-logo-name em {
  font-style: normal;
  color: rgb(17, 204, 185);
  margin-left: 8px;
  letter-spacing: .12em;
}

.px-header-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.px-nav {
  display: none;
  gap: 22px;
  align-items: center;
}
.px-header-end > .px-locale { display: none; }
@media (min-width: 860px) {
  .px-nav { display: flex; }
  .px-header-end > .px-locale { display: flex; }
}
.px-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  transition: color .2s;
}
.px-nav a:hover { color: #fff; }

.px-mobile {
  position: fixed; inset: 0; z-index: 9990;
  background: #070c0b;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.px-mobile.is-open { opacity: 1; pointer-events: auto; }
.px-mobile-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
}
.px-mobile nav a {
  display: block;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 18px;
}

.px-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .px-hero { height: 100vh; max-height: 1000px; min-height: unset; }
}

.hero-shader {
  --scroll-blur: 0px;
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  opacity: 0;
  filter: blur(20px);
  will-change: filter, opacity;
  transition: opacity 1.8s ease-out, filter 1.8s ease-out;
  mask: linear-gradient(#000000fc 0%, #000000e8 12%, transparent 100%);
  -webkit-mask: linear-gradient(#000000fc 0%, #000000e8 12%, transparent 100%);
  background:
    radial-gradient(ellipse 70% 55% at 78% 36%, rgba(17,204,185,.45) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 28% 28%, #0c4a44 0%, transparent 62%),
    #071412;
}
.hero-shader.is-entered { opacity: 1; filter: blur(var(--scroll-blur)); }
.hero-shader.is-scrolling { transition: none; }
.hero-shader canvas { width: 100%; height: 100%; display: block; }
#hero-fluid { opacity: 0; transition: opacity 1.4s ease; }
.hero-shader.is-ready #hero-fluid { opacity: 1; }

.px-hero-inner {
  position: relative;
  z-index: 10;
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 120px 0 80px;
}
@media (min-width: 768px) {
  .px-hero-inner { width: min(100% - 144px, 1140px); }
}

.px-kicker {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgb(17, 204, 185);
  margin-bottom: 18px;
}
.px-hero h1 {
  font-family: "Montserrat", var(--ds-font-sans);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 54px);
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: min(16em, 100%);
}
.px-hero h1 .px-h1-sub {
  display: block;
  margin-top: .18em;
  font-size: .62em;
  font-weight: 500;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.7);
}
.px-lead {
  margin-top: 22px;
  max-width: 560px;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.75;
}
.px-byline {
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.px-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.px-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 500;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
}
.px-btn-primary {
  background: rgb(17, 204, 185);
  color: #06221e;
}
.px-btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(17, 204, 185, .28);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.px-btn-ghost:hover { border-color: rgba(17, 204, 185, .7); }

.px-section {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 88px 0;
}
@media (min-width: 768px) {
  .px-section { width: min(100% - 144px, 1140px); }
}

.px-reveal {
  --reveal-y: 20px;
  --reveal-delay: 0s;
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity .6s cubic-bezier(.44,0,.56,1) var(--reveal-delay),
              transform .6s cubic-bezier(.44,0,.56,1) var(--reveal-delay);
}
.px-reveal.is-in { opacity: 1; transform: none; }

.px-eyebrow {
  display: inline-flex;
  font-family: var(--ds-font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgb(17, 204, 185);
  border: 1px solid rgba(17, 204, 185, .25);
  border-radius: 8px;
  padding: 5px 9px;
  margin-bottom: 16px;
}
.px-h2 {
  font-family: "Montserrat", var(--ds-font-sans);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
  max-width: 18em;
}
.px-muted { color: rgba(255,255,255,.55); line-height: 1.75; }

.px-split {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
@media (min-width: 800px) {
  .px-split { grid-template-columns: 1fr 1fr; }
}

.px-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 220px;
  overflow: hidden;
}
.px-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0 10px;
}
.px-spot-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  background: radial-gradient(circle 180px at var(--spot-x,50%) var(--spot-y,50%), rgba(17,204,185,.14), transparent 70%);
}

.px-feat-grid {
  display: none;
  grid-template-columns: 40fr 60fr;
  gap: 56px;
  margin-top: 24px;
  align-items: start;
}
@media (min-width: 900px) { .px-feat-grid { display: grid; } }
.px-feat-item {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8vh;
  cursor: pointer;
  transition: opacity .5s;
}
.px-feat-stage {
  position: sticky;
  top: 22vh;
  align-self: start;
}
.px-feat-frame {
  aspect-ratio: 16/10;
  border-radius: 18px;
  border: 1px solid rgba(17,204,185,.16);
  background: #0c1413;
  overflow: hidden;
  position: relative;
}
.px-feat-pane {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .55s ease;
  padding: 0;
  background: #0c1413;
}
.px-feat-pane.is-on { opacity: 1; pointer-events: auto; }
.px-feat-pane.is-off { opacity: 0; }
.px-feat-mobile { display: flex; flex-direction: column; gap: 40px; margin-top: 32px; }
@media (min-width: 900px) { .px-feat-mobile { display: none; } }

.px-status {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e8fffb;
  background: rgba(17,204,185,.16);
  border: 1px solid rgba(17,204,185,.5);
  border-radius: 100px;
  padding: 3px 8px;
}

.px-list { display: flex; flex-direction: column; }
.px-row {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: inherit;
}
@media (min-width: 720px) {
  .px-row { grid-template-columns: 140px 1fr 120px; align-items: baseline; }
}
.px-row:hover .px-row-title { color: rgb(17, 204, 185); }
.px-row-title { font-size: 18px; transition: color .2s; }
.px-row-meta { font-size: 13px; color: rgba(255,255,255,.4); }

.px-footer {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 28px 0 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}
@media (min-width: 768px) {
  .px-footer { width: min(100% - 144px, 1140px); }
}

.px-page { padding-top: 120px; min-height: 100vh; }
.px-prose { max-width: 720px; }
.px-prose p + p { margin-top: 16px; }
.px-prose h2 { margin: 36px 0 12px; font-size: 22px; }

.menu-btn {
  width: 40px; height: 40px;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.px-burger {
  display: block;
  width: 18px;
  height: 12px;
  background:
    linear-gradient(#fff,#fff) top / 100% 1.5px no-repeat,
    linear-gradient(#fff,#fff) center / 100% 1.5px no-repeat,
    linear-gradient(#fff,#fff) bottom / 100% 1.5px no-repeat;
}
@media (max-width: 859px) {
  .px-header .menu-btn {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 80;
    background: rgba(7,12,11,.55);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    backdrop-filter: blur(10px);
  }
}
@media (min-width: 860px) { .menu-btn { display: none; } }

/* page enter / leave */
body.px-enter { animation: px-in .55s cubic-bezier(.44,0,.56,1); }
body.px-leave { opacity: 0; filter: blur(10px); transform: translateY(10px); transition: opacity .26s ease, filter .26s ease, transform .26s ease; }
@keyframes px-in {
  from { opacity: 0; filter: blur(12px); transform: translateY(12px); }
  to { opacity: 1; filter: none; transform: none; }
}

.px-cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(17,204,185,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.px-feat-pane {
  padding: 0;
  background: #0c1413;
}
.px-feat-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-feat-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px 22px;
  background: linear-gradient(transparent, rgba(7,12,11,.88));
}
.px-work-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 800px) { .px-work-grid { grid-template-columns: 1fr 1fr; } }
.px-work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0c1413;
  transition: border-color .25s;
}
.px-work-card:hover { border-color: rgba(17,204,185,.4); }
.px-work-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #0c1413;
}
.px-work-card div { padding: 16px 20px 22px; }

.px-bridge {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 800px) { .px-bridge { grid-template-columns: 1fr 1fr 1fr; } }
.px-bridge article {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.px-id {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 800px) { .px-id { grid-template-columns: 1.2fr .8fr; } }
.px-id img.portrait {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid rgba(17,204,185,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.px-form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}
.px-form label { font-size: 13px; color: rgba(255,255,255,.6); }
.px-form input, .px-form textarea, .px-form select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.px-form textarea { min-height: 120px; }
.px-form button {
  justify-self: start;
  cursor: pointer;
}

.px-prose { max-width: 720px; color: rgba(255,255,255,.72); line-height: 1.8; }
.px-prose h1 { color: #fff; }
.px-prose h2 { color: #fff; margin: 36px 0 12px; font-size: 22px; }
.px-prose p + p { margin-top: 16px; }
.px-prose ul { margin: 12px 0 12px 18px; }
.px-prose li { margin: 6px 0; }
.px-crumb { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.px-crumb a { color: rgba(17,204,185,.85); }

.px-nav a.is-here { color: #fff; }

.px-mobile > .px-locale {
  margin: 24px;
  width: fit-content;
}
.px-locale {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 2px;
  border-radius: 100px;
  border: 1px solid rgba(17,204,185,.28);
}
.px-locale button {
  height: 100%;
  padding: 0 10px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.px-locale button.is-on {
  background: rgba(17,204,185,.18);
  color: #fff;
}

.px-gallery {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
@media (min-width: 720px) { .px-gallery { grid-template-columns: 1fr 1fr; } }
.px-gallery.one { grid-template-columns: 1fr; }
.px-shot {
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(17,204,185,.16);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(17,204,185,.08), transparent 55%),
    #0c1413;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.px-shot img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
  background: #101816;
  cursor: zoom-in;
}
.px-shot figcaption {
  margin: 10px 4px 2px;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.42);
}
.px-qr-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  max-width: 720px;
}
@media (max-width: 640px) {
  .px-qr-row { grid-template-columns: 1fr 1fr; }
}
.px-qr {
  width: auto;
  text-align: center;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.px-qr-plate {
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17,204,185,.22);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  margin-bottom: 10px;
}
.px-qr-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: #fff;
  border: 0;
  border-radius: 4px;
}
.px-qr-plate.is-dark {
  background: #0c1413;
  padding: 0;
  overflow: hidden;
}
.px-qr-plate.is-dark img { background: #0c1413; }
.px-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7,12,11,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.px-lightbox.is-on { opacity: 1; pointer-events: auto; }
.px-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  border: 1px solid rgba(17,204,185,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #0c1413;
}
.px-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 40px;
  height: 40px;
}

.px-prose, .px-page { overflow-wrap: break-word; }
.i18n-en { display: none; }
html[data-lang="en"] .i18n-zh,
body[data-lang="en"] .i18n-zh { display: none !important; }
html[data-lang="en"] .i18n-en,
body[data-lang="en"] .i18n-en { display: revert; }

.px-ps {
  display: grid;
  gap: 14px;
  margin: 22px 0 8px;
}
@media (min-width: 720px) { .px-ps { grid-template-columns: 1fr 1fr; } }
.px-ps article {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(17,204,185,.16);
  background: rgba(17,204,185,.05);
}
.px-ps p { margin-top: 10px; color: rgba(255,255,255,.78); }

.px-stats {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
@media (min-width: 720px) { .px-stats { grid-template-columns: repeat(3, 1fr); } }
.px-stat {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(17,204,185,.16);
  background: rgba(17,204,185,.05);
}
.px-stat b {
  display: block;
  font-size: 32px;
  line-height: 1.1;
  color: #11ccb9;
  margin: 8px 0 6px;
}
.px-stat span { color: rgba(255,255,255,.55); font-size: 13px; }

.px-note {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(17,204,185,.2);
  background: rgba(17,204,185,.06);
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.px-note a { color: rgba(17,204,185,.95); }

.px-steps { margin: 12px 0 12px 18px; }
.px-steps li { margin: 8px 0; }

.px-qr a {
  color: inherit;
  text-decoration: none;
}

.px-flow {
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,204,185,.16);
  background: #0c1413;
}
.px-flow img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.px-flow figcaption {
  padding: 14px 18px 16px;
  font-size: 14px;
  color: rgba(232,255,251,.72);
  letter-spacing: .02em;
}

.px-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}
.px-social-btn {
  width: 36px;
  height: 36px;
  color: rgb(17,204,185);
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.px-social-btn svg { width: 22px; height: 22px; display: block; }
.px-social-btn:hover { color: #e8fffb; }
.px-qr-layer {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(7,12,11,.78);
  backdrop-filter: blur(14px);
  display: none;
  place-items: center;
}
.px-qr-layer.is-on { display: grid; }
.px-qr-layer img {
  width: min(220px, 64vw);
  height: auto;
  background: #000;
  display: block;
}
.px-qr-layer p {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  color: rgb(17,204,185);
}
.px-qr-quiet {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px 36px;
}
@media (max-width: 640px) {
  .px-qr-quiet { grid-template-columns: 1fr 1fr; justify-items: start; }
}
.px-qr-quiet figure { margin: 0; }
.px-qr-quiet img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: #000;
  padding: 10px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255,255,255,.08);
}
.px-qr-quiet figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .1em;
  color: #7ff5e8;
}
.px-x-link {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.px-x-link a { color: rgb(17,204,185); }

.px-story {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: 132px 0 96px;
}
@media (min-width: 768px) {
  .px-story { width: min(100% - 160px, 1040px); }
}
.px-story-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.px-story-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 12px 0 18px;
}
.px-story-lead {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.px-story-hero {
  margin: 0 0 72px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17,204,185,.14);
}
.px-story-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.px-story-pair {
  display: grid;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto 72px;
}
@media (min-width: 800px) {
  .px-story-pair { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.px-story-pair p:last-child {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-top: 12px;
}
.px-story-body {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}
.px-story-steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  counter-reset: st;
}
.px-story-steps li {
  counter-increment: st;
  padding: 22px 0 22px 56px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  font-size: 17px;
}
.px-story-steps li:before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgb(17,204,185);
}
.px-story-note { margin: 8px 0 28px; }
.px-story-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.px-id img.portrait {
  background: #070c0b;
}
