/* frontend/styles/index.css */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      sans-serif;
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-xl: 36rem;
    --container-3xl: 48rem;
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --radius-lg: 0.5rem;
    --radius-2xl: 1rem;
    --blur-sm: 8px;
    --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);
    --text-132: clamp(3.5rem, 8vw + 1.5rem, 8.75rem);
    --text-132--line-height: 1;
    --text-132--font-weight: 300;
    --text-132--letter-spacing: -0.04em;
    --text-96: clamp(2.625rem, 5vw + 1rem, 6rem);
    --text-96--line-height: .97;
    --text-96--font-weight: 300;
    --text-96--letter-spacing: -0.03em;
    --text-84: clamp(2.625rem, 4.5vw + 1rem, 5.25rem);
    --text-84--line-height: 1.05;
    --text-84--font-weight: 300;
    --text-84--letter-spacing: -0.03em;
    --text-60: clamp(2.25rem, 4vw + 1.1rem, 3.75rem);
    --text-60--line-height: 1.08;
    --text-60--font-weight: 300;
    --text-60--letter-spacing: -0.025em;
    --text-48: clamp(1.875rem, 2.75vw + 1.25rem, 3rem);
    --text-48--line-height: 1.1;
    --text-48--font-weight: 300;
    --text-48--letter-spacing: -0.02em;
    --text-32: clamp(1.875rem, 0.5vw + 1.7rem, 2rem);
    --text-32--line-height: 1.15;
    --text-32--font-weight: 300;
    --text-28: clamp(1.125rem, 2vw + 0.9rem, 1.75rem);
    --text-28--line-height: 1.3;
    --text-28--font-weight: 300;
    --text-28--letter-spacing: -0.01em;
    --text-25: clamp(1.125rem, 1.5vw + 1rem, 1.5625rem);
    --text-25--line-height: 1.3;
    --text-25--font-weight: 300;
    --text-20: clamp(1rem, 0.4vw + 0.95rem, 1.25rem);
    --text-20--line-height: 1.75;
    --text-20--font-weight: 400;
    --text-14: clamp(0.875rem, 0.1vw + 0.86rem, 0.9375rem);
    --text-14--line-height: 1.75;
    --text-14--font-weight: 400;
    --text-12: 0.75rem;
    --text-12--line-height: 1.4;
    --text-12--font-weight: 400;
    --text-11: clamp(0.625rem, 0.05vw + 0.62rem, 0.6875rem);
    --text-11--line-height: 1.4;
    --text-11--font-weight: 400;
    --text-11--letter-spacing: 0.14em;
  }
}
@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;
    -o-tab-size: 4;
    tab-size: 4;
    font-family:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      sans-serif;
    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: normal;
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-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 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:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: normal;
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-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;
  }
  ::-moz-placeholder {
    opacity: 1;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::-moz-placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        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;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    -webkit-appearance: button;
    -moz-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 {
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .inset-0 {
    inset: calc(0.25rem * 0);
    inset: calc(var(--spacing) * 0);
  }
  .inset-x-10 {
    inset-inline: calc(0.25rem * 10);
    inset-inline: calc(var(--spacing) * 10);
  }
  .top-1\/2 {
    top: calc(1/2 * 100%);
  }
  .z-10 {
    z-index: 10;
  }
  .container {
    width: 100%;
    @media (min-width: 40rem) {
      max-width: 40rem;
    }
    @media (min-width: 48rem) {
      max-width: 48rem;
    }
    @media (min-width: 64rem) {
      max-width: 64rem;
    }
    @media (min-width: 80rem) {
      max-width: 80rem;
    }
    @media (min-width: 96rem) {
      max-width: 96rem;
    }
  }
  .m-0 {
    margin: calc(0.25rem * 0);
    margin: calc(var(--spacing) * 0);
  }
  .-mx-10 {
    margin-inline: calc(0.25rem * -10);
    margin-inline: calc(var(--spacing) * -10);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .my-8 {
    margin-block: calc(0.25rem * 8);
    margin-block: calc(var(--spacing) * 8);
  }
  .my-10 {
    margin-block: calc(0.25rem * 10);
    margin-block: calc(var(--spacing) * 10);
  }
  .prose {
    color: oklch(37.3% 0.034 259.733);
    color: var(--tw-prose-body);
    max-width: 65ch;
    :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.25em;
      margin-bottom: 1.25em;
    }
    :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-lead);
      font-size: 1.25em;
      line-height: 1.6;
      margin-top: 1.2em;
      margin-bottom: 1.2em;
    }
    :where(a):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-links);
      text-decoration: underline;
      font-weight: 500;
    }
    :where(strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-bold);
      font-weight: 600;
    }
    :where(a strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(blockquote strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(thead th strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: decimal;
      margin-top: 1.25em;
      margin-bottom: 1.25em;
      padding-inline-start: 1.625em;
    }
    :where(ol[type=A]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: upper-alpha;
    }
    :where(ol[type=a]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: lower-alpha;
    }
    :where(ol[type=A s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: upper-alpha;
    }
    :where(ol[type=a s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: lower-alpha;
    }
    :where(ol[type=I]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: upper-roman;
    }
    :where(ol[type=i]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: lower-roman;
    }
    :where(ol[type=I s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: upper-roman;
    }
    :where(ol[type=i s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: lower-roman;
    }
    :where(ol[type="1"]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: decimal;
    }
    :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
      list-style-type: disc;
      margin-top: 1.25em;
      margin-bottom: 1.25em;
      padding-inline-start: 1.625em;
    }
    :where(ol > li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
      font-weight: 400;
      color: var(--tw-prose-counters);
    }
    :where(ul > li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
      color: var(--tw-prose-bullets);
    }
    :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      margin-top: 1.25em;
    }
    :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
      border-color: var(--tw-prose-hr);
      border-top-width: 1px;
      margin-top: 3em;
      margin-bottom: 3em;
    }
    :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 500;
      font-style: italic;
      color: var(--tw-prose-quotes);
      border-inline-start-width: 0.25rem;
      border-inline-start-color: var(--tw-prose-quote-borders);
      quotes: "\201c""\201d""\2018""\2019";
      margin-top: 1.6em;
      margin-bottom: 1.6em;
      padding-inline-start: 1em;
    }
    :where(blockquote p:first-of-type):not(:where([class~=not-prose], [class~=not-prose] *))::before {
      content: open-quote;
    }
    :where(blockquote p:last-of-type):not(:where([class~=not-prose], [class~=not-prose] *))::after {
      content: close-quote;
    }
    :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 800;
      font-size: 2.25em;
      margin-top: 0;
      margin-bottom: 0.8888889em;
      line-height: 1.1111111;
    }
    :where(h1 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 900;
      color: inherit;
    }
    :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 700;
      font-size: 1.5em;
      margin-top: 2em;
      margin-bottom: 1em;
      line-height: 1.3333333;
    }
    :where(h2 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 800;
      color: inherit;
    }
    :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      font-size: 1.25em;
      margin-top: 1.6em;
      margin-bottom: 0.6em;
      line-height: 1.6;
    }
    :where(h3 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 700;
      color: inherit;
    }
    :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      margin-top: 1.5em;
      margin-bottom: 0.5em;
      line-height: 1.5;
    }
    :where(h4 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 700;
      color: inherit;
    }
    :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
      display: block;
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-weight: 500;
      font-family: inherit;
      color: var(--tw-prose-kbd);
      box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
      font-size: 0.875em;
      border-radius: 0.3125rem;
      padding-top: 0.1875em;
      padding-inline-end: 0.375em;
      padding-bottom: 0.1875em;
      padding-inline-start: 0.375em;
    }
    :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-code);
      font-weight: 600;
      font-size: 0.875em;
    }
    :where(code):not(:where([class~=not-prose], [class~=not-prose] *))::before {
      content: "`";
    }
    :where(code):not(:where([class~=not-prose], [class~=not-prose] *))::after {
      content: "`";
    }
    :where(a code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(h1 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
      font-size: 0.875em;
    }
    :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
      font-size: 0.9em;
    }
    :where(h4 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(blockquote code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(thead th code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: inherit;
    }
    :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-pre-code);
      background-color: var(--tw-prose-pre-bg);
      overflow-x: auto;
      font-weight: 400;
      font-size: 0.875em;
      line-height: 1.7142857;
      margin-top: 1.7142857em;
      margin-bottom: 1.7142857em;
      border-radius: 0.375rem;
      padding-top: 0.8571429em;
      padding-inline-end: 1.1428571em;
      padding-bottom: 0.8571429em;
      padding-inline-start: 1.1428571em;
    }
    :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      background-color: transparent;
      border-width: 0;
      border-radius: 0;
      padding: 0;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      font-family: inherit;
      line-height: inherit;
    }
    :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *))::before {
      content: none;
    }
    :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *))::after {
      content: none;
    }
    :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
      width: 100%;
      table-layout: auto;
      margin-top: 2em;
      margin-bottom: 2em;
      font-size: 0.875em;
      line-height: 1.7142857;
    }
    :where(thead):not(:where([class~=not-prose], [class~=not-prose] *)) {
      border-bottom-width: 1px;
      border-bottom-color: var(--tw-prose-th-borders);
    }
    :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      vertical-align: bottom;
      padding-inline-end: 0.5714286em;
      padding-bottom: 0.5714286em;
      padding-inline-start: 0.5714286em;
    }
    :where(tbody tr):not(:where([class~=not-prose], [class~=not-prose] *)) {
      border-bottom-width: 1px;
      border-bottom-color: var(--tw-prose-td-borders);
    }
    :where(tbody tr:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      border-bottom-width: 0;
    }
    :where(tbody td):not(:where([class~=not-prose], [class~=not-prose] *)) {
      vertical-align: baseline;
    }
    :where(tfoot):not(:where([class~=not-prose], [class~=not-prose] *)) {
      border-top-width: 1px;
      border-top-color: var(--tw-prose-th-borders);
    }
    :where(tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
      vertical-align: top;
    }
    :where(th, td):not(:where([class~=not-prose], [class~=not-prose] *)) {
      text-align: start;
    }
    :where(figure > *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
      color: var(--tw-prose-captions);
      font-size: 0.875em;
      line-height: 1.4285714;
      margin-top: 0.8571429em;
    }
    --tw-prose-body: oklch(37.3% 0.034 259.733);
    --tw-prose-headings: oklch(21% 0.034 264.665);
    --tw-prose-lead: oklch(44.6% 0.03 256.802);
    --tw-prose-links: oklch(21% 0.034 264.665);
    --tw-prose-bold: oklch(21% 0.034 264.665);
    --tw-prose-counters: oklch(55.1% 0.027 264.364);
    --tw-prose-bullets: oklch(87.2% 0.01 258.338);
    --tw-prose-hr: oklch(92.8% 0.006 264.531);
    --tw-prose-quotes: oklch(21% 0.034 264.665);
    --tw-prose-quote-borders: oklch(92.8% 0.006 264.531);
    --tw-prose-captions: oklch(55.1% 0.027 264.364);
    --tw-prose-kbd: oklch(21% 0.034 264.665);
    --tw-prose-kbd-shadows: color-mix(in oklab, oklch(21% 0.034 264.665) 10%, transparent);
    --tw-prose-code: oklch(21% 0.034 264.665);
    --tw-prose-pre-code: oklch(92.8% 0.006 264.531);
    --tw-prose-pre-bg: oklch(27.8% 0.033 256.848);
    --tw-prose-th-borders: oklch(87.2% 0.01 258.338);
    --tw-prose-td-borders: oklch(92.8% 0.006 264.531);
    --tw-prose-invert-body: oklch(87.2% 0.01 258.338);
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: oklch(70.7% 0.022 261.325);
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: oklch(70.7% 0.022 261.325);
    --tw-prose-invert-bullets: oklch(44.6% 0.03 256.802);
    --tw-prose-invert-hr: oklch(37.3% 0.034 259.733);
    --tw-prose-invert-quotes: oklch(96.7% 0.003 264.542);
    --tw-prose-invert-quote-borders: oklch(37.3% 0.034 259.733);
    --tw-prose-invert-captions: oklch(70.7% 0.022 261.325);
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: oklch(87.2% 0.01 258.338);
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: oklch(44.6% 0.03 256.802);
    --tw-prose-invert-td-borders: oklch(37.3% 0.034 259.733);
    font-size: 1rem;
    line-height: 1.75;
    :where(picture > img):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
    :where(ol > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0.375em;
    }
    :where(ul > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0.375em;
    }
    :where(.prose > ul > li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.75em;
      margin-bottom: 0.75em;
    }
    :where(.prose > ul > li > p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.25em;
    }
    :where(.prose > ul > li > p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 1.25em;
    }
    :where(.prose > ol > li > p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.25em;
    }
    :where(.prose > ol > li > p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 1.25em;
    }
    :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.75em;
      margin-bottom: 0.75em;
    }
    :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.25em;
      margin-bottom: 1.25em;
    }
    :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.5em;
      padding-inline-start: 1.625em;
    }
    :where(hr + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h2 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h3 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h4 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0;
    }
    :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-end: 0;
    }
    :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-top: 0.5714286em;
      padding-inline-end: 0.5714286em;
      padding-bottom: 0.5714286em;
      padding-inline-start: 0.5714286em;
    }
    :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0;
    }
    :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-end: 0;
    }
    :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(.prose > :first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(.prose > :last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 0;
    }
  }
  .prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
    :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
      margin-bottom: 1.3333333em;
    }
    :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 1.2222222em;
      line-height: 1.4545455;
      margin-top: 1.0909091em;
      margin-bottom: 1.0909091em;
    }
    :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.6666667em;
      margin-bottom: 1.6666667em;
      padding-inline-start: 1em;
    }
    :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 2.6666667em;
      margin-top: 0;
      margin-bottom: 0.8333333em;
      line-height: 1;
    }
    :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 1.6666667em;
      margin-top: 1.8666667em;
      margin-bottom: 1.0666667em;
      line-height: 1.3333333;
    }
    :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 1.3333333em;
      margin-top: 1.6666667em;
      margin-bottom: 0.6666667em;
      line-height: 1.5;
    }
    :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.7777778em;
      margin-bottom: 0.4444444em;
      line-height: 1.5555556;
    }
    :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.7777778em;
      margin-bottom: 1.7777778em;
    }
    :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.7777778em;
      margin-bottom: 1.7777778em;
    }
    :where(picture > img):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.7777778em;
      margin-bottom: 1.7777778em;
    }
    :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8888889em;
      border-radius: 0.3125rem;
      padding-top: 0.2222222em;
      padding-inline-end: 0.4444444em;
      padding-bottom: 0.2222222em;
      padding-inline-start: 0.4444444em;
    }
    :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8888889em;
    }
    :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8666667em;
    }
    :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.875em;
    }
    :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8888889em;
      line-height: 1.75;
      margin-top: 2em;
      margin-bottom: 2em;
      border-radius: 0.375rem;
      padding-top: 1em;
      padding-inline-end: 1.5em;
      padding-bottom: 1em;
      padding-inline-start: 1.5em;
    }
    :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
      margin-bottom: 1.3333333em;
      padding-inline-start: 1.5555556em;
    }
    :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
      margin-bottom: 1.3333333em;
      padding-inline-start: 1.5555556em;
    }
    :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.6666667em;
      margin-bottom: 0.6666667em;
    }
    :where(ol > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0.4444444em;
    }
    :where(ul > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0.4444444em;
    }
    :where(.prose-lg > ul > li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.8888889em;
      margin-bottom: 0.8888889em;
    }
    :where(.prose-lg > ul > li > p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
    }
    :where(.prose-lg > ul > li > p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 1.3333333em;
    }
    :where(.prose-lg > ol > li > p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
    }
    :where(.prose-lg > ol > li > p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 1.3333333em;
    }
    :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.8888889em;
      margin-bottom: 0.8888889em;
    }
    :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
      margin-bottom: 1.3333333em;
    }
    :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.3333333em;
    }
    :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0.6666667em;
      padding-inline-start: 1.5555556em;
    }
    :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 3.1111111em;
      margin-bottom: 3.1111111em;
    }
    :where(hr + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h2 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h3 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(h4 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8888889em;
      line-height: 1.5;
    }
    :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-end: 0.75em;
      padding-bottom: 0.75em;
      padding-inline-start: 0.75em;
    }
    :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0;
    }
    :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-end: 0;
    }
    :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-top: 0.75em;
      padding-inline-end: 0.75em;
      padding-bottom: 0.75em;
      padding-inline-start: 0.75em;
    }
    :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-start: 0;
    }
    :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      padding-inline-end: 0;
    }
    :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 1.7777778em;
      margin-bottom: 1.7777778em;
    }
    :where(figure > *):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
      font-size: 0.8888889em;
      line-height: 1.5;
      margin-top: 1em;
    }
    :where(.prose-lg > :first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-top: 0;
    }
    :where(.prose-lg > :last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
      margin-bottom: 0;
    }
  }
  .mt-1 {
    margin-top: calc(0.25rem * 1);
    margin-top: calc(var(--spacing) * 1);
  }
  .mt-4 {
    margin-top: calc(0.25rem * 4);
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-8 {
    margin-top: calc(0.25rem * 8);
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-10 {
    margin-top: calc(0.25rem * 10);
    margin-top: calc(var(--spacing) * 10);
  }
  .mb-4 {
    margin-bottom: calc(0.25rem * 4);
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(0.25rem * 6);
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: calc(0.25rem * 8);
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-9 {
    margin-bottom: calc(0.25rem * 9);
    margin-bottom: calc(var(--spacing) * 9);
  }
  .mb-12 {
    margin-bottom: calc(0.25rem * 12);
    margin-bottom: calc(var(--spacing) * 12);
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-flex {
    display: inline-flex;
  }
  .aspect-\[3\/2\] {
    aspect-ratio: 3/2;
  }
  .h-4 {
    height: calc(0.25rem * 4);
    height: calc(var(--spacing) * 4);
  }
  .h-8 {
    height: calc(0.25rem * 8);
    height: calc(var(--spacing) * 8);
  }
  .h-9 {
    height: calc(0.25rem * 9);
    height: calc(var(--spacing) * 9);
  }
  .h-10 {
    height: calc(0.25rem * 10);
    height: calc(var(--spacing) * 10);
  }
  .h-24 {
    height: calc(0.25rem * 24);
    height: calc(var(--spacing) * 24);
  }
  .h-\[150px\] {
    height: 150px;
  }
  .h-full {
    height: 100%;
  }
  .min-h-\[60vh\] {
    min-height: 60vh;
  }
  .w-4 {
    width: calc(0.25rem * 4);
    width: calc(var(--spacing) * 4);
  }
  .w-9 {
    width: calc(0.25rem * 9);
    width: calc(var(--spacing) * 9);
  }
  .w-10 {
    width: calc(0.25rem * 10);
    width: calc(var(--spacing) * 10);
  }
  .w-24 {
    width: calc(0.25rem * 24);
    width: calc(var(--spacing) * 24);
  }
  .w-\[9px\] {
    width: 9px;
  }
  .w-\[150px\] {
    width: 150px;
  }
  .w-auto {
    width: auto;
  }
  .w-full {
    width: 100%;
  }
  .max-w-grid-large {
    max-width: 90.625rem;
  }
  .max-w-grid-medium {
    max-width: 83.75rem;
  }
  .max-w-none {
    max-width: none;
  }
  .max-w-site {
    max-width: 1500px;
  }
  .max-w-site-wide {
    max-width: 1920px;
  }
  .max-w-xl {
    max-width: 36rem;
    max-width: var(--container-xl);
  }
  .min-w-0 {
    min-width: calc(0.25rem * 0);
    min-width: calc(var(--spacing) * 0);
  }
  .flex-1 {
    flex: 1 1;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .transform {
    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;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: calc(0.25rem * 2);
    gap: calc(var(--spacing) * 2);
  }
  .gap-3 {
    gap: calc(0.25rem * 3);
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(0.25rem * 4);
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(0.25rem * 6);
    gap: calc(var(--spacing) * 6);
  }
  .space-y-0 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(0.25rem * 0) * 0);
      margin-block-start: calc(calc(var(--spacing) * 0) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(0.25rem * 0) * calc(1 - 0));
      margin-block-end: calc(calc(var(--spacing) * 0) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-4 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(0.25rem * 4) * 0);
      margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(0.25rem * 4) * calc(1 - 0));
      margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-2xl {
    border-radius: 1rem;
    border-radius: var(--radius-2xl);
  }
  .rounded-\[50px\] {
    border-radius: 50px;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: 0.5rem;
    border-radius: var(--radius-lg);
  }
  .rounded-none {
    border-radius: 0;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-none {
    --tw-border-style: none;
    border-style: none;
  }
  .border-current {
    border-color: currentcolor;
  }
  .border-white {
    border-color: #fff;
    border-color: var(--color-white);
  }
  .bg-\[\#D9D9D9\]\/10 {
    background-color: color-mix(in oklab, #D9D9D9 10%, transparent);
  }
  .bg-black {
    background-color: #000;
    background-color: var(--color-black);
  }
  .bg-black\/30 {
    background-color: color-mix(in srgb, #000 30%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      background-color: color-mix(in oklab, #000 30%, transparent);
    }
    @supports (color: color-mix(in lch, red, blue)) {
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
      }
    }
  }
  .bg-white {
    background-color: #fff;
    background-color: var(--color-white);
  }
  .object-cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-0 {
    padding: calc(0.25rem * 0);
    padding: calc(var(--spacing) * 0);
  }
  .p-6 {
    padding: calc(0.25rem * 6);
    padding: calc(var(--spacing) * 6);
  }
  .p-8 {
    padding: calc(0.25rem * 8);
    padding: calc(var(--spacing) * 8);
  }
  .px-4 {
    padding-inline: calc(0.25rem * 4);
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(0.25rem * 6);
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(0.25rem * 8);
    padding-inline: calc(var(--spacing) * 8);
  }
  .px-10 {
    padding-inline: calc(0.25rem * 10);
    padding-inline: calc(var(--spacing) * 10);
  }
  .py-1\.5 {
    padding-block: calc(0.25rem * 1.5);
    padding-block: calc(var(--spacing) * 1.5);
  }
  .py-2 {
    padding-block: calc(0.25rem * 2);
    padding-block: calc(var(--spacing) * 2);
  }
  .py-24 {
    padding-block: calc(0.25rem * 24);
    padding-block: calc(var(--spacing) * 24);
  }
  .pt-8 {
    padding-top: calc(0.25rem * 8);
    padding-top: calc(var(--spacing) * 8);
  }
  .pt-10 {
    padding-top: calc(0.25rem * 10);
    padding-top: calc(var(--spacing) * 10);
  }
  .pb-0 {
    padding-bottom: calc(0.25rem * 0);
    padding-bottom: calc(var(--spacing) * 0);
  }
  .pb-8 {
    padding-bottom: calc(0.25rem * 8);
    padding-bottom: calc(var(--spacing) * 8);
  }
  .text-center {
    text-align: center;
  }
  .text-11 {
    font-size: clamp(0.625rem, 0.05vw + 0.62rem, 0.6875rem);
    font-size: var(--text-11);
    line-height: 1.4;
    line-height: var(--tw-leading, var(--text-11--line-height));
    letter-spacing: 0.14em;
    letter-spacing: var(--tw-tracking, var(--text-11--letter-spacing));
    font-weight: 400;
    font-weight: var(--tw-font-weight, var(--text-11--font-weight));
  }
  .text-28 {
    font-size: clamp(1.125rem, 2vw + 0.9rem, 1.75rem);
    font-size: var(--text-28);
    line-height: 1.3;
    line-height: var(--tw-leading, var(--text-28--line-height));
    letter-spacing: -0.01em;
    letter-spacing: var(--tw-tracking, var(--text-28--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-28--font-weight));
  }
  .text-48 {
    font-size: clamp(1.875rem, 2.75vw + 1.25rem, 3rem);
    font-size: var(--text-48);
    line-height: 1.1;
    line-height: var(--tw-leading, var(--text-48--line-height));
    letter-spacing: -0.02em;
    letter-spacing: var(--tw-tracking, var(--text-48--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-48--font-weight));
  }
  .text-60 {
    font-size: clamp(2.25rem, 4vw + 1.1rem, 3.75rem);
    font-size: var(--text-60);
    line-height: 1.08;
    line-height: var(--tw-leading, var(--text-60--line-height));
    letter-spacing: -0.025em;
    letter-spacing: var(--tw-tracking, var(--text-60--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-60--font-weight));
  }
  .text-84 {
    font-size: clamp(2.625rem, 4.5vw + 1rem, 5.25rem);
    font-size: var(--text-84);
    line-height: 1.05;
    line-height: var(--tw-leading, var(--text-84--line-height));
    letter-spacing: -0.03em;
    letter-spacing: var(--tw-tracking, var(--text-84--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-84--font-weight));
  }
  .text-96 {
    font-size: clamp(2.625rem, 5vw + 1rem, 6rem);
    font-size: var(--text-96);
    line-height: .97;
    line-height: var(--tw-leading, var(--text-96--line-height));
    letter-spacing: -0.03em;
    letter-spacing: var(--tw-tracking, var(--text-96--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-96--font-weight));
  }
  .text-132 {
    font-size: clamp(3.5rem, 8vw + 1.5rem, 8.75rem);
    font-size: var(--text-132);
    line-height: 1;
    line-height: var(--tw-leading, var(--text-132--line-height));
    letter-spacing: -0.04em;
    letter-spacing: var(--tw-tracking, var(--text-132--letter-spacing));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-132--font-weight));
  }
  .text-12 {
    font-size: 0.75rem;
    font-size: var(--text-12);
    line-height: 1.4;
    line-height: var(--tw-leading, var(--text-12--line-height));
    font-weight: 400;
    font-weight: var(--tw-font-weight, var(--text-12--font-weight));
  }
  .text-14 {
    font-size: clamp(0.875rem, 0.1vw + 0.86rem, 0.9375rem);
    font-size: var(--text-14);
    line-height: 1.75;
    line-height: var(--tw-leading, var(--text-14--line-height));
    font-weight: 400;
    font-weight: var(--tw-font-weight, var(--text-14--font-weight));
  }
  .text-20 {
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.25rem);
    font-size: var(--text-20);
    line-height: 1.75;
    line-height: var(--tw-leading, var(--text-20--line-height));
    font-weight: 400;
    font-weight: var(--tw-font-weight, var(--text-20--font-weight));
  }
  .text-25 {
    font-size: clamp(1.125rem, 1.5vw + 1rem, 1.5625rem);
    font-size: var(--text-25);
    line-height: 1.3;
    line-height: var(--tw-leading, var(--text-25--line-height));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-25--font-weight));
  }
  .text-32 {
    font-size: clamp(1.875rem, 0.5vw + 1.7rem, 2rem);
    font-size: var(--text-32);
    line-height: 1.15;
    line-height: var(--tw-leading, var(--text-32--line-height));
    font-weight: 300;
    font-weight: var(--tw-font-weight, var(--text-32--font-weight));
  }
  .text-xl {
    font-size: 1.25rem;
    font-size: var(--text-xl);
    line-height: calc(1.75 / 1.25);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .leading-\[1\.5625\] {
    --tw-leading: 1.5625;
    line-height: 1.5625;
  }
  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: 700;
    font-weight: var(--font-weight-bold);
  }
  .font-light {
    --tw-font-weight: var(--font-weight-light);
    font-weight: 300;
    font-weight: var(--font-weight-light);
  }
  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: 400;
    font-weight: var(--font-weight-normal);
  }
  .font-semibold\! {
    --tw-font-weight: var(--font-weight-semibold) !important;
    font-weight: 600 !important;
    font-weight: var(--font-weight-semibold) !important;
  }
  .tracking-\[\.\.\.\] {
    --tw-tracking: ...;
    letter-spacing: ...;
  }
  .tracking-normal {
    --tw-tracking: var(--tracking-normal);
    letter-spacing: 0em;
    letter-spacing: var(--tracking-normal);
  }
  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: 0.025em;
    letter-spacing: var(--tracking-wide);
  }
  .whitespace-nowrap {
    white-space: nowrap;
  }
  .text-\[\#8A95A3\] {
    color: #8A95A3;
  }
  .text-\[\.\.\.\] {
    color: ...;
  }
  .text-black {
    color: #000;
    color: var(--color-black);
  }
  .text-white {
    color: #fff;
    color: var(--color-white);
  }
  .text-white\/60 {
    color: color-mix(in srgb, #fff 60%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      color: color-mix(in oklab, #fff 60%, transparent);
    }
    @supports (color: color-mix(in lch, red, blue)) {
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, var(--color-white) 60%, transparent);
      }
    }
  }
  .uppercase {
    text-transform: uppercase;
  }
  .italic {
    font-style: italic;
  }
  .filter {
    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-colors {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: 150ms;
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .hover\:bg-white {
    &:hover {
      @media (hover: hover) {
        background-color: #fff;
        background-color: var(--color-white);
      }
    }
  }
  .hover\:bg-white\/20 {
    &:hover {
      @media (hover: hover) {
        background-color: color-mix(in srgb, #fff 20%, transparent);
        @supports (color: color-mix(in lab, red, red)) {
          background-color: color-mix(in oklab, #fff 20%, transparent);
        }
        @supports (color: color-mix(in lch, red, blue)) {
          @supports (color: color-mix(in lab, red, red)) {
            background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
          }
        }
      }
    }
  }
  .hover\:text-black {
    &:hover {
      @media (hover: hover) {
        color: #000;
        color: var(--color-black);
      }
    }
  }
  .hover\:underline {
    &:hover {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .md\:p-8 {
    @media (min-width: 48rem) {
      padding: calc(0.25rem * 8);
      padding: calc(var(--spacing) * 8);
    }
  }
  .md\:p-10 {
    @media (min-width: 48rem) {
      padding: calc(0.25rem * 10);
      padding: calc(var(--spacing) * 10);
    }
  }
  .md\:px-12 {
    @media (min-width: 48rem) {
      padding-inline: calc(0.25rem * 12);
      padding-inline: calc(var(--spacing) * 12);
    }
  }
  .md\:py-32 {
    @media (min-width: 48rem) {
      padding-block: calc(0.25rem * 32);
      padding-block: calc(var(--spacing) * 32);
    }
  }
  .lg\:absolute {
    @media (min-width: 64rem) {
      position: absolute;
    }
  }
  .lg\:inset-0 {
    @media (min-width: 64rem) {
      inset: calc(0.25rem * 0);
      inset: calc(var(--spacing) * 0);
    }
  }
  .lg\:mx-0 {
    @media (min-width: 64rem) {
      margin-inline: calc(0.25rem * 0);
      margin-inline: calc(var(--spacing) * 0);
    }
  }
  .lg\:my-auto {
    @media (min-width: 64rem) {
      margin-block: auto;
    }
  }
  .lg\:mt-\[4\.5rem\] {
    @media (min-width: 64rem) {
      margin-top: 4.5rem;
    }
  }
  .lg\:mb-2 {
    @media (min-width: 64rem) {
      margin-bottom: calc(0.25rem * 2);
      margin-bottom: calc(var(--spacing) * 2);
    }
  }
  .lg\:block {
    @media (min-width: 64rem) {
      display: block;
    }
  }
  .lg\:flex {
    @media (min-width: 64rem) {
      display: flex;
    }
  }
  .lg\:hidden {
    @media (min-width: 64rem) {
      display: none;
    }
  }
  .lg\:inline {
    @media (min-width: 64rem) {
      display: inline;
    }
  }
  .lg\:aspect-auto {
    @media (min-width: 64rem) {
      aspect-ratio: auto;
    }
  }
  .lg\:h-full {
    @media (min-width: 64rem) {
      height: 100%;
    }
  }
  .lg\:min-h-\[100svh\] {
    @media (min-width: 64rem) {
      min-height: 100svh;
    }
  }
  .lg\:min-h-\[clamp\(620px\,100svh\,960px\)\] {
    @media (min-width: 64rem) {
      min-height: clamp(620px, 100svh, 960px);
    }
  }
  .lg\:max-w-3xl {
    @media (min-width: 64rem) {
      max-width: 48rem;
      max-width: var(--container-3xl);
    }
  }
  .lg\:max-w-\[739px\] {
    @media (min-width: 64rem) {
      max-width: 739px;
    }
  }
  .lg\:shrink-0 {
    @media (min-width: 64rem) {
      flex-shrink: 0;
    }
  }
  .lg\:flex-col {
    @media (min-width: 64rem) {
      flex-direction: column;
    }
  }
  .lg\:flex-wrap {
    @media (min-width: 64rem) {
      flex-wrap: wrap;
    }
  }
  .lg\:items-baseline {
    @media (min-width: 64rem) {
      align-items: baseline;
    }
  }
  .lg\:space-y-0\.5 {
    @media (min-width: 64rem) {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(0.25rem * 0.5) * 0);
        margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(0.25rem * 0.5) * calc(1 - 0));
        margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
  }
  .lg\:gap-x-2 {
    @media (min-width: 64rem) {
      -moz-column-gap: calc(0.25rem * 2);
      column-gap: calc(0.25rem * 2);
      -moz-column-gap: calc(var(--spacing) * 2);
      column-gap: calc(var(--spacing) * 2);
    }
  }
  .lg\:rounded {
    @media (min-width: 64rem) {
      border-radius: 0.25rem;
    }
  }
  .lg\:bg-black {
    @media (min-width: 64rem) {
      background-color: #000;
      background-color: var(--color-black);
    }
  }
  .lg\:bg-black\/45 {
    @media (min-width: 64rem) {
      background-color: color-mix(in srgb, #000 45%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, #000 45%, transparent);
      }
      @supports (color: color-mix(in lch, red, blue)) {
        @supports (color: color-mix(in lab, red, red)) {
          background-color: color-mix(in oklab, var(--color-black) 45%, transparent);
        }
      }
    }
  }
  .lg\:p-6 {
    @media (min-width: 64rem) {
      padding: calc(0.25rem * 6);
      padding: calc(var(--spacing) * 6);
    }
  }
  .lg\:px-9 {
    @media (min-width: 64rem) {
      padding-inline: calc(0.25rem * 9);
      padding-inline: calc(var(--spacing) * 9);
    }
  }
  .lg\:px-16 {
    @media (min-width: 64rem) {
      padding-inline: calc(0.25rem * 16);
      padding-inline: calc(var(--spacing) * 16);
    }
  }
  .lg\:px-24 {
    @media (min-width: 64rem) {
      padding-inline: calc(0.25rem * 24);
      padding-inline: calc(var(--spacing) * 24);
    }
  }
  .lg\:py-16 {
    @media (min-width: 64rem) {
      padding-block: calc(0.25rem * 16);
      padding-block: calc(var(--spacing) * 16);
    }
  }
  .lg\:text-20 {
    @media (min-width: 64rem) {
      font-size: clamp(1rem, 0.4vw + 0.95rem, 1.25rem);
      font-size: var(--text-20);
      line-height: 1.75;
      line-height: var(--tw-leading, var(--text-20--line-height));
      font-weight: 400;
      font-weight: var(--tw-font-weight, var(--text-20--font-weight));
    }
  }
  .lg\:whitespace-nowrap {
    @media (min-width: 64rem) {
      white-space: nowrap;
    }
  }
  .lg\:text-inherit {
    @media (min-width: 64rem) {
      color: inherit;
    }
  }
  .lg\:text-white {
    @media (min-width: 64rem) {
      color: #fff;
      color: var(--color-white);
    }
  }
  .lg\:backdrop-blur-sm {
    @media (min-width: 64rem) {
      --tw-backdrop-blur: blur(var(--blur-sm));
      backdrop-filter: blur(8px);
      backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    }
  }
  .prose-headings\:font-bold {
    & :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~=not-prose], [class~=not-prose] *))) {
      --tw-font-weight: var(--font-weight-bold);
      font-weight: 700;
      font-weight: var(--font-weight-bold);
    }
  }
  .prose-h2\:mt-0 {
    & :is(:where(h2):not(:where([class~=not-prose], [class~=not-prose] *))) {
      margin-top: calc(0.25rem * 0);
      margin-top: calc(var(--spacing) * 0);
    }
  }
  .prose-h2\:mb-4 {
    & :is(:where(h2):not(:where([class~=not-prose], [class~=not-prose] *))) {
      margin-bottom: calc(0.25rem * 4);
      margin-bottom: calc(var(--spacing) * 4);
    }
  }
  .prose-h2\:text-32 {
    & :is(:where(h2):not(:where([class~=not-prose], [class~=not-prose] *))) {
      font-size: clamp(1.875rem, 0.5vw + 1.7rem, 2rem);
      font-size: var(--text-32);
      line-height: 1.15;
      line-height: var(--tw-leading, var(--text-32--line-height));
      font-weight: 300;
      font-weight: var(--tw-font-weight, var(--text-32--font-weight));
    }
  }
  .prose-strong\:font-bold {
    & :is(:where(strong):not(:where([class~=not-prose], [class~=not-prose] *))) {
      --tw-font-weight: var(--font-weight-bold);
      font-weight: 700;
      font-weight: var(--font-weight-bold);
    }
  }
}
@font-face {
  font-family: "Inter";
  src: url(/fonts/inter.woff2) format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@layer base {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
    @media (min-width: 1024px) {
      scroll-padding-top: 80px;
    }
  }
}
@layer components {
  .prose ul > li {
    list-style: none;
    position: relative;
  }
  .prose ul > li::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
  }
}
@layer components {
  .index-hero-slide {
    opacity: 0;
    animation: indexHeroSlideFade 18s ease-in-out infinite;
  }
  .index-hero-slide:nth-child(1) {
    animation-delay: -2s;
  }
  .index-hero-slide:nth-child(2) {
    animation-delay: 4s;
  }
  .index-hero-slide:nth-child(3) {
    animation-delay: 10s;
  }
  @keyframes indexHeroSlideFade {
    0% {
      opacity: 0;
    }
    5% {
      opacity: 1;
    }
    28% {
      opacity: 1;
    }
    33% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .index-hero-slide {
      animation: none;
      opacity: 0;
    }
    .index-hero-slide:first-child {
      opacity: 1;
    }
  }
}
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-tracking { syntax: "*"; inherits: false; }
@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; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-backdrop-blur { syntax: "*"; inherits: false; }
@property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
@property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
@property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
@property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-backdrop-invert { syntax: "*"; inherits: false; }
@property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
@property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
    }
  }
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  color: #000000;
  font-weight: bold;
}
.highlight .o {
  color: #000000;
  font-weight: bold;
}
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight .ge {
  color: #000000;
  font-style: italic;
}
.highlight .gr {
  color: #aa0000;
}
.highlight .gh {
  color: #999999;
}
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .gt {
  color: #aa0000;
}
.highlight .kc {
  color: #000000;
  font-weight: bold;
}
.highlight .kd {
  color: #000000;
  font-weight: bold;
}
.highlight .kn {
  color: #000000;
  font-weight: bold;
}
.highlight .kp {
  color: #000000;
  font-weight: bold;
}
.highlight .kr {
  color: #000000;
  font-weight: bold;
}
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight .m {
  color: #009999;
}
.highlight .s {
  color: #d01040;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight .nl {
  color: #990000;
  font-weight: bold;
}
.highlight .nn {
  color: #555555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #009999;
}
.highlight .mh {
  color: #009999;
}
.highlight .mi {
  color: #009999;
}
.highlight .mo {
  color: #009999;
}
.highlight .sb {
  color: #d01040;
}
.highlight .sc {
  color: #d01040;
}
.highlight .sd {
  color: #d01040;
}
.highlight .s2 {
  color: #d01040;
}
.highlight .se {
  color: #d01040;
}
.highlight .sh {
  color: #d01040;
}
.highlight .si {
  color: #d01040;
}
.highlight .sx {
  color: #d01040;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d01040;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #009999;
}
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
/*# sourceMappingURL=/_bridgetown/static/index.FJL7BOLI.css.map */
