* {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  font-size: 1em;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  border: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
}

[type=button],
button {
  all: revert;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" on;
  -moz-font-feature-settings: "liga" on;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 150%;
  min-height: 100vh;
  scroll-behavior: smooth;
}

:root {
  --dark: #222;
  --light: #ccc;
}

:root {
  --dark: #3d432d;
  --light: #eeff00;
}

.camo {
  --dark: #393e42;
  --light: #8e9295;
}

.diner {
  --dark: #bc3b2f;
  --light: #edb83f;
}

.command {
  --dark: #0e0e10;
  --light: #9e3128;
}

.for-the-roses {
  --dark: #83414c;
  --light: #e3d3b8;
}

.scanner {
  --dark: #222;
  --light: #00b51a;
}

.eraser {
  --dark: #bc6a6a;
  --light: #d7d5cc;
}

.freedom {
  --dark: #0f3052;
  --light: #f1f0ea;
}

.elements {
  --dark: #797b7a;
  --light: #f1f0ea;
}

.hi-viz {
  --dark: #999999;
  --light: #eeff00;
}

.event-horizon {
  --dark: #18191c;
  --light: #ac4bb9;
}

.terminal {
  --dark: #0f1014;
  --light: #da8013;
}

.radical {
  --dark: #93714f;
  --light: #f1ece1;
}

.ink {
  --dark: #d76a81;
  --light: #eee;
}

.synth {
  --dark: #373839;
  --light: #9c9898;
}

.classic {
  --dark: #524e46;
  --light: #d1cec6;
}

.banana {
  --dark: #33231f;
  --light: #ffd149;
}

.expo {
  --dark: #1a2624;
  --light: #d6a646;
}

.gridlock {
  --dark: #111;
  --light: #666;
}

html {
  background: #000;
}

body {
  background: var(--dark);
  color: var(--light);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

nav {
  position: sticky;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  padding: 48px 64px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
}
nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--dark);
  z-index: 5;
  opacity: 0.5;
}
@media (max-width: 960px) {
  nav {
    padding: 32px 48px;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 0;
    position: relative;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  nav::after {
    display: none;
  }
  nav header {
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;
    padding: 24px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  nav header h1,
  nav header ul,
  nav header h2,
  nav header hr {
    z-index: 15;
  }
  nav header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--dark);
    z-index: 10;
    opacity: 0.5;
  }
  nav form {
    padding: 0 24px 24px;
    margin-top: 80px;
    width: 100%;
    z-index: 0 !important;
  }
}
nav header {
  display: flex;
  align-items: center;
  flex-grow: 1;
  z-index: 15;
}
.home nav header h1 {
  flex-grow: 1;
}

