:root {
  --bg: #07080a;
  --bg-1: #0b0c0f;
  --panel: #14161c;
  --panel-2: #1b1e26;
  --line: #23262f;
  --line-soft: #191c22;
  --tx-1: #eceef4;
  --tx-2: #a8adbb;
  --tx-3: #6d7382;
  --acc: #8b7cff;
  --acc-ghost: rgba(139, 124, 255, .12);
  --acc-line: rgba(139, 124, 255, .34);
  --up: #3ecf8e;
  --down: #f0616d;
  --warn: #e0a44a;
  --ui: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--tx-1);
  font-family: var(--ui);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a {
  color: var(--acc);
  text-decoration: none;
}
a:hover {
  color: #a99dff;
}
html {
  overflow-x: hidden;
}
img {
  display: block;
}
.wrap {
  max-width: 1160px;
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  padding: 0;
}
.wrap.wide {
  max-width: 1280px;
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}
section {
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}
section:first-of-type {
  border-top: 0;
}
section.peak {
  padding: 132px 0 128px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow.mut {
  color: var(--tx-3);
}
h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.038em;
  font-weight: 700;
  margin: 0;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0;
}
h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0;
}
.lede {
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.35;
  color: var(--tx-2);
  letter-spacing: -.012em;
  margin: 20px 0 0;
  max-width: 760px;
}
p.body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--tx-2);
  margin: 16px 0 0;
  max-width: 720px;
}
.small {
  font-size: 15px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 0;
}
.mono {
  font-family: var(--mono);
}
.acc {
  color: var(--acc);
}
.rule {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
}
.card .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin: 0 0 12px;
}
.card .d {
  font-size: 15px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 8px 0 0;
}
.grid3.tight .card {
  padding: 19px 21px 20px;
}
.grid3.tight .card .k {
  margin: 0 0 10px;
}
.grid3.tight .card .d {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 6px 0 0;
}
/* hero */
.hero {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
}
.hero .bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.hero .bg img {
  width: min(100%, 1920px);
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .3;
}
.hero .bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(7, 8, 10, .5) 13%, rgba(7, 8, 10, 0) 33%, rgba(7, 8, 10, 0) 67%, rgba(7, 8, 10, .5) 87%, var(--bg) 100%);
}
@media (min-width: 1600px) {
  .hero .bg img {
    opacity: .22;
  }
}
@media (min-width: 1920px) {
  .hero .bg img {
    opacity: .17;
    filter: blur(1px);
  }
  .hero .bg:after {
    background: linear-gradient(90deg, var(--bg) 0%, rgba(7, 8, 10, .68) 17%, rgba(7, 8, 10, 0) 39%, rgba(7, 8, 10, 0) 61%, rgba(7, 8, 10, .68) 83%, var(--bg) 100%);
  }
}
@media (min-width: 2400px) {
  .hero .bg img {
    opacity: .12;
    filter: blur(2px);
  }
}
.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, .72) 0%, rgba(7, 8, 10, .88) 46%, var(--bg) 100%);
}
.hero .inner {
  position: relative;
  padding: clamp(38px, 3.6vw, 56px) 0 78px;
}
.hero .lede {
  max-width: 680px;
}
.covertop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin: 0 0 clamp(72px, 8.6vw, 132px);
}
.covertop .cn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--tx-1);
}
.covertop .cb {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tx-3);
  text-align: right;
}
.covercat {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 24px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 1.03;
  letter-spacing: -.036em;
  max-width: 960px;
}
@media (max-width: 840px) {
  .hero h1 br {
    display: none;
  }
}
.coverlede {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--tx-2);
  max-width: 580px;
}
.covermeta {
  margin: clamp(40px, 4.4vw, 60px) 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #8b909e;
  line-height: 1.85;
  max-width: 800px;
}
.hero .heroshot {
  margin: clamp(56px, 6.2vw, 92px) calc(-1*clamp(0px, 3vw, 52px)) 0 auto;
}
.meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 28px 54px;
  margin-top: 52px;
  justify-content: start;
  max-width: 1040px;
}
.meta .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  opacity: .72;
  margin: 0 0 8px;
}
.meta .v {
  font-size: 16px;
  color: var(--tx-1);
  margin: 0;
  line-height: 1.38;
}
.heroshot {
  width: min(calc(100vw - 48px), 1140px);
  margin: 76px auto 0;
  border: 1px solid #2b2f3a;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 46px 100px -34px rgba(0, 0, 0, .95);
}
.heroshot img {
  width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.06) saturate(1.03);
}
/* problem */
.probs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 34px;
}
.prob {
  background: var(--bg-1);
  padding: 24px 26px;
}
.prob .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--acc);
  margin: 0 0 12px;
}
.prob .t {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.prob .d {
  font-size: 15px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 0;
}
.callout {
  margin-top: 26px;
  padding: 20px 24px;
  border-left: 2px solid var(--acc);
  background: linear-gradient(90deg, rgba(139, 124, 255, .07), transparent 70%);
}
.callout .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 8px;
}
.callout p {
  font-size: 17px;
  line-height: 1.45;
  color: var(--tx-1);
  margin: 0;
  max-width: 760px;
}
/* answer nodes */
.nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.nodes.sup {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tier {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.schema+.tier {
  margin-top: 26px;
}
.slegend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.slegend div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}
.slegend b {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--tx-1);
}
.slegend span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--tx-3);
  letter-spacing: .02em;
}
.tier .tl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
  white-space: nowrap;
}
.tier .tr {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.evbasis {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  max-width: 820px;
}
.evbasis p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--tx-3);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.evbasis p b {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  opacity: .6;
  font-weight: 500;
  margin-bottom: 4px;
}
.evbasis p span {
  color: var(--tx-3);
}
.qline {
  margin-top: 30px;
  padding: 18px 22px;
  border-left: 2px solid var(--acc);
  background: linear-gradient(90deg, rgba(139, 124, 255, .08), transparent 72%);
}
.qline .qk {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 10px;
}
.qline p {
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.22;
  letter-spacing: -.022em;
  font-weight: 600;
  color: var(--tx-1);
  margin: 0;
  max-width: 660px;
}
.node.sup {
  background: transparent;
  border-color: var(--line-soft);
}
.node.sup .nk {
  color: var(--tx-3);
}
.node.sup .nt {
  font-size: 16.5px;
  color: var(--tx-2);
}
.node.sup .nd {
  color: var(--tx-3);
}
.toolchain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 28px 30px 26px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.toolchain .tc {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--tx-1);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
}
.toolchain .tc.last {
  border-style: dashed;
  color: var(--tx-3);
}
.toolchain .ar {
  color: var(--tx-3);
  font-family: var(--mono);
  font-size: 15px;
}
.toolchain .tcl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  flex-basis: 100%;
  margin-top: 6px;
}
.modelshot {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .9);
}
.modelshot img {
  display: block;
  width: 100%;
  height: auto;
}
.modelshot figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.modelshot figcaption b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  font-weight: 500;
}
.modelshot figcaption span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-2);
}
.mrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--tx-2);
}
.mrow:first-of-type {
  border-top: 0;
}
.mrow b {
  font-weight: 600;
  color: var(--tx-1);
  font-size: 15px;
}
.mrow .ar {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--tx-3);
}
.mrow .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc);
  width: 74px;
  flex: none;
}
.node {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
}
.node.pri {
  border-color: var(--acc-line);
  background: linear-gradient(180deg, rgba(139, 124, 255, .08), rgba(139, 124, 255, .015));
}
.node .nk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 11px;
}
.node .nt {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 7px;
}
.node .nd {
  font-size: 14.5px;
  line-height: 1.48;
  color: var(--tx-2);
  margin: 0;
}
/* refs */
.refgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.ref {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px 16px 16px;
  display: grid;
  grid-template-columns: 214px 1fr;
  gap: 26px;
  align-items: start;
}
.ref .thumb {
  height: 146px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .05);
  background: transparent;
  position: relative;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, .8);
}
.ref .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.2) brightness(1.12) contrast(1.24) saturate(1);
  opacity: .97;
}
.ref .thumb.light img {
  filter: grayscale(.5) brightness(.72) invert(.9) hue-rotate(180deg);
  opacity: .75;
}
.ref .thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0), rgba(11, 12, 15, .28));
  pointer-events: none;
}
.ref .rn {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--tx-1);
  margin: 0 0 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.ref .ri {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--tx-1);
  margin: 0;
}
.ref .rg {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-2);
  margin: 10px 0 0;
  padding-top: 10px;
  padding-left: 0;
  border-top: 1px solid var(--line);
}
.ref .rk {
  font-weight: 500;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
  color: var(--tx-3);
  opacity: .8;
}
.ref .rg {
  position: relative;
}
.ref .rg .rk {
  color: var(--acc);
  opacity: .75;
}
.refopp {
  margin-top: 30px;
  padding: 26px 30px;
  border-radius: 14px;
  border: 1px solid rgba(139, 124, 255, .28);
  background: linear-gradient(120deg, rgba(139, 124, 255, .11), transparent 62%), var(--bg-1);
}
.refopp .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 11px;
}
.refopp p+p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 650;
  color: var(--tx-1);
  max-width: 880px;
}
/* 02 schematic */
.schema {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: 16px;
}
.schema .lbl2 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
}
.schema .lbl2 em {
  font-style: normal;
  color: var(--acc);
}
.sch-shell {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.sch-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.sch-top .nm {
  height: 8px;
  width: 132px;
  border-radius: 4px;
  background: #31353f;
}
.sch-top .lbl2 {
  margin-left: auto;
}
.sch-own {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0 9px 15px;
  position: relative;
}
.sch-own:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--line), rgba(139, 124, 255, .6));
}
.sch-own span {
  padding-left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
}
.sch-wl {
  padding: 16px 18px 17px;
  border: 1px solid rgba(139, 124, 255, .5);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(139, 124, 255, .14), rgba(139, 124, 255, .03));
  box-shadow: 0 0 0 4px rgba(139, 124, 255, .05), 0 18px 44px -24px rgba(139, 124, 255, .5);
}
.sch-wl .wt {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sch-wl .wt b {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.016em;
  color: var(--tx-1);
}
.sch-wl .wt span {
  font-size: 13px;
  color: var(--tx-2);
}
.sch-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
}
.sch-pills i {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(139, 124, 255, .12);
  border: 1px solid rgba(139, 124, 255, .3);
}
.sch-pills i:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
}
.sch-pills i:after {
  content: "";
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(236, 238, 244, .3);
}
.sch-read {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
}
.sch-read:before,
.sch-read:after {
  content: "";
  height: 1px;
  flex: 1;
  border-top: 1px dashed rgba(139, 124, 255, .4);
}
.sch-read b {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--tx-1);
  white-space: nowrap;
}
.sch-body {
  display: grid;
  grid-template-columns: 1.42fr 1fr;
  gap: 14px;
}
.sch-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sch-wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.sch-w {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 13px 13px;
}
.sch-w .hd {
  display: block;
  height: 6px;
  width: 52px;
  border-radius: 3px;
  background: #31353f;
  margin-bottom: 12px;
}
.sch-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.sch-spark i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: #2b2f39;
}
.sch-line {
  height: 32px;
  display: flex;
  align-items: center;
}
.sch-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sch-sig {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sch-srow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sch-srow em {
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: #31353f;
  flex: none;
}
.sch-srow.hi em {
  background: var(--acc);
}
.sch-srow b {
  height: 6px;
  border-radius: 3px;
  background: #2b2f39;
  flex: 1;
}
.sch-srow.hi b {
  background: rgba(236, 238, 244, .3);
}
.sch-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sch-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px 18px;
}
.sch-card.scr {
  border-color: rgba(139, 124, 255, .28);
}
.sch-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 13px 0 0;
}
.sch-rows i {
  height: 7px;
  border-radius: 3px;
  background: #262a33;
}
.sch-rows i:nth-child(2) {
  width: 82%;
}
.sch-rows i:nth-child(3) {
  width: 68%;
}
.sch-back {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 0 0;
  padding-top: 13px;
  border-top: 1px dashed rgba(139, 124, 255, .36);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--tx-1);
}
.sch-back span {
  font-family: var(--mono);
  color: var(--acc);
  font-size: 14px;
}
.sch-sup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.sch-sup i {
  font-style: normal;
  font-size: 13.5px;
  color: var(--tx-2);
  padding: 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
}
@media (max-width: 1000px) {
  .schema {
    grid-template-columns: 1fr;
  }
  .sch-body {
    grid-template-columns: 1fr;
  }
}
/* model diagram */
.modelrule {
  margin: 34px 0 0;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 650;
  color: var(--tx-1);
}
.modelrule i {
  font-style: normal;
  font-family: var(--mono);
  font-size: .72em;
  color: var(--acc);
  padding: 0 4px;
}
.diagram {
  margin-top: 34px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
}
.chain {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 0;
}
.hsrc {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  text-align: center;
  flex: none;
}
.hsrc .k {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  opacity: .7;
  margin-bottom: 5px;
}
.hsrc b {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--tx-2);
}
.hedge {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 118px;
  flex: none;
}
.hedge span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
  white-space: nowrap;
}
.hedge i {
  width: 100%;
  height: 1px;
  background: var(--line-soft);
  position: relative;
}
.hedge i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border-left: 6px solid var(--line);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}
.hedge.acc i {
  background: var(--acc-line);
}
.hedge.acc i:after {
  border-left-color: var(--acc);
  opacity: .75;
}
.hcore {
  width: 326px;
  flex: none;
}
.hub-ws {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 10px 12px 12px;
  background: var(--panel);
}
.hub-ws .hlbl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-bottom: 8px;
  padding: 0 2px;
}
.hub-ws .hlbl b {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--tx-2);
  font-weight: 500;
}
.hub-wl {
  border: 1px solid var(--acc-line);
  border-radius: 11px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(139, 124, 255, .16), rgba(139, 124, 255, .05));
  box-shadow: 0 0 0 4px rgba(139, 124, 255, .05), 0 10px 26px -16px rgba(139, 124, 255, .6);
  text-align: center;
}
.hub-wl b {
  display: block;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -.016em;
  color: var(--tx-1);
}
.hub-wl span {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--acc);
}
.hdown {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 8px 0 6px;
}
.hdown i {
  width: 1px;
  height: 16px;
  background: var(--line-soft);
  position: relative;
}
.hdown i:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3.5px;
  border-top: 6px solid var(--line);
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
}
.hdown span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
}
.hpair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hub-node {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--tx-1);
}
.chip {
  flex: 1;
  min-width: 130px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.chip.pri {
  border-color: var(--acc-line);
  background: rgba(139, 124, 255, .07);
}
.chip .ct {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
}
.chip .cd {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 0;
}
.arrow {
  display: flex;
  align-items: center;
  color: var(--tx-3);
  font-family: var(--mono);
  font-size: 16px;
}
.feeds {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.notmodel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.neg {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--tx-3);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 12px;
  background: var(--panel);
}
.mresult {
  margin-top: 32px;
  padding: 30px 34px;
  border-radius: 16px;
  border: 1px solid rgba(139, 124, 255, .28);
  background: linear-gradient(120deg, rgba(139, 124, 255, .11), transparent 62%), var(--bg-1);
}
.mresult .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 12px;
}
.mresult p+p {
  margin: 0;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.28;
  letter-spacing: -.02em;
  font-weight: 650;
  color: var(--tx-1);
  max-width: 880px;
}
.iter {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.iter .ic {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 20px;
  background: var(--panel);
}
.iter .ic.was {
  border-style: dashed;
  opacity: .9;
}
.iter .ic .ik {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--tx-3);
}
.iter .ic.now .ik {
  color: var(--acc);
}
.iter .ic .iv {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.014em;
  color: var(--tx-1);
  line-height: 1.3;
}
.iter .ic .iw {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--tx-3);
}
.cutlead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 14px;
}
.cutlead span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
  white-space: nowrap;
}
.cutlead i {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.cutgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cut {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 15px 17px 16px;
  background: var(--bg-1);
}
.cut .cn {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.014em;
  color: var(--tx-1);
  margin: 0 0 6px;
}
.cut .cw {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-2);
  margin: 0;
}
.cut .cw em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  opacity: .7;
  margin-right: 7px;
}
/* flow */
.journey {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr;
  align-items: stretch;
  margin-top: 34px;
}
.jarrow {
  display: grid;
  place-items: center;
  color: var(--tx-3);
  font-family: var(--mono);
  font-size: 14px;
}
.phase {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.phase.pri {
  border-color: var(--acc-line);
  background: linear-gradient(180deg, rgba(139, 124, 255, .07), rgba(139, 124, 255, .015));
}
.phase .ph {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.phase .ph .pn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--acc);
}
.phase .ph .pt {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.012em;
}
.jsteps {
  position: relative;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.jsteps:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.jstep {
  position: relative;
}
.jstep:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--acc);
}
.jstep .st {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
}
.jstep .sd {
  font-size: 13px;
  line-height: 1.42;
  color: var(--tx-3);
  margin: 4px 0 0;
}
.jstep.loopend .lret {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 9px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--acc);
}
.jstep.loopend:after {
  content: "";
  position: absolute;
  left: -16px;
  top: 22px;
  bottom: -16px;
  width: 11px;
  border-left: 1px dashed var(--acc);
  border-bottom: 1px dashed var(--acc);
  border-bottom-left-radius: 8px;
  opacity: .55;
}
.loopback {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 20px;
  border: 1px dashed rgba(139, 124, 255, .4);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(139, 124, 255, .07), transparent 62%), var(--bg-1);
}
.loopback .lk {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--acc);
}
.loopback p {
  font-size: 14.5px;
  color: var(--tx-2);
  margin: 0;
}
.loopback b {
  color: var(--tx-1);
  font-weight: 600;
}
/* decisions */
.decgroups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
  align-items: start;
}
.dgroup {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px 6px;
  display: flex;
  flex-direction: column;
}
.dgh {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dgh b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acc);
  flex: none;
}
.dgh span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--tx-3);
}
.ditem {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ditem:last-child {
  padding-bottom: 19px;
}
.ditem:last-child {
  border-bottom: 0;
}
.ditem .dn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--acc);
  margin: 0 0 5px;
}
.ditem .dt {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.016em;
  color: var(--tx-1);
  margin: 0 0 5px;
  line-height: 1.25;
}
.ditem .dd {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 0;
}
.dec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  margin-top: 34px;
}
.di {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.di .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--acc);
  margin: 0 0 8px;
}
.di .t {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 6px;
  line-height: 1.28;
}
.di .d {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 0;
}
/* gallery */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.tab {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--tx-2);
  cursor: pointer;
  transition: .16s;
}
.tab:hover {
  color: var(--tx-1);
  border-color: #31353f;
}
.tab[aria-selected="true"] {
  background: var(--acc-ghost);
  border-color: var(--acc-line);
  color: var(--acc);
}
.stage {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-1);
  overflow: hidden;
}
.frame {
  position: relative;
  background: #0b0c0f;
  aspect-ratio: 1496/874;
}
.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s;
}
.frame img.on {
  opacity: 1;
}
.gbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 13px 18px 15px;
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.gmeta {
  flex: 1;
  min-width: 0;
}
.gmeta .gt {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 5px;
}
.gmeta .gt .gi {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--acc);
}
.gmeta .gd {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 0;
}
.gmeta .gd .gk {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-right: 7px;
}
.gmeta .gd .sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--line);
  margin: 0 11px;
  vertical-align: baseline;
}
.gnav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.gdots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gdots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a3f4b;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .16s;
  box-sizing: content-box;
  padding: 4px;
  background-clip: content-box;
}
.gdots i:hover {
  background: #6b7288;
  background-clip: content-box;
}
.gdots i.on {
  background: var(--acc);
  background-clip: content-box;
  box-shadow: 0 0 0 3px var(--acc-ghost);
}
.gdots i:focus-visible {
  outline: none;
  border-color: var(--acc-line);
  border-radius: 50%;
}
.gnav .count {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--tx-2);
  min-width: 104px;
  text-align: right;
  letter-spacing: .04em;
  white-space: nowrap;
}
.gnav .count b {
  color: var(--tx-1);
  font-weight: 500;
}
.gbtns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gbtns button {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--tx-1);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .16s;
}
.gbtns button:hover:not(:disabled) {
  color: var(--tx-1);
  background: var(--panel-2);
  border-color: var(--acc-line);
}
.gbtns button:active:not(:disabled) {
  background: var(--acc-ghost);
}
.gbtns button:focus-visible {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px var(--acc-ghost);
}
.gbtns button:disabled {
  opacity: .3;
  cursor: default;
}
.gbtns svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* tour */
.tourgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  margin-top: 34px;
}
.tframe {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0b0c0f;
  aspect-ratio: 23/15;
}
.tframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 15px;
}
.tcap .n {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--acc);
  letter-spacing: .1em;
}
.tcap .t {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.014em;
  color: var(--tx-1);
}
.tdesc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--tx-1);
  opacity: .94;
  margin: 7px 0 0;
}
.tourlist {
  display: none;
}
/* design system */
.cmpgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.cmpt {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cmpt .fig {
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(139, 124, 255, .06), transparent 70%), #0b0c0f;
  border-bottom: 1px solid var(--line);
}
.cmpt .fig img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}
.cmpt.crop .fig {
  padding: 0;
}
.cmpt.crop .fig img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}
.cmpt.crop.left .fig img {
  object-position: left top;
}
.cmpt .cap {
  padding: 16px 18px 18px;
}
.cmpt .cn {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--tx-1);
  margin: 0 0 5px;
}
.cmpt .cd {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 0;
}
.cmprow {
  display: grid;
  grid-template-columns: 320fr 438fr 700fr;
  gap: 26px;
  align-items: end;
  margin-top: 14px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 28px 22px;
}
.cmprow figure {
  margin: 0;
  min-width: 0;
}
.cmprow img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.cmprow figcaption {
  margin-top: 14px;
}
.cmprow .cn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--tx-1);
  margin: 0 0 4px;
}
.cmprow .cd {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 0;
}
.pilllead {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin: 36px 0 14px;
}
.dsnote {
  margin-top: 30px;
  padding: 18px 22px;
  border-left: 2px solid var(--acc);
  background: linear-gradient(90deg, rgba(139, 124, 255, .09), transparent 70%);
  border-radius: 0 10px 10px 0;
}
.dsnote p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--tx-1);
  max-width: 820px;
}
.dsgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.dsshot {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
}
.dsshot img {
  width: 100%;
  height: auto;
}
.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.pill {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 8px 13px;
  border-radius: 7px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--tx-2);
}
/* scope */
.scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 32px;
}
.scopegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.scard {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scard .sn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--acc);
}
.scard .st {
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -.022em;
  color: var(--tx-1);
  margin: 0;
}
.scard .sl {
  font-size: 16px;
  line-height: 1.5;
  color: var(--tx-2);
  margin: 0;
}
.scard .sl i {
  font-style: normal;
  color: var(--tx-3);
  padding: 0 5px;
}
.guard {
  margin-top: 16px;
  padding: 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}
