﻿*,
*::before,
*::after {
  box-sizing: border-box
}

html,
body,
div,
span,
applet,
button,
input,
select,
textarea,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  background: rgba(0, 0, 0, 0);
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  min-width: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block
}

a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .0625em
}

b,
strong {
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: normal
}

i,
em {
  font-style: italic
}



body {
  line-height: 1
}

ol,
ul,
menu {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none
}

img,
svg {
  display: block
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

:root {
  --rgb-black: 0, 0, 0;
  --rgb-blue: 0, 100, 230;
  --rgb-blue-dark: 0, 55, 115;
  --rgb-blue-darker: 0, 40, 218;
  --rgb-blue-light: 194, 246, 255;
  --rgb-blue-lighter: 242, 247, 254;
  --rgb-green: 0, 177, 50;
  --rgb-green-dark: 0, 159, 18;
  --rgb-red: 195, 35, 70;
  --rgb-orange: 255, 138, 0;
  --rgb-white: 255, 255, 255;
  --color-black: rgb(var(--rgb-black));
  --color-blue: rgb(var(--rgb-blue));
  --color-blue-dark: rgb(var(--rgb-blue-dark));
  --color-blue-darker: rgb(var(--rgb-blue-darker));
  --color-blue-light: rgb(var(--rgb-blue-light));
  --color-blue-lighter: rgb(var(--rgb-blue-lighter));
  --color-green: rgb(var(--rgb-green));
  --color-green-dark: rgb(var(--rgb-green-dark));
  --color-red: rgb(var(--rgb-red));
  --color-orange: rgb(var(--rgb-orange));
  --color-white: rgb(var(--rgb-white));
  --letter-spacing: -0.0015em;
  --line-height: 1.3;
  --transition: 0.15s cubic-bezier(0.33, 1, 0.68, 1);
  /* mrbranzino */
  --font-size: 20px;
  --color-background: #000000;
  --color-text: #ffffff;
  --padding-main: 30px;
}

html {
  background: var(--color-background);
  font-size: 16px;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--font-size)*3.4)
}

html.zoom-active {
  overflow: hidden
}

body {
  background: var(--color-background);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "liga", "dlig";
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  min-height: 100vh;
  -webkit-tap-highlight-color: rgba(var(--rgb-blue-light), 0);
  text-rendering: optimizeLegibility
}

.text-link {
  font-weight: bold;
  text-decoration: underline;
}

.b {
  font-weight: bold
}

.mt0 {
  margin-top: 0 !important
}

.menu-item-main a {
  text-transform: uppercase;
  text-decoration: none !important;
}

.nav {
  font-size: 20px;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5em;
}

.logo {
  width: 120px;
  height: 60px;
  fill: var(--color-white);
  margin-bottom: 1rem;
}

.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--padding-main);
}

.nav__menu-item {
  font-weight: bold;
  display: flex;
}

.nav__menu-item:last-child::after {
  content: "";
  padding: 0;
}

.page__content ol,
.page__content ul {
  display: flex;
  flex-direction: column;
  gap: .575em
}

.page__content ol li,
.page__content ul li {
  position: relative;
  padding-left: 1.8em
}

.page__content ol li ol,
.page__content ol li ul,
.page__content ul li ol,
.page__content ul li ul {
  margin-top: .575em
}

.page__content ol li:before,
.page__content ul li:before {
  font-feature-settings: "case", "tnum";
  left: 0;
  position: absolute;
  text-align: right;
  top: 0;
  width: 1.4em
}

.page__content ol {
  counter-reset: counter
}

.page__content ol li {
  counter-increment: counter
}

@media(min-width: 650px) {
  :root {
    --font-size: 30px;
    --padding-main: 45px;
  }
  .nav__menu {
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    column-gap: 1.5em;
    max-width: calc(100vw - 2rem);
  }
  .logo {
    margin-bottom: 0;
  }
}

@media(min-width: 700px) {
  .nav__menu-item::after {
    padding: 0 1rem;
  }
}

