@layer cw-base {
/*
! Tailwind CSS Preflight | MIT License | https://tailwindcss.com
*/

/*
  The fallback is a neutral grey, not currentColor.

  currentColor makes every border whose colour was never set take the TEXT
  colour, which is near-black on a light page and near-white on a dark one.
  That is never what an author means by a divider: the divide-* and
  border-width utilities set a width and no colour, so a plain divide-y
  rendered as a heavy black rule instead of a hairline.

  It also punished the obvious workaround. Setting border-color on a parent
  does not reach divide-* children, because divide targets
  "> :not([hidden]) ~ :not([hidden])" and the child declaration from this
  block wins.

  Tailwind preflight resolves this the same way (its default is gray-200).
  --border-color stays the escape hatch: set it once on :root, or per
  theme, and every uncoloured border follows.
*/
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--border-color, #e5e7eb);
}

::before,
::after {
  --cw-content: '';
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: 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-feature-settings: normal;
  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: var(--border-color, inherit);
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: color-mix(in oklab, currentColor 50%, transparent);
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.bg-white {
  background-color: #fff;
}

.isolate {
  isolation: isolate;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.stroke-gray-200 {
  stroke: oklch(92.8% 0.006 264.531);
}

.-z-10 {
  z-index: -10;
}

.\[mask-image\:radial-gradient\(100\%_100\%_at_top_right\,white\,transparent\)\] {
  mask-image: radial-gradient(100% 100% at top right,white,transparent);
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.inline-block {
  display: inline-block;
}

.font-semibold {
  font-weight: 600;
}

.leading-6 {
  line-height: 1.5rem;
}

.text-blue-600 {
  color: oklch(54.6% 0.245 262.881);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.bg-blue-600\/10 {
  background-color: oklch(54.6% 0.245 262.881 / 0.1);
}

.ring-1 {
  --cw-ring-offset-shadow: var(--cw-ring-inset,) 0 0 0 var(--cw-ring-offset-width, 0px) var(--cw-ring-offset-color, #fff);
  --cw-ring-shadow: var(--cw-ring-inset,) 0 0 0 calc(1px + var(--cw-ring-offset-width, 0px)) var(--cw-ring-color, rgba(59, 130, 246, 0.5));
  box-shadow: var(--cw-ring-offset-shadow), var(--cw-ring-shadow), var(--cw-shadow, 0 0 #0000);
}

.ring-blue-600\/10 {
  --cw-ring-color: oklch(54.6% 0.245 262.881 / 0.1);
}

.ring-inset {
  --cw-ring-inset: inset;
}

.rounded-full {
  border-radius: 9999px;
}

.font-bold {
  font-weight: 700;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-gray-900 {
  color: oklch(21% 0.034 264.665);
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.leading-8 {
  line-height: 2rem;
}

.text-gray-600 {
  color: oklch(44.6% 0.03 256.802);
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.italic {
  font-style: italic;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-sm {
  --cw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --cw-shadow-colored: 0 1px 3px 0 var(--cw-shadow-color), 0 1px 2px -1px var(--cw-shadow-color);
  box-shadow: var(--cw-ring-offset-shadow, 0 0 #0000), var(--cw-ring-shadow, 0 0 #0000), var(--cw-shadow);
}

.focus-within\:z-10:focus-within {
  z-index: 10;
}

.flex-grow {
  flex-grow: 1;
}

.items-stretch {
  align-items: stretch;
}

.pointer-events-none {
  pointer-events: none;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.text-gray-400 {
  color: oklch(70.7% 0.022 261.325);
}

.block {
  display: block;
}

.placeholder\:text-gray-400::placeholder {
  color: oklch(70.7% 0.022 261.325);
}

.border-0 {
  border-width: 0px;
}

.ring-gray-300 {
  --cw-ring-color: oklch(87.2% 0.01 258.338);
}

.rounded-none {
  border-radius: 0;
}

.focus\:ring-2:focus {
  --cw-ring-offset-shadow: var(--cw-ring-inset,) 0 0 0 var(--cw-ring-offset-width, 0px) var(--cw-ring-offset-color, #fff);
  --cw-ring-shadow: var(--cw-ring-inset,) 0 0 0 calc(2px + var(--cw-ring-offset-width, 0px)) var(--cw-ring-color, rgba(59, 130, 246, 0.5));
  box-shadow: var(--cw-ring-offset-shadow), var(--cw-ring-shadow), var(--cw-shadow, 0 0 #0000);
}

.focus\:ring-blue-600:focus {
  --cw-ring-color: oklch(54.6% 0.245 262.881);
}

.focus\:ring-inset:focus {
  --cw-ring-inset: inset;
}

.inline-flex {
  display: inline-flex;
}

.-ml-px {
  margin-left: -1px;
}

.hover\:bg-gray-50:hover {
  background-color: oklch(98.5% 0.002 247.839);
}

.hidden {
  display: none;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.i-hugeicons-loading-01 {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M17.201 2H6.8c-1.458 0-2.737.985-2.795 2.404c-.074 1.785 1.182 2.97 2.5 4.083c1.825 1.54 2.737 2.31 2.832 3.284q.023.229 0 .458c-.095.975-1.007 1.744-2.832 3.284c-1.355 1.143-2.578 2.207-2.5 4.083C4.062 21.016 5.34 22 6.799 22H17.2c1.458 0 2.737-.985 2.796-2.404c.046-1.13-.373-2.254-1.262-3.036c-.405-.357-.826-.698-1.24-1.047c-1.824-1.54-2.736-2.31-2.831-3.284a2.3 2.3 0 0 1 0-.458c.095-.975 1.008-1.744 2.832-3.284c1.34-1.131 2.577-2.229 2.5-4.083C19.939 2.984 18.66 2 17.202 2Z'/%3E%3Cpath stroke-linecap='round' d='M9 21.638c0-.442 0-.663.088-.856a1 1 0 0 1 .046-.09c.107-.183.288-.312.65-.571c1.006-.719 1.51-1.078 2.081-1.116q.135-.009.27 0c.572.038 1.075.397 2.08 1.116c.363.259.544.388.651.571q.026.045.046.09c.088.193.088.414.088.856V22H9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M17.201 2H6.8c-1.458 0-2.737.985-2.795 2.404c-.074 1.785 1.182 2.97 2.5 4.083c1.825 1.54 2.737 2.31 2.832 3.284q.023.229 0 .458c-.095.975-1.007 1.744-2.832 3.284c-1.355 1.143-2.578 2.207-2.5 4.083C4.062 21.016 5.34 22 6.799 22H17.2c1.458 0 2.737-.985 2.796-2.404c.046-1.13-.373-2.254-1.262-3.036c-.405-.357-.826-.698-1.24-1.047c-1.824-1.54-2.736-2.31-2.831-3.284a2.3 2.3 0 0 1 0-.458c.095-.975 1.008-1.744 2.832-3.284c1.34-1.131 2.577-2.229 2.5-4.083C19.939 2.984 18.66 2 17.202 2Z'/%3E%3Cpath stroke-linecap='round' d='M9 21.638c0-.442 0-.663.088-.856a1 1 0 0 1 .046-.09c.107-.183.288-.312.65-.571c1.006-.719 1.51-1.078 2.081-1.116q.135-.009.27 0c.572.038 1.075.397 2.08 1.116c.363.259.544.388.651.571q.026.045.046.09c.088.193.088.414.088.856V22H9z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.text-red-500 {
  color: oklch(63.7% 0.237 25.331);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-green-700 {
  color: oklch(52.7% 0.154 150.069);
}

.flex-none {
  flex: none;
}

.max-w-3xl {
  max-width: 48rem;
}

.-m-2 {
  margin: -0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.bg-gray-900\/5 {
  background-color: oklch(21% 0.034 264.665 / 0.05);
}

.ring-gray-900\/10 {
  --cw-ring-color: oklch(21% 0.034 264.665 / 0.1);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.w-\[76rem\] {
  width: 76rem;
}

.opacity-50 {
  opacity: 0.5;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.gap-x-1\.5 {
  column-gap: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.left-0 {
  left: 0;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 640px) {
.sm\:text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.sm\:leading-6 {
  line-height: 1.5rem;
}

.sm\:text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.sm\:max-w-5xl {
  max-width: 64rem;
}

.sm\:pb-32 {
  padding-bottom: 8rem;
}

.sm\:mt-32 {
  margin-top: 8rem;
}

.sm\:mt-24 {
  margin-top: 6rem;
}
}

@media (min-width: 1024px) {
.lg\:flex {
  display: flex;
}

.lg\:flex-shrink-0 {
  flex-shrink: 0;
}

.lg\:max-w-xl {
  max-width: 36rem;
}

.lg\:flex-none {
  flex: none;
}

.lg\:max-w-none {
  max-width: none;
}

.lg\:-m-4 {
  margin: -1rem;
}

.lg\:p-4 {
  padding: 1rem;
}

.lg\:rounded-2xl {
  border-radius: 1rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.lg\:py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.lg\:mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.lg\:pt-40 {
  padding-top: 10rem;
}

.lg\:mt-16 {
  margin-top: 4rem;
}

.lg\:ml-10 {
  margin-left: 2.5rem;
}

.lg\:mr-0 {
  margin-right: 0;
}

.lg\:mt-0 {
  margin-top: 0;
}
}

@media (min-width: 1280px) {
.xl\:ml-32 {
  margin-left: 8rem;
}
}