@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;
}
}

.min-h-\[100dvh\] {
  min-height: 100dvh;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-\[var\(--text\)\] {
  background-color: var(--text);
}

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

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

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

.text-\[var\(--page\)\] {
  color: var(--page);
}

.sticky {
  position: sticky;
}

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

.border-b {
  border-bottom-width: 1px;
}

.border-\[var\(--line\)\] {
  border-color: var(--line);
}

.bg-\[var\(--nav\)\] {
  background-color: var(--nav);
}

.backdrop-blur-xl {
  --cw-backdrop-blur: blur(24px);
  -webkit-backdrop-filter: var(--cw-backdrop-blur, ) var(--cw-backdrop-brightness, ) var(--cw-backdrop-contrast, ) var(--cw-backdrop-grayscale, ) var(--cw-backdrop-hue-rotate, ) var(--cw-backdrop-invert, ) var(--cw-backdrop-opacity, ) var(--cw-backdrop-saturate, ) var(--cw-backdrop-sepia, );
  backdrop-filter: var(--cw-backdrop-blur, ) var(--cw-backdrop-brightness, ) var(--cw-backdrop-contrast, ) var(--cw-backdrop-grayscale, ) var(--cw-backdrop-hue-rotate, ) var(--cw-backdrop-invert, ) var(--cw-backdrop-opacity, ) var(--cw-backdrop-saturate, ) var(--cw-backdrop-sepia, );
}

.flex {
  display: flex;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

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

.focus-visible\:outline-none:focus-visible {
  outline-style: none;
}

.focus-visible\:ring-2:focus-visible {
  --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-visible\:ring-\[var\(--accent\)\]:focus-visible {
  --cw-ring-color: var(--accent);
}

.grid {
  display: grid;
}

.h-10 {
  height: 2.5rem;
}

.w-10 {
  width: 2.5rem;
}

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

.bg-\[var\(--accent\)\] {
  background-color: var(--accent);
}

.text-\[var\(--accent-ink\)\] {
  color: var(--accent-ink);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.group:hover .group-hover\:-rotate-3 {
  transform: rotate(-3deg);
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.i-hugeicons-plant-02 {
  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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M14.5 10.5S12 12.5 12 15m-6 0h12M7 15l.51 3.566c.233 1.637.35 2.456.914 2.945S9.815 22 11.47 22h1.062c1.654 0 2.48 0 3.045-.49c.564-.488.68-1.307.915-2.944L17 15m-6.937-6.937a3.2 3.2 0 0 0 0-4.524C8.178 1.654 4.031 2.03 4.031 2.03s-.377 4.147 1.508 6.032a3.2 3.2 0 0 0 4.524 0m4.74 2.135a2.74 2.74 0 0 0 3.878 0c1.616-1.616 1.293-5.17 1.293-5.17s-3.555-.324-5.17 1.292a2.74 2.74 0 0 0 0 3.878'/%3E%3Cpath d='M10 8.5s2 2.5 2 6.5'/%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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M14.5 10.5S12 12.5 12 15m-6 0h12M7 15l.51 3.566c.233 1.637.35 2.456.914 2.945S9.815 22 11.47 22h1.062c1.654 0 2.48 0 3.045-.49c.564-.488.68-1.307.915-2.944L17 15m-6.937-6.937a3.2 3.2 0 0 0 0-4.524C8.178 1.654 4.031 2.03 4.031 2.03s-.377 4.147 1.508 6.032a3.2 3.2 0 0 0 4.524 0m4.74 2.135a2.74 2.74 0 0 0 3.878 0c1.616-1.616 1.293-5.17 1.293-5.17s-3.555-.324-5.17 1.292a2.74 2.74 0 0 0 0 3.878'/%3E%3Cpath d='M10 8.5s2 2.5 2 6.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.block {
  display: block;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-extrabold {
  font-weight: 800;
}

.tracking-\[-0\.03em\] {
  letter-spacing: -0.03em;
}

.text-\[var\(--text\)\] {
  color: var(--text);
}

.text-\[10px\] {
  font-size: 10px;
}

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

.uppercase {
  text-transform: uppercase;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.text-\[var\(--muted\)\] {
  color: var(--muted);
}

.hidden {
  display: none;
}

.gap-7 {
  gap: 1.75rem;
}

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

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:text-\[var\(--text\)\]:hover {
  color: var(--text);
}

.focus-visible\:text-\[var\(--text\)\]:focus-visible {
  color: var(--text);
}

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

.gap-2 {
  gap: 0.5rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.border {
  border-width: 1px;
}

.border-\[var\(--line-strong\)\] {
  border-color: var(--line-strong);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}

.hover\:border-\[var\(--accent\)\]:hover {
  border-color: var(--accent);
}

.i-hugeicons-shopping-bag-02 {
  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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='m17.5 8.75l-2.455 10.803a1.8 1.8 0 0 0 1.753 2.197H18'/%3E%3Cpath d='M19.22 21.75H4.78a1.78 1.78 0 0 1-1.727-2.213l2.19-8.757c.363-1.455.545-2.183 1.088-2.606c.542-.424 1.292-.424 2.792-.424h5.754c1.5 0 2.25 0 2.792.424c.543.423.725 1.15 1.088 2.606l2.19 8.757a1.782 1.782 0 0 1-1.728 2.213'/%3E%3Cpath d='M15 7.75v-2a3 3 0 1 0-6 0v2m1 3h2.5'/%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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='m17.5 8.75l-2.455 10.803a1.8 1.8 0 0 0 1.753 2.197H18'/%3E%3Cpath d='M19.22 21.75H4.78a1.78 1.78 0 0 1-1.727-2.213l2.19-8.757c.363-1.455.545-2.183 1.088-2.606c.542-.424 1.292-.424 2.792-.424h5.754c1.5 0 2.25 0 2.792.424c.543.423.725 1.15 1.088 2.606l2.19 8.757a1.782 1.782 0 0 1-1.728 2.213'/%3E%3Cpath d='M15 7.75v-2a3 3 0 1 0-6 0v2m1 3h2.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.min-h-\[calc\(100dvh-108px\)\] {
  min-height: calc(100dvh - 108px);
}

.gap-8 {
  gap: 2rem;
}

.relative {
  position: relative;
}

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

.tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}

.text-\[var\(--accent\)\] {
  color: var(--accent);
}

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

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

.leading-\[0\.98\] {
  line-height: 0.98;
}

.tracking-\[-0\.06em\] {
  letter-spacing: -0.06em;
}

.max-w-lg {
  max-width: 32rem;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.hover\:bg-\[var\(--accent-strong\)\]:hover {
  background-color: var(--accent-strong);
}

.focus-visible\:ring-offset-2:focus-visible {
  --cw-ring-offset-width: 2px;
}

.i-hugeicons-arrow-up-right-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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 6.65s6.938-.542 7.915.435S17.35 15 17.35 15m-.85-7.5l-10 10'/%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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 6.65s6.938-.542 7.915.435S17.35 15 17.35 15m-.85-7.5l-10 10'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.overflow-hidden {
  overflow: hidden;
}

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

.bg-\[var\(--surface-soft\)\] {
  background-color: var(--surface-soft);
}

.h-\[54dvh\] {
  height: 54dvh;
}

.min-h-\[430px\] {
  min-height: 430px;
}

.w-full {
  width: 100%;
}

.object-cover {
  object-fit: cover;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.bg-\[var\(--surface\)\] {
  background-color: var(--surface);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-px {
  gap: 1px;
}

.font-mono {
  font-family: ui-monospace, monospace;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.border-l {
  border-left-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.tracking-\[-0\.05em\] {
  letter-spacing: -0.05em;
}

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

.leading-7 {
  line-height: 1.75rem;
}

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

.h-full {
  height: 100%;
}

.min-h-\[280px\] {
  min-height: 280px;
}

.duration-500 {
  transition-duration: 500ms;
}

.group:hover .group-hover\:scale-\[1\.025\] {
  transform: scale(1.025);
}

.flex-col {
  flex-direction: column;
}

.p-6 {
  padding: 1.5rem;
}

.items-start {
  align-items: flex-start;
}

.gap-5 {
  gap: 1.25rem;
}

.tracking-\[0\.14em\] {
  letter-spacing: 0.14em;
}

.tracking-\[-0\.035em\] {
  letter-spacing: -0.035em;
}

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

.focus-visible\:ring-offset-\[var\(--surface\)\]:focus-visible {
  --cw-ring-offset-color: var(--surface);
}

.underline {
  text-decoration-line: underline;
}

.decoration-\[var\(--line-strong\)\] {
  text-decoration-thickness: var(--line-strong);
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.hover\:decoration-\[var\(--accent\)\]:hover {
  text-decoration-thickness: var(--accent);
}

.gap-0 {
  gap: 0;
}

.min-h-\[420px\] {
  min-height: 420px;
}

.justify-center {
  justify-content: center;
}

.grid-cols-\[36px_1fr\] {
  grid-template-columns: 36px 1fr;
}

.gap-4 {
  gap: 1rem;
}

.opacity-70 {
  opacity: 0.7;
}

.min-h-\[160px\] {
  min-height: 160px;
}

.i-hugeicons-leaf-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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M7.646 15.71A6 6 0 0 1 7 13c0-3.215 2.5-5.5 6-6c4.082-.583 5.833-2.833 7-4c3.5 13-3 16-7 16a6 6 0 0 1-3-.803'/%3E%3Cpath d='M3 21c.5-3 2.458-4.864 7-6c3.217-.804 5.463-2.82 7-4.945'/%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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M7.646 15.71A6 6 0 0 1 7 13c0-3.215 2.5-5.5 6-6c4.082-.583 5.833-2.833 7-4c3.5 13-3 16-7 16a6 6 0 0 1-3-.803'/%3E%3Cpath d='M3 21c.5-3 2.458-4.864 7-6c3.217-.804 5.463-2.82 7-4.945'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.i-hugeicons-leaf-03 {
  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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M6.675 17.325a7.426 7.426 0 0 1 0-10.502C10.613 2.885 20.459 3.54 20.459 3.54s.656 9.846-3.282 13.784A7.42 7.42 0 0 1 10 19.247'/%3E%3Cpath d='m3.5 20.5l12-12'/%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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M6.675 17.325a7.426 7.426 0 0 1 0-10.502C10.613 2.885 20.459 3.54 20.459 3.54s.656 9.846-3.282 13.784A7.42 7.42 0 0 1 10 19.247'/%3E%3Cpath d='m3.5 20.5l12-12'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.i-hugeicons-leaf-04 {
  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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M8.157 15.843c-1.077-.007-2.56-.27-3.723-1.433c-2.072-2.072-1.289-5.157-1.289-5.157s1.615-.41 3.293.149a6 6 0 0 1-.052-.793C6.386 5.003 9.59 3 9.59 3s2.003 1.252 2.842 3.557c2.793-1.953 6.182-1.171 6.182-1.171s.782 3.39-1.171 6.182C19.748 12.407 21 14.41 21 14.41s-2.003 3.204-5.609 3.204a6 6 0 0 1-.793-.052c.558 1.678.149 3.293.149 3.293s-3.085.783-5.157-1.29'/%3E%3Cpath d='m3 21l10-10'/%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-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M8.157 15.843c-1.077-.007-2.56-.27-3.723-1.433c-2.072-2.072-1.289-5.157-1.289-5.157s1.615-.41 3.293.149a6 6 0 0 1-.052-.793C6.386 5.003 9.59 3 9.59 3s2.003 1.252 2.842 3.557c2.793-1.953 6.182-1.171 6.182-1.171s.782 3.39-1.171 6.182C19.748 12.407 21 14.41 21 14.41s-2.003 3.204-5.609 3.204a6 6 0 0 1-.793-.052c.558 1.678.149 3.293.149 3.293s-3.085.783-5.157-1.29'/%3E%3Cpath d='m3 21l10-10'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.i-hugeicons-leaf-02 {
  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-linecap='round' stroke-width='1.5'%3E%3Cpath d='M3 21L17 7'/%3E%3Cpath stroke-linejoin='round' d='M6.696 17.304c-2.133-2.132-2.844-5.687 1.421-9.952c5.332-5.331 12.796-4.265 12.796-4.265s1.066 7.464-4.265 12.796c-2.51 2.51-4.775 3.297-6.648 3.084'/%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-linecap='round' stroke-width='1.5'%3E%3Cpath d='M3 21L17 7'/%3E%3Cpath stroke-linejoin='round' d='M6.696 17.304c-2.133-2.132-2.844-5.687 1.421-9.952c5.332-5.331 12.796-4.265 12.796-4.265s1.066 7.464-4.265 12.796c-2.51 2.51-4.775 3.297-6.648 3.084'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.i-hugeicons-plant-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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M18 10s-6 4-6 11m-2.651-9.817a4.114 4.114 0 0 1-5.37-.388C1.555 8.372 2.039 3.04 2.039 3.04s5.333-.485 7.756 1.939a4.1 4.1 0 0 1 1.16 3.521'/%3E%3Cpath d='M14.964 12.818a3.656 3.656 0 0 1 .107-5.06c2.154-2.154 6.894-1.723 6.894-1.723s.43 4.74-1.724 6.894a3.65 3.65 0 0 1-2.741 1.068M6 7s6 5 6 14'/%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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M18 10s-6 4-6 11m-2.651-9.817a4.114 4.114 0 0 1-5.37-.388C1.555 8.372 2.039 3.04 2.039 3.04s5.333-.485 7.756 1.939a4.1 4.1 0 0 1 1.16 3.521'/%3E%3Cpath d='M14.964 12.818a3.656 3.656 0 0 1 .107-5.06c2.154-2.154 6.894-1.723 6.894-1.723s.43 4.74-1.724 6.894a3.65 3.65 0 0 1-2.741 1.068M6 7s6 5 6 14'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.gap-10 {
  gap: 2.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.i-hugeicons-ruler {
  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-linecap='round' stroke-width='1.5'%3E%3Cpath d='m17.5 10.5l2 2M14 14l2 2m-5.5 1.5l2 2'/%3E%3Cpath stroke-linejoin='round' d='M10.536 4.678c1.364-1.365 2.047-2.047 2.808-2.363a4.14 4.14 0 0 1 3.17 0c.761.316 1.444.998 2.808 2.363c1.365 1.364 2.047 2.047 2.363 2.808a4.14 4.14 0 0 1 0 3.17c-.316.761-.998 1.444-2.363 2.808l-5.857 5.858c-1.365 1.365-2.048 2.047-2.809 2.363a4.14 4.14 0 0 1-3.17 0c-.761-.316-1.444-.998-2.808-2.363c-1.365-1.364-2.047-2.047-2.363-2.808a4.14 4.14 0 0 1 0-3.17c.316-.761.998-1.444 2.363-2.808z'/%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-linecap='round' stroke-width='1.5'%3E%3Cpath d='m17.5 10.5l2 2M14 14l2 2m-5.5 1.5l2 2'/%3E%3Cpath stroke-linejoin='round' d='M10.536 4.678c1.364-1.365 2.047-2.047 2.808-2.363a4.14 4.14 0 0 1 3.17 0c.761.316 1.444.998 2.808 2.363c1.365 1.364 2.047 2.047 2.363 2.808a4.14 4.14 0 0 1 0 3.17c-.316.761-.998 1.444-2.363 2.808l-5.857 5.858c-1.365 1.365-2.048 2.047-2.809 2.363a4.14 4.14 0 0 1-3.17 0c-.761-.316-1.444-.998-2.808-2.363c-1.365-1.364-2.047-2.047-2.363-2.808a4.14 4.14 0 0 1 0-3.17c.316-.761.998-1.444 2.363-2.808z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.i-hugeicons-calendar-03 {
  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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M16 2v4M8 2v4m5-2h-2C7.229 4 5.343 4 4.172 5.172S3 8.229 3 12v2c0 3.771 0 5.657 1.172 6.828S7.229 22 11 22h2c3.771 0 5.657 0 6.828-1.172S21 17.771 21 14v-2c0-3.771 0-5.657-1.172-6.828S16.771 4 13 4M3 10h18'/%3E%3Cpath d='M12.126 14H12m.125 4H12m-4.376-4H7.5m.125 4H7.5m9.125-4H16.5m-4.25 0a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m0 4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m-4.5-4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m0 4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m9-4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0'/%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-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M16 2v4M8 2v4m5-2h-2C7.229 4 5.343 4 4.172 5.172S3 8.229 3 12v2c0 3.771 0 5.657 1.172 6.828S7.229 22 11 22h2c3.771 0 5.657 0 6.828-1.172S21 17.771 21 14v-2c0-3.771 0-5.657-1.172-6.828S16.771 4 13 4M3 10h18'/%3E%3Cpath d='M12.126 14H12m.125 4H12m-4.376-4H7.5m.125 4H7.5m9.125-4H16.5m-4.25 0a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m0 4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m-4.5-4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m0 4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0m9-4a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.i-hugeicons-shield-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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18.709 3.495C16.817 2.554 14.5 2 12 2s-4.816.554-6.709 1.495c-.928.462-1.392.693-1.841 1.419S3 6.342 3 7.748v3.49c0 5.683 4.542 8.842 7.173 10.196c.734.377 1.1.566 1.827.566s1.093-.189 1.827-.566C16.457 20.08 21 16.92 21 11.237V7.748c0-1.406 0-2.108-.45-2.834s-.913-.957-1.841-1.419'/%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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18.709 3.495C16.817 2.554 14.5 2 12 2s-4.816.554-6.709 1.495c-.928.462-1.392.693-1.841 1.419S3 6.342 3 7.748v3.49c0 5.683 4.542 8.842 7.173 10.196c.734.377 1.1.566 1.827.566s1.093-.189 1.827-.566C16.457 20.08 21 16.92 21 11.237V7.748c0-1.406 0-2.108-.45-2.834s-.913-.957-1.841-1.419'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.opacity-80 {
  opacity: 0.8;
}

.i-hugeicons-arrow-right-02 {
  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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18.5 12H5m8 6s6-4.419 6-6s-6-6-6-6'/%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%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18.5 12H5m8 6s6-4.419 6-6s-6-6-6-6'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.max-w-sm {
  max-width: 24rem;
}

.leading-5 {
  line-height: 1.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

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

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

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

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

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

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

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.top-0 {
  top: 0;
}

.mt-5 {
  margin-top: 1.25rem;
}

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

.mt-8 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

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

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

.mt-2 {
  margin-top: 0.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
.sm\:inline {
  display: inline;
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm\:col-span-2 {
  grid-column: span 2 / span 2;
}
}

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

.md\:grid-cols-\[0\.88fr_1\.12fr\] {
  grid-template-columns: 0.88fr 1.12fr;
}

.md\:text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.md\:-mr-\[6vw\] {
  margin-right: -6vw;
}

.md\:h-\[72dvh\] {
  height: 72dvh;
}

.md\:min-h-\[590px\] {
  min-height: 590px;
}

.md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.md\:border-l {
  border-left-width: 1px;
}

.md\:text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:col-span-2 {
  grid-column: span 2 / span 2;
}

.md\:grid {
  display: grid;
}

.md\:grid-cols-\[1\.2fr_1fr\] {
  grid-template-columns: 1.2fr 1fr;
}

.md\:p-7 {
  padding: 1.75rem;
}

.md\:grid-cols-\[1\.2fr_0\.8fr\] {
  grid-template-columns: 1.2fr 0.8fr;
}

.md\:grid-cols-\[1\.25fr_0\.75fr_1fr\] {
  grid-template-columns: 1.25fr 0.75fr 1fr;
}

.md\:grid-cols-\[0\.72fr_1\.28fr\] {
  grid-template-columns: 0.72fr 1.28fr;
}

.md\:items-start {
  align-items: flex-start;
}

.md\:sticky {
  position: sticky;
}

.md\:grid-cols-\[1\.4fr_1fr_1fr\] {
  grid-template-columns: 1.4fr 1fr 1fr;
}

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

.md\:py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.md\:py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.md\:py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.md\:px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.md\:py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.md\:py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.md\:pr-8 {
  padding-right: 2rem;
}

.md\:pl-8 {
  padding-left: 2rem;
}

.md\:border-t-0 {
  border-top-width: 0px;
}

.md\:top-32 {
  top: 8rem;
}
}