@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  
  --color-primary: #002875;
  --color-primary-container: #033ca4;
  --color-secondary: #b72026;
  --color-surface: #f8f9ff;
  --color-surface-container-low: #eff4ff;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-high: #dce9ff;
  --color-surface-container-highest: #d3e4fe;
  --color-on-surface: #0b1c30;
  --color-on-surface-variant: #434653;
  --color-outline-variant: #c4c6d5;
  
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 2.5rem;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.shrink-0 { flex-shrink: 0; }

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

@media (min-width: 768px) {
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:items-end { align-items: flex-end; }
  .md\:flex-row { flex-direction: row; }
  .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
  .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-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
.lg\:mx-auto { margin-left: auto; margin-right: auto; }
  .lg\:aspect-square { aspect-ratio: 1 / 1; }
  .lg\:block { display: block; }
}

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-12 { width: 3rem; }
.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[90vh\] { min-height: 90vh; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-3xl { border-radius: 2rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }

.bg-white { background-color: #ffffff; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-surface { background-color: var(--color-surface); }
.bg-surface-container-low { background-color: var(--color-surface-container-low); }
.bg-surface-container-high { background-color: var(--color-surface-container-high); }

.text-white { color: #ffffff; }
.text-primary { color: var(--color-primary); }
.text-on-surface { color: var(--color-on-surface); }
.text-on-surface-variant { color: var(--color-on-surface-variant); }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-medium { font-weight: 500; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.blur-3xl { filter: blur(64px); }
.bg-primary\/5 { background-color: rgba(0, 40, 117, 0.05); }
.bg-primary\/10 { background-color: rgba(0, 40, 117, 0.1); }
.bg-primary\/40 { background-color: rgba(0, 40, 117, 0.4); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-primary\/5 { border-color: rgba(0, 40, 117, 0.05); }
.border-outline-variant\/10 { border-color: rgba(196, 198, 213, 0.1); }

.hover\:bg-primary-container:hover { background-color: var(--color-primary-container); }
.hover\:bg-surface-container-low:hover { background-color: var(--color-surface-container-low); }
.hover\:translate-y-\[-5px\]:hover { transform: translateY(-5px); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }

.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:text-white\/80 { color: rgba(255, 255, 255, 0.8); }

.m-0 { margin: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.pt-20 { padding-top: 5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }

.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

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

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

.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }

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

.bg-surface-container { background-color: var(--color-surface-container); }
.bg-surface-container-highest { background-color: var(--color-surface-container-highest); }
.bg-primary-container { background-color: var(--color-primary-container); }
.text-on-primary-container { color: var(--color-on-primary-container); }
.text-on-secondary-container { color: var(--color-on-secondary-container); }

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

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }

.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }

.text-blue-600 { color: #2563eb; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }

.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }

.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus\:ring-blue-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); }

.w-full { width: 100%; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.sm\:px-6 { @media (min-width: 640px) { padding-left: 1.5rem; padding-right: 1.5rem; } }
.lg\:px-8 { @media (min-width: 1024px) { padding-left: 2rem; padding-right: 2rem; } }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

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

.font-sans { font-family: var(--font-sans); }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

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

.text-white { color: #ffffff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-blue-600 { color: #2563eb; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }

.border { border: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }

.rounded-md { border-radius: 0.375rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

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

.text-indigo-600 { color: #4f46e5; }
.hover\:text-indigo-500:hover { color: #6366f1; }
.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-indigo-400 { color: #818cf8; }

.hover\:text-indigo-300:hover { color: #a5b4fc; }

.text-indigo-500 { color: #6366f1; }

.bg-indigo-500 { background-color: #6366f1; }
.hover\:bg-indigo-400:hover { background-color: #818cf8; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-indigo-400 { color: #818cf8; }

.hover\:text-indigo-300:hover { color: #a5b4fc; }

.text-indigo-500 { color: #6366f1; }

.bg-indigo-500 { background-color: #6366f1; }
.hover\:bg-indigo-400:hover { background-color: #818cf8; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-indigo-400 { color: #818cf8; }

.hover\:text-indigo-300:hover { color: #a5b4fc; }

.text-indigo-500 { color: #6366f1; }

.bg-indigo-500 { background-color: #6366f1; }
.hover\:bg-indigo-400:hover { background-color: #818cf8; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

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

.text-gray-400 { color: #9ca3af; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.text-gray-500 { color: #6b7280; }

.bg-indigo-600 { background-color: #4f46e5; }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.focus-visible\:outline { outline-style: solid; }
.focus-visible\:outline-2 { outline-width: 2px; }
.focus-visible\:outline-offset-2 { outline-offset: 2px; }
.focus-visible\:outline-indigo-600:focus-visible { outline-color: #4f46e5; }

.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.leading-6 { line-height: 1.5rem; }

.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-100 { color: #f3f4f6; }

.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }

.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-700:hover { background-color: #374151; }

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

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

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

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

.list-none { list-style-type: none; }
.p-0 { padding: 0; }

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

.bg-gray-900 { background-color: #111827; }
.text-gray-300 { color: #d1d5db; }

.hover\:text-white:hover { color: #ffffff; }

.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-gray-800 { border-color: #1f2937; }

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

.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

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

.border { border: 1px solid rgba(0, 0, 0, 0.1); }
.border-t { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-b { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.border-y { border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.border-none { border: none; }
.border-white { border-color: #ffffff; }
.border-2 { border-width: 2px; }
.border-outline-variant\/10 { border-color: rgba(196, 198, 213, 0.1); }
.border-outline-variant\/20 { border-color: rgba(196, 198, 213, 0.2); }
.border-outline-variant\/30 { border-color: rgba(196, 198, 213, 0.3); }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-video { aspect-ratio: 16 / 9; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.-space-x-3 > * + * { margin-left: -0.75rem; }

.opacity-0 { opacity: 0; }
.opacity-80 { opacity: 0.8; }
.translate-x-\[-30px\] { transform: translateX(-30px); }
.scale-95 { transform: scale(0.95); }

.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

.overflow-hidden { overflow: hidden; }
.aspect-video { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Custom Components */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
}

.glass-nav {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shadow-ambient {
  box-shadow: 0 20px 40px rgba(11, 28, 48, 0.06);
}

/* Animations */
@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-fade-in-left { animation: fade-in-left 1s ease-out forwards; }
.animate-fade-in-scale { animation: fade-in-scale 1s ease-out 0.3s forwards; }
.animate-bounce-slow { animation: bounce-slow 3s ease-in-out infinite; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.active\:scale-95:active { transform: scale(0.95); }

/* FAQ Styles */
.faq-content {
  transition: all 0.3s ease;
}
.faq-content.h-0 { height: 0; opacity: 0; }
.faq-content.h-auto { height: auto; opacity: 1; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-surface);
}
::-webkit-scrollbar-thumb {
  background: rgba(196, 198, 213, 0.3);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 198, 213, 0.5);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .text-5xl { font-size: 2.25rem; }
  .text-6xl { font-size: 3rem; }
  .text-7xl { font-size: 3.75rem; }
  .lg\:block { display: none; }
}
