/* src/templates/css/global.css */
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --spacing: 0.25rem;
    --leading-normal: 1.5;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: color-mix(in oklab, currentColor 50%, transparent);
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    -webkit-appearance: button;
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .static {
    position: static;
  }
  .container {
    width: 100%;
  }
  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }
  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }
  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }
  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }
  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }
  .my-1 {
    margin-block: calc(var(--spacing) * 1);
  }
  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }
  .mt-\[40px\] {
    margin-top: 40px;
  }
  .mt-\[100px\] {
    margin-top: 100px;
  }
  .mb-auto {
    margin-bottom: auto;
  }
  .ml-auto {
    margin-left: auto;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .inline {
    display: inline;
  }
  .h-\[80px\] {
    height: 80px;
  }
  .h-full {
    height: 100%;
  }
  .w-full {
    width: 100%;
  }
  .transform {
    transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-10 {
    gap: calc(var(--spacing) * 10);
  }
  .gap-\[20px\] {
    gap: 20px;
  }
  .gap-\[30px\] {
    gap: 30px;
  }
  .gap-\[100px\] {
    gap: 100px;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .p-1 {
    padding: calc(var(--spacing) * 1);
  }
  .px-\[10vw\] {
    padding-inline: 10vw;
  }
  .pl-\[10px\] {
    padding-left: 10px;
  }
  .leading-normal {
    --tw-leading: var(--leading-normal);
    line-height: var(--leading-normal);
  }
  .italic {
    font-style: italic;
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .filter {
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .transition {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to,
      opacity,
      box-shadow,
      transform,
      translate,
      scale,
      rotate,
      filter,
      -webkit-backdrop-filter,
      backdrop-filter;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../woff2/InterVariable-AM3KRH5U.woff2") format("woff2");
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../woff2/InterVariable-Italic-ZENN32PX.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../woff2/Inter-Thin-D2WWV233.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../woff2/Inter-ThinItalic-POIGQG4N.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../woff2/Inter-ExtraLight-K7ORWP56.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../woff2/Inter-ExtraLightItalic-35OFXG3A.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../woff2/Inter-Light-R2IJJU4I.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../woff2/Inter-LightItalic-DX6PWM2I.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../woff2/Inter-Regular-GS5EHSMB.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../woff2/Inter-Italic-IHS2W5JK.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../woff2/Inter-Medium-5IRUMIHZ.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../woff2/Inter-MediumItalic-I6DTMVID.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../woff2/Inter-SemiBold-SVBZ7NC6.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../woff2/Inter-SemiBoldItalic-3TPMFI5T.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../woff2/Inter-Bold-UGVMS3V6.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../woff2/Inter-BoldItalic-XDGHFO5T.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../woff2/Inter-ExtraBold-NR5OG37O.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../woff2/Inter-ExtraBoldItalic-MRZJRNV2.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../woff2/Inter-Black-6PLUPCVU.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../woff2/Inter-BlackItalic-E5KP4DKU.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../woff2/InterDisplay-Thin-AKHK4O7D.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../woff2/InterDisplay-ThinItalic-OLRESIJA.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../woff2/InterDisplay-ExtraLight-ULIF3EVB.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../woff2/InterDisplay-ExtraLightItalic-ASB7QCDM.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../woff2/InterDisplay-Light-CAO4JSIU.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../woff2/InterDisplay-LightItalic-N5AOG2XN.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../woff2/InterDisplay-Regular-O4OC6GHS.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../woff2/InterDisplay-Italic-BZ4CESK6.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../woff2/InterDisplay-Medium-VZB2EIUW.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../woff2/InterDisplay-MediumItalic-XMZEXNFC.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../woff2/InterDisplay-SemiBold-OYJPZN4N.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../woff2/InterDisplay-SemiBoldItalic-Q5TMTS3C.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../woff2/InterDisplay-Bold-H4BXAIEW.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../woff2/InterDisplay-BoldItalic-IVOSLA6M.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../woff2/InterDisplay-ExtraBold-LDXDL7PR.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../woff2/InterDisplay-ExtraBoldItalic-N26TLRTO.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../woff2/InterDisplay-Black-G2YNVQK5.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../woff2/InterDisplay-BlackItalic-B4YK5UXI.woff2") format("woff2");
}
@font-feature-values InterVariable {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1;
    alt-3: 9;
    open-4: 2;
    open-6: 3;
    open-9: 4;
    lc-l-with-tail: 5;
    simplified-u: 6;
    alt-double-s: 7;
    uc-i-with-serif: 8;
    uc-g-with-spur: 10;
    single-story-a: 11;
    compact-lc-f: 12;
    compact-lc-t: 13;
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1;
    disambiguation: 2;
    disambiguation-except-zero: 4;
    round-quotes-and-commas: 3;
    square-punctuation: 7;
    square-quotes: 8;
    circled-characters: 5;
    squared-characters: 6;
  }
}
@font-feature-values Inter {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1;
    alt-3: 9;
    open-4: 2;
    open-6: 3;
    open-9: 4;
    lc-l-with-tail: 5;
    simplified-u: 6;
    alt-double-s: 7;
    uc-i-with-serif: 8;
    uc-g-with-spur: 10;
    single-story-a: 11;
    compact-lc-f: 12;
    compact-lc-t: 13;
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1;
    disambiguation: 2;
    disambiguation-except-zero: 4;
    round-quotes-and-commas: 3;
    square-punctuation: 7;
    square-quotes: 8;
    circled-characters: 5;
    squared-characters: 6;
  }
}
@font-feature-values InterDisplay {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1;
    alt-3: 9;
    open-4: 2;
    open-6: 3;
    open-9: 4;
    lc-l-with-tail: 5;
    simplified-u: 6;
    alt-double-s: 7;
    uc-i-with-serif: 8;
    uc-g-with-spur: 10;
    single-story-a: 11;
    compact-lc-f: 12;
    compact-lc-t: 13;
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1;
    disambiguation: 2;
    disambiguation-except-zero: 4;
    round-quotes-and-commas: 3;
    square-punctuation: 7;
    square-quotes: 8;
    circled-characters: 5;
    squared-characters: 6;
  }
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url("../woff2/iosevka-glitchcomet-regular-FPOVUY5F.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-regular-PEW2RFTI.ttf") format("truetype");
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 400;
  font-style: oblique;
  src: url("../woff2/iosevka-glitchcomet-oblique-ZAJUQU7N.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-oblique-5JB5RJM6.ttf") format("truetype");
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 400;
  font-style: italic;
  src: url("../woff2/iosevka-glitchcomet-italic-TUIL3LBB.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-italic-YIMYOMPD.ttf") format("truetype");
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url("../woff2/iosevka-glitchcomet-bold-2EZRIT3D.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-bold-MUSU2BP6.ttf") format("truetype");
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 700;
  font-style: oblique;
  src: url("../woff2/iosevka-glitchcomet-boldoblique-QJ66VLKK.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-boldoblique-5ZNQSVYO.ttf") format("truetype");
}
@font-face {
  font-family: "Iosevka-Glitchcomet";
  font-display: swap;
  font-weight: 700;
  font-style: italic;
  src: url("../woff2/iosevka-glitchcomet-bolditalic-KTLWTETZ.woff2") format("woff2"), url("../ttf/iosevka-glitchcomet-bolditalic-CLZLBZA4.ttf") format("truetype");
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
html {
  font-size: 16px;
}
:root {
  font-family: Inter, sans-serif;
  font-feature-settings:
    "liga" 1,
    "calt" 1,
    "tnum" 1,
    "ss01" 1,
    "ss02" 1,
    "ss07" 1,
    "ss08" 1;
  --font-sans: Inter, sans-serif;
  --font-mono: "Iosevka-Glitchcomet", monospace;
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
    --font-sans: InterVariable, sans-serif;
  }
}
.typography {
  font-size: 16px;
  line-height: 1.4;
}
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  font-size: calc((20 / 16) * 1em);
  font-family: var(--font-mono);
  line-height: 1.2;
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-weight: bold;
}
.typography h1 {
  font-size: calc((30 / 16) * 1em);
}
.typography h2 {
  font-size: calc((26 / 16) * 1em);
}
.typography h3 {
  font-size: calc((22 / 16) * 1em);
}
.typography p {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.typography strong {
  font-weight: 650;
}
.typography em {
  font-weight: 300;
}
.typography em strong {
  font-weight: 650;
}
.typography a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.typography ul {
  padding-left: 2.5em;
  list-style-type: disc;
}
.typography ul li {
  margin-bottom: 0.4em;
}
.typography .closer-ul p {
  margin-bottom: 0.4em;
}
.typography .closer-ul ul {
  margin-bottom: 1.5em;
}
.typography pre,
.typography code {
  font-family: var(--font-mono);
  font-size: calc((14 / 16) * 1em);
}
.typography .wrapped-code pre code {
  word-break: break-all;
  white-space: break-spaces;
}
.typography pre {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 2em;
}
.typography blockquote {
  border-left: 1px solid black;
  padding-left: 1.5em;
  opacity: 0.7;
}
.typography img {
  width: 100%;
}
.typography .katex {
  font-size: 18px;
}
.typography .katex-display {
  overflow-x: auto;
  margin: 2.0em 0;
}
.typography table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: calc((14 / 16) * 1em);
  margin-bottom: 2.0em;
}
.typography td,
.typography th {
  border: 1px solid black;
  padding-left: 1em;
  text-align: start;
}
.typography tr:first-child th {
  border-top: 0;
}
.typography tr:last-child td {
  border-bottom: 0;
}
.typography tr td:first-child,
.typography tr th:first-child {
  border-left: 0;
}
.typography tr td:last-child,
.typography tr th:last-child {
  border-right: 0;
}
.typography .subtext {
  margin-top: -1.2em;
  text-align: center;
  white-space: nowrap;
  font-size: calc((14 / 16) * 1em);
}
@media only screen and (max-width: 842px) {
  html,
  .typography {
    font-size: 14px;
  }
  .typography .katex {
    font-size: 16px;
  }
  .typography table {
    font-size: calc((12 / 16) * 1em);
  }
}
:root {
  --dark-bg: #0b0b0e;
  --dark-fg: #bcb8cb;
  --dark-fg-dull: #5c6574;
  --dark-fg-bold: #f9f0f0;
  --dark-border: #222038;
  --dark-border-inverted: #525063;
  --dark-cyan: #6fbaf1;
  --dark-orange: #ef8164;
  --dark-red: #fc5d7c;
  --dark-code-fg: #9b83d9;
  --dark-code-bg: #14141a;
  --dark-math: #d7b5b5;
  --light-bg: #f4f4f7;
  --light-fg: #3f485a;
  --light-fg-dull: #8c96a7;
  --light-fg-bold: #3e3b3b;
  --light-border: #d5dce6;
  --light-border-inverted: #989fa9;
  --light-cyan: #2f73a7;
  --light-orange: #da6646;
  --light-red: #f85978;
  --light-code-fg: #361682;
  --light-code-bg: #e2e2ef;
  --light-math: #904841;
  --color-bg: var(--dark-bg);
  --color-fg: var(--dark-fg);
  --color-fg-dull: var(--dark-fg-dull);
  --color-fg-bold: var(--dark-fg-bold);
  --color-border: var(--dark-border);
  --color-border-inverted: var(--dark-border-inverted);
  --color-cyan: var(--dark-cyan);
  --color-orange: var(--dark-orange);
  --color-red: var(--dark-red);
  --color-code-fg: var(--dark-code-fg);
  --color-code-bg: var(--dark-code-bg);
  --color-math: var(--dark-math);
}
html *:focus-visible {
  outline: 1px solid var(--color-red);
  outline-offset: 4px;
}
body {
  color: var(--color-fg);
  background-color: var(--color-bg);
}
a {
  color: var(--color-cyan);
}
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--color-red);
  outline-offset: 4px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-orange);
}
strong,
b {
  color: var(--color-fg-bold);
}
.typography blockquote {
  border-left: 1px solid var(--color-cyan);
}
.typography .subtext {
  color: var(--color-fg-dull);
}
pre,
code {
  font-family: var(--font-mono);
}
.typography table td,
.typography table th {
  border: 1px solid var(--color-border);
}
.typography .katex {
  color: var(--color-math);
}
footer {
  color: var(--color-fg-dull);
}
#primary-nav ul {
  font-size: calc((16 / 16) * 1em);
  font-family: var(--font-mono);
}
#primary-nav ul a,
#primary-nav ul button,
#primary-nav ul span {
  color: var(--color-fg);
}
#primary-nav .current span {
  font-weight: bold;
  color: var(--color-red);
}
#primary-nav #theme-label {
  display: flex;
  align-items: center;
  position: relative;
}
#primary-nav svg {
  height: 1em;
}
#primary-nav #theme-moon,
#primary-nav #theme-sun {
  transition: all 0.2s ease;
  transform-origin: center;
}
#primary-nav #theme-moon {
  fill: var(--color-cyan);
}
#primary-nav #theme-sun {
  fill: var(--color-orange);
}
#primary-nav input[type=checkbox] {
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}
:is(#primary-nav input[type=checkbox]:not(:checked) + svg) #theme-moon {
  transform: scale(0);
}
:is(#primary-nav input[type=checkbox]:checked + svg) #theme-sun {
  transform: scale(0);
}
#primary-nav input[type=checkbox]:disabled {
  cursor: not-allowed;
}
:is(#primary-nav input[type=checkbox]:disabled + svg) #theme-moon {
  fill: var(--color-border);
}
:is(#primary-nav input[type=checkbox]:disabled + svg) #theme-sun {
  fill: var(--color-border);
}
#primary-nav input[type=checkbox]:focus + svg {
  outline: 1px solid var(--color-red);
  outline-offset: 4px;
}
#primary-nav input[type=checkbox]:focus:not(:focus-visible) + svg {
  outline: none;
}
#skipnav:focus {
  border: unset;
  padding: unset;
  margin: unset;
  height: unset;
  width: unset;
  overflow: unset;
  clip: unset;
  clip: unset;
  clip-path: unset;
  white-space: unset;
  color: var(--color-fg-dull);
  background-color: var(--color-bg);
  padding: 0.2em 0.8em;
  font-size: calc((14 / 16) * 1em);
  font-family: var(--font-mono);
  margin-top: 2em;
}
footer {
  font-size: calc((12 / 16) * 1em);
  font-family: var(--font-mono);
}
.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}
.hover-effect a::before,
.hover-effect a::after {
  display: inline-block;
  opacity: 0;
  transition: transform 0.3s, opacity 0.2s;
}
.hover-effect a::before {
  margin-left: -0.60em;
  position: absolute;
  content: "[";
  transform: translateX(10px);
}
.hover-effect a::after {
  margin-left: -0.05em;
  position: absolute;
  content: "]";
  transform: translateX(-10px);
}
.hover-effect a:hover::before,
.hover-effect a:hover::after,
.hover-effect a:focus::before,
.hover-effect a:focus::after {
  opacity: 1;
  transform: translateX(0px);
}
@property --tw-rotate-x { syntax: "*"; inherits: false; initial-value: rotateX(0); }
@property --tw-rotate-y { syntax: "*"; inherits: false; initial-value: rotateY(0); }
@property --tw-rotate-z { syntax: "*"; inherits: false; initial-value: rotateZ(0); }
@property --tw-skew-x { syntax: "*"; inherits: false; initial-value: skewX(0); }
@property --tw-skew-y { syntax: "*"; inherits: false; initial-value: skewY(0); }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
/*! tailwindcss v4.0.15 | MIT License | https://tailwindcss.com */