nav header h1 a {
  display: block;
  width: 24px;
  height: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 150%;
  background: var(--light);
  -webkit-mask-image: url(../favicon.png);
          mask-image: url(../favicon.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 24px;
          mask-size: 24px;
}
nav header h1 a:hover, nav header h1 a:focus {
  opacity: 0.75;
}
nav header h1 a:active {
  opacity: 0.5;
}
nav header hr {
  width: 2px;
  height: 24px;
  border-radius: 1px;
  margin: 0 32px;
  background: var(--light);
  opacity: 0.5;
  flex-shrink: 0;
  transform: rotate(6deg);
}
@media (max-width: 960px) {
  nav header hr {
    margin: 0 24px;
  }
}
@media (max-width: 640px) {
  .home nav header hr {
    display: none;
  }
}

nav header h2 {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-right: 16px;
}
@media (max-width: 640px) {
  nav header h2 {
    margin-right: 0;
  }
}
nav header h2 .name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  line-height: 32px;
  margin-right: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
nav header ul {
  display: flex;
  gap: 8px;
}
nav header ul li a {
  display: block;
  text-indent: 150%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  background-color: var(--light);
  -webkit-mask-size: 24px;
          mask-size: 24px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
nav header ul li a[href*=about] {
  -webkit-mask-image: url(../svg/about.svg);
          mask-image: url(../svg/about.svg);
}
nav header ul li a[href*=instagram] {
  -webkit-mask-image: url(../svg/instagram.svg);
          mask-image: url(../svg/instagram.svg);
}
nav header ul li a[href*=discord] {
  -webkit-mask-image: url(../svg/discord.svg);
          mask-image: url(../svg/discord.svg);
}
nav header ul li a[href*=twitter] {
  -webkit-mask-image: url(../svg/twitter.svg);
          mask-image: url(../svg/twitter.svg);
}
nav header ul li a[href*=rss] {
  -webkit-mask-image: url(../svg/rss.svg);
          mask-image: url(../svg/rss.svg);
}
nav header ul li a[href*=subculture] {
  -webkit-mask-image: url(../svg/mastodon.svg);
          mask-image: url(../svg/mastodon.svg);
}
nav header ul li a:hover, nav header ul li a:focus {
  opacity: 0.75;
}
nav header ul li a:active {
  opacity: 0.5;
}
nav form {
  display: flex;
  align-items: center;
  z-index: 15;
}
nav form input {
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 16px;
}
nav form input::-moz-placeholder {
  color: var(--dark);
}
nav form input::placeholder {
  color: var(--dark);
}
nav form input[type=email] {
  color: var(--dark);
  background: var(--light);
  opacity: 0.75;
  flex-grow: 1;
  width: 100%;
}
nav form input[type=email]:focus {
  opacity: 1;
}
nav form input[type=email]:invalid + [type=submit] {
  pointer-events: none;
  opacity: 0.5;
}
nav form input[type=submit] {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 8px;
  cursor: pointer;
  color: var(--dark);
  background: var(--light);
  opacity: 1;
}
nav form input[type=submit]:hover, nav form input[type=submit]:focus {
  opacity: 0.75;
}
nav form input[type=submit]:active {
  opacity: 0.5;
}

.grid .item,
.grid .row,
.grid .column {
  flex: 1;
  display: flex;
}
.grid .item.large,
.grid .row.large,
.grid .column.large {
  flex: 2;
}
@media (max-width: 640px) {
  .grid .item,
  .grid .row,
  .grid .column {
    flex-direction: column;
  }
}
.grid .column {
  flex-direction: column;
}
.grid video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-grow: 1;
}
.grid figure {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.grid figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-grow: 1;
  transition: transform 0.75s ease-out;
}
.grid figure a {
  flex-grow: 1;
  display: flex;
}
.grid figure a:hover, .grid figure a:focus {
  cursor: zoom-in;
}
.grid figure a:hover img, .grid figure a:focus img {
  transform: scale(1.025);
}

.home .grid .row .item:hover figure img, .home .grid .row .item:focus figure img,
.home .grid .column .item:hover figure img,
.home .grid .column .item:focus figure img {
  transform: scale(1.05);
}
@media (max-width: 640px) {
  .home .grid figure img {
    min-height: 75vw;
  }
}
.home .grid .item {
  flex-grow: 1;
  position: relative;
  background: var(--dark);
}
.home .grid .item.styled {
  background: var(--light);
}
.home .grid .item.styled.inverted {
  background: var(--dark);
}
.home .grid .item:hover figure img, .home .grid .item:focus figure img {
  transform: scale(1.025);
}
.home .grid .item:not(.styled) h2 {
  position: absolute;
  bottom: 48px;
  left: 0;
}
@media (max-width: 960px) {
  .home .grid .item:not(.styled) h2 {
    bottom: 32px;
  }
}
@media (max-width: 640px) {
  .home .grid .item:not(.styled) h2 {
    bottom: 24px;
  }
}
.home .grid .item:not(.styled) h2 .name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--dark);
  background: var(--light);
  padding: 8px 12px;
  float: left;
}
@media (max-width: 960px) {
  .home .grid .item:not(.styled) h2 .name {
    font-size: 16px;
    line-height: 24px;
    padding: 4px 8px;
  }
}
.home .grid .item:not(.styled) h2 .status {
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--light);
  clear: both;
  float: left;
  background: var(--dark);
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 960px) {
  .home .grid .item:not(.styled) h2 .status {
    padding: 6px 8px;
  }
}
.home .grid .item:not(.styled) h2 .status del {
  text-decoration: line-through;
  opacity: 0.5;
}
.home .grid .item.single {
  margin: 64px;
  border-radius: 24px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image: -webkit-radial-gradient(white, black);
}
@media (max-width: 960px) {
  .home .grid .item.single {
    margin: 48px;
    border-radius: 16px;
  }
}
@media (max-width: 640px) {
  .home .grid .item.single {
    margin: 24px;
    border-radius: 12px;
  }
}

