/* frontend/styles/index.css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: "Iosevka";
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  src: url("/_bridgetown/static/Iosevka-Regular-X4JSGYPD.woff2") format("woff2");
}
@font-face {
  font-family: "Iosevka";
  font-display: swap;
  font-weight: 600;
  font-style: normal;
  src: url("/_bridgetown/static/Iosevka-Medium-S2Q2F7PW.woff2") format("woff2");
}
@font-face {
  font-family: "Iosevka";
  font-display: swap;
  font-weight: 800;
  font-style: normal;
  src: url("/_bridgetown/static/Iosevka-Bold-EMTNNMIX.woff2") format("woff2");
}
:root {
  --font-family: "Iosevka", monospace;
  --line-height: 1.20rem;
  --border-thickness: 2px;
  --text-color: #007;
  --text-color-alt: #666;
  --background-color: #fff;
  --background-color-alt: #eee;
  --font-weight-normal: 500;
  --font-weight-medium: 600;
  --font-weight-bold: 800;
  font-family: "Iosevka", monospace;
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 500;
  font-weight: var(--font-weight-normal);
  font-style: normal;
  font-feature-settings: tabular-nums lining-nums;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
* + * {
  margin-top: 1.20rem;
  margin-top: var(--line-height);
}
html {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
  background: #fff;
  background: var(--background-color);
  color: #007;
  color: var(--text-color);
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.20rem 2ch;
  padding: var(--line-height) 2ch;
  max-width: calc(min(80ch, round(down, 100%, 1ch)));
  line-height: 1.20rem;
  line-height: var(--line-height);
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  body {
    padding: 1.20rem 1ch;
    padding: var(--line-height) 1ch;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  font-weight: var(--font-weight-bold);
  margin: calc(1.20rem * 2) 0 1.20rem;
  margin: calc(var(--line-height) * 2) 0 var(--line-height);
  line-height: 1.20rem;
  line-height: var(--line-height);
}
h2,
h3,
h4,
h5,
h6 {
  position: relative;
}
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  position: absolute;
  right: 100%;
  margin-right: 1ch;
}
h1 {
  font-size: 2rem;
  line-height: calc(2 * 1.20rem);
  line-height: calc(2 * var(--line-height));
  margin-bottom: calc(1.20rem * 2);
  margin-bottom: calc(var(--line-height) * 2);
  text-transform: uppercase;
}
h2 {
  font-size: 1rem;
  text-transform: uppercase;
}
hr {
  position: relative;
  display: block;
  height: 1.20rem;
  height: var(--line-height);
  margin: calc(1.20rem * 1.5) 0;
  margin: calc(var(--line-height) * 1.5) 0;
  border: none;
  color: #007;
  color: var(--text-color);
}
hr:after {
  display: block;
  content: "";
  position: absolute;
  top: calc(1.20rem / 2 - 2px);
  top: calc(var(--line-height) / 2 - var(--border-thickness));
  left: 0;
  width: 100%;
  border-top: calc(2px * 3) double #007;
  border-top: calc(var(--border-thickness) * 3) double var(--text-color);
  height: 0;
}
a {
  text-decoration-thickness: 2px;
  text-decoration-thickness: var(--border-thickness);
}
a:link,
a:visited {
  color: #007;
  color: var(--text-color);
}
a.no-underline {
  text-decoration: none;
}
.hover-text {
  opacity: 0;
  transition: opacity 0.2s ease;
}
a:hover .hover-text,
pre:hover .hover-text {
  opacity: 1;
}
p {
  margin-bottom: 1.20rem;
  margin-bottom: var(--line-height);
}
strong {
  font-weight: 800;
  font-weight: var(--font-weight-bold);
}
em {
  font-style: italic;
}
sub {
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: sub;
  line-height: 0;
  width: calc(1ch / 0.75);
  font-size: .75rem;
}
table {
  position: relative;
  top: calc(1.20rem / 2);
  top: calc(var(--line-height) / 2);
  width: calc(round(down, 100%, 1ch));
  border-collapse: collapse;
  margin: 0 0 calc(1.20rem * 2);
  margin: 0 0 calc(var(--line-height) * 2);
}
th,
td {
  border: 2px solid #007;
  border: var(--border-thickness) solid var(--text-color);
  padding: calc((1.20rem / 2)) calc(1ch - 2px / 2) calc((1.20rem / 2) - (2px));
  padding: calc((var(--line-height) / 2)) calc(1ch - var(--border-thickness) / 2) calc((var(--line-height) / 2) - (var(--border-thickness)));
  line-height: 1.20rem;
  line-height: var(--line-height);
  vertical-align: top;
  text-align: left;
}
table tbody tr:first-child > * {
  padding-top: calc((1.20rem / 2) - 2px);
  padding-top: calc((var(--line-height) / 2) - var(--border-thickness));
}
th {
  font-weight: 700;
}
.width-min {
  width: 0%;
}
.width-auto {
  width: 100%;
}
.header {
  margin-bottom: calc(1.20rem * 2);
  margin-bottom: calc(var(--line-height) * 2);
}
.header h1 {
  margin: 0;
}
.header tr td:last-child {
  text-align: right;
}
p {
  word-break: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
img,
video {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  overflow: hidden;
}
img {
  font-style: italic;
  color: #666;
  color: var(--text-color-alt);
}
details {
  border: 2px solid #007;
  border: var(--border-thickness) solid var(--text-color);
  padding: calc(1.20rem - 2px) 1ch;
  padding: calc(var(--line-height) - var(--border-thickness)) 1ch;
  margin-bottom: 1.20rem;
  margin-bottom: var(--line-height);
}
summary {
  font-weight: 600;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
}
details[open] summary {
  margin-bottom: 1.20rem;
  margin-bottom: var(--line-height);
}
details summary::marker {
  display: inline-block;
  content: "\1cc82";
  margin: 0;
}
details[open] summary::marker {
  content: "\1cc83";
}
details :last-child {
  margin-bottom: 0;
}
pre {
  white-space: pre;
  overflow-x: auto;
  margin: 1.20rem 0;
  margin: var(--line-height) 0;
  overflow-y: hidden;
}
pre.braille {
  line-height: 1;
  font-size: 25%;
  letter-spacing: 0;
  white-space: pre;
}
figure pre {
  margin: 0;
}
pre,
code {
  font-family: "Iosevka", monospace;
  font-family: var(--font-family);
}
code {
  font-weight: 600;
  font-weight: var(--font-weight-medium);
}
figure {
  margin: calc(1.20rem * 2) 3ch;
  margin: calc(var(--line-height) * 2) 3ch;
  overflow-x: auto;
  overflow-y: hidden;
}
figcaption {
  display: block;
  font-style: italic;
  margin-top: 1.20rem;
  margin-top: var(--line-height);
}
ul,
ol {
  padding: 0;
  margin: 0 0 1.20rem;
  margin: 0 0 var(--line-height);
}
ul {
  list-style-type: square;
  padding: 0 0 0 2ch;
}
ol {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
}
ol ul,
ol ol,
ul ol,
ul ul {
  padding: 0 0 0 3ch;
  margin: 0;
}
ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  font-weight: 600;
  font-weight: var(--font-weight-medium);
}
li {
  margin: 0;
  padding: 0;
}
li::marker {
  line-height: 0;
}
::-webkit-scrollbar {
  height: 1.20rem;
  height: var(--line-height);
}
input,
button,
textarea {
  border: 2px solid #007;
  border: var(--border-thickness) solid var(--text-color);
  padding: calc(1.20rem / 2 - 2px) calc(1ch - 2px);
  padding: calc(var(--line-height) / 2 - var(--border-thickness)) calc(1ch - var(--border-thickness));
  margin: 0;
  font: inherit;
  font-weight: inherit;
  height: calc(1.20rem * 2);
  height: calc(var(--line-height) * 2);
  width: auto;
  overflow: visible;
  background: #fff;
  background: var(--background-color);
  color: #007;
  color: var(--text-color);
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}
input[type=checkbox],
input[type=radio] {
  display: inline-grid;
  place-content: center;
  vertical-align: top;
  width: 2ch;
  height: 1.20rem;
  height: var(--line-height);
  cursor: pointer;
}
input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  content: "";
  width: 1ch;
  height: calc(1.20rem / 2);
  height: calc(var(--line-height) / 2);
  background: #007;
  background: var(--text-color);
}
input[type=radio],
input[type=radio]:before {
  border-radius: 100%;
}
button:focus,
input:focus {
  --border-thickness: 3px;
  outline: none;
}
input {
  width: calc(round(down, 100%, 1ch));
}
::-moz-placeholder {
  color: #666;
  color: var(--text-color-alt);
  opacity: 1;
}
::placeholder {
  color: #666;
  color: var(--text-color-alt);
  opacity: 1;
}
::-ms-input-placeholder {
  color: #666;
  color: var(--text-color-alt);
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button {
  text-transform: uppercase;
  font-weight: 600;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
}
button:hover {
  background: #eee;
  background: var(--background-color-alt);
}
button:active {
  transform: translate(2px, 2px);
}
label {
  display: block;
  width: calc(round(down, 100%, 1ch));
  height: auto;
  line-height: 1.20rem;
  line-height: var(--line-height);
  font-weight: 600;
  font-weight: var(--font-weight-medium);
  margin: 0;
}
label input {
  width: 100%;
}
.tree,
.tree ul {
  position: relative;
  padding-left: 0;
  list-style-type: none;
  line-height: 1.20rem;
  line-height: var(--line-height);
}
.tree ul {
  margin: 0;
}
.tree ul li {
  position: relative;
  padding-left: 1.5ch;
  margin-left: 1.5ch;
  border-left: 2px solid #007;
  border-left: var(--border-thickness) solid var(--text-color);
}
.tree ul li:before {
  position: absolute;
  display: block;
  top: calc(1.20rem / 2);
  top: calc(var(--line-height) / 2);
  left: 0;
  content: "";
  width: 1ch;
  border-bottom: 2px solid #007;
  border-bottom: var(--border-thickness) solid var(--text-color);
}
.tree ul li:last-child {
  border-left: none;
}
.tree ul li:last-child:after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: "";
  height: calc(1.20rem / 2);
  height: calc(var(--line-height) / 2);
  border-left: 2px solid #007;
  border-left: var(--border-thickness) solid var(--text-color);
}
.grid {
  --grid-cells: 0;
  display: flex;
  align-items: flex-start;
  gap: 1ch;
  width: calc(round(down, 100%, (1ch * 0) - (1ch * 0 - 1)));
  width: calc(round(down, 100%, (1ch * var(--grid-cells)) - (1ch * var(--grid-cells) - 1)));
  margin-bottom: 1.20rem;
  margin-bottom: var(--line-height);
}
.grid > *,
.grid > input {
  flex: 0 0 calc(round(down, (100% - (1ch * (var(--grid-cells) - 1))) / var(--grid-cells), 1ch));
  margin-top: 0;
}
.grid:has(> :last-child:nth-child(1)) {
  --grid-cells: 1;
}
.grid:has(> :last-child:nth-child(2)) {
  --grid-cells: 2;
}
.grid:has(> :last-child:nth-child(3)) {
  --grid-cells: 3;
}
.grid:has(> :last-child:nth-child(4)) {
  --grid-cells: 4;
}
.grid:has(> :last-child:nth-child(5)) {
  --grid-cells: 5;
}
.grid:has(> :last-child:nth-child(6)) {
  --grid-cells: 6;
}
.grid:has(> :last-child:nth-child(7)) {
  --grid-cells: 7;
}
.grid:has(> :last-child:nth-child(8)) {
  --grid-cells: 8;
}
.grid:has(> :last-child:nth-child(9)) {
  --grid-cells: 9;
}
.grid-mobile-single {
  --grid-cells: 0;
  display: flex;
  align-items: flex-start;
  gap: 1ch;
  width: calc(round(down, 100%, (1ch * 0) - (1ch * 0 - 1)));
  width: calc(round(down, 100%, (1ch * var(--grid-cells)) - (1ch * var(--grid-cells) - 1)));
  margin-bottom: 1.20rem;
  margin-bottom: var(--line-height);
}
.grid-mobile-single > *,
.grid-mobile-single > input {
  flex: 0 0 calc(round(down, (100% - (1ch * (var(--grid-cells) - 1))) / var(--grid-cells), 1ch));
  margin-top: 0;
}
.grid-mobile-single:has(> :last-child:nth-child(1)) {
  --grid-cells: 1;
}
.grid-mobile-single:has(> :last-child:nth-child(2)) {
  --grid-cells: 2;
}
.grid-mobile-single:has(> :last-child:nth-child(3)) {
  --grid-cells: 3;
}
.grid-mobile-single:has(> :last-child:nth-child(4)) {
  --grid-cells: 4;
}
.grid-mobile-single:has(> :last-child:nth-child(5)) {
  --grid-cells: 5;
}
.grid-mobile-single:has(> :last-child:nth-child(6)) {
  --grid-cells: 6;
}
.grid-mobile-single:has(> :last-child:nth-child(7)) {
  --grid-cells: 7;
}
.grid-mobile-single:has(> :last-child:nth-child(8)) {
  --grid-cells: 8;
}
.grid-mobile-single:has(> :last-child:nth-child(9)) {
  --grid-cells: 9;
}
@media screen and (max-width: 480px) {
  .grid-mobile-single {
    flex-direction: column;
  }
  .grid-mobile-single > *,
  .grid-mobile-single > input {
    flex: 1 1 100%;
    width: 100%;
  }
}
.nav-inline {
  display: flex;
  list-style: square;
  margin: 0;
  padding: 0;
  gap: 2ch;
  width: calc(round(down, 100%, 1ch));
}
.nav-inline > li:first-child {
  list-style: none;
  margin-right: 1ch;
}
.nav-inline > li:not(:first-child) {
  margin-right: 1ch;
}
.nav-inline > li:last-child {
  margin-right: 0;
}
.debug .debug-grid {
  --color: color-mix(in srgb, var(--text-color) 10%, var(--background-color) 90%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(color-mix(in srgb, #007 10%, #fff 90%) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, #007 10%, #fff 90%) 0 1px,
      transparent 1px 100%);
  background-size: 1ch 1.20rem;
  background-size: 1ch var(--line-height);
  margin: 0;
}
@supports (background: repeating-linear-gradient(red 0%, red 0% 1%, red 2%)) {
  .debug .debug-grid {
    background-image:
      repeating-linear-gradient(var(--color) 0 1px, transparent 1px 100%),
      repeating-linear-gradient(
        90deg,
        var(--color) 0 1px,
        transparent 1px 100%);
  }
}
.debug .off-grid {
  background: rgba(255, 0, 0, 0.1);
}
.debug-toggle-label {
  text-align: right;
}
.animated-head {
  display: inline-block;
  transition: opacity 0.2s ease-in-out;
}
.rotating-heads {
  text-align: center;
}
.logo-strip {
  width: 100vw;
  margin-left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
  opacity: 1;
  background: #fff;
  background: var(--background-color);
}
.logo-strip .grid {
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: 0;
}
.logo-item {
  height: 42px;
  width: auto;
  max-width: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .85;
  transition: filter 0.2s ease, opacity 0.2s ease;
  margin-top: 0 !important;
}
.logo-item:hover {
  filter: none;
  opacity: 1;
}
.logo-caption {
  text-align: center;
  margin: 1rem 0 0 0;
  color: #666;
  color: var(--text-color-alt);
  font-size: 0.9em;
}
@media screen and (max-width: 720px) {
  .logo-strip {
    width: 100%;
    margin-left: 0;
    transform: none;
    padding: 1.25rem 1rem;
  }
  .logo-strip .grid {
    gap: 1rem 1.25rem;
  }
  .logo-item {
    height: 32px;
    max-width: 120px;
  }
}
.carousel-wrapper {
  position: relative;
  margin: calc(1.20rem * 2) 0;
  margin: calc(var(--line-height) * 2) 0;
  margin-left: -10ch;
  margin-right: -10ch;
}
.carousel {
  position: relative;
  overflow: hidden;
  max-width: calc(min(80ch, round(down, 100%, 1ch)) - 4ch);
  width: 100%;
  margin: 0 auto;
  background: #eee;
  background: var(--background-color-alt);
}
.carousel-items {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
}
.carousel-item {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.carousel-item-content {
  padding: calc(1.20rem - 2px) 2ch calc(1.20rem - 2px) 2ch;
  padding: calc(var(--line-height) - var(--border-thickness)) 2ch calc(var(--line-height) - var(--border-thickness)) 2ch;
}
.carousel-item > * {
  margin-top: 0;
}
.carousel-item > *:first-child {
  margin-top: 0;
}
.carousel-item > *:last-child {
  margin-bottom: 0;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1ch;
  margin-top: 1.20rem;
  margin-top: var(--line-height);
  align-items: center;
}
.carousel-button {
  background: #fff;
  background: var(--background-color);
  border: 2px solid #007;
  border: var(--border-thickness) solid var(--text-color);
  padding: calc(1.20rem / 4) 1ch;
  padding: calc(var(--line-height) / 4) 1ch;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  min-width: 3ch;
  height: auto;
  line-height: 1.20rem;
  line-height: var(--line-height);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.carousel-button-prev {
  left: 0;
}
.carousel-button-next {
  right: 0;
}
.carousel-button:hover {
  background: #eee;
  background: var(--background-color-alt);
}
.carousel-button:active {
  transform: translateY(-50%) translate(1px, 1px);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5ch;
  align-items: center;
  margin-top: 1.20rem;
  margin-top: var(--line-height);
  width: 100%;
}
.carousel-dot {
  width: 1ch;
  height: 1ch;
  border: 2px solid #007;
  border: var(--border-thickness) solid var(--text-color);
  background: #fff;
  background: var(--background-color);
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  transition: background 0.2s ease;
}
.carousel-dot:hover {
  background: #666;
  background: var(--text-color-alt);
}
.carousel-dot.active {
  background: #007;
  background: var(--text-color);
}
.carousel-dot:focus {
  outline: none;
  --border-thickness: 3px;
}
@media screen and (max-width: 720px) {
  .carousel-wrapper {
    margin-left: -2ch;
    margin-right: -2ch;
  }
  .carousel {
    max-width: calc(round(down, 100%, 1ch));
    width: 100%;
  }
  .carousel-item-content {
    padding: calc(1.20rem - 2px) 1ch calc(1.20rem - 2px) 1ch;
    padding: calc(var(--line-height) - var(--border-thickness)) 1ch calc(var(--line-height) - var(--border-thickness)) 1ch;
  }
  .carousel-item img {
    width: calc(round(down, 100%, 1ch)) !important;
    max-width: 100%;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .carousel-wrapper {
    margin-left: -1ch;
    margin-right: -1ch;
  }
  .carousel {
    max-width: calc(round(down, 100%, 1ch));
    width: 100%;
  }
  .carousel-item-content {
    padding: calc(1.20rem - 2px) 1ch calc(1.20rem - 2px) 1ch;
    padding: calc(var(--line-height) - var(--border-thickness)) 1ch calc(var(--line-height) - var(--border-thickness)) 1ch;
  }
  .carousel-item img {
    width: calc(round(down, 100%, 1ch)) !important;
    max-width: 100%;
    margin-left: 0 !important;
  }
  .carousel-button {
    display: none;
  }
}
/*# sourceMappingURL=/_bridgetown/static/index.4IALHIFR.css.map */