@media(min-width: 1024px) {
  .nav {
    font-size: 20px;
  }
}


.page__content ul,
.page__content ol {
  margin-top: 0.5rem !important;
}

.page__content a {
  color: rgb(46, 226, 64);
}

@supports(-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available
  }
}

.main {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-bottom: 3.075em;
  margin-inline: auto;
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
  width: min(100%, 34.5em)
}

.main--index {
  margin-bottom: 6.1em
}

.nav-active {
  display: none
}

.nav-active:checked~.nav-underlay,
.nav-active:checked~.nav .nav__links dd {
  display: flex
}

.nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.55em;
  margin-top: 3.55em
}

.nav__main {
  display: flex;
  flex: 1;
  gap: 1em;
  margin-inline: auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
  width: min(100%, 34.5em)
}

.nav__body {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5125em;
  margin-top: .5125em;
  width: 100%
}

.nav__links {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: "Inter", Sans-Serif;
  font-feature-settings: "case", "liga", "dlig", "ss03";
  line-height: 1.375em;
  white-space: nowrap
}

.nav__links dt,
.nav__links dd {
  display: flex;
  font-size: 50%
}

.nav__links dt a,
.nav__links dd a {
  text-decoration: none
}

.nav__links dt {
  font-weight: 700
}

.nav__links dt a {
  color: var(--color-white)
}

.nav__links dt:before {
  color: rgba(var(--rgb-blue-light), 0.3);
  content: "/";
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  width: 1.375em
}

.nav__links dd {
  display: none
}

.nav__links dd a {
  color: rgba(var(--rgb-blue-light), 0.6);
  cursor: pointer;
  flex: 1;
  font-weight: 400;
  margin-left: 1.375em
}

.nav__links dd.selected a {
  color: var(--color-white)
}

.nav__toggle {
  display: flex;
  height: 1.375em;
  line-height: 1.375em;
  -webkit-user-select: none
}

.nav__toggle label {
  color: var(--color-white);
  cursor: pointer;
  font-family: "Inter Display", Sans-Serif;
  font-feature-settings: "case", "cpsp", "ss03";
  font-size: 50%;
  font-weight: 700;
  letter-spacing: .0225em;
  margin-right: -1em;
  padding-left: 1em;
  padding-right: 1em
}

.nav--product {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(var(--rgb-blue-dark), 0.3);
  box-shadow: 0 1px 0 0 rgba(var(--rgb-blue-dark), 0.3);
  left: 0;
  margin: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100
}

.nav--product .nav__main {
  padding-left: 1em;
  padding-right: 1em;
  width: min(100%, 29em)
}

@media(hover: hover) {

  .nav__links dt a:focus,
  .nav__links dt a:hover,
  .nav__links dd:not(.selected) a:focus,
  .nav__links dd:not(.selected) a:hover,
  .nav__links dd label:focus,
  .nav__links dd label:hover,
  .nav__toggle label:focus,
  .nav__toggle label:hover {
    color: var(--color-white);
    text-decoration: underline
  }
}

@media(min-width: 64em) {
  .nav__main {
    padding-left: 2em;
    padding-right: 2em
  }

  .nav__body {
    flex: 1;
    margin-right: 3.25em;
    width: auto
  }

  .nav__links {
    flex-direction: row;
    gap: .725em;
    justify-content: flex-end;
    line-height: 1.375em;
    margin-right: -2em
  }

  .nav__links dt {
    margin-right: auto
  }

  .nav__links dd {
    display: flex
  }

  .nav__links dd a {
    margin-left: 0
  }

  .nav__toggle {
    display: none
  }

  .nav--product .nav__main {
    gap: 0;
    padding-left: 3em;
    padding-right: 3em;
    width: min(100%, 46em)
  }

  .nav--product .nav__main:after {
    content: "";
    width: 12em
  }
}

.page {
  display: flex;
  flex-direction: column;
  gap: 3.25em
}

.page__header {
  margin-top: -0.3em
}

