/* Minimal checked-in utility layer replacing the runtime Tailwind CDN dependency. */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    margin: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
    height: auto;
}

[class~="block"] {
    display: block;
}

[class~="flex"] {
    display: flex;
}

[class~="grid"] {
    display: grid;
}

[class~="sticky"] {
    position: sticky;
}

[class~="top-0"] {
    top: 0;
}

[class~="z-50"] {
    z-index: 50;
}

[class~="mx-auto"] {
    margin-left: auto;
    margin-right: auto;
}

[class~="my-16"] {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

[class~="mt-2"] {
    margin-top: 0.5rem;
}

[class~="mt-3"] {
    margin-top: 0.75rem;
}

[class~="mt-4"] {
    margin-top: 1rem;
}

[class~="mt-5"] {
    margin-top: 1.25rem;
}

[class~="mt-6"] {
    margin-top: 1.5rem;
}

[class~="mt-8"] {
    margin-top: 2rem;
}

[class~="mt-10"] {
    margin-top: 2.5rem;
}

[class~="mt-12"] {
    margin-top: 3rem;
}

[class~="mt-14"] {
    margin-top: 3.5rem;
}

[class~="mt-20"] {
    margin-top: 5rem;
}

[class~="mb-2"] {
    margin-bottom: 0.5rem;
}

[class~="mb-4"] {
    margin-bottom: 1rem;
}

[class~="mb-6"] {
    margin-bottom: 1.5rem;
}

[class~="mb-8"] {
    margin-bottom: 2rem;
}

[class~="p-6"] {
    padding: 1.5rem;
}

[class~="p-7"] {
    padding: 1.75rem;
}

[class~="p-8"] {
    padding: 2rem;
}

[class~="px-4"] {
    padding-left: 1rem;
    padding-right: 1rem;
}

[class~="px-6"] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

[class~="py-4"] {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

[class~="py-5"] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

[class~="py-6"] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

[class~="py-12"] {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

[class~="py-14"] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

[class~="py-16"] {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

[class~="pt-6"] {
    padding-top: 1.5rem;
}

[class~="pt-8"] {
    padding-top: 2rem;
}

[class~="pt-14"] {
    padding-top: 3.5rem;
}

[class~="pb-4"] {
    padding-bottom: 1rem;
}

[class~="pb-16"] {
    padding-bottom: 4rem;
}

[class~="pb-20"] {
    padding-bottom: 5rem;
}

[class~="gap-2"] {
    gap: 0.5rem;
}

[class~="gap-4"] {
    gap: 1rem;
}

[class~="gap-5"] {
    gap: 1.25rem;
}

[class~="gap-6"] {
    gap: 1.5rem;
}

[class~="gap-8"] {
    gap: 2rem;
}

[class~="gap-10"] {
    gap: 2.5rem;
}

[class~="gap-x-5"] {
    column-gap: 1.25rem;
}

[class~="gap-y-3"] {
    row-gap: 0.75rem;
}

[class~="space-y-2"] > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}

[class~="space-y-3"] > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}

[class~="space-y-6"] > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.5rem;
}

[class~="space-y-10"] > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2.5rem;
}

[class~="h-12"] {
    height: 3rem;
}

[class~="h-16"] {
    height: 4rem;
}

[class~="w-auto"] {
    width: auto;
}

[class~="max-w-md"] {
    max-width: 28rem;
}

[class~="max-w-2xl"] {
    max-width: 42rem;
}

[class~="max-w-3xl"] {
    max-width: 48rem;
}

[class~="max-w-4xl"] {
    max-width: 56rem;
}

[class~="max-w-5xl"] {
    max-width: 64rem;
}

[class~="max-w-6xl"] {
    max-width: 72rem;
}

[class~="max-w-7xl"] {
    max-width: 80rem;
}

[class~="flex-col"] {
    flex-direction: column;
}

[class~="flex-wrap"] {
    flex-wrap: wrap;
}

[class~="flex-shrink-0"] {
    flex-shrink: 0;
}

[class~="items-center"] {
    align-items: center;
}

[class~="items-start"] {
    align-items: flex-start;
}

[class~="items-end"] {
    align-items: flex-end;
}

[class~="justify-between"] {
    justify-content: space-between;
}

[class~="justify-center"] {
    justify-content: center;
}

[class~="list-disc"] {
    list-style-type: disc;
}

[class~="pl-5"] {
    padding-left: 1.25rem;
}

[class~="pl-6"] {
    padding-left: 1.5rem;
}

[class~="rounded-3xl"] {
    border-radius: 1.5rem;
}

[class~="rounded-[2rem]"] {
    border-radius: 2rem;
}

[class~="border-t"] {
    border-top-width: 1px;
    border-top-style: solid;
}

[class~="border-gray-800"] {
    border-color: #1f2937;
}

[class~="border-white/10"] {
    border-color: rgba(255, 255, 255, 0.1);
}

[class~="bg-white"] {
    background-color: #ffffff;
}

[class~="bg-gray-50"] {
    background-color: #f9fafb;
}

[class~="bg-gray-900"] {
    background-color: #111827;
}

