:root {
    --primary: #7341FF;
    --primary-50: #F3F1FF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --green-500: #22c55e;
    --green-600: #16a34a;
}

*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--gray-200);
}

html {
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    line-height: inherit;
    background-color: #fff;
    color: var(--gray-800);
}

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

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

button {
    background-color: transparent;
    background-image: none;
    padding: 0;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

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

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

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

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

.min-h-screen {
    min-height: 100vh;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

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

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

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

.text-primary {
    color: var(--primary);
}

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

.border-gray-200 {
    border-color: var(--gray-200);
}

.bg-white\/80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

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

.font-medium {
    font-weight: 500;
}

.text-gray-600 {
    color: var(--gray-600);
}

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

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

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

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

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: #fff;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(115, 65, 255, 0.9);
}

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

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

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

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

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

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

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

.text-gray-900 {
    color: var(--gray-900);
}

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

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

.text-gray-400 {
    color: var(--gray-400);
}

.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.text-green-600 {
    color: var(--green-600);
}

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

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

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

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

.border-primary {
    border-color: var(--primary);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.shadow-primary\/20 {
    --tw-shadow-color: rgba(115, 65, 255, 0.2);
    box-shadow: 0 25px 50px -12px var(--tw-shadow-color);
}

.border {
    border-width: 1px;
}

.p-8 {
    padding: 2rem;
}

.justify-end {
    justify-content: flex-end;
}

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

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

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

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

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

.mb-4 {
    margin-bottom: 1rem;
}

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

.text-gray-500 {
    color: var(--gray-500);
}

.pt-0 {
    padding-top: 0;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

.gap-3 {
    gap: 0.75rem;
}

.text-green-500 {
    color: var(--green-500);
}

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

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

.w-full {
    width: 100%;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.max-w-4xl {
    max-width: 56rem;
}

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

.overflow-x-auto {
    overflow-x: auto;
}

.min-w-\[600px\] {
    min-width: 600px;
}

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

.p-4 {
    padding: 1rem;
}

.w-1\/5 {
    width: 20%;
}

.text-gray-700 {
    color: var(--gray-700);
}

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

.bg-gray-100 {
    background-color: var(--gray-100);
}

.tracking-wide {
    letter-spacing: 0.1em;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition-colors;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.button-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.button-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.button-outline {
    border: 1px solid var(--gray-300);
}

.switch {
    position: relative;
    display: inline-flex;
    height: 1.5rem;
    width: 2.75rem;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition-colors: background-color 0.2s ease-in-out;
}

    .switch:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
    }

.switch-thumb {
    pointer-events: none;
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
    transform: translateX(0.25rem);
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.switch-input:checked + .switch-thumb {
    transform: translateX(1.25rem);
}

.switch-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.switch-bg {
    background-color: var(--gray-200);
}

.switch-input:checked ~ .switch-bg {
    background-color: var(--primary);
}

@media (min-width: 640px) {
    .sm\:py-28 {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

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

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

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