.guard .gk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin: 0 0 16px;
}
.guard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.guard li {
  font-size: 15px;
  color: var(--tx-2);
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}
.boundary {
  margin-top: 34px;
  padding: 34px 38px;
  border-radius: 16px;
  border: 1px solid var(--acc-line, rgba(139, 124, 255, .28));
  background: linear-gradient(120deg, rgba(139, 124, 255, .11), transparent 62%), var(--bg-1);
}
.boundary .bk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 14px;
}
.boundary p.bt {
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.25;
  letter-spacing: -.022em;
  font-weight: 650;
  color: var(--tx-1);
  margin: 0;
  max-width: 900px;
}
/* impact */
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.icard {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.icard .ih {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 0;
}
.icard .inum {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--acc);
}
.icard .it {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin: 0;
}
.icard .ix {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -.018em;
  font-weight: 600;
  color: var(--tx-1);
  margin: 0;
  text-wrap: pretty;
}
.icard .iflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
}
.icard .iflow span {
  font-size: 14px;
  line-height: 1.3;
  color: var(--tx-2);
}
.icard .iflow i {
  font-style: normal;
  color: var(--tx-3);
  font-size: 13px;
  opacity: .7;
}
.icard .is {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin-top: auto;
}
.icard .is b {
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acc);
  transform: translateY(-2px);
}
.icard .is p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--tx-2);
}
.inote {
  margin-top: 22px;
  padding: 15px 20px;
  border-left: 2px solid var(--acc);
  background: linear-gradient(90deg, rgba(139, 124, 255, .09), transparent 70%);
  border-radius: 0 10px 10px 0;
}
.inote p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--tx-2);
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 32px;
}
.olist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.olist li {
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--tx-1);
  padding-left: 24px;
  position: relative;
}
.olist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acc);
}
.olist.q li:before {
  background: none;
  content: "?";
  font-family: var(--mono);
  font-size: 13px;
  color: var(--tx-3);
  top: -1px;
}
footer {
  padding: 70px 0 96px;
  border-top: 1px solid var(--line-soft);
}
.honest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.nexthdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.nexthdr .tl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx-3);
  white-space: nowrap;
}
.nexthdr .tr {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.nextsteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.nstep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 19px;
}
.nstep .nn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--acc);
  flex: none;
  margin-top: 2px;
}
.nstep p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--tx-1);
}
.takeaway {
  margin-top: 38px;
  padding: 42px 44px;
  border-radius: 16px;
  border: 1px solid rgba(139, 124, 255, .28);
  background: linear-gradient(120deg, rgba(139, 124, 255, .11), transparent 62%), var(--bg-1);
}
.status {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.status p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--tx-2);
}
.status p b {
  color: var(--tx-1);
  font-weight: 600;
}
.takeaway .tk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 14px;
}
.takeaway p.tt {
  margin: 0;
  font-size: clamp(24px, 2.9vw, 36px);
  line-height: 1.2;
  letter-spacing: -.022em;
  font-weight: 650;
  color: var(--tx-1);
  max-width: 900px;
}
.hi {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 19px 18px;
}
.hi .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin: 0 0 8px;
}
.hi p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--tx-3);
  margin: 0;
}
.end {
  margin-top: 44px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.end .n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-3);
}
@media (max-width: 840px) {
  .wrap,
 .wrap.wide {
    width: calc(100% - 48px);
  }
  .hero .inner {
    padding: 96px 0 56px;
  }
  section {
    padding: 64px 0;
  }
  section.peak {
    padding: 78px 0;
  }
  .meta {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .iter {
    grid-template-columns: 1fr;
  }
  .heroshot,
 .hero .heroshot {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .covertop {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 64px;
  }
  .covertop .cb {
    text-align: left;
  }
  .probs,
 .dec,
 .decgroups,
 .cutgrid,
 .grid2,
 .refgrid,
 .dsgrid,
 .cmpgrid,
 .cmprow,
 .scope,
 .scopegrid,
 .impact,
 .nextsteps,
 .two,
 .honest,
 .nodes,
 .grid3,
 .tourgrid,
 .tourlist {
    grid-template-columns: 1fr;
  }
  .journey {
    grid-template-columns: 1fr;
  }
  .jarrow {
    padding: 8px 0;
    transform: rotate(90deg);
  }
  .ref {
    grid-template-columns: 1fr;
  }
  .ref .thumb {
    height: 150px;
  }
  .gbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .evbasis {
    grid-template-columns: 1fr;
  }
  .slegend {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 14px;
  }
  .hedge {
    transform: rotate(90deg);
  }
}
