/* frontend/styles/index.css */
@layer properties;
@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;
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-xs: 20rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --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);
    --font-lexend: "Lexend Deca", sans-serif;
    --font-unbounded: "Unbounded", sans-serif;
    --color-sxn-light-blue: #daf5f0;
    --color-sxn-clay: #ffeeea;
    --color-sxn-light-green: #bafca2;
    --color-sxn-green: #90ee91;
    --color-sxn-light-pink: #f3beff;
    --color-sxn-orange: #ffa352;
    --color-sxn-pink: #ffbfcb;
    --color-sxn-light-purple: #dac3ff;
    --color-sxn-purple: #c4a1ff;
    --color-sxn-light-sand: #fffbea;
    --color-sxn-sand: #fff8dc;
    --color-sxn-light-yellow: #fdfd96;
    --color-sxn-yellow: #ffd83f;
  }
}
@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:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    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;
  }
  :-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 {
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .top-0 {
    top: calc(0.25rem * 0);
    top: calc(var(--spacing) * 0);
  }
  .right-0 {
    right: calc(0.25rem * 0);
    right: calc(var(--spacing) * 0);
  }
  .left-0 {
    left: calc(0.25rem * 0);
    left: calc(var(--spacing) * 0);
  }
  .z-50 {
    z-index: 50;
  }
  .z-100 {
    z-index: 100;
  }
  .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-744 {
    margin: calc(0.25rem * 744);
    margin: calc(var(--spacing) * 744);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .my-0 {
    margin-block: calc(0.25rem * 0);
    margin-block: calc(var(--spacing) * 0);
  }
  .my-2 {
    margin-block: calc(0.25rem * 2);
    margin-block: calc(var(--spacing) * 2);
  }
  .my-4 {
    margin-block: calc(0.25rem * 4);
    margin-block: calc(var(--spacing) * 4);
  }
  .my-10 {
    margin-block: calc(0.25rem * 10);
    margin-block: calc(var(--spacing) * 10);
  }
  .my-14 {
    margin-block: calc(0.25rem * 14);
    margin-block: calc(var(--spacing) * 14);
  }
  .-mt-8 {
    margin-top: calc(0.25rem * -8);
    margin-top: calc(var(--spacing) * -8);
  }
  .-mt-32 {
    margin-top: calc(0.25rem * -32);
    margin-top: calc(var(--spacing) * -32);
  }
  .mt-5 {
    margin-top: calc(0.25rem * 5);
    margin-top: calc(var(--spacing) * 5);
  }
  .mt-10 {
    margin-top: calc(0.25rem * 10);
    margin-top: calc(var(--spacing) * 10);
  }
  .mt-14 {
    margin-top: calc(0.25rem * 14);
    margin-top: calc(var(--spacing) * 14);
  }
  .mb-1 {
    margin-bottom: calc(0.25rem * 1);
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-8 {
    margin-bottom: calc(0.25rem * 8);
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-40 {
    margin-bottom: calc(0.25rem * 40);
    margin-bottom: calc(var(--spacing) * 40);
  }
  .mb-60 {
    margin-bottom: calc(0.25rem * 60);
    margin-bottom: calc(var(--spacing) * 60);
  }
  .no-scrollbar {
    scrollbar-width: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-flex {
    display: inline-flex;
  }
  .h-5 {
    height: calc(0.25rem * 5);
    height: calc(var(--spacing) * 5);
  }
  .h-8 {
    height: calc(0.25rem * 8);
    height: calc(var(--spacing) * 8);
  }
  .h-10 {
    height: calc(0.25rem * 10);
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(0.25rem * 12);
    height: calc(var(--spacing) * 12);
  }
  .h-16 {
    height: calc(0.25rem * 16);
    height: calc(var(--spacing) * 16);
  }
  .h-20 {
    height: calc(0.25rem * 20);
    height: calc(var(--spacing) * 20);
  }
  .h-32 {
    height: calc(0.25rem * 32);
    height: calc(var(--spacing) * 32);
  }
  .h-40 {
    height: calc(0.25rem * 40);
    height: calc(var(--spacing) * 40);
  }
  .h-64 {
    height: calc(0.25rem * 64);
    height: calc(var(--spacing) * 64);
  }
  .h-80 {
    height: calc(0.25rem * 80);
    height: calc(var(--spacing) * 80);
  }
  .h-full {
    height: 100%;
  }
  .w-1\/2 {
    width: calc(1/2 * 100%);
  }
  .w-2\/3 {
    width: calc(2/3 * 100%);
  }
  .w-4\/5 {
    width: calc(4/5 * 100%);
  }
  .w-80 {
    width: calc(0.25rem * 80);
    width: calc(var(--spacing) * 80);
  }
  .w-full {
    width: 100%;
  }
  .w-max {
    width: -moz-max-content;
    width: max-content;
  }
  .w-xs {
    width: 20rem;
    width: var(--container-xs);
  }
  .max-w-2\/3 {
    max-width: calc(2/3 * 100%);
  }
  .flex-none {
    flex: none;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .flex-grow {
    flex-grow: 1;
  }
  .grow {
    flex-grow: 1;
  }
  .-translate-y-full {
    --tw-translate-y: -100%;
    translate: var(--tw-translate-x) -100%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .translate-y-0 {
    --tw-translate-y: calc(var(--spacing) * 0);
    translate: var(--tw-translate-x) calc(0.25rem * 0);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .rotate-1 {
    rotate: 1deg;
  }
  .transform {
    transform:;
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .cursor-wait {
    cursor: wait;
  }
  .list-inside {
    list-style-position: inside;
  }
  .list-disc {
    list-style-type: disc;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .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;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .justify-start {
    justify-content: flex-start;
  }
  .gap-1 {
    gap: calc(0.25rem * 1);
    gap: calc(var(--spacing) * 1);
  }
  .gap-2 {
    gap: calc(0.25rem * 2);
    gap: calc(var(--spacing) * 2);
  }
  .gap-4 {
    gap: calc(0.25rem * 4);
    gap: calc(var(--spacing) * 4);
  }
  .gap-5 {
    gap: calc(0.25rem * 5);
    gap: calc(var(--spacing) * 5);
  }
  .gap-6 {
    gap: calc(0.25rem * 6);
    gap: calc(var(--spacing) * 6);
  }
  .gap-10 {
    gap: calc(0.25rem * 10);
    gap: calc(var(--spacing) * 10);
  }
  .divide-y-2 {
    :where(& > :not(:last-child)) {
      --tw-divide-y-reverse: 0;
      border-bottom-style: var(--tw-border-style);
      border-top-style: var(--tw-border-style);
      border-top-width: calc(2px * 0);
      border-top-width: calc(2px * var(--tw-divide-y-reverse));
      border-bottom-width: calc(2px * calc(1 - 0));
      border-bottom-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
    }
  }
  .divide-black {
    :where(& > :not(:last-child)) {
      border-color: #000;
      border-color: var(--color-black);
    }
  }
  .overflow-x-auto {
    overflow-x: auto;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: 0.5rem;
    border-radius: var(--radius-lg);
  }
  .rounded-md {
    border-radius: 0.375rem;
    border-radius: var(--radius-md);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-t-2 {
    border-top-style: var(--tw-border-style);
    border-top-width: 2px;
  }
  .border-b-0 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 0px;
  }
  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }
  .border-black {
    border-color: #000;
    border-color: var(--color-black);
  }
  .bg-black {
    background-color: #000;
    background-color: var(--color-black);
  }
  .bg-sxn-clay {
    background-color: #ffeeea;
    background-color: var(--color-sxn-clay);
  }
  .bg-sxn-green {
    background-color: #90ee91;
    background-color: var(--color-sxn-green);
  }
  .bg-sxn-light-blue {
    background-color: #daf5f0;
    background-color: var(--color-sxn-light-blue);
  }
  .bg-sxn-light-green {
    background-color: #bafca2;
    background-color: var(--color-sxn-light-green);
  }
  .bg-sxn-light-pink {
    background-color: #f3beff;
    background-color: var(--color-sxn-light-pink);
  }
  .bg-sxn-light-purple {
    background-color: #dac3ff;
    background-color: var(--color-sxn-light-purple);
  }
  .bg-sxn-light-sand {
    background-color: #fffbea;
    background-color: var(--color-sxn-light-sand);
  }
  .bg-sxn-light-yellow {
    background-color: #fdfd96;
    background-color: var(--color-sxn-light-yellow);
  }
  .bg-sxn-orange {
    background-color: #ffa352;
    background-color: var(--color-sxn-orange);
  }
  .bg-sxn-pink {
    background-color: #ffbfcb;
    background-color: var(--color-sxn-pink);
  }
  .bg-sxn-purple {
    background-color: #c4a1ff;
    background-color: var(--color-sxn-purple);
  }
  .bg-sxn-sand {
    background-color: #fff8dc;
    background-color: var(--color-sxn-sand);
  }
  .bg-sxn-yellow {
    background-color: #ffd83f;
    background-color: var(--color-sxn-yellow);
  }
  .bg-white {
    background-color: #fff;
    background-color: var(--color-white);
  }
  .bg-\[url\(\/images\/backgrounds\/blue-grid\.svg\)\] {
    background-image: url(/images/backgrounds/blue-grid.svg);
  }
  .bg-\[url\(\/images\/backgrounds\/purple-waves\.svg\)\] {
    background-image: url(/images/backgrounds/purple-waves.svg);
  }
  .bg-cover {
    background-size: cover;
  }
  .p-2 {
    padding: calc(0.25rem * 2);
    padding: calc(var(--spacing) * 2);
  }
  .p-4 {
    padding: calc(0.25rem * 4);
    padding: calc(var(--spacing) * 4);
  }
  .p-5 {
    padding: calc(0.25rem * 5);
    padding: calc(var(--spacing) * 5);
  }
  .p-8 {
    padding: calc(0.25rem * 8);
    padding: calc(var(--spacing) * 8);
  }
  .p-10 {
    padding: calc(0.25rem * 10);
    padding: calc(var(--spacing) * 10);
  }
  .px-2 {
    padding-inline: calc(0.25rem * 2);
    padding-inline: calc(var(--spacing) * 2);
  }
  .px-3 {
    padding-inline: calc(0.25rem * 3);
    padding-inline: calc(var(--spacing) * 3);
  }
  .px-4 {
    padding-inline: calc(0.25rem * 4);
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-5 {
    padding-inline: calc(0.25rem * 5);
    padding-inline: calc(var(--spacing) * 5);
  }
  .px-6 {
    padding-inline: calc(0.25rem * 6);
    padding-inline: calc(var(--spacing) * 6);
  }
  .py-1 {
    padding-block: calc(0.25rem * 1);
    padding-block: calc(var(--spacing) * 1);
  }
  .py-2 {
    padding-block: calc(0.25rem * 2);
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(0.25rem * 3);
    padding-block: calc(var(--spacing) * 3);
  }
  .py-4 {
    padding-block: calc(0.25rem * 4);
    padding-block: calc(var(--spacing) * 4);
  }
  .py-6 {
    padding-block: calc(0.25rem * 6);
    padding-block: calc(var(--spacing) * 6);
  }
  .py-10 {
    padding-block: calc(0.25rem * 10);
    padding-block: calc(var(--spacing) * 10);
  }
  .pt-14 {
    padding-top: calc(0.25rem * 14);
    padding-top: calc(var(--spacing) * 14);
  }
  .pb-2 {
    padding-bottom: calc(0.25rem * 2);
    padding-bottom: calc(var(--spacing) * 2);
  }
  .pb-10 {
    padding-bottom: calc(0.25rem * 10);
    padding-bottom: calc(var(--spacing) * 10);
  }
  .pb-40 {
    padding-bottom: calc(0.25rem * 40);
    padding-bottom: calc(var(--spacing) * 40);
  }
  .pl-5 {
    padding-left: calc(0.25rem * 5);
    padding-left: calc(var(--spacing) * 5);
  }
  .text-center {
    text-align: center;
  }
  .text-justify {
    text-align: justify;
  }
  .font-lexend {
    font-family: "Lexend Deca", sans-serif;
    font-family: var(--font-lexend);
  }
  .font-unbounded {
    font-family: "Unbounded", sans-serif;
    font-family: var(--font-unbounded);
  }
  .text-2xl {
    font-size: 1.5rem;
    font-size: var(--text-2xl);
    line-height: calc(2 / 1.5);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: 1.875rem;
    font-size: var(--text-3xl);
    line-height: calc(2.25 / 1.875);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-4xl {
    font-size: 2.25rem;
    font-size: var(--text-4xl);
    line-height: calc(2.5 / 2.25);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
  .text-base {
    font-size: 1rem;
    font-size: var(--text-base);
    line-height: calc(1.5 / 1);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-lg {
    font-size: 1.125rem;
    font-size: var(--text-lg);
    line-height: calc(1.75 / 1.125);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: 0.875rem;
    font-size: var(--text-sm);
    line-height: calc(1.25 / 0.875);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .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));
  }
  .text-xs {
    font-size: 0.75rem;
    font-size: var(--text-xs);
    line-height: calc(1 / 0.75);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: 700;
    font-weight: var(--font-weight-bold);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: 600;
    font-weight: var(--font-weight-semibold);
  }
  .break-words {
    overflow-wrap: break-word;
  }
  .text-black {
    color: #000;
    color: var(--color-black);
  }
  .text-white {
    color: #fff;
    color: var(--color-white);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .italic {
    font-style: italic;
  }
  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      0 1px 3px 0 rgb(0 0 0 / 0.1),
      0 1px 2px -1px rgb(0 0 0 / 0.1);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-\[4px_4px_0_0_rgba\(0\,0\,0\,1\)\] {
    --tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, rgba(0,0,0,1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      4px 4px 0 0 rgba(0, 0, 0, 1);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      0 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .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 {
    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,
      display,
      visibility,
      content-visibility,
      overlay,
      pointer-events;
    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));
  }
  .transition-all {
    transition-property: all;
    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));
  }
  .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));
  }
  .transition-transform {
    transition-property:
      transform,
      translate,
      scale,
      rotate;
    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));
  }
  .duration-150 {
    --tw-duration: 150ms;
    transition-duration: 150ms;
  }
  .duration-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: var(--ease-in-out);
  }
  .not-last-of-type\:gap-10 {
    &:not(*:last-of-type) {
      gap: calc(0.25rem * 10);
      gap: calc(var(--spacing) * 10);
    }
  }
  .group-hover\:block {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        display: block;
      }
    }
  }
  .group-hover\:hidden {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        display: none;
      }
    }
  }
  .hover\:translate-x-0\.5 {
    &:hover {
      @media (hover: hover) {
        --tw-translate-x: calc(var(--spacing) * 0.5);
        translate: calc(0.25rem * 0.5) var(--tw-translate-y);
        translate: var(--tw-translate-x) var(--tw-translate-y);
      }
    }
  }
  .hover\:translate-y-0\.5 {
    &:hover {
      @media (hover: hover) {
        --tw-translate-y: calc(var(--spacing) * 0.5);
        translate: var(--tw-translate-x) calc(0.25rem * 0.5);
        translate: var(--tw-translate-x) var(--tw-translate-y);
      }
    }
  }
  .hover\:cursor-pointer {
    &:hover {
      @media (hover: hover) {
        cursor: pointer;
      }
    }
  }
  .hover\:bg-black {
    &:hover {
      @media (hover: hover) {
        background-color: #000;
        background-color: var(--color-black);
      }
    }
  }
  .hover\:bg-sxn-clay {
    &:hover {
      @media (hover: hover) {
        background-color: #ffeeea;
        background-color: var(--color-sxn-clay);
      }
    }
  }
  .hover\:bg-sxn-yellow {
    &:hover {
      @media (hover: hover) {
        background-color: #ffd83f;
        background-color: var(--color-sxn-yellow);
      }
    }
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: #fff;
        color: var(--color-white);
      }
    }
  }
  .hover\:underline {
    &:hover {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .hover\:shadow-\[2px_2px_0_0_rgba\(0\,0\,0\,1\)\] {
    &:hover {
      @media (hover: hover) {
        --tw-shadow: 2px 2px 0 0 var(--tw-shadow-color, rgba(0,0,0,1));
        box-shadow:
          var(--tw-inset-shadow),
          var(--tw-inset-ring-shadow),
          var(--tw-ring-offset-shadow),
          var(--tw-ring-shadow),
          2px 2px 0 0 rgba(0, 0, 0, 1);
        box-shadow:
          var(--tw-inset-shadow),
          var(--tw-inset-ring-shadow),
          var(--tw-ring-offset-shadow),
          var(--tw-ring-shadow),
          var(--tw-shadow);
      }
    }
  }
  .xl\:my-10 {
    @media (min-width: 80rem) {
      margin-block: calc(0.25rem * 10);
      margin-block: calc(var(--spacing) * 10);
    }
  }
  .xl\:mb-15 {
    @media (min-width: 80rem) {
      margin-bottom: calc(0.25rem * 15);
      margin-bottom: calc(var(--spacing) * 15);
    }
  }
  .xl\:block {
    @media (min-width: 80rem) {
      display: block;
    }
  }
  .xl\:flex {
    @media (min-width: 80rem) {
      display: flex;
    }
  }
  .xl\:hidden {
    @media (min-width: 80rem) {
      display: none;
    }
  }
  .xl\:h-10 {
    @media (min-width: 80rem) {
      height: calc(0.25rem * 10);
      height: calc(var(--spacing) * 10);
    }
  }
  .xl\:h-12 {
    @media (min-width: 80rem) {
      height: calc(0.25rem * 12);
      height: calc(var(--spacing) * 12);
    }
  }
  .xl\:h-120 {
    @media (min-width: 80rem) {
      height: calc(0.25rem * 120);
      height: calc(var(--spacing) * 120);
    }
  }
  .xl\:w-1\/2 {
    @media (min-width: 80rem) {
      width: calc(1/2 * 100%);
    }
  }
  .xl\:w-2\/3 {
    @media (min-width: 80rem) {
      width: calc(2/3 * 100%);
    }
  }
  .xl\:w-3\/4 {
    @media (min-width: 80rem) {
      width: calc(3/4 * 100%);
    }
  }
  .xl\:w-4\/5 {
    @media (min-width: 80rem) {
      width: calc(4/5 * 100%);
    }
  }
  .xl\:w-96 {
    @media (min-width: 80rem) {
      width: calc(0.25rem * 96);
      width: calc(var(--spacing) * 96);
    }
  }
  .xl\:w-120 {
    @media (min-width: 80rem) {
      width: calc(0.25rem * 120);
      width: calc(var(--spacing) * 120);
    }
  }
  .xl\:w-full {
    @media (min-width: 80rem) {
      width: 100%;
    }
  }
  .xl\:grid-cols-2 {
    @media (min-width: 80rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .xl\:grid-cols-3 {
    @media (min-width: 80rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .xl\:grid-cols-4 {
    @media (min-width: 80rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .xl\:flex-row {
    @media (min-width: 80rem) {
      flex-direction: row;
    }
  }
  .xl\:flex-row-reverse {
    @media (min-width: 80rem) {
      flex-direction: row-reverse;
    }
  }
  .xl\:gap-10 {
    @media (min-width: 80rem) {
      gap: calc(0.25rem * 10);
      gap: calc(var(--spacing) * 10);
    }
  }
  .xl\:divide-x-2 {
    @media (min-width: 80rem) {
      :where(& > :not(:last-child)) {
        --tw-divide-x-reverse: 0;
        border-inline-style: var(--tw-border-style);
        border-inline-start-width: calc(2px * 0);
        border-inline-start-width: calc(2px * var(--tw-divide-x-reverse));
        border-inline-end-width: calc(2px * calc(1 - 0));
        border-inline-end-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
      }
    }
  }
  .xl\:divide-y-0 {
    @media (min-width: 80rem) {
      :where(& > :not(:last-child)) {
        --tw-divide-y-reverse: 0;
        border-bottom-style: var(--tw-border-style);
        border-top-style: var(--tw-border-style);
        border-top-width: calc(0px * 0);
        border-top-width: calc(0px * var(--tw-divide-y-reverse));
        border-bottom-width: calc(0px * calc(1 - 0));
        border-bottom-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
      }
    }
  }
  .xl\:border-r-2 {
    @media (min-width: 80rem) {
      border-right-style: var(--tw-border-style);
      border-right-width: 2px;
    }
  }
  .xl\:border-b-2 {
    @media (min-width: 80rem) {
      border-bottom-style: var(--tw-border-style);
      border-bottom-width: 2px;
    }
  }
  .xl\:border-l-2 {
    @media (min-width: 80rem) {
      border-left-style: var(--tw-border-style);
      border-left-width: 2px;
    }
  }
  .xl\:p-10 {
    @media (min-width: 80rem) {
      padding: calc(0.25rem * 10);
      padding: calc(var(--spacing) * 10);
    }
  }
  .xl\:px-4 {
    @media (min-width: 80rem) {
      padding-inline: calc(0.25rem * 4);
      padding-inline: calc(var(--spacing) * 4);
    }
  }
  .xl\:py-6 {
    @media (min-width: 80rem) {
      padding-block: calc(0.25rem * 6);
      padding-block: calc(var(--spacing) * 6);
    }
  }
  .xl\:text-4xl {
    @media (min-width: 80rem) {
      font-size: 2.25rem;
      font-size: var(--text-4xl);
      line-height: calc(2.5 / 2.25);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
  }
  .xl\:text-5xl {
    @media (min-width: 80rem) {
      font-size: 3rem;
      font-size: var(--text-5xl);
      line-height: 1;
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
}
@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-divide-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@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-duration { syntax: "*"; inherits: false; }
@property --tw-ease { syntax: "*"; inherits: false; }
@property --tw-divide-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@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-divide-y-reverse: 0;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --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-duration: initial;
      --tw-ease: initial;
      --tw-divide-x-reverse: 0;
    }
  }
}

/* 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.11 | MIT License | https://tailwindcss.com */
/*# sourceMappingURL=/_bridgetown/static/index.CJJJ2E4A.css.map */
