@ddmetrics/untitled-ui-make-kit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/ATTRIBUTIONS.md +3 -0
  2. package/README.md +60 -0
  3. package/dist/index.d.ts +2 -0
  4. package/dist/index.js +2054 -0
  5. package/dist/kit.d.ts +10 -0
  6. package/dist/untitled-kit/components/base.d.ts +7 -0
  7. package/dist/untitled-kit/components/foundations.d.ts +5 -0
  8. package/dist/untitled-kit/components/index.d.ts +3 -0
  9. package/dist/untitled-kit/components/marketing.d.ts +3 -0
  10. package/dist/untitled-kit/components/source/base/avatar/avatar.d.ts +64 -0
  11. package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-add-button.d.ts +8 -0
  12. package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-company-icon.d.ts +7 -0
  13. package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-count.d.ts +6 -0
  14. package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-online-indicator.d.ts +7 -0
  15. package/dist/untitled-kit/components/source/base/avatar/base-components/index.d.ts +4 -0
  16. package/dist/untitled-kit/components/source/base/avatar/base-components/verified-tick.d.ts +6 -0
  17. package/dist/untitled-kit/components/source/base/badges/badge-groups.d.ts +22 -0
  18. package/dist/untitled-kit/components/source/base/badges/badge-types.d.ts +21 -0
  19. package/dist/untitled-kit/components/source/base/badges/badges.d.ts +128 -0
  20. package/dist/untitled-kit/components/source/base/buttons/button.d.ts +102 -0
  21. package/dist/untitled-kit/components/source/base/form/form.d.ts +6 -0
  22. package/dist/untitled-kit/components/source/base/input/hint-text.d.ts +14 -0
  23. package/dist/untitled-kit/components/source/base/input/input.d.ts +58 -0
  24. package/dist/untitled-kit/components/source/base/input/label.d.ts +15 -0
  25. package/dist/untitled-kit/components/source/base/tooltip/tooltip.d.ts +29 -0
  26. package/dist/untitled-kit/components/source/foundations/dot-icon.d.ts +4 -0
  27. package/dist/untitled-kit/components/source/foundations/featured-icon/featured-icon.d.ts +14 -0
  28. package/dist/untitled-kit/components/source/foundations/logo/untitledui-logo-minimal.d.ts +2 -0
  29. package/dist/untitled-kit/components/source/foundations/logo/untitledui-logo.d.ts +2 -0
  30. package/dist/untitled-kit/components/source/foundations/rating-stars.d.ts +29 -0
  31. package/dist/untitled-kit/components/source/marketing/features/base-components/feature-text.d.ts +37 -0
  32. package/dist/untitled-kit/components/source/marketing/header-section/base-components/flow-pattern.d.ts +2 -0
  33. package/dist/untitled-kit/components/source/marketing/pricing-sections/base-components/pricing-tier-card.d.ts +87 -0
  34. package/dist/untitled-kit/hooks/use-breakpoint.d.ts +9 -0
  35. package/dist/untitled-kit/hooks/use-resize-observer.d.ts +24 -0
  36. package/dist/untitled-kit/index.d.ts +3 -0
  37. package/dist/untitled-kit/templates/CTANewsletterTemplate.d.ts +8 -0
  38. package/dist/untitled-kit/templates/ContentSplitImageTemplate.d.ts +2 -0
  39. package/dist/untitled-kit/templates/FAQAccordionTemplate.d.ts +10 -0
  40. package/dist/untitled-kit/templates/FeatureGridTemplate.d.ts +8 -0
  41. package/dist/untitled-kit/templates/FooterTemplate.d.ts +7 -0
  42. package/dist/untitled-kit/templates/HeaderTemplate.d.ts +8 -0
  43. package/dist/untitled-kit/templates/HeroSplitImageTemplate.d.ts +10 -0
  44. package/dist/untitled-kit/templates/PricingSectionTemplate.d.ts +8 -0
  45. package/dist/untitled-kit/templates/TestimonialSectionTemplate.d.ts +5 -0
  46. package/dist/untitled-kit/templates/index.d.ts +17 -0
  47. package/dist/untitled-kit/types/marketing.d.ts +53 -0
  48. package/dist/untitled-kit/utils/cx.d.ts +11 -0
  49. package/dist/untitled-kit/utils/is-react-component.d.ts +19 -0
  50. package/dist/untitled-ui-make-kit.css +1 -0
  51. package/guidelines/Guidelines.md +96 -0
  52. package/guidelines/component-inventory.md +40 -0
  53. package/guidelines/section-mapping.md +131 -0
  54. package/guidelines/styles.md +87 -0
  55. package/package.json +59 -0
