@import "https://fonts.googleapis.com/css2?family=Victor+Mono&family=Victor+Mono:ital,wght@0,100..700;1,100..700&family=Fira+Sans+Condensed&family=Major+Mono+Display&family=Space+Mono&display=swap";

/* frontend/styles/index.css */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans: Victor Mono, sans-serif;
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --color-red-500: oklch(63.7% 0.237 25.331);
    --color-red-800: oklch(44.4% 0.177 26.899);
    --color-yellow-100: oklch(97.3% 0.071 103.193);
    --color-yellow-200: oklch(94.5% 0.129 101.54);
    --color-yellow-500: oklch(79.5% 0.184 86.047);
    --color-green-200: oklch(92.5% 0.084 155.995);
    --color-blue-100: oklch(93.2% 0.032 255.585);
    --color-blue-200: oklch(88.2% 0.059 254.128);
    --color-blue-300: oklch(80.9% 0.105 251.813);
    --color-blue-500: oklch(62.3% 0.214 259.815);
    --color-blue-600: oklch(54.6% 0.245 262.881);
    --color-blue-700: oklch(48.8% 0.243 264.376);
    --color-blue-800: oklch(42.4% 0.199 265.638);
    --color-blue-900: oklch(37.9% 0.146 265.522);
    --color-indigo-100: oklch(93% 0.034 272.788);
    --color-indigo-200: oklch(87% 0.065 274.039);
    --color-indigo-500: oklch(58.5% 0.233 277.117);
    --color-indigo-600: oklch(51.1% 0.262 276.966);
    --color-indigo-800: oklch(39.8% 0.195 277.366);
    --color-indigo-900: oklch(35.9% 0.144 278.697);
    --color-gray-50: oklch(98.5% 0.002 247.839);
    --color-gray-100: oklch(96.7% 0.003 264.542);
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-400: oklch(70.7% 0.022 261.325);
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-gray-800: oklch(27.8% 0.033 256.848);
    --color-gray-900: oklch(21% 0.034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-6xl: 72rem;
    --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-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-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --blur-xs: 4px;
    --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-major: Major Mono Display, sans-serif;
    --color-cwd: blue;
  }
}
@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: Victor Mono, 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;
  }
  :-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;
  }
  .fixed {
    position: fixed;
  }
  .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;
  }
  .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-1 {
    margin: calc(0.25rem * 1);
    margin: calc(var(--spacing) * 1);
  }
  .mx-2 {
    margin-inline: calc(0.25rem * 2);
    margin-inline: calc(var(--spacing) * 2);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .my-1 {
    margin-block: calc(0.25rem * 1);
    margin-block: calc(var(--spacing) * 1);
  }
  .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-8 {
    margin-block: calc(0.25rem * 8);
    margin-block: calc(var(--spacing) * 8);
  }
  .my-auto {
    margin-block: auto;
  }
  .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: 1;
      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 rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
      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: NaN NaN NaN;
    --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: 255 255 255;
    --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;
    }
  }
  .mt-1 {
    margin-top: calc(0.25rem * 1);
    margin-top: calc(var(--spacing) * 1);
  }
  .mt-2 {
    margin-top: calc(0.25rem * 2);
    margin-top: calc(var(--spacing) * 2);
  }
  .mt-4 {
    margin-top: calc(0.25rem * 4);
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(0.25rem * 6);
    margin-top: calc(var(--spacing) * 6);
  }
  .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);
  }
  .mt-12 {
    margin-top: calc(0.25rem * 12);
    margin-top: calc(var(--spacing) * 12);
  }
  .mt-25 {
    margin-top: calc(0.25rem * 25);
    margin-top: calc(var(--spacing) * 25);
  }
  .mt-auto {
    margin-top: auto;
  }
  .mr-2 {
    margin-right: calc(0.25rem * 2);
    margin-right: calc(var(--spacing) * 2);
  }
  .mr-4 {
    margin-right: calc(0.25rem * 4);
    margin-right: calc(var(--spacing) * 4);
  }
  .mb-2 {
    margin-bottom: calc(0.25rem * 2);
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-3 {
    margin-bottom: calc(0.25rem * 3);
    margin-bottom: calc(var(--spacing) * 3);
  }
  .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-10 {
    margin-bottom: calc(0.25rem * 10);
    margin-bottom: calc(var(--spacing) * 10);
  }
  .ml-1 {
    margin-left: calc(0.25rem * 1);
    margin-left: calc(var(--spacing) * 1);
  }
  .ml-2 {
    margin-left: calc(0.25rem * 2);
    margin-left: calc(var(--spacing) * 2);
  }
  .line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-block {
    display: inline-block;
  }
  .table {
    display: table;
  }
  .h-4 {
    height: calc(0.25rem * 4);
    height: calc(var(--spacing) * 4);
  }
  .h-6 {
    height: calc(0.25rem * 6);
    height: calc(var(--spacing) * 6);
  }
  .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-14 {
    height: calc(0.25rem * 14);
    height: calc(var(--spacing) * 14);
  }
  .h-40 {
    height: calc(0.25rem * 40);
    height: calc(var(--spacing) * 40);
  }
  .h-48 {
    height: calc(0.25rem * 48);
    height: calc(var(--spacing) * 48);
  }
  .h-\[128px\] {
    height: 128px;
  }
  .h-full {
    height: 100%;
  }
  .h-screen {
    height: 100vh;
  }
  .min-h-\[400px\] {
    min-height: 400px;
  }
  .min-h-\[500px\] {
    min-height: 500px;
  }
  .w-4 {
    width: calc(0.25rem * 4);
    width: calc(var(--spacing) * 4);
  }
  .w-6 {
    width: calc(0.25rem * 6);
    width: calc(var(--spacing) * 6);
  }
  .w-8 {
    width: calc(0.25rem * 8);
    width: calc(var(--spacing) * 8);
  }
  .w-10 {
    width: calc(0.25rem * 10);
    width: calc(var(--spacing) * 10);
  }
  .w-12 {
    width: calc(0.25rem * 12);
    width: calc(var(--spacing) * 12);
  }
  .w-20 {
    width: calc(0.25rem * 20);
    width: calc(var(--spacing) * 20);
  }
  .w-\[128px\] {
    width: 128px;
  }
  .w-full {
    width: 100%;
  }
  .max-w-2xl {
    max-width: 42rem;
    max-width: var(--container-2xl);
  }
  .max-w-4xl {
    max-width: 56rem;
    max-width: var(--container-4xl);
  }
  .max-w-5xl {
    max-width: 64rem;
    max-width: var(--container-5xl);
  }
  .max-w-6xl {
    max-width: 72rem;
    max-width: var(--container-6xl);
  }
  .max-w-full {
    max-width: 100%;
  }
  .max-w-lg {
    max-width: 32rem;
    max-width: var(--container-lg);
  }
  .max-w-xl {
    max-width: 36rem;
    max-width: var(--container-xl);
  }
  .min-w-full {
    min-width: 100%;
  }
  .grow {
    flex-grow: 1;
  }
  .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;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .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-4 {
    gap: calc(0.25rem * 4);
    gap: calc(var(--spacing) * 4);
  }
  .gap-8 {
    gap: calc(0.25rem * 8);
    gap: calc(var(--spacing) * 8);
  }
  .space-y-2 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(0.25rem * 2) * 0);
      margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(0.25rem * 2) * calc(1 - 0));
      margin-block-end: calc(calc(var(--spacing) * 2) * 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)));
    }
  }
  .space-x-3 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(0.25rem * 3) * 0);
      margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(0.25rem * 3) * calc(1 - 0));
      margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-4 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(0.25rem * 4) * 0);
      margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(0.25rem * 4) * calc(1 - 0));
      margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-6 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(0.25rem * 6) * 0);
      margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(0.25rem * 6) * calc(1 - 0));
      margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .overflow-x-auto {
    overflow-x: auto;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-2xl {
    border-radius: 1rem;
    border-radius: var(--radius-2xl);
  }
  .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);
  }
  .rounded-sm {
    border-radius: 0.25rem;
    border-radius: var(--radius-sm);
  }
  .rounded-xl {
    border-radius: 0.75rem;
    border-radius: var(--radius-xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-gray-200 {
    border-color: oklch(92.8% 0.006 264.531);
    border-color: var(--color-gray-200);
  }
  .border-gray-300 {
    border-color: oklch(87.2% 0.01 258.338);
    border-color: var(--color-gray-300);
  }
  .border-gray-800 {
    border-color: oklch(27.8% 0.033 256.848);
    border-color: var(--color-gray-800);
  }
  .bg-\[\#ddffdd\] {
    background-color: #ddffdd;
  }
  .bg-black {
    background-color: #000;
    background-color: var(--color-black);
  }
  .bg-blue-100 {
    background-color: oklch(93.2% 0.032 255.585);
    background-color: var(--color-blue-100);
  }
  .bg-blue-200 {
    background-color: oklch(88.2% 0.059 254.128);
    background-color: var(--color-blue-200);
  }
  .bg-blue-300 {
    background-color: oklch(80.9% 0.105 251.813);
    background-color: var(--color-blue-300);
  }
  .bg-blue-500 {
    background-color: oklch(62.3% 0.214 259.815);
    background-color: var(--color-blue-500);
  }
  .bg-blue-600 {
    background-color: oklch(54.6% 0.245 262.881);
    background-color: var(--color-blue-600);
  }
  .bg-blue-800 {
    background-color: oklch(42.4% 0.199 265.638);
    background-color: var(--color-blue-800);
  }
  .bg-blue-900 {
    background-color: oklch(37.9% 0.146 265.522);
    background-color: var(--color-blue-900);
  }
  .bg-gray-50 {
    background-color: oklch(98.5% 0.002 247.839);
    background-color: var(--color-gray-50);
  }
  .bg-gray-100 {
    background-color: oklch(96.7% 0.003 264.542);
    background-color: var(--color-gray-100);
  }
  .bg-gray-200 {
    background-color: oklch(92.8% 0.006 264.531);
    background-color: var(--color-gray-200);
  }
  .bg-gray-800 {
    background-color: oklch(27.8% 0.033 256.848);
    background-color: var(--color-gray-800);
  }
  .bg-gray-900 {
    background-color: oklch(21% 0.034 264.665);
    background-color: var(--color-gray-900);
  }
  .bg-green-200 {
    background-color: oklch(92.5% 0.084 155.995);
    background-color: var(--color-green-200);
  }
  .bg-indigo-100 {
    background-color: oklch(93% 0.034 272.788);
    background-color: var(--color-indigo-100);
  }
  .bg-indigo-200 {
    background-color: oklch(87% 0.065 274.039);
    background-color: var(--color-indigo-200);
  }
  .bg-indigo-500 {
    background-color: oklch(58.5% 0.233 277.117);
    background-color: var(--color-indigo-500);
  }
  .bg-indigo-600 {
    background-color: oklch(51.1% 0.262 276.966);
    background-color: var(--color-indigo-600);
  }
  .bg-red-800 {
    background-color: oklch(44.4% 0.177 26.899);
    background-color: var(--color-red-800);
  }
  .bg-white {
    background-color: #fff;
    background-color: var(--color-white);
  }
  .bg-yellow-100 {
    background-color: oklch(97.3% 0.071 103.193);
    background-color: var(--color-yellow-100);
  }
  .bg-yellow-200 {
    background-color: oklch(94.5% 0.129 101.54);
    background-color: var(--color-yellow-200);
  }
  .bg-yellow-500 {
    background-color: oklch(79.5% 0.184 86.047);
    background-color: var(--color-yellow-500);
  }
  .bg-cover {
    background-size: cover;
  }
  .bg-center {
    background-position: center;
  }
  .object-cover {
    -o-object-fit: cover;
    object-fit: 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-6 {
    padding: calc(0.25rem * 6);
    padding: calc(var(--spacing) * 6);
  }
  .p-8 {
    padding: calc(0.25rem * 8);
    padding: calc(var(--spacing) * 8);
  }
  .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-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);
  }
  .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-8 {
    padding-block: calc(0.25rem * 8);
    padding-block: calc(var(--spacing) * 8);
  }
  .py-12 {
    padding-block: calc(0.25rem * 12);
    padding-block: calc(var(--spacing) * 12);
  }
  .py-16 {
    padding-block: calc(0.25rem * 16);
    padding-block: calc(var(--spacing) * 16);
  }
  .py-20 {
    padding-block: calc(0.25rem * 20);
    padding-block: calc(var(--spacing) * 20);
  }
  .pt-2 {
    padding-top: calc(0.25rem * 2);
    padding-top: calc(var(--spacing) * 2);
  }
  .pt-8 {
    padding-top: calc(0.25rem * 8);
    padding-top: calc(var(--spacing) * 8);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .font-sans {
    font-family: Victor Mono, sans-serif;
    font-family: var(--font-sans);
  }
  .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-5xl {
    font-size: 3rem;
    font-size: var(--text-5xl);
    line-height: 1;
    line-height: var(--tw-leading, var(--text-5xl--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));
  }
  .text-\[48px\] {
    font-size: 48px;
  }
  .text-\[120px\] {
    font-size: 120px;
  }
  .text-\[128px\] {
    font-size: 128px;
  }
  .leading-6 {
    --tw-leading: calc(var(--spacing) * 6);
    line-height: calc(0.25rem * 6);
    line-height: calc(var(--spacing) * 6);
  }
  .leading-8 {
    --tw-leading: calc(var(--spacing) * 8);
    line-height: calc(0.25rem * 8);
    line-height: calc(var(--spacing) * 8);
  }
  .leading-\[60px\] {
    --tw-leading: 60px;
    line-height: 60px;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: 700;
    font-weight: var(--font-weight-bold);
  }
  .font-extrabold {
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: 800;
    font-weight: var(--font-weight-extrabold);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: 500;
    font-weight: var(--font-weight-medium);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: 600;
    font-weight: var(--font-weight-semibold);
  }
  .\!text-gray-300 {
    color: oklch(87.2% 0.01 258.338) !important;
    color: var(--color-gray-300) !important;
  }
  .text-black {
    color: #000;
    color: var(--color-black);
  }
  .text-blue-500 {
    color: oklch(62.3% 0.214 259.815);
    color: var(--color-blue-500);
  }
  .text-gray-300 {
    color: oklch(87.2% 0.01 258.338);
    color: var(--color-gray-300);
  }
  .text-gray-400 {
    color: oklch(70.7% 0.022 261.325);
    color: var(--color-gray-400);
  }
  .text-gray-500 {
    color: oklch(55.1% 0.027 264.364);
    color: var(--color-gray-500);
  }
  .text-gray-600 {
    color: oklch(44.6% 0.03 256.802);
    color: var(--color-gray-600);
  }
  .text-gray-700 {
    color: oklch(37.3% 0.034 259.733);
    color: var(--color-gray-700);
  }
  .text-gray-800 {
    color: oklch(27.8% 0.033 256.848);
    color: var(--color-gray-800);
  }
  .text-gray-900 {
    color: oklch(21% 0.034 264.665);
    color: var(--color-gray-900);
  }
  .text-indigo-100 {
    color: oklch(93% 0.034 272.788);
    color: var(--color-indigo-100);
  }
  .text-indigo-600 {
    color: oklch(51.1% 0.262 276.966);
    color: var(--color-indigo-600);
  }
  .text-indigo-900 {
    color: oklch(35.9% 0.144 278.697);
    color: var(--color-indigo-900);
  }
  .text-red-500 {
    color: oklch(63.7% 0.237 25.331);
    color: var(--color-red-500);
  }
  .text-white {
    color: #fff;
    color: var(--color-white);
  }
  .capitalize {
    text-transform: capitalize;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .italic {
    font-style: italic;
  }
  .line-through {
    text-decoration-line: line-through;
  }
  .underline {
    text-decoration-line: underline;
  }
  .decoration-4 {
    text-decoration-thickness: 4px;
  }
  .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-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);
  }
  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px 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 4px 6px -1px rgb(0 0 0 / 0.1),
      0 2px 4px -2px 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-sm {
    --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-xs {
    --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      0 1px 2px 0 rgb(0 0 0 / 0.05);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .ring-1 {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .ring-2 {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .ring-blue-300 {
    --tw-ring-color: var(--color-blue-300);
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .blur-xs {
    --tw-blur: blur(var(--blur-xs));
    filter: blur(4px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .filter {
    filter:;
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .transition {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to,
      opacity,
      box-shadow,
      transform,
      translate,
      scale,
      rotate,
      filter,
      -webkit-backdrop-filter,
      backdrop-filter;
    transition-timing-function: 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-shadow {
    transition-property: box-shadow;
    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-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);
  }
  .hover\:bg-gray-100 {
    &:hover {
      @media (hover: hover) {
        background-color: oklch(96.7% 0.003 264.542);
        background-color: var(--color-gray-100);
      }
    }
  }
  .hover\:bg-gray-700 {
    &:hover {
      @media (hover: hover) {
        background-color: oklch(37.3% 0.034 259.733);
        background-color: var(--color-gray-700);
      }
    }
  }
  .hover\:bg-indigo-600 {
    &:hover {
      @media (hover: hover) {
        background-color: oklch(51.1% 0.262 276.966);
        background-color: var(--color-indigo-600);
      }
    }
  }
  .hover\:text-indigo-800 {
    &:hover {
      @media (hover: hover) {
        color: oklch(39.8% 0.195 277.366);
        color: var(--color-indigo-800);
      }
    }
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: #fff;
        color: var(--color-white);
      }
    }
  }
  .hover\:shadow-md {
    &:hover {
      @media (hover: hover) {
        --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px 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 4px 6px -1px rgb(0 0 0 / 0.1),
          0 2px 4px -2px 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);
      }
    }
  }
  .focus\:ring-2 {
    &:focus {
      --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow:
        var(--tw-inset-shadow),
        var(--tw-inset-ring-shadow),
        var(--tw-ring-offset-shadow),
        var(--tw-ring-shadow),
        var(--tw-shadow);
    }
  }
  .focus\:ring-blue-500 {
    &:focus {
      --tw-ring-color: var(--color-blue-500);
    }
  }
  .focus\:ring-indigo-500 {
    &:focus {
      --tw-ring-color: var(--color-indigo-500);
    }
  }
  .focus\:outline-hidden {
    &:focus {
      --tw-outline-style: none;
      outline-style: none;
      @media (forced-colors: active) {
        outline: 2px solid transparent;
        outline-offset: 2px;
      }
    }
  }
  .focus\:outline-none {
    &:focus {
      --tw-outline-style: none;
      outline-style: none;
    }
  }
  .sm\:px-6 {
    @media (min-width: 40rem) {
      padding-inline: calc(0.25rem * 6);
      padding-inline: calc(var(--spacing) * 6);
    }
  }
  .sm\:text-4xl {
    @media (min-width: 40rem) {
      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));
    }
  }
  .md\:col-span-2 {
    @media (min-width: 48rem) {
      grid-column: span 2 / span 2;
    }
  }
  .md\:flex {
    @media (min-width: 48rem) {
      display: flex;
    }
  }
  .md\:hidden {
    @media (min-width: 48rem) {
      display: none;
    }
  }
  .md\:grid-cols-2 {
    @media (min-width: 48rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-3 {
    @media (min-width: 48rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-4 {
    @media (min-width: 48rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .md\:px-\[220px\] {
    @media (min-width: 48rem) {
      padding-inline: 220px;
    }
  }
  .md\:text-2xl {
    @media (min-width: 48rem) {
      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));
    }
  }
  .md\:text-\[48px\] {
    @media (min-width: 48rem) {
      font-size: 48px;
    }
  }
  .lg\:grid-cols-4 {
    @media (min-width: 64rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .lg\:px-8 {
    @media (min-width: 64rem) {
      padding-inline: calc(0.25rem * 8);
      padding-inline: calc(var(--spacing) * 8);
    }
  }
}
:root {
  --body-background: #f2f2f2;
  --body-color: #444;
  --heading-color: black;
  --action-color: blue;
}
@layer base {
  html {
    font-family:
      "Victor Mono",
      system-ui,
      sans-serif;
  }
  ul,
  ol {
    list-style: revert;
    padding-left: 1rem;
  }
  hr {
    display: block;
    overflow-x: hidden;
    overflow-y: hidden;
    unicode-bidi: isolate;
    color: gray;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    border-top-style: inset;
    border-top-width: 1px;
  }
  h1 {
    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));
  }
  h2 {
    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));
  }
  h3 {
    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));
  }
  a {
    color: blue;
    color: var(--action-color);
    text-decoration: underline;
  }
  footer {
    a {
      color: lightgray;
      text-decoration: underline;
    }
  }
}
.prose pre {
  border-style: var(--tw-border-style);
  border-width: 0px;
  background-color: transparent;
  padding: calc(0.25rem * 0);
  padding: calc(var(--spacing) * 0);
  --tw-font-weight: var(--font-weight-normal);
  font-weight: 400;
  font-weight: var(--font-weight-normal);
  color: inherit;
}
.hero-pattern {
  background-color: #f8f4e8;
  background-image:
    linear-gradient(rgba(184, 160, 123, 0.05) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(184, 160, 123, 0.05) 1px,
      transparent 1px),
    linear-gradient(rgba(184, 160, 123, 0.03) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(184, 160, 123, 0.03) 1px,
      transparent 1px);
  background-size:
    100px 100px,
    100px 100px,
    20px 20px,
    20px 20px;
  background-position:
    -1px -1px,
    -1px -1px,
    -1px -1px,
    -1px -1px;
}
#top_btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#top_btn:hover {
  background-color: #555;
}
.cwd-brand {
  cursor: pointer;
  text-align: center;
  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-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
      animation: var(--animate-pulse);
    }
  }
}
.cwd-block-hr {
  content: "--- // ---";
  display: block;
  text-align: center;
}
.cwd-page {
  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;
  }
  margin-inline: auto;
  padding-top: 100px;
}
.cwd-service-block {
  .title {
    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));
  }
  .subtitle {
    margin-block: calc(0.25rem * 4);
    margin-block: calc(var(--spacing) * 4);
    --tw-font-weight: var(--font-weight-bold);
    font-weight: 700;
    font-weight: var(--font-weight-bold);
  }
  .content {
    li {
      margin-bottom: 10px;
    }
  }
}
.cwd-btn {
  border-radius: 0.5rem;
  border-radius: var(--radius-lg);
  background-color: oklch(54.6% 0.245 262.881);
  background-color: var(--color-blue-600);
  padding-inline: calc(0.25rem * 6);
  padding-inline: calc(var(--spacing) * 6);
  padding-block: calc(0.25rem * 3);
  padding-block: calc(var(--spacing) * 3);
  --tw-font-weight: var(--font-weight-medium);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  color: #fff;
  color: var(--color-white);
  transition-property:
    color,
    background-color,
    border-color,
    outline-color,
    text-decoration-color,
    fill,
    stroke,
    --tw-gradient-from,
    --tw-gradient-via,
    --tw-gradient-to,
    opacity,
    box-shadow,
    transform,
    translate,
    scale,
    rotate,
    filter,
    -webkit-backdrop-filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: 300ms;
  transition-duration: var(--tw-duration, var(--default-transition-duration));
  --tw-duration: 300ms;
  transition-duration: 300ms;
  &:hover {
    @media (hover: hover) {
      background-color: oklch(48.8% 0.243 264.376);
      background-color: var(--color-blue-700);
    }
  }
}
.cwd-btn-secondary {
  border-radius: 0.5rem;
  border-radius: var(--radius-lg);
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: oklch(88.2% 0.059 254.128);
  border-color: var(--color-blue-200);
  background-color: #fff;
  background-color: var(--color-white);
  padding-inline: calc(0.25rem * 6);
  padding-inline: calc(var(--spacing) * 6);
  padding-block: calc(0.25rem * 3);
  padding-block: calc(var(--spacing) * 3);
  --tw-font-weight: var(--font-weight-medium);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  color: oklch(54.6% 0.245 262.881);
  color: var(--color-blue-600);
  transition-property:
    color,
    background-color,
    border-color,
    outline-color,
    text-decoration-color,
    fill,
    stroke,
    --tw-gradient-from,
    --tw-gradient-via,
    --tw-gradient-to,
    opacity,
    box-shadow,
    transform,
    translate,
    scale,
    rotate,
    filter,
    -webkit-backdrop-filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: 300ms;
  transition-duration: var(--tw-duration, var(--default-transition-duration));
  --tw-duration: 300ms;
  transition-duration: 300ms;
  &:hover {
    @media (hover: hover) {
      background-color: oklch(96.7% 0.003 264.542);
      background-color: var(--color-gray-100);
    }
  }
}
.cwd-btn-call {
  border-radius: 0.5rem;
  border-radius: var(--radius-lg);
  background-color: oklch(54.6% 0.245 262.881);
  background-color: var(--color-blue-600);
  padding-inline: calc(0.25rem * 4);
  padding-inline: calc(var(--spacing) * 4);
  padding-block: calc(0.25rem * 2);
  padding-block: calc(var(--spacing) * 2);
  --tw-font-weight: var(--font-weight-medium);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  color: #fff;
  color: var(--color-white);
  text-transform: uppercase;
  transition-property:
    color,
    background-color,
    border-color,
    outline-color,
    text-decoration-color,
    fill,
    stroke,
    --tw-gradient-from,
    --tw-gradient-via,
    --tw-gradient-to,
    opacity,
    box-shadow,
    transform,
    translate,
    scale,
    rotate,
    filter,
    -webkit-backdrop-filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: 300ms;
  transition-duration: var(--tw-duration, var(--default-transition-duration));
  --tw-duration: 300ms;
  transition-duration: 300ms;
  &:hover {
    @media (hover: hover) {
      background-color: oklch(48.8% 0.243 264.376);
      background-color: var(--color-blue-700);
    }
  }
}
.cwd-btn-cta {
  background-color: #000;
  background-color: var(--color-black);
  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));
  color: #fff;
  color: var(--color-white);
  text-decoration-line: underline;
  @media (min-width: 48rem) {
    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));
  }
}
.cwd-btn-cta-main {
  margin-block: calc(0.25rem * 4);
  margin-block: calc(var(--spacing) * 4);
  background-color: blue;
  background-color: var(--color-cwd);
  padding: calc(0.25rem * 4);
  padding: calc(var(--spacing) * 4);
  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));
  color: #fff;
  color: var(--color-white);
  text-decoration-line: underline;
  @media (min-width: 48rem) {
    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));
  }
}
.cwd-category {
  margin-bottom: calc(0.25rem * 3);
  margin-bottom: calc(var(--spacing) * 3);
  display: inline-block;
  border-radius: calc(infinity * 1px);
  background-color: oklch(93% 0.034 272.788);
  background-color: var(--color-indigo-100);
  padding-inline: calc(0.25rem * 3);
  padding-inline: calc(var(--spacing) * 3);
  padding-block: calc(0.25rem * 1);
  padding-block: calc(var(--spacing) * 1);
  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));
  --tw-font-weight: var(--font-weight-medium);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  color: oklch(39.8% 0.195 277.366);
  color: var(--color-indigo-800);
}
.cwd-tag {
  background-color: oklch(93.2% 0.032 255.585);
  background-color: var(--color-blue-100);
  padding: calc(0.25rem * 1);
  padding: calc(var(--spacing) * 1);
  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));
  color: #000;
  color: var(--color-black);
  text-decoration-line: underline;
}
.cwd-articles-block {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: calc(0.25rem * 4);
  grid-gap: calc(var(--spacing) * 4);
  gap: calc(0.25rem * 4);
  gap: calc(var(--spacing) * 4);
  @media (min-width: 40rem) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  @media (min-width: 48rem) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cwd-link {
  cursor: pointer;
  background-color: #fff;
  background-color: var(--color-white);
  color: oklch(54.6% 0.245 262.881);
  color: var(--color-blue-600);
  text-decoration-line: underline;
  &:hover {
    @media (hover: hover) {
      background-color: #000;
      background-color: var(--color-black);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: #fff;
      color: var(--color-white);
    }
  }
}
.cwd-page-testimonials {
  .customer-name {
    cursor: pointer;
    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));
  }
  .cwd-img-t {
    --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);
  }
}
.bg-cwd {
  background-color: blue;
  background-color: var(--color-cwd);
  color: black;
}
.cwd-title {
  font-family: Major Mono Display, sans-serif;
  font-family: var(--font-major);
}
.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(51, 221, 102, 0.1);
  opacity: 0.75;
  animation: scanline 6s linear infinite;
  z-index: 2;
}
@keyframes scanline {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.blink-underscore {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 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-space-x-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-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-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@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; }
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@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-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-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --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-outline-style: solid;
      --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;
    }
  }
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #606060;
  font-style: italic;
}
.highlight .err {
  color: #F00000;
  background-color: #F0A0A0;
}
.highlight .k {
  color: #208090;
  font-weight: bold;
}
.highlight .o {
  color: #303030;
}
.highlight .cm {
  color: #606060;
  font-style: italic;
}
.highlight .cp {
  color: #507090;
}
.highlight .c1 {
  color: #606060;
  font-style: italic;
}
.highlight .cs {
  color: #c00000;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #A00000;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #FF0000;
}
.highlight .gh {
  color: #000080;
  font-weight: bold;
}
.highlight .gi {
  color: #00A000;
}
.highlight .go {
  color: #808080;
}
.highlight .gp {
  color: #c65d09;
  font-weight: bold;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #800080;
  font-weight: bold;
}
.highlight .gt {
  color: #0040D0;
}
.highlight .kc {
  color: #208090;
  font-weight: bold;
}
.highlight .kd {
  color: #208090;
  font-weight: bold;
}
.highlight .kn {
  color: #208090;
  font-weight: bold;
}
.highlight .kp {
  color: #0080f0;
  font-weight: bold;
}
.highlight .kr {
  color: #208090;
  font-weight: bold;
}
.highlight .kt {
  color: #6060f0;
  font-weight: bold;
}
.highlight .m {
  color: #6000E0;
  font-weight: bold;
}
.highlight .s {
  background-color: #e0e0ff;
}
.highlight .na {
  color: #000070;
}
.highlight .nb {
  color: #007020;
}
.highlight .nc {
  color: #e090e0;
  font-weight: bold;
}
.highlight .no {
  color: #50e0d0;
  font-weight: bold;
}
.highlight .nd {
  color: #505050;
  font-weight: bold;
}
.highlight .ni {
  color: #800000;
}
.highlight .ne {
  color: #F00000;
  font-weight: bold;
}
.highlight .nf {
  color: #50e0d0;
  font-weight: bold;
}
.highlight .nl {
  color: #907000;
  font-weight: bold;
}
.highlight .nn {
  color: #0e84b5;
  font-weight: bold;
}
.highlight .nt {
  color: #007000;
}
.highlight .nv {
  color: #003060;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #6000E0;
  font-weight: bold;
}
.highlight .mh {
  color: #005080;
  font-weight: bold;
}
.highlight .mi {
  color: #6060f0;
  font-weight: bold;
}
.highlight .mo {
  color: #4000E0;
  font-weight: bold;
}
.highlight .sb {
  background-color: #e0e0ff;
}
.highlight .sc {
  color: #8080F0;
}
.highlight .sd {
  color: #D04020;
}
.highlight .s2 {
  background-color: #e0e0ff;
}
.highlight .se {
  color: #606060;
  font-weight: bold;
  background-color: #e0e0ff;
}
.highlight .sh {
  background-color: #e0e0ff;
}
.highlight .si {
  background-color: #e0e0e0;
}
.highlight .sx {
  color: #f08080;
  background-color: #e0e0ff;
}
.highlight .sr {
  color: #000000;
  background-color: #e0e0ff;
}
.highlight .s1 {
  background-color: #e0e0ff;
}
.highlight .ss {
  color: #f0c080;
}
.highlight .bp {
  color: #007020;
}
.highlight .vc {
  color: #c0c0f0;
}
.highlight .vg {
  color: #f08040;
}
.highlight .vi {
  color: #a0a0f0;
}
.highlight .il {
  color: #6060f0;
  font-weight: bold;
}
/*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
/*# sourceMappingURL=/_bridgetown/static/index.4IRCQRFI.css.map */
