/* Tailwind CSS Reset and Base Styles */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: "";
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
}

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

/* Utility Classes */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-sans {
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-md {
  max-width: 28rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-full {
  width: 100%;
}
.h-16 {
  height: 4rem;
}
.h-6 {
  height: 1.5rem;
}
.w-6 {
  width: 1.5rem;
}
.h-12 {
  height: 3rem;
}
.w-12 {
  width: 3rem;
}
.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}

/* Flexbox */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-baseline {
  align-items: baseline;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}

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

/* Spacing */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-8 {
  padding: 2rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}

/* Gap */
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.25rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-center {
  text-align: center;
}

/* Colors */
.text-white {
  color: rgb(255 255 255);
}
.text-gray-300 {
  color: rgb(209 213 219);
}
.text-gray-400 {
  color: rgb(156 163 175);
}
.text-gray-600 {
  color: rgb(75 85 99);
}
.text-gray-700 {
  color: rgb(55 65 81);
}
.text-gray-900 {
  color: rgb(17 24 39);
}
.text-cyan-600 {
  color: rgb(8 145 178);
}
.text-blue-600 {
  color: rgb(37 99 235);
}
.text-orange-600 {
  color: rgb(234 88 12);
}
.text-green-500 {
  color: rgb(34 197 94);
}

/* Backgrounds */
.bg-white {
  background-color: rgb(255 255 255);
}
.bg-gray-50 {
  background-color: rgb(249 250 251);
}
.bg-gray-800 {
  background-color: rgb(31 41 55);
}
.bg-gray-900 {
  background-color: rgb(17 24 39);
}
.bg-cyan-50 {
  background-color: rgb(236 254 255);
}
.bg-cyan-600 {
  background-color: rgb(8 145 178);
}
.bg-cyan-700 {
  background-color: rgb(14 116 144);
}
.bg-blue-50 {
  background-color: rgb(239 246 255);
}
.bg-blue-100 {
  background-color: rgb(219 234 254);
}
.bg-blue-600 {
  background-color: rgb(37 99 235);
}
.bg-blue-700 {
  background-color: rgb(29 78 216);
}
.bg-orange-50 {
  background-color: rgb(255 247 237);
}
.bg-orange-100 {
  background-color: rgb(254 215 170);
}
.bg-orange-600 {
  background-color: rgb(234 88 12);
}
.bg-orange-700 {
  background-color: rgb(194 65 12);
}
.bg-red-50 {
  background-color: rgb(254 242 242);
}

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-cyan-50 {
  --tw-gradient-from: rgb(236 254 255);
  --tw-gradient-to: rgb(236 254 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-50 {
  --tw-gradient-to: rgb(239 246 255);
}
.from-blue-50 {
  --tw-gradient-from: rgb(239 246 255);
  --tw-gradient-to: rgb(239 246 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-cyan-50 {
  --tw-gradient-to: rgb(236 254 255);
}
.from-orange-50 {
  --tw-gradient-from: rgb(255 247 237);
  --tw-gradient-to: rgb(255 247 237 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-red-50 {
  --tw-gradient-to: rgb(254 242 242);
}

/* Borders */
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-300 {
  border-color: rgb(209 213 219);
}
.border-gray-800 {
  border-color: rgb(31 41 55);
}
.border-blue-100 {
  border-color: rgb(219 234 254);
}
.border-orange-100 {
  border-color: rgb(254 215 170);
}
.border-cyan-600 {
  border-color: rgb(8 145 178);
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}

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

/* Position */
.sticky {
  position: sticky;
}
.top-0 {
  top: 0px;
}
.z-50 {
  z-index: 50;
}
.block {
  display: block;
}
.hidden {
  display: none;
}

/* Hover States */
.hover\:text-cyan-600:hover {
  color: rgb(8 145 178);
}
.hover\:text-white:hover {
  color: rgb(255 255 255);
}
.hover\:text-gray-300:hover {
  color: rgb(209 213 219);
}
.hover\:bg-cyan-50:hover {
  background-color: rgb(236 254 255);
}
.hover\:bg-cyan-700:hover {
  background-color: rgb(14 116 144);
}
.hover\:bg-blue-700:hover {
  background-color: rgb(29 78 216);
}
.hover\:bg-orange-700:hover {
  background-color: rgb(194 65 12);
}
.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
}

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

/* Focus States */
.focus\:ring-2:focus {
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
.focus\:ring-cyan-500:focus {
  --tw-ring-color: rgb(6 182 212);
}
.focus\:border-transparent:focus {
  border-color: transparent;
}

/* Form Elements */
input,
textarea {
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
}

input:focus,
textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Responsive Design */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:text-right {
    text-align: right;
  }
  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:ml-auto {
    margin-left: auto;
  }
}