.page__header h1,
.page__header h2 {
  color: var(--color-white);
  letter-spacing: normal
}

.page__header h1 {
  font-size: 175%;
  font-weight: 800;
  line-height: 1
}

.page__header h2 {
  --spacing: 0.575em;
  font-size: 140%;
  font-weight: 500;
  line-height: 1.2
}

.page__header a {
  color: var(--color-white);
  text-decoration-thickness: from-font
}

.page__header>*+* {
  margin-top: var(--spacing, 0.9em)
}

.page__content {
  margin-top: -0.3em
}

.page__content h3,
.page__content h4 {
  color: var(--color-white);
  font-family: "Inter Display", Sans-Serif;
  font-feature-settings: "liga", "dlig", "ss03";
  letter-spacing: normal
}

.page__content h3 a,
.page__content h4 a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none
}

.page__content h3 {
  --spacing: 2.7em;
  font-size: 110%;
  font-weight: 700
}

.page__content h3+* {
  --spacing: 0.5875em
}

.page__content h3+h4 {
  --spacing: 0.925em
}

.page__content h4 {
  --spacing: 1.475em;
  font-size: 75%;
  font-weight: 600
}

.page__content h4+* {
  --spacing: 0.325em
}



.page__content ol li:before {
  content: counter(counter) "."
}

.page__content ul li:before {
  content: "-"
}

.page__content ul.dashed {
  gap: .325em
}

.page__content ul.dashed li {
  padding-left: .9em
}

.page__content ul.dashed li:before {
  content: "—";
  left: 0;
  opacity: .5;
  width: auto
}

.page__content>*+* {
  margin-top: var(--spacing, 1.3em)
}

@media(min-width: 64em) {

  .page__content ol li,
  .page__content ul li {
    padding-left: 0
  }

  .page__content ol li ol,
  .page__content ol li ul,
  .page__content ul li ol,
  .page__content ul li ul {
    padding-left: 1.8em
  }

  .page__content ol li:before,
  .page__content ul li:before {
    left: -1.8em
  }
}

@media(min-width: 64em) {
  .product {
    flex-direction: row;
    gap: 0;
    margin-top: 0;
    padding-left: 3em;
    padding-right: 3em;
    justify-content: space-between;
    width: min(100%, 46em)
  }

  .product__body {
    flex: 1;
    margin-top: 5.95em;
    margin-right: 3.25em;
    order: 0
  }

  .product__content ol,
  .product__content ul {
    padding-left: 0
  }

  .product__aside {
    margin-top: 0;
    order: 1;
    width: 12em
  }

  .product__aside--condensed .buy__header {
    margin-bottom: 0
  }

  .product__aside--condensed .buy__content,
  .product__aside--condensed .buy__notes {
    display: none
  }

  .product__aside--condensed .buy__button {
    margin-top: .3em
  }

  .product--full-width {
    position: relative
  }

  .product--full-width .product__body {
    margin-right: 0
  }

  .product--full-width .product__aside {
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 3em;
    top: 0;
    z-index: 101
  }
}

@media(min-width: 64em) {
  .testimonials {
    column-gap: 1em;
    column-width: 12em;
    display: initial;
    flex-direction: initial;
    margin: -1em -1.5em
  }

  .testimonials__testimonial {
    margin-top: 1em
  }
}


@media(hover: hover) {

  .version:focus a,
  .version:hover a {
    background: var(--color-white);
    color: var(--color-blue)
  }
}

@media(hover: hover) {

  .video__timestamps ul li button:focus,
  .video__timestamps ul li button:hover {
    text-decoration: underline;
    text-decoration-thickness: from-font;
    text-underline-offset: .0825em
  }
}

@media(min-width: 64em) {
  .video__source {
    margin-left: -2em;
    margin-right: -2em
  }

  .video--inline .video__source {
    margin-left: -1em;
    margin-right: -1em
  }

  .video.video-zoom-active .video__source {
    margin: 0 1.5em
  }
}