@charset "UTF-8";
@import url("https://necolas.github.io/normalize.css/8.0.1/normalize.css") layer(normalize);
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spline+Sans+Mono:ital,wght@0,300..700;1,300..700&display=swap") layer(google-fonts);
@layer dma {
  :root {
    --color: #fafafa;
    --background-color: #000000;
    --r-color: #f5615f;
    --g-color: #56ba5b;
    --b-color: #02abfc;
    --y-color: oklch(0.7079 0.1638 82.58); /* based on b-color oklch */
    --menu-color: color-mix(in srgb, var(--color) 92%, var(--background-color));
    --link-color: var(--b-color);
    --border-color: color-mix(
      in srgb,
      var(--color) 40%,
      var(--background-color)
    );
    --blockquote-color: var(--color);
    --blockquote-border-color: var(--border-color);
    --blockquote-background-color: var(--background-color);
    --pre-color: var(--blockquote-color);
    --pre-border-color: var(--blockquote-border-color);
    --pre-background-color: var(--blockquote-background-color);
    --text-font-family: "Spline Sans Mono", system-ui;
    --heading-font-family: "Inter", system-ui;
    --monospace-font-family: "Spline Sans Mono", monospace;
    --border-width: 1.5px;
    --border-width-header: 6px;
    --border-radius: 0;
    --border-radius-block: 0;
    --animation-scalar: 1;
    --transition-duration: calc(0.2s * var(--animation-scalar));
    --stripes-nav-size: 50px;
    --stripes-nav-padding: 1.5rem;
    --brand-logo-width: 12rem;
    --brand-logo-filter: none;
    --notecard-stripe-width: 8px;
    --notecard-stripe-width-2: calc(var(--notecard-stripe-width) * 2);
  }
  @media (prefers-color-scheme: light) {
    :root {
      --color: #000000;
      --background-color: #fafafa;
      --brand-logo-filter: invert(1);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    :root {
      --animation-scalar: 0;
    }
  }
}
@layer dma {
  * {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  html {
    height: 100%;
  }
  body {
    min-height: 100%;
    margin: auto;
    background-color: var(--background-color);
    color: var(--color);
    line-height: 1.4;
    font-family: var(--text-font-family);
    font-size: clamp(0.8125rem, 0.6875rem + 0.4167vw, 1rem);
    font-weight: 380;
  }
  a {
    color: var(--link-color);
    text-decoration: none;
  }
  a:hover, a:focus {
    text-decoration: underline;
  }
  h1 {
    font-family: var(--heading-font-family);
    font-weight: 700;
  }
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--heading-font-family);
    font-weight: 400;
  }
  pre,
  blockquote {
    margin: 1em 0;
    padding: 1em;
    border: var(--border-width) solid var(--border-color);
    border-top-width: var(--border-width-header);
    border-radius: var(--border-radius-block);
  }
  pre:is(pre),
  blockquote:is(pre) {
    color: var(--pre-color);
    background-color: var(--pre-background-color);
    overflow-x: auto;
    font-size: 0.9em;
  }
  pre:is(blockquote):not(.notecard),
  blockquote:is(blockquote):not(.notecard) {
    color: var(--blockquote-color);
    background-color: var(--blockquote-background-color);
  }
  pre:is(blockquote):not(.notecard) > :first-child,
  blockquote:is(blockquote):not(.notecard) > :first-child {
    margin-top: 0;
  }
  pre:is(blockquote):not(.notecard) > :last-child,
  blockquote:is(blockquote):not(.notecard) > :last-child {
    margin-bottom: 0;
  }
  code {
    font-family: var(--monospace-font-family);
  }
  table th {
    text-align: left;
    border-bottom: var(--border-width) solid var(--border-color);
  }
  table th,
  table td {
    padding: 0em 0.5em;
  }
  table:not(.narrow) {
    width: 100%;
  }
  table:not(.narrow) th,
  table:not(.narrow) td {
    padding: 0em 1em;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  figure {
    margin: 1em;
  }
  figure figcaption {
    font-size: 0.9em;
    color: var(--menu-color);
  }
  .brand {
    cursor: default;
  }
  .brand.logo, .brand.code {
    max-width: 100%;
    width: var(--brand-logo-width, 12rem);
    height: auto;
    filter: var(--brand-logo-filter);
  }
  .brand.logo {
    aspect-ratio: 583/128;
    vertical-align: bottom;
  }
  .brand.stripe {
    background-color: currentColor;
    animation: stripe-blink calc(5s * var(--animation-scalar)) infinite;
    animation-timing-function: steps(1, start);
  }
  .brand.stripe:nth-child(1) {
    animation-delay: calc(0.1s * 1 * var(--animation-scalar));
  }
  .brand.stripe:nth-child(2) {
    animation-delay: calc(0.1s * 2 * var(--animation-scalar));
  }
  .brand.stripe:nth-child(3) {
    animation-delay: calc(0.1s * 3 * var(--animation-scalar));
  }
  .brand.stripes {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--stripe-vertical-gap, 0.2rem);
  }
  .brand.stripes .stripe {
    width: var(--stripe-vertical-width, 0.75rem);
    height: 100%;
  }
  .brand.stripes.horizontal {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--stripe-horizontal-gap, 0.2rem);
  }
  .brand.stripes.horizontal .stripe {
    width: 100%;
    height: var(--stripe-horizontal-height, 0.75rem);
  }
  .brand.acronyms {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 1.25em;
    text-align: right;
    line-height: 1.1;
  }
  .brand.colored > * {
    color: var(--brand-color, currentColor);
  }
  .brand.colored > *:nth-child(1) {
    --brand-color: var(--r-color);
  }
  .brand.colored > *:nth-child(2) {
    --brand-color: var(--g-color);
  }
  .brand.colored > *:nth-child(3) {
    --brand-color: var(--b-color);
  }
  @keyframes stripe-blink {
    0%, 40% {
      opacity: 1;
    }
    50% {
      opacity: 0.8;
    }
    80%, 100% {
      opacity: 1;
    }
  }
  main.dma footer.dma-footer {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1em 0;
    gap: 1em;
    cursor: default;
    font-size: 0.85em;
  }
  main.dma footer.dma-footer > * {
    opacity: 0.5;
    transition: opacity var(--transition-duration) ease-in-out;
  }
  main.dma footer.dma-footer > *:hover {
    opacity: 1;
  }
  @media (max-width: 480px) {
    main.dma footer.dma-footer {
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      gap: 0;
    }
  }
  @media (min-width: 481px) {
    body:has(aside.dma):has(main.dma) {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: clamp(1em, 5vw, 4em);
      overflow-x: hidden;
    }
  }
  @media (min-width: 481px) and (min-width: 1000px) {
    body:has(aside.dma):has(main.dma) aside.dma {
      flex: 1 0 0;
      margin-left: auto;
    }
    body:has(aside.dma):has(main.dma) main.dma {
      flex: 2 1 0;
    }
    body:has(aside.dma):has(main.dma)::after {
      flex: 1 0 0;
      content: " ";
      display: block;
    }
  }
  @media (max-width: 480px) {
    body:has(aside.dma):has(main.dma) {
      display: block;
    }
  }
  main.dma {
    display: block;
  }
  @media (min-width: 481px) {
    main.dma {
      flex: 1;
      width: 0;
      height: fit-content;
    }
    main.dma.bordered {
      margin: var(--stripes-nav-size) 0;
      padding: 0 1rem;
      padding-bottom: 1rem;
      border: var(--border-width) solid var(--border-color);
      border-top-width: var(--border-width-header);
    }
    main.dma:not(.bordered), main.dma.borderless {
      margin-top: var(--stripes-nav-size);
      margin-bottom: var(--stripes-nav-size);
      padding-right: 1em;
    }
  }
  @media (max-width: 480px) {
    main.dma {
      flex: 1;
      margin: 0 1em;
      padding-bottom: 1rem;
    }
  }
  @media not (prefers-reduced-motion: reduce) {
    main.dma {
      view-transition-name: page;
    }
  }
  main.dma h1 {
    line-height: 1;
  }
  aside.dma {
    position: relative;
    font-family: var(--monospace-font-family);
  }
  @media (min-width: 481px) {
    aside.dma {
      display: flex;
      flex-direction: column;
      padding: var(--stripes-nav-size) 0;
      padding-left: 1em;
    }
    aside.dma .stripes-background {
      display: block;
      position: absolute;
      top: 0;
      right: 1px;
      width: auto;
      height: 100%;
      z-index: 0;
    }
    aside.dma .stripes-background.horizontal {
      display: none;
    }
    aside.dma .brand-header,
    aside.dma .navigation {
      display: block;
      width: calc(2rem + var(--brand-logo-width));
      margin: 0;
      margin-left: auto;
      margin-right: -1em;
      padding: 0 1rem;
      border: var(--border-width) solid var(--border-color);
      border-top-width: var(--border-width-header);
    }
    aside.dma .brand-header {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: var(--stripes-nav-padding);
      padding-top: var(--stripes-nav-padding);
      padding-bottom: var(--stripes-nav-padding);
    }
    aside.dma .navigation {
      font-weight: 340;
      margin-top: var(--stripes-nav-size);
      margin-bottom: auto;
    }
    aside.dma .navigation .navigation-summary {
      display: none;
    }
    aside.dma .navigation .menu-section {
      display: flex;
      flex-direction: column;
      text-align: right;
    }
    aside.dma .navigation .menu-section:has(.menu-section) {
      gap: 1em;
    }
    aside.dma .navigation .menu-title {
      text-align: right;
    }
    aside.dma .navigation .menu-title::after {
      width: 1em;
      content: " ▾";
      display: inline-block;
    }
    aside.dma .navigation .menu-links {
      width: 100%;
    }
    aside.dma .navigation .menu-link::after {
      content: "·";
      display: inline-block;
    }
    aside.dma .navigation .menu-link.active::after {
      content: "|";
    }
  }
  @media (max-width: 480px) {
    aside.dma {
      width: 100%;
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    aside.dma .stripes-background {
      display: none;
    }
    aside.dma .stripes-background.horizontal {
      --stripe-horizontal-gap: 0.1rem;
      --stripe-horizontal-height: 0.25rem;
      display: block;
    }
    aside.dma .stripes-background.horizontal .stripe {
      background: var(--brand-color);
      background-color: transparent;
      background-image: linear-gradient(to right, var(--brand-color) 0%, var(--brand-color) 60%, transparent 70%, transparent 100%);
    }
    aside.dma .brand-header {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      margin: 0 1em;
      padding: 0;
    }
    aside.dma .logo-container img {
      max-width: 100%;
      height: auto;
    }
    aside.dma .acronyms {
      font-size: 1em;
    }
    aside.dma .navigation {
      white-space: nowrap;
      line-height: 1.5;
      margin: 0 1em;
      border: var(--border-width) solid var(--border-color);
    }
    aside.dma .navigation .navigation-summary {
      border-top: var(--border-width-header) solid var(--border-color);
      padding: 0 0.5em;
      text-align: right;
    }
    aside.dma .navigation .menu-section:last-child {
      margin-bottom: 1em;
    }
    aside.dma .navigation .menu-title {
      margin: 0;
      padding: 0 1em;
    }
    aside.dma .navigation .menu-link a {
      display: block;
      padding: 0 2em;
    }
    aside.dma .navigation .menu-link:hover, aside.dma .navigation .menu-link:focus {
      background-color: var(--border-color);
    }
  }
  aside.dma .menu-title {
    color: var(--text-color);
    transition: color var(--transition-duration) ease-in-out;
    margin: 0;
    margin-bottom: 0.25em;
    font-size: inherit;
    font-weight: 700;
    font-family: inherit;
  }
  aside.dma .menu-links {
    margin: 0;
    margin-left: auto;
    padding-left: 0;
    list-style: none;
    list-style-type: none;
  }
  aside.dma .menu-links li {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  aside.dma .menu-links li.active {
    color: var(--background-color);
    background-color: var(--menu-color);
  }
  aside.dma .menu-links a {
    color: currentColor;
  }
  aside.dma .footer {
    font-size: 0.9em;
  }
  @media (min-width: 481px) {
    aside.dma .footer {
      padding: var(--stripes-nav-padding) 0;
      text-align: right;
      margin-top: auto;
    }
  }
  @media (max-width: 480px) {
    aside.dma .footer {
      padding-top: 0.5em;
      padding-bottom: 1em;
    }
  }
  aside.dma .footer:empty {
    display: none;
  }
  aside.dma > *:not(.stripes-background) {
    z-index: 1;
    background-color: var(--background-color);
  }
  aside.dma.first-visit {
    --animation-easing: cubic-bezier(0.33, 1, 0.68, 1);
    --slide-animation-amount: 2em;
  }
  @media (min-width: 481px) {
    aside.dma.first-visit {
      --stripes-duration: 1.5s;
      --stripes-delay: 0.2s;
      --nav-run-in-delay: 0.7s;
      --nav-run-in-duration: 0.7s;
    }
    aside.dma.first-visit .stripes {
      animation: stripes-animation calc(var(--stripes-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc(var(--stripes-delay) * var(--animation-scalar));
    }
    aside.dma.first-visit > *:not(.stripes-background) {
      animation: nav-container-animation calc(var(--nav-run-in-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc(var(--nav-run-in-delay) * var(--animation-scalar));
    }
    aside.dma.first-visit > *:not(.stripes-background) > * {
      animation: slide-from-left-animation calc(var(--nav-run-in-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc(var(--nav-run-in-delay) * var(--animation-scalar));
    }
    aside.dma.first-visit .acronyms > li:nth-child(1) {
      animation: slide-from-left-animation calc(var(--stripes-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripes-delay) + 2 * 0.5s) * var(--animation-scalar));
    }
    aside.dma.first-visit .acronyms > li:nth-child(2) {
      animation: slide-from-left-animation calc(var(--stripes-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripes-delay) + 3 * 0.5s) * var(--animation-scalar));
    }
    aside.dma.first-visit .acronyms > li:nth-child(3) {
      animation: slide-from-left-animation calc(var(--stripes-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripes-delay) + 4 * 0.5s) * var(--animation-scalar));
    }
  }
  @media (max-width: 480px) {
    aside.dma.first-visit {
      --stripe-animation: stripes-animation;
      --stripe-duration: 0.5s;
      --stripe-delay: 0.3s;
    }
    aside.dma.first-visit .acronyms {
      --stripe-animation: slide-from-right-animation;
    }
    aside.dma.first-visit .stripe:nth-child(1),
    aside.dma.first-visit .acronyms > li:nth-child(1) {
      animation: var(--stripe-animation) calc(var(--stripe-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripe-delay) + 0.2s) * var(--animation-scalar));
    }
    aside.dma.first-visit .stripe:nth-child(2),
    aside.dma.first-visit .acronyms > li:nth-child(2) {
      animation: var(--stripe-animation) calc(var(--stripe-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripe-delay) + 0.4s) * var(--animation-scalar));
    }
    aside.dma.first-visit .stripe:nth-child(3),
    aside.dma.first-visit .acronyms > li:nth-child(3) {
      animation: var(--stripe-animation) calc(var(--stripe-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc((var(--stripe-delay) + 0.6s) * var(--animation-scalar));
    }
    aside.dma.first-visit .logo-container,
    aside.dma.first-visit .navigation {
      animation: nav-container-animation calc(var(--stripe-duration) * var(--animation-scalar)) var(--animation-easing) both;
      animation-delay: calc(var(--stripe-delay) * var(--animation-scalar));
    }
  }
  @keyframes stripes-animation {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes nav-container-animation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes slide-from-left-animation {
    0% {
      transform: translateX(calc(-1 * var(--slide-animation-amount)));
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-from-right-animation {
    0% {
      transform: translateX(var(--slide-animation-amount));
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .notecard {
    --notecard-stripe-background-color-1: color-mix(
      in srgb,
      var(--notice-color) 30%,
      var(--blockquote-background-color)
    );
    --notecard-stripe-background-color-2: color-mix(
      in srgb,
      var(--notice-color) 25%,
      var(--blockquote-background-color)
    );
    --notecard-stripe-background-color: var(--notecard-stripe-background-color-1);
    --notecard-stripe-background-image: repeating-linear-gradient(
      135deg,
      var(--background-color-1) 0,
      var(--background-color-1) var(--notecard-stripe-width),
      var(--background-color-2) var(--notecard-stripe-width),
      var(--background-color-2) var(--notecard-stripe-width-2)
    );
    --notecard-border-color: var(--blockquote-border-color);
    --notecard-border-color: color-mix(
      in srgb,
      var(--notice-color) 50%,
      var(--blockquote-background-color)
    );
    --notice-color: var(--color);
  }
  .notecard.note {
    --notice-color: var(--b-color);
    --notecard-stripe-width: 0;
  }
  .notecard.warning {
    --notice-color: var(--y-color);
  }
  .notecard.error {
    --notice-color: var(--r-color);
  }
  .notecard {
    margin: 1.5rem 0 0.5rem 0;
    padding: 0;
    overflow: hidden;
    color: var(--blockquote-color);
    border: var(--border-width) solid var(--notecard-border-color);
    border-radius: var(--border-radius-block);
    background-color: var(--blockquote-background-color);
  }
  .notecard:is(blockquote) {
    font-size: 0.9em;
  }
  .notecard > :first-child {
    font-family: var(--monospace-font-family);
    margin-top: 0;
    padding: 0.5rem 0.66rem;
    padding-top: calc(0.5rem - var(--border-width));
    border-bottom: var(--border-width) solid var(--notecard-border-color);
    background-color: var(--notecard-stripe-background-color);
    background-image: var(--notecard-stripe-background-image);
  }
  .notecard > :first-child > strong:first-child {
    color: var(--notice-color);
  }
  .notecard > :first-child:not(summary)::before {
    content: "";
    display: inline-block;
    vertical-align: baseline;
    width: 0.4em;
    height: 0.4em;
    border: 0.15em solid var(--notecard-stripe-background-color-1);
    outline: 0.15em solid var(--notice-color);
    background-color: var(--notice-color);
    margin-right: 0.5em;
  }
  .notecard > :not(:first-child) {
    margin-left: 0.66rem;
    margin-right: 0.66rem;
  }
  details {
    background-color: var(--background-color);
    margin: 1rem 0;
  }
  details summary {
    cursor: pointer;
    padding: 0.25em 0;
  }
  details[open] summary {
    font-weight: 700;
  }
  details > *:not(summary) {
    margin-left: 1rem;
  }
  details.notecard:not([open]) > summary {
    border-bottom: none;
  }
  details.notecard > summary::before {
    content: none;
  }
  .accordion {
    margin-bottom: 1rem;
  }
  .accordion details.notecard {
    margin: 0;
    border-top: none;
  }
  .accordion details.notecard:first-child {
    border-top: var(--border-width) solid var(--notecard-border-color, var(--border-color));
  }
  .accordion details.notecard:not([open]) summary {
    border: none;
    background-color: var(--background-color);
  }
  :is(main, section):first-child > details:first-child {
    margin-top: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