.subnav {
  display: flex;
  padding: 48px 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .subnav {
    padding: 32px 48px;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .subnav {
    padding: 24px;
  }
}
.subnav ul {
  display: flex;
  flex-grow: 1;
  margin: 4px 0;
  overflow: auto;
}
@media (max-width: 960px) {
  .subnav ul {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .subnav ul {
    display: none;
  }
}
.subnav ul li {
  margin-right: 24px;
}
.subnav ul li a:hover, .subnav ul li a:focus {
  text-decoration: underline;
}
.subnav ul li a:active {
  opacity: 0.75;
}
.subnav ul li span {
  opacity: 0.5;
  text-decoration: line-through;
}
.subnav ul li a,
.subnav ul li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subnav div {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .subnav div {
    flex-grow: 1;
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .subnav div {
    flex-wrap: wrap;
  }
}
.subnav div hr {
  display: block;
  height: 24px;
  width: 2px;
  margin: 0 32px;
}
@media (max-width: 960px) {
  .subnav div hr {
    display: none;
  }
}
.subnav hr {
  height: 2px;
  width: 100%;
  background: var(--light);
  border-radius: 1px;
  margin: 16px 0;
  opacity: 0.5;
  flex-shrink: 0;
  display: none;
}
@media (max-width: 960px) {
  .subnav hr {
    display: block;
  }
}
@media (max-width: 640px) {
  .subnav hr {
    display: none;
  }
}
.subnav .project-status {
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .subnav .project-status {
    justify-content: space-between;
    flex-grow: 1;
  }
}
.subnav .project-status .status {
  border: 2px solid var(--light);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
  line-height: 16px;
  color: var(--light);
  text-transform: uppercase;
  margin-left: 16px;
}
.subnav .project-status .status del {
  text-decoration: line-through;
  opacity: 0.5;
}
.subnav .button {
  background: var(--light);
  color: var(--dark);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 20px;
  white-space: nowrap;
  text-align: center;
}
.subnav .button:hover, .subnav .button:focus {
  opacity: 0.75;
}
.subnav .button:active {
  opacity: 0.5;
}
@media (max-width: 640px) {
  .subnav .button {
    width: 100%;
    margin-top: 16px;
  }
}

.styled {
  background: var(--light);
  color: var(--dark);
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .styled {
    flex-direction: column !important;
    flex-wrap: nowrap;
  }
}
.styled section,
.styled aside {
  padding: 48px 32px;
}
@media (max-width: 960px) {
  .styled section,
  .styled aside {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .styled section,
  .styled aside {
    padding: 12px 24px;
  }
}
.styled section:first-child,
.styled aside:first-child {
  padding-left: 64px;
}
@media (max-width: 960px) {
  .styled section:first-child,
  .styled aside:first-child {
    padding-left: 48px;
  }
}
@media (max-width: 640px) {
  .styled section:first-child,
  .styled aside:first-child {
    padding-top: 24px;
    padding-left: 24px;
  }
}
.styled section:last-child,
.styled aside:last-child {
  padding-right: 64px;
}
@media (max-width: 960px) {
  .styled section:last-child,
  .styled aside:last-child {
    padding-right: 48px;
  }
}
@media (max-width: 640px) {
  .styled section:last-child,
  .styled aside:last-child {
    padding-bottom: 24px;
    padding-right: 24px;
  }
}
.styled section {
  flex: 2;
}
.styled aside {
  flex: 1;
}
.styled aside *:first-child {
  margin-top: 0;
}
.styled aside *:last-child {
  margin-bottom: 0;
}
.styled.banner section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 64px;
}
@media (max-width: 960px) {
  .styled.banner section {
    padding: 16px 48px;
  }
}
@media (max-width: 640px) {
  .styled.banner section {
    padding: 16px 24px;
  }
}
.styled.banner section p {
  flex-grow: 1;
  margin: 0 16px 0 0;
}
@media (max-width: 640px) {
  .styled.banner section p {
    margin: 0;
    width: 100%;
  }
}
.styled.banner section .button {
  margin: 0;
}
@media (max-width: 640px) {
  .styled.banner section .button {
    width: 100%;
    margin-top: 16px;
  }
}
.styled .toggle {
  display: flex;
  justify-content: center;
}
.styled .toggle li {
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background-color: var(--dark);
  display: flex;
}
@media (max-width: 640px) {
  .styled .toggle li {
    flex-grow: 1;
  }
}
.styled .toggle li a {
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light);
  padding: 4px 12px;
  border-radius: 4px;
  flex-grow: 1;
  text-align: center;
}
.styled .toggle li.selected a {
  color: var(--dark);
  background-color: var(--light);
}
.styled .toggle li:first-child {
  padding-left: 4px;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
.styled .toggle li:last-child {
  padding-right: 4px;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}
.styled .note {
  background: var(--dark);
  color: var(--light);
  padding: 16px 24px;
  border-radius: 16px;
  margin: 24px 0;
}
.styled .note:first-child {
  margin-top: 0;
}
.styled .vendors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 16px;
}
.styled .vendors li {
  list-style: none;
  margin: 0;
  text-align: center;
}
.styled .vendors li a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding-top: 48px;
}
.styled .vendors li a span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.styled .vendors li a:after {
  content: "";
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  -webkit-mask-size: 48px;
          mask-size: 48px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
}
.styled .vendors li a[href*=vala]:after {
  -webkit-mask-image: url(../vendors/vala.svg);
          mask-image: url(../vendors/vala.svg);
}
.styled .vendors li a[href*=kbdfans]:after {
  -webkit-mask-image: url(../vendors/kbdfans.svg);
          mask-image: url(../vendors/kbdfans.svg);
}
.styled .vendors li a[href*=protozoa]:after {
  -webkit-mask-image: url(../vendors/protozoa.svg);
          mask-image: url(../vendors/protozoa.svg);
}
.styled .vendors li a[href*=ashkeebs]:after {
  -webkit-mask-image: url(../vendors/ashkeebs.svg);
          mask-image: url(../vendors/ashkeebs.svg);
}
.styled .vendors li a[href*=klc]:after {
  -webkit-mask-image: url(../vendors/klc.svg);
          mask-image: url(../vendors/klc.svg);
}
.styled .vendors li a[href*=basekeys]:after {
  -webkit-mask-image: url(../vendors/basekeys.svg);
          mask-image: url(../vendors/basekeys.svg);
}
.styled .vendors li a[href*=dailyclack]:after {
  -webkit-mask-image: url(../vendors/dailyclack.svg);
          mask-image: url(../vendors/dailyclack.svg);
}
.styled .vendors li a[href*=tiny]:after {
  -webkit-mask-image: url(../vendors/tiny.svg);
          mask-image: url(../vendors/tiny.svg);
}
.styled .vendors li a[href*=keygem]:after {
  -webkit-mask-image: url(../vendors/keygem.svg);
          mask-image: url(../vendors/keygem.svg);
}
.styled .vendors li a[href*=jae]:after {
  -webkit-mask-image: url(../vendors/jae.svg);
          mask-image: url(../vendors/jae.svg);
}
.styled .vendors li a[href*=latamkeys]:after {
  -webkit-mask-image: url(../vendors/latamkeys.svg);
          mask-image: url(../vendors/latamkeys.svg);
}
.styled .vendors li a[href*=rheset]:after {
  -webkit-mask-image: url(../vendors/rheset.svg);
          mask-image: url(../vendors/rheset.svg);
}
.styled .vendors li a[href*=mokb]:after {
  -webkit-mask-image: url(../vendors/mokb.svg);
          mask-image: url(../vendors/mokb.svg);
}
.styled .vendors li a[href*=ntch]:after {
  -webkit-mask-image: url(../vendors/ntch.svg);
          mask-image: url(../vendors/ntch.svg);
}
.styled .vendors li a[href*=stacks]:after {
  -webkit-mask-image: url(../vendors/stacks.svg);
          mask-image: url(../vendors/stacks.svg);
}
.styled .vendors li a[href*=zfrontier]:after {
  -webkit-mask-image: url(../vendors/zfrontier.svg);
          mask-image: url(../vendors/zfrontier.svg);
}
.styled .vendors li a[href*=stickeys]:after {
  -webkit-mask-image: url(../vendors/stickeys.svg);
          mask-image: url(../vendors/stickeys.svg);
}
.styled .vendors li a[href*=prototypist]:after {
  -webkit-mask-image: url(../vendors/prototypist.svg);
          mask-image: url(../vendors/prototypist.svg);
}
.styled .vendors li a[href*=keebfront]:after {
  -webkit-mask-image: url(../vendors/keebfront.svg);
          mask-image: url(../vendors/keebfront.svg);
}
.styled .vendors li small {
  display: block;
  opacity: 0.5;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.styled code,
.styled pre {
  opacity: 0.5;
  font-weight: 700;
  font-size: 0.95em;
}
.styled.inverted {
  background: var(--dark);
  color: var(--light);
}
.styled.inverted .note {
  background: var(--light);
  color: var(--dark);
}
.styled.inverted a.button {
  background: var(--light);
  color: var(--dark);
}
.styled.inverted .vendors li a:after {
  background-color: var(--light);
}
.styled.inverted hr {
  background: var(--light);
}
.styled.inverted .meta li {
  border: 2px solid var(--light);
}
.styled.inverted .meta li h3 {
  background-color: var(--light);
  color: var(--dark);
}
.styled.inverted .meta li p {
  border-left: 2px solid var(--light);
}
.styled.inverted .tag {
  color: var(--dark);
  background-color: var(--light);
}
.styled.inverted .tag.alt {
  color: var(--light);
  box-shadow: 0 0 0 2px var(--light) inset;
}
.styled *:first-child {
  margin-top: 0 !important;
}
.styled *:last-child {
  margin-bottom: 0 !important;
}
.styled a {
  text-decoration: underline;
}
.styled a:focus, .styled a:hover {
  opacity: 0.75;
}
.styled a:active {
  opacity: 0.5;
}
.styled a.button {
  display: block;
  background: var(--dark);
  color: var(--light);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  text-align: center;
  margin-top: 16px;
}
.styled .intro {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .styled .intro {
    font-size: 16px;
    line-height: 24px;
  }
}
.styled h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 24px 0;
}
@media (max-width: 640px) {
  .styled h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }
}
.styled h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 24px 0 16px 0;
}
@media (max-width: 640px) {
  .styled h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.styled h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0 8px 0;
}
@media (max-width: 640px) {
  .styled h3 {
    font-size: 12px;
    line-height: 16px;
  }
}
.styled p {
  margin-bottom: 8px;
}
.styled ul,
.styled ol,
.styled table,
.styled hr,
.styled blockquote,
.styled dl {
  margin: 16px 0;
}
.styled ul li {
  list-style-type: disc;
  margin-bottom: 4px;
  margin-left: 20px;
}
.styled ul li ul {
  padding-top: 4px;
}
.styled ol li {
  list-style: decimal;
  margin-bottom: 4px;
  margin-left: 24px;
}
.styled ol li ol {
  padding-top: 4px;
}
.styled ol li ol li {
  list-style: lower-alpha;
}
.styled .tag {
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--light);
  background-color: var(--dark);
  padding: 2px 4px;
  border-radius: 4px;
  opacity: 0.5;
  white-space: nowrap;
}
.styled .tag.alt {
  color: var(--dark);
  background: none;
  box-shadow: 0 0 0 2px var(--dark) inset;
}
.styled hr {
  height: 2px;
  border-radius: 1px;
  background: var(--dark);
  margin: 24px 0;
  opacity: 0.25;
}
.styled del {
  text-decoration: line-through;
  opacity: 0.5;
}
.styled .qpbt {
  background: var(--dark);
  color: var(--light);
  padding: 16px;
  border-radius: 16px;
  margin: 24px 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.styled .qpbt .logo {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--light);
  -webkit-mask-image: url(../qpbt/logo.svg);
          mask-image: url(../qpbt/logo.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  margin-right: 12px;
}
.styled .qpbt a {
  text-transform: none;
  font-weight: 400;
}
.styled .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.styled .meta li {
  display: flex;
  border: 2px solid var(--dark);
  border-radius: 16px 4px 4px 16px;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.styled .meta li h3 {
  font-size: 12px;
  line-height: 16px;
  padding: 4px 8px 4px 12px;
  background-color: var(--dark);
  color: var(--light);
  margin: 0;
}
.styled .meta li p {
  font-size: 12px;
  line-height: 16px;
  padding: 4px 8px;
  text-transform: uppercase;
  border-left: 2px solid var(--dark);
  margin: 0;
  font-weight: 700;
}
.styled .meta li p a {
  text-decoration: none;
}
.styled .meta li p a:hover, .styled .meta li p a:focus {
  opacity: 0.75;
}
.styled .meta li p a.active {
  opacity: 0.5;
}
.styled .merch {
  border: 2px solid var(--dark);
  border-radius: 16px;
  margin-top: 24px;
}
.styled .merch h2 {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 16px;
  margin: 0;
}
@media (max-width: 640px) {
  .styled .merch h2 {
    padding: 8px 12px;
  }
}
.styled .merch article {
  border-top: 2px solid var(--dark);
}
.styled .merch article a {
  display: flex;
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 640px) {
  .styled .merch article a {
    padding: 8px 12px;
  }
}
.styled .merch article a:hover, .styled .merch article a:focus {
  opacity: 1;
}
.styled .merch article a:hover h3, .styled .merch article a:focus h3 {
  text-decoration: underline;
}
.styled .merch article a img {
  width: 64px;
  height: 64px;
}
.styled .merch article a h3 {
  text-transform: none;
  flex-grow: 1;
  margin: 0;
}
@media (max-width: 640px) {
  .styled .merch article a h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

.newsletter {
  background: #000;
  max-width: unset;
}
.newsletter .styled {
  max-width: 480px;
  min-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 48px;
}
@media (max-width: 960px) {
  .newsletter .styled {
    border-radius: 32px;
  }
}
@media (max-width: 640px) {
  .newsletter .styled {
    border-radius: 24px;
  }
}
.newsletter .styled h1 a {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  -webkit-mask-image: url(../img/logo.svg);
          mask-image: url(../img/logo.svg);
  -webkit-mask-size: 64px;
          mask-size: 64px;
  background-color: var(--dark);
}
@media (max-width: 960px) {
  .newsletter .styled h1 a {
    width: 48px;
    height: 48px;
    -webkit-mask-size: 48px;
            mask-size: 48px;
  }
}
@media (max-width: 640px) {
  .newsletter .styled h1 a {
    width: 32px;
    height: 32px;
    -webkit-mask-size: 32px;
            mask-size: 32px;
  }
}

.links {
  background: #000;
  max-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
}
@media (max-width: 960px) {
  .links {
    padding: 32px 48px;
  }
}
@media (max-width: 640px) {
  .links {
    align-items: flex-start;
    padding: 0;
  }
}
.links div {
  max-width: 480px;
  min-width: 320px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .links div {
    border-radius: 32px;
  }
}
@media (max-width: 640px) {
  .links div {
    border-radius: 0;
    min-width: none;
    max-width: none;
    width: 100%;
    border-radius: 0;
  }
}
.links div section {
  background: var(--light);
  color: var(--dark);
  overflow: hidden;
}
.links div section a {
  display: block;
  padding: 12px 16px;
  margin-top: 2px;
  position: relative;
  font-weight: 600;
}
.links div section a::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--dark);
  opacity: 0.1;
}
.links div section a:hover, .links div section a:focus {
  text-decoration: underline;
}
.links div section a:active {
  opacity: 0.75;
}
.links div h1 a,
.links div h2 a {
  font-weight: 700;
}
.links div h1 a {
  margin: 0;
}
.links div h1 a::after {
  display: none;
}
.links div p {
  padding: 0 16px 12px;
  margin-top: -12px;
}
.links div h1 {
  font-size: 24px;
  line-height: 32px;
}
.links div h2 {
  font-size: 24px;
  line-height: 32px;
}

.fill {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=master.css.map */