@media (min-width: 640px) {
  .sm\:max-w-sm {
    max-width: 24rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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

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

.flex {
  display: flex;
}

.gap-x-0\.5 {
  column-gap: 0.125rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

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

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

/* === Layout & Positioning === */
.min-h-screen {
  min-height: 100vh;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gap-x-1\.5 {
  column-gap: 0.375rem;
} /* 1.5 * 0.25rem */
.gap-y-4 {
  row-gap: 1rem;
}
.gap-1 {
  gap: 0.25rem;
}

/* === Sizing === */
.max-w-6xl {
  max-width: 72rem;
}
.max-w-sm {
  max-width: 24rem;
}
.w-full {
  width: 100%;
}
.w-3\/4 {
  width: 75%;
}
.size-20 {
  width: 5rem;
  height: 5rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}

/* === Padding === */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
/* === Typography === */
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text-white {
  color: var(--color-white);
}
.text-black {
  color: var(--color-black);
}
.text-gray-800 {
  color: var(--color-gray-800);
}
.text-sky-300 {
  color: var(--color-sky-300);
}
.text-sky-200 {
  color: var(--color-sky-200);
}
.text-gray-500 {
  color: var(--color-gray-500);
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-center {
  text-align: center;
}

/* === Backgrounds & Gradients === */
.bg-white {
  background-color: var(--color-white);
}
.bg-gray-50 {
  background-color: var(--color-gray-50);
}
.bg-blue-600 {
  background-color: var(--color-blue-600);
}
.bg-blue-700 {
  background-color: var(--color-blue-700);
}
.bg-blue-800 {
  background-color: var(--color-blue-800);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, #61c3f1, #0164e6, #0883be);
}

/* === Borders & Rings === */
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-0 {
  border-width: 0;
}
.border-gray-200 {
  border-color: var(--color-gray-200);
}
.border-gray-300 {
  border-color: var(--color-gray-300);
}
.border-transparent {
  border-color: transparent;
}
.border-b-gray-200 {
  border-bottom-color: var(--color-gray-200);
}
.focus-within\:border-blue-600:focus-within {
  border-color: var(--color-blue-600);
}
.focus\:border-b-blue-500:focus {
  border-bottom-color: var(--color-blue-500);
}
.active\:border-gray-400:active {
  border-color: var(--color-gray-400);
}

.ring-1 {
  box-shadow: 0 0 0 1px
    rgba(var(--tw-ring-rgb, 0 0 0), var(--tw-ring-opacity, 1));
}
.ring-gray-100 {
  --tw-ring-rgb: 243 244 246;
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}

/* === Radius & Shadows === */
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* === States === */
.hover\:bg-blue-700:hover {
  background-color: var(--color-blue-700);
}
.hover\:bg-gray-50:hover {
  background-color: var(--color-gray-50);
}
.hover\:underline:hover {
  text-decoration: underline;
}
.active\:bg-blue-800:active {
  background-color: var(--color-blue-800);
}
.disabled\:bg-blue-700:disabled {
  background-color: var(--color-blue-700);
}
.disabled\:border-transparent:disabled {
  border-color: transparent;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.focus\:bg-blue-500:focus {
  background-color: var(--color-blue-500);
}
.focus\:ring-0:focus {
  box-shadow: none;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* === Transforms === */
.rotate-\[30deg\] {
  transform: rotate(30deg);
}

/* === Misc === */
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

.block {
  display: block;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-center {
  text-align: center;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.text-sky-200 {
  color: var(--color-sky-200);
}

.ml-1 {
  margin-left: 0.25rem;
}