@@ -0,0 +1,37 @@
1
+ import type { FC } from "react";
2
+ import { type ReactNode } from "react";
3
+ interface TextCentered {
4
+ title: string;
5
+ subtitle: string;
6
+ footer?: ReactNode;
7
+ }
8
+ export declare const FeatureTextCentered: ({ title, subtitle, footer }: TextCentered) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const FeatureTextLeft: ({ title, subtitle, footer }: TextCentered) => import("react/jsx-runtime").JSX.Element;
10
+ interface FeatureTextIcon extends TextCentered {
11
+ icon: FC<{
12
+ className?: string;
13
+ }>;
14
+ }
15
+ export declare const FeatureTextIconTopCentered: ({ icon: Icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
16
+ export declare const FeatureTextIconTopLeft: ({ icon: Icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
17
+ export declare const FeatureTextIconLeft: ({ icon: Icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
18
+ export declare const FeatureTextFeaturedIconTopCentered: ({ color, theme, icon, title, subtitle, footer, }: FeatureTextIcon & {
19
+ color?: "brand" | "gray" | "success" | "warning" | "error";
20
+ theme?: "light" | "gradient" | "dark" | "outline" | "modern";
21
+ }) => import("react/jsx-runtime").JSX.Element;
22
+ export declare const FeatureTextFeaturedIconTopLeft: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
23
+ export declare const FeatureTextFeaturedIconLeft: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
24
+ export declare const FeatureTextFeaturedIconBox: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
25
+ interface FeatureTextIntegrationIcon extends TextCentered {
26
+ imgUrl: string;
27
+ }
28
+ export declare const FeatureTextIntegrationIconTopCentered: ({ imgUrl, title, subtitle, footer }: FeatureTextIntegrationIcon) => import("react/jsx-runtime").JSX.Element;
29
+ export declare const FeatureTextIntegrationIconTopLeft: ({ imgUrl, title, subtitle, footer }: FeatureTextIntegrationIcon) => import("react/jsx-runtime").JSX.Element;
30
+ export declare const FeatureTextIntegrationIconLeft: ({ imgUrl, title, subtitle, footer }: FeatureTextIntegrationIcon) => import("react/jsx-runtime").JSX.Element;
31
+ export declare const FeatureTextIntegrationIconBox: ({ imgUrl, title, subtitle, footer }: FeatureTextIntegrationIcon) => import("react/jsx-runtime").JSX.Element;
32
+ export declare const FeatureTextIconCard: ({ icon: Icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
33
+ export declare const FeatureTextFeaturedIconCard: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
34
+ export declare const FeatureTextLeftBrand: ({ title, subtitle, footer }: TextCentered) => import("react/jsx-runtime").JSX.Element;
35
+ export declare const FeatureTextFeaturedIconTopCenteredBrand: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
36
+ export declare const FeatureTextFeaturedIconTopLeftBrand: ({ icon, title, subtitle, footer }: FeatureTextIcon) => import("react/jsx-runtime").JSX.Element;
37
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from "react";
2
+ export declare const FlowPattern: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,87 @@
1
+ import type { FC, ReactNode } from "react";
2
+ export declare const CheckItemText: (props: {
3
+ size?: "sm" | "md" | "lg" | "xl";
4
+ text?: string;
5
+ color?: "primary" | "success";
6
+ iconStyle?: "outlined" | "contained" | "filled";
7
+ textClassName?: string;
8
+ }) => import("react/jsx-runtime").JSX.Element;
9
+ interface PricingTierCardProps {
10
+ icon: FC<{
11
+ className?: string;
12
+ }>;
13
+ iconTheme?: "light" | "gradient" | "dark" | "outline" | "modern";
14
+ iconColor?: "brand" | "gray" | "success" | "warning" | "error";
15
+ title: string;
16
+ subtitle: string;
17
+ description?: string;
18
+ features: string[];
19
+ className?: string;
20
+ }
21
+ export declare const PricingTierCardIcon: (props: PricingTierCardProps) => import("react/jsx-runtime").JSX.Element;
22
+ export declare const PricingTierCardCallout: (props: {
23
+ title: string;
24
+ subtitle: string;
25
+ description?: string;
26
+ features: string[];
27
+ secondAction?: string;
28
+ checkItemTextColor?: "primary" | "success";
29
+ hasCallout?: boolean;
30
+ className?: string;
31
+ }) => import("react/jsx-runtime").JSX.Element;
32
+ export declare const PricingTierCardIconOffset: (props: PricingTierCardProps) => import("react/jsx-runtime").JSX.Element;
33
+ export declare const PricingTierCardDualCheckItems: (props: {
34
+ title: string;
35
+ description?: string;
36
+ contentTitle: string;
37
+ contentDescription: ReactNode;
38
+ price?: number;
39
+ badge?: string;
40
+ features: string[];
41
+ className?: string;
42
+ }) => import("react/jsx-runtime").JSX.Element;
43
+ export declare const PricingTierCardBadge: (props: {
44
+ title: string;
45
+ subtitle: string;
46
+ description?: string;
47
+ features: string[];
48
+ className?: string;
49
+ }) => import("react/jsx-runtime").JSX.Element;
50
+ export declare const PricingTierCardBadgeGroup: (props: {
51
+ title: string;
52
+ subtitle: string;
53
+ description?: string;
54
+ features: string[];
55
+ isMostPopular?: boolean;
56
+ className?: string;
57
+ }) => import("react/jsx-runtime").JSX.Element;
58
+ export declare const PricingTierCardDualAction: (props: {
59
+ title: string;
60
+ description?: string;
61
+ contentTitle: string;
62
+ contentDescription: ReactNode;
63
+ badge?: string;
64
+ price: string;
65
+ features: string[];
66
+ className?: string;
67
+ }) => import("react/jsx-runtime").JSX.Element;
68
+ export declare const PricingTierCardBanner: (props: {
69
+ banner?: string;
70
+ title: string;
71
+ subtitle: string;
72
+ description?: string;
73
+ features: string[];
74
+ className?: string;
75
+ secondAction?: string;
76
+ }) => import("react/jsx-runtime").JSX.Element;
77
+ export declare const PricingTierCardSimple: (props: PricingTierCardProps) => import("react/jsx-runtime").JSX.Element;
78
+ export declare const PricingTierCardPrimaryCardIcon: (props: {
79
+ title: string;
80
+ icon: FC<{
81
+ className?: string;
82
+ }>;
83
+ subtitle: string;
84
+ description: string;
85
+ features: string[];
86
+ }) => import("react/jsx-runtime").JSX.Element;
87
+ export {};
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Checks whether a particular Tailwind CSS viewport size applies.
3
+ *
4
+ * @param size The size to check, which must either be included in Tailwind CSS's
5
+ * list of default screen sizes, or added to the Tailwind CSS config file.
6
+ *
7
+ * @returns A boolean indicating whether the viewport size applies.
8
+ */
9
+ export declare const useBreakpoint: (size: "sm" | "md" | "lg" | "xl" | "2xl") => boolean;
@@ -0,0 +1,24 @@
1
+ import type { RefObject } from "@react-types/shared";
2
+ /**
3
+ * The options for the useResizeObserver hook.
4
+ */
5
+ type useResizeObserverOptionsType<T> = {
6
+ /**
7
+ * The ref to the element to observe.
8
+ */
9
+ ref: RefObject<T | undefined | null> | undefined;
10
+ /**
11
+ * The box to observe.
12
+ */
13
+ box?: ResizeObserverBoxOptions;
14
+ /**
15
+ * The callback function to call when the size changes.
16
+ */
17
+ onResize: () => void;
18
+ };
19
+ /**
20
+ * A hook that observes the size of an element and calls a callback function when the size changes.
21
+ * @param options - The options for the hook.
22
+ */
23
+ export declare function useResizeObserver<T extends Element>(options: useResizeObserverOptionsType<T>): void;
24
+ export {};
@@ -0,0 +1,3 @@
1
+ export * from "./components";
2
+ export * from "./templates";
3
+ export type { FaqItem, FeatureItem, FooterColumn, IconComponent, KitCta, KitImage, NavItem, PricingPlan, RichContentBlock, TestimonialItem, } from "./types/marketing";
@@ -0,0 +1,8 @@
1
+ export interface CTANewsletterTemplateProps {
2
+ headline: string;
3
+ description: string;
4
+ placeholder?: string;
5
+ buttonLabel?: string;
6
+ privacyHref?: string;
7
+ }
8
+ export declare const CTANewsletterTemplate: ({ headline, description, placeholder, buttonLabel, privacyHref, }: CTANewsletterTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { RichContentBlock } from "@/untitled-kit/types/marketing";
2
+ export declare const ContentSplitImageTemplate: ({ eyebrow, title, description, body, cta, image }: RichContentBlock) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import type { FaqItem, KitCta } from "@/untitled-kit/types/marketing";
2
+ export interface FAQAccordionTemplateProps {
3
+ headline: string;
4
+ description?: string;
5
+ items: FaqItem[];
6
+ supportTitle?: string;
7
+ supportDescription?: string;
8
+ supportCta?: KitCta;
9
+ }
10
+ export declare const FAQAccordionTemplate: ({ headline, description, items, supportTitle, supportDescription, supportCta }: FAQAccordionTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import type { FeatureItem } from "@/untitled-kit/types/marketing";
2
+ export interface FeatureGridTemplateProps {
3
+ eyebrow?: string;
4
+ headline?: string;
5
+ description?: string;
6
+ features: FeatureItem[];
7
+ }
8
+ export declare const FeatureGridTemplate: ({ eyebrow, headline, description, features }: FeatureGridTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import type { FooterColumn } from "@/untitled-kit/types/marketing";
2
+ export interface FooterTemplateProps {
3
+ columns: FooterColumn[];
4
+ copyright: string;
5
+ showNewBadgeOn?: string;
6
+ }
7
+ export declare const FooterTemplate: ({ columns, copyright, showNewBadgeOn }: FooterTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import type { KitCta, NavItem } from "@/untitled-kit/types/marketing";
2
+ export interface HeaderTemplateProps {
3
+ logoLabel?: string;
4
+ navItems: NavItem[];
5
+ primaryCta?: KitCta;
6
+ secondaryCta?: KitCta;
7
+ }
8
+ export declare const HeaderTemplate: ({ logoLabel, navItems, primaryCta, secondaryCta }: HeaderTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import type { KitCta, KitImage } from "@/untitled-kit/types/marketing";
2
+ export interface HeroSplitImageTemplateProps {
3
+ eyebrow?: string;
4
+ headline: string;
5
+ description: string;
6
+ primaryCta: KitCta;
7
+ secondaryCta?: KitCta;
8
+ image: KitImage;
9
+ }
10
+ export declare const HeroSplitImageTemplate: ({ eyebrow, headline, description, primaryCta, secondaryCta, image }: HeroSplitImageTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import type { PricingPlan } from "@/untitled-kit/types/marketing";
2
+ export interface PricingSectionTemplateProps {
3
+ eyebrow?: string;
4
+ headline: string;
5
+ description?: string;
6
+ plans: PricingPlan[];
7
+ }
8
+ export declare const PricingSectionTemplate: ({ eyebrow, headline, description, plans }: PricingSectionTemplateProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import type { TestimonialItem } from "@/untitled-kit/types/marketing";
2
+ export interface TestimonialSectionTemplateProps {
3
+ testimonials: TestimonialItem[];
4
+ }
5
+ export declare const TestimonialSectionTemplate: ({ testimonials }: TestimonialSectionTemplateProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,17 @@
1
+ export { CTANewsletterTemplate } from "./CTANewsletterTemplate";
2
+ export type { CTANewsletterTemplateProps } from "./CTANewsletterTemplate";
3
+ export { ContentSplitImageTemplate } from "./ContentSplitImageTemplate";
4
+ export { FAQAccordionTemplate } from "./FAQAccordionTemplate";
5
+ export type { FAQAccordionTemplateProps } from "./FAQAccordionTemplate";
6
+ export { FeatureGridTemplate } from "./FeatureGridTemplate";
7
+ export type { FeatureGridTemplateProps } from "./FeatureGridTemplate";
8
+ export { FooterTemplate } from "./FooterTemplate";
9
+ export type { FooterTemplateProps } from "./FooterTemplate";
10
+ export { HeaderTemplate } from "./HeaderTemplate";
11
+ export type { HeaderTemplateProps } from "./HeaderTemplate";
12
+ export { HeroSplitImageTemplate } from "./HeroSplitImageTemplate";
13
+ export type { HeroSplitImageTemplateProps } from "./HeroSplitImageTemplate";
14
+ export { PricingSectionTemplate } from "./PricingSectionTemplate";
15
+ export type { PricingSectionTemplateProps } from "./PricingSectionTemplate";
16
+ export { TestimonialSectionTemplate } from "./TestimonialSectionTemplate";
17
+ export type { TestimonialSectionTemplateProps } from "./TestimonialSectionTemplate";
@@ -0,0 +1,53 @@
1
+ import type { FC, ReactNode } from "react";
2
+ export type IconComponent = FC<{
3
+ className?: string;
4
+ }>;
5
+ export interface KitCta {
6
+ label: string;
7
+ href?: string;
8
+ }
9
+ export interface KitImage {
10
+ src: string;
11
+ alt: string;
12
+ }
13
+ export interface FeatureItem {
14
+ title: string;
15
+ description: string;
16
+ icon: IconComponent;
17
+ }
18
+ export interface FaqItem {
19
+ question: string;
20
+ answer: string;
21
+ }
22
+ export interface NavItem {
23
+ label: string;
24
+ href: string;
25
+ }
26
+ export interface FooterColumn {
27
+ label: string;
28
+ items: NavItem[];
29
+ }
30
+ export interface PricingPlan {
31
+ title: string;
32
+ price: string;
33
+ description?: string;
34
+ features: string[];
35
+ icon: IconComponent;
36
+ }
37
+ export interface TestimonialItem {
38
+ id: string;
39
+ quote: string;
40
+ author: {
41
+ name: string;
42
+ title: string;
43
+ avatarUrl: string;
44
+ };
45
+ }
46
+ export interface RichContentBlock {
47
+ eyebrow?: string;
48
+ title: string;
49
+ description?: string;
50
+ body?: ReactNode;
51
+ cta?: KitCta;
52
+ image: KitImage;
53
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This function is a wrapper around the twMerge function.
3
+ * It is used to merge the classes inside style objects.
4
+ */
5
+ export declare const cx: (...classLists: import("tailwind-merge").ClassNameValue[]) => string;
6
+ /**
7
+ * This function does nothing besides helping us to be able to
8
+ * sort the classes inside style objects which is not supported
9
+ * by the Tailwind IntelliSense by default.
10
+ */
11
+ export declare function sortCx<T extends Record<string, string | number | Record<string, string | number | Record<string, string | number>>>>(classes: T): T;
@@ -0,0 +1,19 @@
1
+ import type React from "react";
2
+ type ReactComponent = React.FC<any> | React.ComponentClass<any, any>;
3
+ /**
4
+ * Checks if a given value is a function component.
5
+ */
6
+ export declare const isFunctionComponent: (component: any) => component is React.FC<any>;
7
+ /**
8
+ * Checks if a given value is a class component.
9
+ */
10
+ export declare const isClassComponent: (component: any) => component is React.ComponentClass<any, any>;
11
+ /**
12
+ * Checks if a given value is a forward ref component.
13
+ */
14
+ export declare const isForwardRefComponent: (component: any) => component is React.ForwardRefExoticComponent<any>;
15
+ /**
16
+ * Checks if a given value is a valid React component.
17
+ */
18
+ export declare const isReactComponent: (component: any) => component is ReactComponent;
19
+ export {};
@@ -0,0 +1 @@
1
+ /*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--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-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:"";--tw-mask-linear:linear-gradient(#fff,#fff);--tw-mask-radial:linear-gradient(#fff,#fff);--tw-mask-conic:linear-gradient(#fff,#fff);--tw-mask-left:linear-gradient(#fff,#fff);--tw-mask-right:linear-gradient(#fff,#fff);--tw-mask-bottom:linear-gradient(#fff,#fff);--tw-mask-top:linear-gradient(#fff,#fff);--tw-mask-bottom-from-position:0%;--tw-mask-bottom-to-position:100%;--tw-mask-bottom-from-color:black;--tw-mask-bottom-to-color:transparent;--tw-animation-delay:0s;--tw-animation-direction:normal;--tw-animation-duration:initial;--tw-animation-fill-mode:none;--tw-animation-iteration-count:1;--tw-enter-blur:0;--tw-enter-opacity:1;--tw-enter-rotate:0;--tw-enter-scale:1;--tw-enter-translate-x:0;--tw-enter-translate-y:0;--tw-exit-blur:0;--tw-exit-opacity:1;--tw-exit-rotate:0;--tw-exit-scale:1;--tw-exit-translate-x:0;--tw-exit-translate-y:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-yellow-400:oklch(85.2% .199 91.936);--color-neutral-500:oklch(55.6% 0 0);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-sm:24rem;--container-lg:32rem;--container-3xl:48rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--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-3xl:1.875rem;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--radius-xs:.125rem;--radius-2xl:1rem;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--animate-spin:spin 1s linear infinite;--blur-lg:16px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--radius-button:var(--radius-button);--radius-toggle:var(--radius-toggle)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;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:var(--default-font-feature-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:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.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{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}: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}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{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{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:var(--ring)}@supports (color:color-mix(in lab,red,red)){*{outline-color:color-mix(in oklab,var(--ring)50%,transparent)}}body{background-color:var(--background);color:var(--foreground);font-family:var(--font-family-figtree)}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) h1{font-family:var(--font-family-figtree);font-size:var(--text-3xl);font-weight:var(--font-weight-bold);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) h2{font-family:var(--font-family-figtree);font-size:var(--text-2xl);font-weight:var(--font-weight-semibold);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) h3{font-family:var(--font-family-figtree);font-size:var(--text-xl);font-weight:var(--font-weight-semibold);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) h4{font-family:var(--font-family-figtree);font-size:var(--text-lg);font-weight:var(--font-weight-semibold);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) p{font-family:var(--font-family-figtree);font-size:var(--text-base);font-weight:var(--font-weight-normal);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) label{font-family:var(--font-family-figtree);font-size:var(--text-xs);font-weight:var(--font-weight-medium);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) button{font-family:var(--font-family-figtree);font-size:var(--text-base);font-weight:var(--font-weight-medium);line-height:1.5}:where(:not(:has([class*=" text-"]),:not(:has([class^=text-])))) input{font-family:var(--font-family-figtree);font-size:var(--text-base);font-weight:var(--font-weight-normal);line-height:1.5}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-y-0\.5{inset-block:calc(var(--spacing)*.5)}.-top-0\.5{top:calc(var(--spacing)*-.5)}.-top-6{top:calc(var(--spacing)*-6)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-6{top:calc(var(--spacing)*6)}.-right-0\.5{right:calc(var(--spacing)*-.5)}.-right-px{right:-1px}.right-0{right:calc(var(--spacing)*0)}.right-0\.5{right:calc(var(--spacing)*.5)}.right-2{right:calc(var(--spacing)*2)}.right-3{right:calc(var(--spacing)*3)}.right-3\.5{right:calc(var(--spacing)*3.5)}.right-5{right:calc(var(--spacing)*5)}.-bottom-0\.5{bottom:calc(var(--spacing)*-.5)}.-bottom-px{bottom:-1px}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-9{bottom:calc(var(--spacing)*9)}.-left-18{left:calc(var(--spacing)*-18)}.left-1\/2{left:50%}.left-3{left:calc(var(--spacing)*3)}.left-3\.5{left:calc(var(--spacing)*3.5)}.z-1{z-index:1}.z-10{z-index:10}.z-50{z-index:50}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.m-0{margin:calc(var(--spacing)*0)}.mx-6{margin-inline:calc(var(--spacing)*6)}.mx-auto{margin-inline:auto}.-mt-2{margin-top:calc(var(--spacing)*-2)}.-mt-6{margin-top:calc(var(--spacing)*-6)}.-mt-\[26px\]{margin-top:-26px}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-1\.5{margin-top:calc(var(--spacing)*1.5)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-2\.5{margin-top:calc(var(--spacing)*2.5)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-12{margin-top:calc(var(--spacing)*12)}.mt-\[10\%\]{margin-top:10%}.mt-auto{margin-top:auto}.mr-1\.5{margin-right:calc(var(--spacing)*1.5)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.ml-0\.5{margin-left:calc(var(--spacing)*.5)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.aspect-\[0\.3\]{aspect-ratio:.3}.aspect-\[3\]{aspect-ratio:3}.aspect-square{aspect-ratio:1}.size-1\.5{width:calc(var(--spacing)*1.5);height:calc(var(--spacing)*1.5)}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-4\.5{width:calc(var(--spacing)*4.5);height:calc(var(--spacing)*4.5)}.size-5{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-7{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.size-10{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.size-12{width:calc(var(--spacing)*12);height:calc(var(--spacing)*12)}.size-13{width:calc(var(--spacing)*13);height:calc(var(--spacing)*13)}.size-14{width:calc(var(--spacing)*14);height:calc(var(--spacing)*14)}.size-16{width:calc(var(--spacing)*16);height:calc(var(--spacing)*16)}.size-full{width:100%;height:100%}.size-max{width:max-content;height:max-content}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-20{height:calc(var(--spacing)*20)}.h-60{height:calc(var(--spacing)*60)}.h-70{height:calc(var(--spacing)*70)}.h-\[20\%\]{height:20%}.h-full{height:100%}.h-max{height:max-content}.h-px{height:1px}.max-h-5{max-height:calc(var(--spacing)*5)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-48\.5{width:calc(var(--spacing)*48.5)}.w-92{width:calc(var(--spacing)*92)}.w-\[60\%\]{width:60%}.w-\[80\%\]{width:80%}.w-auto{width:auto}.w-full{width:100%}.w-max{width:max-content}.w-min{width:min-content}.w-px{width:1px}.max-w-3xl{max-width:var(--container-3xl)}.max-w-140{max-width:calc(var(--spacing)*140)}.max-w-270{max-width:calc(var(--spacing)*270)}.max-w-lg{max-width:var(--container-lg)}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.max-w-xs{max-width:var(--container-xs)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.origin-\(--trigger-anchor-point\){transform-origin:var(--trigger-anchor-point)}.origin-bottom{transform-origin:bottom}.origin-center{transform-origin:50%}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-1\/2{--tw-translate-x: 50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-\[5px\]{--tw-translate-y: -5px ;translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-\[1\.2\]{scale:1.2}.-rotate-90{rotate:-90deg}.rotate-0{rotate:none}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-in{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.animate-out{animation:exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.animate-spin{animation:var(--animate-spin)}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.place-content-center{place-content:center}.place-items-center{place-items:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-normal{justify-content:normal}.justify-start{justify-content:flex-start}.justify-items-center{justify-items:center}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}.gap-10{gap:calc(var(--spacing)*10)}.gap-12{gap:calc(var(--spacing)*12)}.gap-16{gap:calc(var(--spacing)*16)}.gap-x-8{column-gap:calc(var(--spacing)*8)}:where(.-space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*-4)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*-4)*calc(1 - var(--tw-space-x-reverse)))}.gap-y-4{row-gap:calc(var(--spacing)*4)}.gap-y-10{row-gap:calc(var(--spacing)*10)}.self-stretch{align-self:stretch}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-\[3px\]{border-radius:3px}.rounded-\[7px\]{border-radius:7px}.rounded-\[8px\]{border-radius:8px}.rounded-\[10px\]{border-radius:10px}.rounded-\[12px\]{border-radius:12px}.rounded-\[14px\]{border-radius:14px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:calc(var(--radius) + 2px)}.rounded-md{border-radius:var(--radius)}.rounded-xl{border-radius:calc(var(--radius) + 4px)}.rounded-xs{border-radius:var(--radius-xs)}.rounded-t-full{border-top-left-radius:3.40282e38px;border-top-right-radius:3.40282e38px}.rounded-tl-\[64px\]{border-top-left-radius:64px}.rounded-r-\[inherit\]{border-top-right-radius:inherit;border-bottom-right-radius:inherit}.rounded-b-2xl{border-bottom-right-radius:var(--radius-2xl);border-bottom-left-radius:var(--radius-2xl)}.rounded-b-full{border-bottom-right-radius:3.40282e38px;border-bottom-left-radius:3.40282e38px}.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-dashed{--tw-border-style:dashed;border-style:dashed}.border-none{--tw-border-style:none;border-style:none}.border-primary{border-color:var(--primary)}.border-secondary{border-color:var(--secondary)}.bg-primary,.bg-primary\/95{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.bg-primary\/95{background-color:color-mix(in oklab,var(--primary)95%,transparent)}}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:#0000}.bg-linear-to-r{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-r{--tw-gradient-position:to right in oklab}}.bg-linear-to-r{background-image:linear-gradient(var(--tw-gradient-stops))}.from-transparent{--tw-gradient-from:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-40\%{--tw-gradient-to-position:40%}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.stroke-3{stroke-width:3px}.stroke-\[2\.25px\]{stroke-width:2.25px}.stroke-\[3px\]{stroke-width:3px}.object-cover{object-fit:cover}.p-0\!{padding:calc(var(--spacing)*0)!important}.p-0\.5{padding:calc(var(--spacing)*.5)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-1\.25{padding:calc(var(--spacing)*1.25)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-\[1\.5px\]{padding:1.5px}.p-px{padding:1px}.px-0\.5{padding-inline:calc(var(--spacing)*.5)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-3\.5{padding-inline:calc(var(--spacing)*3.5)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-4\.5{padding-inline:calc(var(--spacing)*4.5)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-8{padding-block:calc(var(--spacing)*8)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-px{padding-block:1px}.pt-0\.5{padding-top:calc(var(--spacing)*.5)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-8{padding-top:calc(var(--spacing)*8)}.pt-10{padding-top:calc(var(--spacing)*10)}.pt-12{padding-top:calc(var(--spacing)*12)}.pr-0\.75{padding-right:calc(var(--spacing)*.75)}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-1\.5{padding-right:calc(var(--spacing)*1.5)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-2\.5{padding-right:calc(var(--spacing)*2.5)}.pr-3{padding-right:calc(var(--spacing)*3)}.pr-8{padding-right:calc(var(--spacing)*8)}.pr-9{padding-right:calc(var(--spacing)*9)}.pr-9\.5{padding-right:calc(var(--spacing)*9.5)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-6{padding-bottom:calc(var(--spacing)*6)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-10{padding-bottom:calc(var(--spacing)*10)}.pl-0\.75{padding-left:calc(var(--spacing)*.75)}.pl-1{padding-left:calc(var(--spacing)*1)}.pl-1\.5{padding-left:calc(var(--spacing)*1.5)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-2\.5{padding-left:calc(var(--spacing)*2.5)}.pl-3{padding-left:calc(var(--spacing)*3)}.pl-8{padding-left:calc(var(--spacing)*8)}.pl-9{padding-left:calc(var(--spacing)*9)}.pl-10{padding-left:calc(var(--spacing)*10)}.pl-10\.5{padding-left:calc(var(--spacing)*10.5)}.text-center{text-align:center}.text-left{text-align:left}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.leading-\[13px\]{--tw-leading:13px;line-height:13px}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.text-balance{text-wrap:balance}.whitespace-nowrap{white-space:nowrap}.text-current{color:currentColor}.text-neutral-500{color:var(--color-neutral-500)}.text-primary{color:var(--primary)}.text-secondary{color:var(--secondary)}.text-white{color:var(--color-white)}.text-yellow-400{color:var(--color-yellow-400)}.uppercase{text-transform:uppercase}.not-italic{font-style:normal}.underline{text-decoration-line:underline}.underline-offset-3{text-underline-offset:3px}.opacity-30{opacity:.3}.opacity-50{opacity:.5}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);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,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring{--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-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + 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-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-\[1\.5px\]{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1.5px + 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-\[1\.67px\]{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1.67px + 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-primary{--tw-ring-color:var(--primary)}.ring-secondary{--tw-ring-color:var(--secondary)}.ring-transparent{--tw-ring-color:transparent}.outline-hidden{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.outline-3{outline-style:var(--tw-outline-style);outline-width:3px}.outline-\[0\.5px\]{outline-style:var(--tw-outline-style);outline-width:.5px}.-outline-offset-1{outline-offset:-1px}.-outline-offset-\[0\.5px\]{outline-offset:-.5px}.outline-black\/16{outline-color:#00000029}@supports (color:color-mix(in lab,red,red)){.outline-black\/16{outline-color:color-mix(in oklab,var(--color-black)16%,transparent)}}.outline-transparent{outline-color:#0000}.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,)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-lg{--tw-backdrop-blur:blur(var(--blur-lg));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.will-change-transform{will-change:transform}.select-none{-webkit-user-select:none;user-select:none}.zoom-in-95{--tw-enter-scale:.95}.zoom-out-95{--tw-exit-scale:.95}.fade-in{--tw-enter-opacity:0}.fade-out{--tw-exit-opacity:0}.ring-inset{--tw-ring-inset:inset}.not-first\:-mt-px:not(:first-child){margin-top:-1px}.not-first\:border-t:not(:first-child){border-top-style:var(--tw-border-style);border-top-width:1px}.not-first\:border-secondary:not(:first-child){border-color:var(--secondary)}.not-first\:pt-6:not(:first-child){padding-top:calc(var(--spacing)*6)}.not-dark\:hidden:not(:is(.dark *)){display:none}.group-required\:block:is(:where(.group):required *){display:block}.group-invalid\:ring-2:is(:where(.group):invalid *){--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)}.group-invalid\/input\:block:is(:where(.group\/input):invalid *){display:block}.group-invalid\/input\:hidden:is(:where(.group\/input):invalid *){display:none}.group-focus-visible\:outline-2:is(:where(.group):focus-visible *){outline-style:var(--tw-outline-style);outline-width:2px}.group-focus-visible\:outline-offset-2:is(:where(.group):focus-visible *){outline-offset:2px}.group-disabled\:cursor-not-allowed:is(:where(.group):disabled *){cursor:not-allowed}.group-disabled\:opacity-50:is(:where(.group):disabled *){opacity:.5}.before\:absolute:before{content:var(--tw-content);position:absolute}.before\:inset-0:before{content:var(--tw-content);inset:calc(var(--spacing)*0)}.before\:inset-1:before{content:var(--tw-content);inset:calc(var(--spacing)*1)}.before\:inset-\[0\.5px\]:before{content:var(--tw-content);top:.5px;right:.5px;bottom:.5px;left:.5px}.before\:inset-px:before{content:var(--tw-content);top:1px;right:1px;bottom:1px;left:1px}.before\:size-6:before{content:var(--tw-content);width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.before\:size-7:before{content:var(--tw-content);width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.before\:size-8:before{content:var(--tw-content);width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.before\:size-9:before{content:var(--tw-content);width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.before\:size-full:before{content:var(--tw-content);width:100%;height:100%}.before\:rounded-\[4px\]:before{content:var(--tw-content);border-radius:4px}.before\:rounded-\[5px\]:before{content:var(--tw-content);border-radius:5px}.before\:rounded-\[6px\]:before{content:var(--tw-content);border-radius:6px}.before\:rounded-\[7px\]:before{content:var(--tw-content);border-radius:7px}.before\:rounded-\[8px\]:before{content:var(--tw-content);border-radius:8px}.before\:rounded-\[9px\]:before{content:var(--tw-content);border-radius:9px}.before\:rounded-\[10px\]:before{content:var(--tw-content);border-radius:10px}.before\:rounded-\[11px\]:before{content:var(--tw-content);border-radius:11px}.before\:rounded-\[inherit\]:before{content:var(--tw-content);border-radius:inherit}.before\:rounded-full:before{content:var(--tw-content);border-radius:3.40282e38px}.before\:border:before{content:var(--tw-content);border-style:var(--tw-border-style);border-width:1px}.before\:border-2:before{content:var(--tw-content);border-style:var(--tw-border-style);border-width:2px}.before\:border-white\/12:before{content:var(--tw-content);border-color:#ffffff1f}@supports (color:color-mix(in lab,red,red)){.before\:border-white\/12:before{border-color:color-mix(in oklab,var(--color-white)12%,transparent)}}.before\:border-white\/32:before{content:var(--tw-content);border-color:#ffffff52}@supports (color:color-mix(in lab,red,red)){.before\:border-white\/32:before{border-color:color-mix(in oklab,var(--color-white)32%,transparent)}}.before\:mask-b-from-0\%:before{content:var(--tw-content);-webkit-mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left),var(--tw-mask-right),var(--tw-mask-bottom),var(--tw-mask-top);--tw-mask-bottom:linear-gradient(to bottom,var(--tw-mask-bottom-from-color)var(--tw-mask-bottom-from-position),var(--tw-mask-bottom-to-color)var(--tw-mask-bottom-to-position));--tw-mask-bottom-from-position:0%;-webkit-mask-composite:source-in;mask-composite:intersect}.before\:mask-\[linear-gradient\(to_bottom\,black_0\%\,transparent_25\%\,transparent_75\%\,black_100\%\)\]:before{content:var(--tw-content);-webkit-mask-image:linear-gradient(#000 0%,#0000 25% 75%,#000 100%);mask-image:linear-gradient(#000,#0000 25%,#0000 75%,#000)}.before\:shadow-\[0px_1px_2px_0px_rgba\(0\,0\,0\,0\.1\)\,0px_3px_3px_0px_rgba\(0\,0\,0\,0\.09\)\,1px_8px_5px_0px_rgba\(0\,0\,0\,0\.05\)\,2px_21px_6px_0px_rgba\(0\,0\,0\,0\)\,0px_0px_0px_1px_rgba\(0\,0\,0\,0\.08\)\,1px_13px_5px_0px_rgba\(0\,0\,0\,0\.01\)\,0px_-2px_2px_0px_rgba\(0\,0\,0\,0\.13\)_inset\]:before{content:var(--tw-content);--tw-shadow:0px 1px 2px 0px var(--tw-shadow-color,#0000001a),0px 3px 3px 0px var(--tw-shadow-color,#00000017),1px 8px 5px 0px var(--tw-shadow-color,#0000000d),2px 21px 6px 0px var(--tw-shadow-color,#0000),0px 0px 0px 1px var(--tw-shadow-color,#00000014),1px 13px 5px 0px var(--tw-shadow-color,#00000003),0px -2px 2px 0px var(--tw-shadow-color,#00000021)inset;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.before\:ring-1:before{content:var(--tw-content);--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)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:-inset-x-2:after{content:var(--tw-content);inset-inline:calc(var(--spacing)*-2)}.after\:-inset-y-3:after{content:var(--tw-content);inset-block:calc(var(--spacing)*-3)}.after\:block:after{content:var(--tw-content);display:block}.after\:size-6:after{content:var(--tw-content);width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.after\:size-7:after{content:var(--tw-content);width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.after\:size-8:after{content:var(--tw-content);width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.after\:size-8\.5:after{content:var(--tw-content);width:calc(var(--spacing)*8.5);height:calc(var(--spacing)*8.5)}.after\:size-9\.5:after{content:var(--tw-content);width:calc(var(--spacing)*9.5);height:calc(var(--spacing)*9.5)}.after\:size-10:after{content:var(--tw-content);width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.after\:size-10\.5:after{content:var(--tw-content);width:calc(var(--spacing)*10.5);height:calc(var(--spacing)*10.5)}.after\:size-11\.5:after{content:var(--tw-content);width:calc(var(--spacing)*11.5);height:calc(var(--spacing)*11.5)}.after\:rounded-full:after{content:var(--tw-content);border-radius:3.40282e38px}.after\:border-2:after{content:var(--tw-content);border-style:var(--tw-border-style);border-width:2px}.autofill\:rounded-lg:autofill{border-radius:calc(var(--radius) + 2px)}.autofill\:text-primary:autofill{color:var(--primary)}@media(hover:hover){.hover\:bg-secondary:hover{background-color:var(--secondary)}}.focus\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.focus\:outline-hidden:focus{outline-offset:2px;outline:2px solid #0000}}.focus-visible\:outline-2:focus-visible{outline-style:var(--tw-outline-style);outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}:where([data-input-wrapper]) .in-data-input-wrapper\:gap-1\.5{gap:calc(var(--spacing)*1.5)}:where([data-input-wrapper]) .in-data-input-wrapper\:px-3\.5{padding-inline:calc(var(--spacing)*3.5)}:where([data-input-wrapper]) .in-data-input-wrapper\:px-4{padding-inline:calc(var(--spacing)*4)}:where([data-input-wrapper]) .in-data-input-wrapper\:py-2\.5{padding-block:calc(var(--spacing)*2.5)}:where([data-input-wrapper]) .in-data-input-wrapper\:shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:where([data-input-wrapper]) .in-data-input-wrapper\:focus\:\!z-50:focus{z-index:50!important}:where([data-input-wrapper]) .in-data-input-wrapper\:disabled\:opacity-100:disabled{opacity:1}:where([data-leading]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-leading\:-mr-px){margin-right:-1px}:where([data-leading]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-leading\:rounded-r-none){border-top-right-radius:0;border-bottom-right-radius:0}:where([data-leading]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-leading\:before\:rounded-r-none):before{content:var(--tw-content);border-top-right-radius:0;border-bottom-right-radius:0}:where([data-trailing]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-trailing\:-ml-px){margin-left:-1px}:where([data-trailing]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-trailing\:rounded-l-none){border-top-left-radius:0;border-bottom-left-radius:0}:where([data-trailing]) :is(:where([data-input-wrapper]) .in-data-input-wrapper\:in-data-trailing\:before\:rounded-l-none):before{content:var(--tw-content);border-top-left-radius:0;border-bottom-left-radius:0}:where([data-input-size=sm]) .in-data-\[input-size\=sm\]\:text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}:is(.\*\:data-icon\:pointer-events-none>*)[data-icon]{pointer-events:none}:is(.\*\:data-icon\:size-4>*)[data-icon]{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}:is(.\*\:data-icon\:size-5>*)[data-icon]{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}:is(.\*\:data-icon\:size-6>*)[data-icon]{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}:is(.\*\:data-icon\:size-7>*)[data-icon]{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}:is(.\*\:data-icon\:shrink-0>*)[data-icon]{flex-shrink:0}:is(.\*\:data-icon\:stroke-\[2\.25px\]>*)[data-icon]{stroke-width:2.25px}:is(.\*\:data-icon\:text-white\/60>*)[data-icon]{color:#fff9}@supports (color:color-mix(in lab,red,red)){:is(.\*\:data-icon\:text-white\/60>*)[data-icon]{color:color-mix(in oklab,var(--color-white)60%,transparent)}}@media(hover:hover){:is(.hover\:\*\:data-icon\:text-white\/70:hover>*)[data-icon]{color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){:is(.hover\:\*\:data-icon\:text-white\/70:hover>*)[data-icon]{color:color-mix(in oklab,var(--color-white)70%,transparent)}}}.data-icon-only\:p-2[data-icon-only]{padding:calc(var(--spacing)*2)}.data-icon-only\:p-2\.5[data-icon-only]{padding:calc(var(--spacing)*2.5)}.data-icon-only\:p-3[data-icon-only]{padding:calc(var(--spacing)*3)}.data-icon-only\:p-3\.5[data-icon-only]{padding:calc(var(--spacing)*3.5)}:where([data-input-wrapper]) .in-data-input-wrapper\:data-icon-only\:p-2\.5[data-icon-only]{padding:calc(var(--spacing)*2.5)}:where([data-input-wrapper]) .in-data-input-wrapper\:data-icon-only\:p-3[data-icon-only]{padding:calc(var(--spacing)*3)}:is(.\*\:data-text\:underline>*)[data-text]{text-decoration-line:underline}:is(.\*\:data-text\:decoration-transparent>*)[data-text]{text-decoration-color:#0000}:is(.\*\:data-text\:underline-offset-2>*)[data-text]{text-underline-offset:2px}:is(.\*\:data-text\:underline-offset-3>*)[data-text]{text-underline-offset:3px}:is(.\*\:data-text\:underline-offset-4>*)[data-text]{text-underline-offset:4px}@media(hover:hover){:is(.hover\:\*\:data-text\:decoration-current:hover>*)[data-text]{text-decoration-color:currentColor}}@media(min-width:40rem){.sm\:inline-flex{display:inline-flex}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-start{align-items:flex-start}}@media(min-width:48rem){.md\:-top-10{top:calc(var(--spacing)*-10)}.md\:-right-16{right:calc(var(--spacing)*-16)}.md\:mx-8{margin-inline:calc(var(--spacing)*8)}.md\:-mt-8{margin-top:calc(var(--spacing)*-8)}.md\:mt-2{margin-top:calc(var(--spacing)*2)}.md\:mt-2\.5{margin-top:calc(var(--spacing)*2.5)}.md\:mt-4{margin-top:calc(var(--spacing)*4)}.md\:mt-5{margin-top:calc(var(--spacing)*5)}.md\:mt-6{margin-top:calc(var(--spacing)*6)}.md\:mt-12{margin-top:calc(var(--spacing)*12)}.md\:mt-16{margin-top:calc(var(--spacing)*16)}.md\:mb-16{margin-bottom:calc(var(--spacing)*16)}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:inline-flex{display:inline-flex}.md\:size-14{width:calc(var(--spacing)*14);height:calc(var(--spacing)*14)}.md\:size-16{width:calc(var(--spacing)*16);height:calc(var(--spacing)*16)}.md\:h-8{height:calc(var(--spacing)*8)}.md\:h-110{height:calc(var(--spacing)*110)}.md\:h-140{height:calc(var(--spacing)*140)}.md\:w-8{width:calc(var(--spacing)*8)}.md\:w-74\.5{width:calc(var(--spacing)*74.5)}.md\:max-w-71\.5{max-width:calc(var(--spacing)*71.5)}.md\:max-w-120{max-width:calc(var(--spacing)*120)}.md\:max-w-\[345px\]{max-width:345px}.md\:-translate-y-\[15px\]{--tw-translate-y: -15px ;translate:var(--tw-translate-x)var(--tw-translate-y)}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:items-start{align-items:flex-start}.md\:justify-between{justify-content:space-between}.md\:gap-4{gap:calc(var(--spacing)*4)}.md\:gap-6{gap:calc(var(--spacing)*6)}.md\:gap-8{gap:calc(var(--spacing)*8)}.md\:gap-12{gap:calc(var(--spacing)*12)}.md\:gap-16{gap:calc(var(--spacing)*16)}.md\:gap-y-16{row-gap:calc(var(--spacing)*16)}.md\:rounded-xl{border-radius:calc(var(--radius) + 4px)}.md\:rounded-tl-\[92px\]{border-top-left-radius:92px}.md\:p-6{padding:calc(var(--spacing)*6)}.md\:p-8{padding:calc(var(--spacing)*8)}.md\:px-8{padding-inline:calc(var(--spacing)*8)}.md\:py-24{padding-block:calc(var(--spacing)*24)}.md\:pt-0{padding-top:calc(var(--spacing)*0)}.md\:pt-8{padding-top:calc(var(--spacing)*8)}.md\:pt-10{padding-top:calc(var(--spacing)*10)}.md\:pt-16{padding-top:calc(var(--spacing)*16)}.md\:pr-12{padding-right:calc(var(--spacing)*12)}.md\:pb-6{padding-bottom:calc(var(--spacing)*6)}.md\:pb-10{padding-bottom:calc(var(--spacing)*10)}.md\:pb-24{padding-bottom:calc(var(--spacing)*24)}.md\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.md\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}}@media(min-width:64rem){.lg\:absolute{position:absolute}.lg\:flex{display:flex}.lg\:h-full{height:100%}.lg\:min-h-160{min-height:calc(var(--spacing)*160)}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:gap-8{gap:calc(var(--spacing)*8)}.lg\:rounded-tl-\[160px\]{border-top-left-radius:160px}.lg\:pr-8{padding-right:calc(var(--spacing)*8)}:is(.lg\:\*\*\:data-label\:hidden *)[data-label]{display:none}}@media(min-width:80rem){.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}.dark\:hidden:is(.dark *){display:none}.\[\&\>\*\:not\(\[data-icon\=loading\]\)\]\:invisible>:not([data-icon=loading]){visibility:hidden}.\[\&\>\*\:not\(\[data-icon\=loading\]\)\:not\(\[data-text\]\)\]\:hidden>:not([data-icon=loading]):not([data-text]){display:none}}@property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}@property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}@property --tw-animation-duration{syntax:"*";inherits:false}@property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}@property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}:root{--font-size:16px;--text-xs:.75rem;--text-base:1rem;--text-lg:1.125rem;--text-xl:1.5rem;--text-2xl:2.25rem;--text-3xl:3rem;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-family-figtree:"Figtree",sans-serif;--background:#fff;--foreground:#414651;--card:#fff;--card-foreground:#414651;--popover:#0a0d12;--popover-foreground:#fff;--primary:#7f56d9;--primary-foreground:#fff;--secondary:#f5f5f5;--secondary-foreground:#414651;--muted:#f5f5f5;--muted-foreground:#535862;--accent:#7f56d9;--accent-foreground:#fff;--destructive:#0000;--destructive-foreground:#fff;--border:#d5d7da;--input:#fff;--input-background:#fff;--ring:#9e77ed;--elevation-sm:0px 1px 2px 0px #0a0d120d;--chart-1:#7f56d9;--chart-2:#9e77ed;--chart-3:#6941c6;--chart-4:#b692f6;--chart-5:#53389e;--radius:8px;--radius-button:6px;--radius-toggle:9999px;--sidebar:#fff;--sidebar-foreground:#414651;--sidebar-primary:#7f56d9;--sidebar-primary-foreground:#fff;--sidebar-accent:#7f56d9;--sidebar-accent-foreground:#fff;--sidebar-border:#d5d7da;--sidebar-ring:#9e77ed}.dark{--background:#0a0d12;--foreground:#fff;--card:#0a0d12;--card-foreground:#fff;--popover:#0a0d12;--popover-foreground:#fff;--primary:#9e77ed;--primary-foreground:#0a0d12;--secondary:#414651;--secondary-foreground:#fff;--muted:#414651;--muted-foreground:#d5d7da;--accent:#9e77ed;--accent-foreground:#0a0d12;--destructive:#dc267f;--destructive-foreground:#fff;--border:#414651;--input:#414651;--input-background:#414651;--ring:#9e77ed;--elevation-sm:0px 1px 2px 0px #00000040;--chart-1:#7f56d9;--chart-2:#9e77ed;--chart-3:#6941c6;--chart-4:#b692f6;--chart-5:#53389e;--sidebar:#0a0d12;--sidebar-foreground:#fff;--sidebar-primary:#9e77ed;--sidebar-primary-foreground:#0a0d12;--sidebar-accent:#9e77ed;--sidebar-accent-foreground:#0a0d12;--sidebar-border:#414651;--sidebar-ring:#9e77ed}html{font-size:var(--font-size);font-family:var(--font-family-figtree)}:root{--colors\/text\/text-primary-\(900\):#181d27;--colors\/text\/text-primary_on-brand:#fff;--colors\/text\/text-secondary-\(700\):#414651;--colors\/text\/text-secondary_hover:#252b37;--colors\/text\/text-secondary_on-brand:#caccfb;--colors\/text\/text-tertiary-\(600\):#535862;--colors\/text\/text-tertiary_hover:#414651;--colors\/text\/text-tertiary_on-brand:#caccfb;--colors\/text\/text-quaternary-\(500\):#717680;--colors\/text\/text-quaternary_on-brand:#a9aaf8;--colors\/text\/text-white:#fff;--colors\/text\/text-disabled:#717680;--colors\/text\/text-placeholder:#717680;--colors\/text\/text-placeholder_subtle:#d5d7da;--colors\/text\/text-brand-primary-\(900\):#41327d;--colors\/text\/text-brand-secondary-\(700\):#5f3fc3;--colors\/text\/text-brand-secondary_hover:#4d369d;--colors\/text\/text-brand-tertiary-\(600\):#6948dc;--colors\/text\/text-brand-tertiary_alt:#6948dc;--colors\/text\/text-error-primary-\(600\):#d92d20;--colors\/text\/text-error-primary_hover:#b42318;--colors\/text\/text-warning-primary-\(600\):#dc6803;--colors\/text\/text-success-primary-\(600\):#079455;--colors\/border\/border-primary:#d5d7da;--colors\/border\/border-secondary:#e9eaeb;--colors\/border\/border-secondary_alt:#00000014;--colors\/border\/border-tertiary:#f5f5f5;--colors\/border\/border-disabled:#d5d7da;--colors\/border\/border-disabled_subtle:#e9eaeb;--colors\/border\/border-brand:#7c6aea;--colors\/border\/border-brand_alt:#6948dc;--colors\/border\/border-error:#f04438;--colors\/border\/border-error_subtle:#fda29b;--colors\/foreground\/fg-primary-\(900\):#181d27;--component-colors\/alpha\/alpha-white-10:#ffffff1a;--component-colors\/alpha\/alpha-white-20:#fff3;--component-colors\/alpha\/alpha-white-30:#ffffff4d;--component-colors\/alpha\/alpha-white-40:#fff6;--component-colors\/alpha\/alpha-white-50:#ffffff80;--component-colors\/alpha\/alpha-white-60:#fff9;--component-colors\/alpha\/alpha-white-70:#ffffffb2;--component-colors\/alpha\/alpha-white-80:#fffc;--component-colors\/alpha\/alpha-white-90:#ffffffe5;--component-colors\/alpha\/alpha-white-100:#fff;--component-colors\/alpha\/alpha-black-10:#0000001a;--component-colors\/alpha\/alpha-black-20:#0003;--component-colors\/alpha\/alpha-black-30:#0000004d;--component-colors\/alpha\/alpha-black-40:#0006;--component-colors\/alpha\/alpha-black-50:#00000080;--component-colors\/alpha\/alpha-black-60:#0009;--component-colors\/alpha\/alpha-black-70:#000000b2;--component-colors\/alpha\/alpha-black-80:#000c;--component-colors\/alpha\/alpha-black-90:#000000e5;--component-colors\/alpha\/alpha-black-100:#000;--component-colors\/utility\/gray\/utility-gray-50:#fafafa;--component-colors\/components\/avatars\/avatar-styles-bg-neutral:#e0e0e0;--component-colors\/components\/toggles\/toggle-border:#d5d7da;--component-colors\/components\/toggles\/toggle-slim-border_pressed:var(--colors\/background\/bg-brand-solid);--component-colors\/components\/toggles\/toggle-slim-border_pressed-hover:var(--colors\/background\/bg-brand-solid_hover);--component-colors\/utility\/gray\/utility-gray-100:#f5f5f5;--component-colors\/utility\/gray\/utility-gray-200:#e9eaeb;--component-colors\/utility\/gray\/utility-gray-300:#d5d7da;--component-colors\/utility\/gray\/utility-gray-400:#a4a7ae;--component-colors\/utility\/gray\/utility-gray-500:#717680;--component-colors\/utility\/gray\/utility-gray-600:#535862;--component-colors\/utility\/gray\/utility-gray-700:#414651;--component-colors\/utility\/gray\/utility-gray-800:#252b37;--component-colors\/utility\/gray\/utility-gray-900:#181d27;--component-colors\/utility\/brand\/utility-brand-50:#eff0fe;--component-colors\/utility\/brand\/utility-brand-50_alt:#eff0fe;--component-colors\/utility\/brand\/utility-brand-100:#e2e4fd;--component-colors\/utility\/brand\/utility-brand-100_alt:#e2e4fd;--component-colors\/utility\/brand\/utility-brand-200:#caccfb;--component-colors\/utility\/brand\/utility-brand-200_alt:#caccfb;--component-colors\/utility\/brand\/utility-brand-300:#a9aaf8;--component-colors\/utility\/brand\/utility-brand-300_alt:#a9aaf8;--component-colors\/utility\/brand\/utility-brand-400:#8f87f2;--component-colors\/utility\/brand\/utility-brand-400_alt:#8f87f2;--component-colors\/utility\/brand\/utility-brand-500:#7c6aea;--component-colors\/utility\/brand\/utility-brand-500_alt:#7c6aea;--component-colors\/utility\/brand\/utility-brand-600:#6948dc;--component-colors\/utility\/brand\/utility-brand-600_alt:#6948dc;--component-colors\/utility\/brand\/utility-brand-700:#5f3fc3;--component-colors\/utility\/brand\/utility-brand-700_alt:#5f3fc3;--component-colors\/utility\/brand\/utility-brand-800:#4d369d;--component-colors\/utility\/brand\/utility-brand-800_alt:#4d369d;--component-colors\/utility\/brand\/utility-brand-900:#41327d;--component-colors\/utility\/brand\/utility-brand-900_alt:#41327d;--component-colors\/utility\/error\/utility-error-50:#fef3f2;--component-colors\/utility\/error\/utility-error-100:#fee4e2;--component-colors\/utility\/error\/utility-error-200:#fecdca;--component-colors\/utility\/error\/utility-error-300:#fda29b;--component-colors\/utility\/error\/utility-error-400:#f97066;--component-colors\/utility\/error\/utility-error-500:#f04438;--component-colors\/utility\/error\/utility-error-600:#d92d20;--component-colors\/utility\/error\/utility-error-700:#b42318;--component-colors\/utility\/warning\/utility-warning-50:#fffaeb;--component-colors\/utility\/warning\/utility-warning-100:#fef0c7;--component-colors\/utility\/warning\/utility-warning-200:#fedf89;--component-colors\/utility\/warning\/utility-warning-300:#fec84b;--component-colors\/utility\/warning\/utility-warning-400:#fdb022;--component-colors\/utility\/warning\/utility-warning-500:#f79009;--component-colors\/utility\/warning\/utility-warning-600:#dc6803;--component-colors\/utility\/warning\/utility-warning-700:#b54708;--component-colors\/utility\/success\/utility-success-50:#ecfdf3;--component-colors\/utility\/success\/utility-success-100:#dcfae6;--component-colors\/utility\/success\/utility-success-200:#abefc6;--component-colors\/utility\/success\/utility-success-300:#75e0a7;--component-colors\/utility\/success\/utility-success-400:#47cd89;--component-colors\/utility\/success\/utility-success-500:#17b26a;--component-colors\/utility\/success\/utility-success-600:#079455;--component-colors\/utility\/success\/utility-success-700:#067647;--component-colors\/utility\/gray-blue\/utility-gray-blue-50:#f8f9fc;--component-colors\/utility\/gray-blue\/utility-gray-blue-100:#eaecf5;--component-colors\/utility\/gray-blue\/utility-gray-blue-200:#d5d9eb;--component-colors\/utility\/gray-blue\/utility-gray-blue-300:#b3b8db;--component-colors\/utility\/gray-blue\/utility-gray-blue-400:#717bbc;--component-colors\/utility\/gray-blue\/utility-gray-blue-500:#4e5ba6;--component-colors\/utility\/gray-blue\/utility-gray-blue-600:#3e4784;--component-colors\/utility\/gray-blue\/utility-gray-blue-700:#363f72;--component-colors\/utility\/green\/utility-green-50:#edfcf2;--component-colors\/utility\/green\/utility-green-100:#d3f8df;--component-colors\/utility\/green\/utility-green-200:#aaf0c4;--component-colors\/utility\/green\/utility-green-300:#73e2a3;--component-colors\/utility\/green\/utility-green-400:#3ccb7f;--component-colors\/utility\/green\/utility-green-500:#16b364;--component-colors\/utility\/green\/utility-green-600:#099250;--component-colors\/utility\/green\/utility-green-700:#087443;--component-colors\/utility\/blue-light\/utility-blue-light-50:#f0f9ff;--component-colors\/utility\/blue-light\/utility-blue-light-100:#e0f2fe;--component-colors\/utility\/blue-light\/utility-blue-light-200:#b9e6fe;--component-colors\/utility\/blue-light\/utility-blue-light-300:#7cd4fd;--component-colors\/utility\/blue-light\/utility-blue-light-400:#36bffa;--component-colors\/utility\/blue-light\/utility-blue-light-500:#0ba5ec;--component-colors\/utility\/blue-light\/utility-blue-light-600:#0086c9;--component-colors\/utility\/blue-light\/utility-blue-light-700:#026aa2;--component-colors\/utility\/blue\/utility-blue-50:#eff8ff;--component-colors\/utility\/blue\/utility-blue-100:#d1e9ff;--component-colors\/utility\/blue\/utility-blue-200:#b2ddff;--component-colors\/utility\/blue\/utility-blue-300:#84caff;--component-colors\/utility\/blue\/utility-blue-400:#53b1fd;--component-colors\/utility\/blue\/utility-blue-500:#2e90fa;--component-colors\/utility\/blue\/utility-blue-600:#1570ef;--component-colors\/utility\/blue\/utility-blue-700:#175cd3;--component-colors\/utility\/blue-dark\/utility-blue-dark-50:#eff4ff;--component-colors\/utility\/blue-dark\/utility-blue-dark-100:#d1e0ff;--component-colors\/utility\/blue-dark\/utility-blue-dark-200:#b2ccff;--component-colors\/utility\/blue-dark\/utility-blue-dark-300:#84adff;--component-colors\/utility\/blue-dark\/utility-blue-dark-400:#528bff;--component-colors\/utility\/blue-dark\/utility-blue-dark-500:#2970ff;--component-colors\/utility\/blue-dark\/utility-blue-dark-600:#155eef;--component-colors\/utility\/blue-dark\/utility-blue-dark-700:#004eeb;--component-colors\/utility\/indigo\/utility-indigo-50:#eef4ff;--component-colors\/utility\/indigo\/utility-indigo-100:#e0eaff;--component-colors\/utility\/indigo\/utility-indigo-200:#c7d7fe;--component-colors\/utility\/indigo\/utility-indigo-300:#a4bcfd;--component-colors\/utility\/indigo\/utility-indigo-400:#8098f9;--component-colors\/utility\/indigo\/utility-indigo-500:#6172f3;--component-colors\/utility\/indigo\/utility-indigo-600:#444ce7;--component-colors\/utility\/indigo\/utility-indigo-700:#3538cd;--component-colors\/utility\/purple\/utility-purple-50:#f4f3ff;--component-colors\/utility\/purple\/utility-purple-100:#ebe9fe;--component-colors\/utility\/purple\/utility-purple-200:#d9d6fe;--component-colors\/utility\/purple\/utility-purple-300:#bdb4fe;--component-colors\/utility\/purple\/utility-purple-400:#9b8afb;--component-colors\/utility\/purple\/utility-purple-500:#7a5af8;--component-colors\/utility\/purple\/utility-purple-600:#6938ef;--component-colors\/utility\/purple\/utility-purple-700:#5925dc;--component-colors\/utility\/fuchsia\/utility-fuchsia-50:#fdf4ff;--component-colors\/utility\/fuchsia\/utility-fuchsia-100:#fbe8ff;--component-colors\/utility\/fuchsia\/utility-fuchsia-200:#f6d0fe;--component-colors\/utility\/fuchsia\/utility-fuchsia-300:#eeaafd;--component-colors\/utility\/fuchsia\/utility-fuchsia-400:#e478fa;--component-colors\/utility\/fuchsia\/utility-fuchsia-500:#d444f1;--component-colors\/utility\/fuchsia\/utility-fuchsia-600:#ba24d5;--component-colors\/utility\/fuchsia\/utility-fuchsia-700:#9f1ab1;--component-colors\/utility\/pink\/utility-pink-50:#fdf2fa;--component-colors\/utility\/pink\/utility-pink-100:#fce7f6;--component-colors\/utility\/pink\/utility-pink-200:#fcceee;--component-colors\/utility\/pink\/utility-pink-300:#faa7e0;--component-colors\/utility\/pink\/utility-pink-400:#f670c7;--component-colors\/utility\/pink\/utility-pink-500:#ee46bc;--component-colors\/utility\/pink\/utility-pink-600:#dd2590;--component-colors\/utility\/pink\/utility-pink-700:#c11574;--component-colors\/utility\/orange-dark\/utility-orange-dark-50:#fff4ed;--component-colors\/utility\/orange-dark\/utility-orange-dark-100:#ffe6d5;--component-colors\/utility\/orange-dark\/utility-orange-dark-200:#ffd6ae;--component-colors\/utility\/orange-dark\/utility-orange-dark-300:#ff9c66;--component-colors\/utility\/orange-dark\/utility-orange-dark-400:#ff692e;--component-colors\/utility\/orange-dark\/utility-orange-dark-500:#ff4405;--component-colors\/utility\/orange-dark\/utility-orange-dark-600:#e62e05;--component-colors\/utility\/orange-dark\/utility-orange-dark-700:#bc1b06;--component-colors\/utility\/orange\/utility-orange-50:#fef6ee;--component-colors\/utility\/orange\/utility-orange-100:#fdead7;--component-colors\/utility\/orange\/utility-orange-200:#f9dbaf;--component-colors\/utility\/orange\/utility-orange-300:#f7b27a;--component-colors\/utility\/orange\/utility-orange-400:#f38744;--component-colors\/utility\/orange\/utility-orange-500:#ef6820;--component-colors\/utility\/orange\/utility-orange-600:#e04f16;--component-colors\/utility\/orange\/utility-orange-700:#b93815;--colors\/foreground\/fg-secondary-\(700\):#414651;--colors\/foreground\/fg-secondary_hover:#252b37;--colors\/foreground\/fg-tertiary-\(600\):#535862;--colors\/foreground\/fg-tertiary_hover:#414651;--colors\/foreground\/fg-quaternary-\(400\):#a4a7ae;--colors\/foreground\/fg-quaternary_hover:#717680;--colors\/foreground\/fg-white:#fff;--colors\/foreground\/fg-disabled:#a4a7ae;--colors\/foreground\/fg-disabled_subtle:#d5d7da;--colors\/foreground\/fg-brand-primary-\(600\):#6948dc;--colors\/foreground\/fg-brand-primary_alt:var(--colors\/foreground\/fg-brand-primary-\(600\));--colors\/foreground\/fg-brand-secondary-\(500\):#7c6aea;--colors\/foreground\/fg-brand-secondary_alt:var(--colors\/foreground\/fg-brand-secondary-\(500\));--colors\/foreground\/fg-brand-secondary_hover:#6948dc;--colors\/foreground\/fg-error-primary:#d92d20;--colors\/foreground\/fg-error-secondary:#f04438;--colors\/foreground\/fg-warning-primary:#dc6803;--colors\/foreground\/fg-warning-secondary:#f79009;--colors\/foreground\/fg-success-primary:#079455;--colors\/foreground\/fg-success-secondary:#17b26a;--colors\/background\/bg-primary:#fff;--colors\/effects\/shadows\/shadow-xs:#0a0d120d;--colors\/effects\/portfolio-mockups\/shadow-main-centre-md:#0a0d1224;--colors\/effects\/portfolio-mockups\/shadow-main-centre-lg:#0a0d122e;--colors\/effects\/portfolio-mockups\/shadow-overlay-lg:#0a0d121f;--colors\/effects\/portfolio-mockups\/shadow-grid-md:#0a0d1214;--colors\/effects\/shadows\/shadow-sm_01:#0a0d121a;--colors\/effects\/shadows\/shadow-sm_02:#0a0d121a;--colors\/effects\/shadows\/shadow-md_01:#0a0d121a;--colors\/effects\/shadows\/shadow-md_02:#0a0d120f;--colors\/effects\/shadows\/shadow-lg_01:#0a0d1214;--colors\/effects\/shadows\/shadow-lg_02:#0a0d1208;--colors\/effects\/shadows\/shadow-lg_03:#0a0d120a;--colors\/effects\/shadows\/shadow-xl_01:#0a0d1214;--colors\/effects\/shadows\/shadow-xl_02:#0a0d1208;--colors\/effects\/shadows\/shadow-xl_03:#0a0d120a;--colors\/effects\/shadows\/shadow-2xl_01:#0a0d122e;--colors\/effects\/shadows\/shadow-2xl_02:#0a0d120a;--colors\/effects\/shadows\/shadow-3xl_01:#0a0d1224;--colors\/effects\/shadows\/shadow-3xl_02:#0a0d120a;--colors\/effects\/shadows\/shadow-skeumorphic-inner:#0a0d120d;--colors\/effects\/shadows\/shadow-skeumorphic-inner-border:#0a0d122e;--colors\/background\/bg-primary_alt:#fff;--colors\/background\/bg-primary_hover:#fafafa;--colors\/background\/bg-primary-solid:#0a0d12;--colors\/background\/bg-secondary:#fafafa;--colors\/background\/bg-secondary_alt:#fafafa;--colors\/background\/bg-secondary_hover:#f5f5f5;--colors\/background\/bg-secondary_subtle:#fdfdfd;--colors\/background\/bg-secondary-solid:#535862;--colors\/background\/bg-tertiary:#f5f5f5;--colors\/background\/bg-quaternary:#e9eaeb;--colors\/background\/bg-active:#fafafa;--colors\/background\/bg-disabled:#f5f5f5;--colors\/background\/bg-disabled_subtle:#fafafa;--colors\/background\/bg-overlay:#0a0d12;--colors\/background\/bg-brand-primary:#eff0fe;--colors\/background\/bg-brand-primary_alt:#eff0fe;--colors\/background\/bg-brand-secondary:#e2e4fd;--colors\/background\/bg-brand-solid:#6948dc;--colors\/background\/bg-brand-solid_hover:#5f3fc3;--colors\/background\/bg-brand-section:#4d369d;--colors\/background\/bg-brand-section_subtle:#5f3fc3;--colors\/background\/bg-error-primary:#fef3f2;--colors\/background\/bg-error-secondary:#fee4e2;--colors\/background\/bg-error-solid:#d92d20;--colors\/background\/bg-error-solid_hover:#b42318;--colors\/background\/bg-warning-primary:#fffaeb;--colors\/background\/bg-warning-secondary:#fef0c7;--colors\/background\/bg-warning-solid:#dc6803;--colors\/background\/bg-success-primary:#ecfdf3;--colors\/background\/bg-success-secondary:#dcfae6;--colors\/background\/bg-success-solid:#079455;--container-padding-mobile:16;--container-padding-desktop:32;--container-max-width-desktop:1280;--width-xxs:320;--width-xs:384;--width-sm:480;--width-md:560;--width-lg:640;--width-xl:768;--width-2xl:1024;--width-3xl:1280;--width-4xl:1440;--width-5xl:1600;--width-6xl:1920;--paragraph-max-width:720;--spacing-none:0;--spacing-xxs:2;--spacing-xs:4;--spacing-sm:6;--spacing-md:8;--spacing-lg:12;--spacing-xl:16;--spacing-2xl:20;--spacing-3xl:24;--spacing-4xl:32;--spacing-5xl:40;--spacing-6xl:48;--spacing-7xl:64;--spacing-8xl:80;--spacing-9xl:96;--spacing-10xl:128;--spacing-11xl:160;--radius-none:0;--radius-xxs:2;--radius-xs:4;--radius-sm:6;--radius-md:8;--radius-lg:10;--radius-xl:12;--radius-2xl:16;--radius-3xl:20;--radius-4xl:24;--radius-full:9999;--font-size\/text-xs:12;--line-height\/text-xs:18;--line-height\/text-sm:20;--line-height\/text-md:24;--line-height\/text-lg:28;--line-height\/text-xl:30;--line-height\/display-xs:32;--line-height\/display-sm:38;--line-height\/display-md:44;--line-height\/display-lg:60;--line-height\/display-xl:72;--line-height\/display-2xl:90;--font-size\/text-sm:14;--font-size\/text-md:16;--font-size\/text-lg:18;--font-size\/text-xl:20;--font-size\/display-xs:24;--font-size\/display-sm:30;--font-size\/display-md:36;--font-size\/display-lg:48;--font-size\/display-xl:60;--font-size\/display-2xl:72;--component-colors\/utility\/yellow\/utility-yellow-50:#fefbe8;--component-colors\/utility\/yellow\/utility-yellow-100:#fef7c3;--component-colors\/utility\/yellow\/utility-yellow-200:#feee95;--component-colors\/utility\/yellow\/utility-yellow-300:#fde272;--component-colors\/utility\/yellow\/utility-yellow-400:#fac515;--component-colors\/utility\/yellow\/utility-yellow-500:#eaaa08;--component-colors\/utility\/yellow\/utility-yellow-600:#ca8504;--component-colors\/utility\/yellow\/utility-yellow-700:#a15c07;--colors\/background\/bg-brand-gradient:#fff}.display-2xl-regular{font-family:Figtree;font-style:"Regular";font-size:72px;font-weight:400;line-height:90px}.display-2xl-medium{font-family:Figtree;font-style:"Medium";font-size:72px;font-weight:500;line-height:90px}.display-2xl-semibold{font-family:Figtree;font-style:"SemiBold";font-size:72px;font-weight:600;line-height:90px}.display-2xl-bold{font-family:Figtree;font-style:"Bold";font-size:72px;font-weight:700;line-height:90px}.display-xl-regular{font-family:Figtree;font-style:"Regular";font-size:60px;font-weight:400;line-height:72px}.display-xl-medium{font-family:Figtree;font-style:"Medium";font-size:60px;font-weight:500;line-height:72px}.display-xl-semibold{font-family:Figtree;font-style:"SemiBold";font-size:60px;font-weight:600;line-height:72px}.display-xl-bold{font-family:Figtree;font-style:"Bold";font-size:60px;font-weight:700;line-height:72px}.display-lg-regular{font-family:Figtree;font-style:"Regular";font-size:48px;font-weight:400;line-height:60px}.display-lg-medium{font-family:Figtree;font-style:"Medium";font-size:48px;font-weight:500;line-height:60px}.display-lg-semibold{font-family:Figtree;font-style:"SemiBold";font-size:48px;font-weight:600;line-height:60px}.display-lg-bold{font-family:Figtree;font-style:"Bold";font-size:48px;font-weight:700;line-height:60px}.display-md-regular{font-family:Figtree;font-style:"Regular";font-size:36px;font-weight:400;line-height:44px}.display-md-medium{font-family:Figtree;font-style:"Medium";font-size:36px;font-weight:500;line-height:44px}.display-md-semibold{font-family:Figtree;font-style:"SemiBold";font-size:36px;font-weight:600;line-height:44px}.display-md-bold{font-family:Figtree;font-style:"Bold";font-size:36px;font-weight:700;line-height:44px}.display-sm-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:30px;font-weight:400;line-height:38px}.display-sm-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:30px;font-weight:500;line-height:38px}.display-sm-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:30px;font-weight:600;line-height:38px}.display-sm-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:30px;font-weight:700;line-height:38px}.display-xs-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:24px;font-weight:400;line-height:32px}.display-xs-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:24px;font-weight:500;line-height:32px}.display-xs-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:24px;font-weight:600;line-height:32px}.display-xs-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:24px;font-weight:700;line-height:32px}.text-xl-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:20px;font-weight:400;line-height:30px}.text-xl-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:20px;font-weight:500;line-height:30px}.text-xl-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:20px;font-weight:600;line-height:30px}.text-xl-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:20px;font-weight:700;line-height:30px}.text-lg-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:18px;font-weight:400;line-height:28px}.text-lg-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:18px;font-weight:500;line-height:28px}.text-lg-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:18px;font-weight:600;line-height:28px}.text-lg-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:18px;font-weight:700;line-height:28px}.text-md-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:16px;font-weight:400;line-height:24px}.text-md-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:16px;font-weight:500;line-height:24px}.text-md-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:16px;font-weight:600;line-height:24px}.text-md-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:16px;font-weight:700;line-height:24px}.text-sm-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:14px;font-weight:400;line-height:20px}.text-sm-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:14px;font-weight:500;line-height:20px}.text-sm-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:14px;font-weight:600;line-height:20px}.text-xs-regular{font-family:Figtree;font-style:"Regular";letter-spacing:0;font-size:12px;font-weight:400;line-height:18px}.text-xs-medium{font-family:Figtree;font-style:"Medium";letter-spacing:0;font-size:12px;font-weight:500;line-height:18px}.text-xs-semibold{font-family:Figtree;font-style:"SemiBold";letter-spacing:0;font-size:12px;font-weight:600;line-height:18px}.text-sm-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:14px;font-weight:700;line-height:20px}.text-xs-bold{font-family:Figtree;font-style:"Bold";letter-spacing:0;font-size:12px;font-weight:700;line-height:18px}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@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:0}@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-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-mask-linear{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-radial{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-conic{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-left{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-right{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-bottom{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-top{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-bottom-from-position{syntax:"*";inherits:false;initial-value:0%}@property --tw-mask-bottom-to-position{syntax:"*";inherits:false;initial-value:100%}@property --tw-mask-bottom-from-color{syntax:"*";inherits:false;initial-value:black}@property --tw-mask-bottom-to-color{syntax:"*";inherits:false;initial-value:transparent}@keyframes spin{to{transform:rotate(360deg)}}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));filter:blur(var(--tw-enter-blur,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));filter:blur(var(--tw-exit-blur,0))}}