[class~="bg-indigo-950"] {
    background-color: #1e1b4b;
}

[class~="text-left"] {
    text-align: left;
}

[class~="text-center"] {
    text-align: center;
}

[class~="text-base"] {
    font-size: 1rem;
    line-height: 1.5rem;
}

[class~="text-sm"] {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

[class~="text-lg"] {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

[class~="text-xl"] {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

[class~="text-2xl"] {
    font-size: 1.5rem;
    line-height: 2rem;
}

[class~="text-3xl"] {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

[class~="text-4xl"] {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

[class~="text-5xl"] {
    font-size: 3rem;
    line-height: 1;
}

[class~="text-6xl"] {
    font-size: 3.75rem;
    line-height: 1;
}

[class~="font-semibold"] {
    font-weight: 600;
}

[class~="font-bold"] {
    font-weight: 700;
}

[class~="leading-7"] {
    line-height: 1.75rem;
}

[class~="leading-8"] {
    line-height: 2rem;
}

[class~="leading-tight"] {
    line-height: 1.25;
}

[class~="tracking-[0.18em]"] {
    letter-spacing: 0.18em;
}

[class~="uppercase"] {
    text-transform: uppercase;
}

[class~="text-white"] {
    color: #ffffff;
}

[class~="text-slate-500"] {
    color: #64748b;
}

[class~="text-slate-700"] {
    color: #334155;
}

[class~="text-slate-800"] {
    color: #1e293b;
}

[class~="text-gray-300"] {
    color: #d1d5db;
}

[class~="text-gray-400"] {
    color: #9ca3af;
}

[class~="text-gray-800"] {
    color: #1f2937;
}

[class~="text-gray-900"] {
    color: #111827;
}

[class~="text-stone-100"] {
    color: #f5f5f4;
}

[class~="text-stone-300"] {
    color: #d6d3d1;
}

[class~="text-stone-400"] {
    color: #a8a29e;
}

[class~="shadow-sm"] {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

[class~="hover:text-white"]:hover {
    color: #ffffff;
}

[class~="hover:border-indigo-600"]:hover {
    border-color: #4f46e5;
}

@media (min-width: 640px) {
    [class~="sm:flex-row"] {
        flex-direction: row;
    }

    [class~="sm:gap-4"] {
        gap: 1rem;
    }

    [class~="sm:items-center"] {
        align-items: center;
    }

    [class~="sm:grid-cols-2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [class~="sm:grid-cols-3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    [class~="sm:p-10"] {
        padding: 2.5rem;
    }

    [class~="sm:px-6"] {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    [class~="sm:text-5xl"] {
        font-size: 3rem;
        line-height: 1;
    }

    [class~="sm:text-6xl"] {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    [class~="md:flex-row"] {
        flex-direction: row;
    }

    [class~="md:items-center"] {
        align-items: center;
    }

    [class~="md:justify-between"] {
        justify-content: space-between;
    }

    [class~="md:grid-cols-2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [class~="md:grid-cols-3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    [class~="md:grid-cols-[1.5fr_1fr_1fr]"] {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    [class~="lg:flex-row"] {
        flex-direction: row;
    }

    [class~="lg:grid-cols-3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    [class~="lg:grid-cols-[0.9fr_1.1fr]"] {
        grid-template-columns: 0.9fr 1.1fr;
    }

    [class~="lg:grid-cols-[0.95fr_1.05fr]"] {
        grid-template-columns: 0.95fr 1.05fr;
    }

    [class~="lg:grid-cols-[1.05fr_0.95fr]"] {
        grid-template-columns: 1.05fr 0.95fr;
    }

    [class~="lg:items-start"] {
        align-items: flex-start;
    }

    [class~="lg:items-center"] {
        align-items: center;
    }

    [class~="lg:items-end"] {
        align-items: flex-end;
    }

    [class~="lg:justify-between"] {
        justify-content: space-between;
    }

    [class~="lg:px-8"] {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    [class~="lg:pb-24"] {
        padding-bottom: 6rem;
    }

    [class~="lg:text-[4.8rem]"] {
        font-size: 4.8rem;
        line-height: 1;
    }
}

@media (min-width: 1280px) {
    [class~="xl:grid-cols-3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    [class~="rounded-[2rem]"] {
        border-radius: 1.5rem;
    }

    [class~="p-8"] {
        padding: 1.5rem;
    }

    [class~="p-7"] {
        padding: 1.4rem;
    }

    [class~="px-6"] {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    [class~="py-6"] {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    [class~="text-6xl"] {
        font-size: 2.7rem;
        line-height: 1.02;
    }

    [class~="text-5xl"] {
        font-size: 2.35rem;
        line-height: 1.04;
    }

    [class~="text-4xl"] {
        font-size: 2rem;
        line-height: 1.08;
    }

    [class~="text-3xl"] {
        font-size: 1.6rem;
        line-height: 1.18;
    }

    [class~="text-2xl"] {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    [class~="text-lg"] {
        font-size: 1.02rem;
        line-height: 1.65rem;
    }

    [class~="leading-8"] {
        line-height: 1.8rem;
    }
}
