*{box-sizing:border-box}
html,body{margin:0}
body{
  min-height:100vh;
  font-family:'JetBrains Mono',ui-monospace,'SFMono-Regular',Menlo,monospace;
  font-size:15px;
  color:#E7E5DD;
  background-color:#14161A;
  background-image:
    repeating-linear-gradient(rgba(255,255,255,.022) 0 1px,transparent 1px 5px),
    radial-gradient(135% 120% at 50% 34%,rgba(116,224,160,.06),transparent 62%);
  background-attachment:fixed;
  animation:bo-flicker 6s linear infinite;
  -webkit-font-smoothing:antialiased;
}
a{color:#74E0A0;text-decoration:none;border-bottom:1px solid rgba(116,224,160,.4)}
a:hover{color:#9defc0;border-bottom-color:rgba(116,224,160,.75)}
a:focus-visible{outline:2px solid #74E0A0;outline-offset:3px;border-radius:2px}

main{
  min-height:100vh;
  max-width:1180px;
  margin:0 auto;
  padding:clamp(26px,5vw,64px);
  display:flex;
  flex-direction:column;
}
.stack{flex:1;display:flex;flex-direction:column;justify-content:center;gap:clamp(28px,5vw,42px)}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  padding-bottom:clamp(18px,3vw,26px);
  font-size:13px;
}
.topbar .org{color:#8f9c93;letter-spacing:.5px}
.topbar nav{display:flex;gap:clamp(12px,2.4vw,22px)}
.topbar nav a{color:#8f9c93;border-bottom-color:transparent}
.topbar nav a:hover{color:#9defc0;border-bottom-color:rgba(116,224,160,.75)}
.topbar nav a[aria-current="page"]{color:#74E0A0}

.wordmark{
  font-weight:800;
  font-size:clamp(46px,12.5vw,132px);
  line-height:.9;
  color:#E7E5DD;
  display:flex;
  align-items:baseline;
  margin:0;
}
.marker{color:#4f5a52;margin-right:.12em}
.type{
  display:inline-block;
  box-sizing:content-box;
  overflow:hidden;
  white-space:nowrap;
  width:9ch;
  border-right:.07em solid #74E0A0;
  animation:bo-type 1.1s steps(9) .3s both, bo-caret 1s steps(1) .3s infinite;
}
.descriptor{color:#8f9c93;font-size:clamp(14px,2.6vw,17px);margin-top:clamp(14px,2.4vw,20px)}

.pagetitle{
  font-weight:800;
  font-size:clamp(30px,6vw,56px);
  line-height:1;
  color:#E7E5DD;
  margin:0;
}
.pagetitle .marker{font-size:.7em}

.cols{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:clamp(28px,4vw,56px);
  padding-top:clamp(22px,3.4vw,30px);
  border-top:1px solid rgba(231,229,221,.13);
}
.section{padding-top:clamp(22px,3.4vw,30px);border-top:1px solid rgba(231,229,221,.13)}
.label{color:#74E0A0;letter-spacing:1px;margin-bottom:14px;text-shadow:0 0 8px rgba(116,224,160,.45)}
.prose{line-height:1.78;color:#bcbbb1;max-width:62ch}
.prose p{margin:0}
.prose p + p{margin-top:1em}
.kv{display:grid;grid-template-columns:64px 1fr;gap:10px 14px;line-height:1.55;color:#cfcdc3}
.kv .k{color:#7c8a82}

footer{
  padding-top:16px;
  border-top:1px solid rgba(231,229,221,.13);
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:12px;
  color:#6f7a72;
}

@media (max-width:720px){
  .cols{grid-template-columns:1fr;gap:30px}
  footer{flex-direction:column;gap:6px}
  .kv{grid-template-columns:56px 1fr}
}

@keyframes bo-type{from{width:0}}
@keyframes bo-caret{50%{border-color:transparent}}
@keyframes bo-flicker{0%,100%{opacity:1}92%{opacity:1}93%{opacity:.85}94%{opacity:1}}
@media (prefers-reduced-motion: reduce){*{animation:none !important}}
