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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111827;
  padding-bottom: 20px;
}

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

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

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

/* Utilities */
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-56 { height: 14rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.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; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.pt-16 { padding-top: 4rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-2 { padding-right: 0.5rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-6 { padding-right: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-green-100 { background-color: #dcfce7; }
.bg-sky-400 { background-color: #38bdf8; }
.bg-sky-600 { background-color: #0284c7; }
.bg-[#027BFF] { background-color: #027bff; }
.bg-[#0066CC] { background-color: #0066cc; }
.bg-gradient-to-br.from-gray-50.to-gray-100 { background: linear-gradient(135deg, #f9fafb, #f3f4f6); }
.text-white { color: #ffffff; }
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-green-600 { color: #16a34a; }
.text-green-800 { color: #166534; }
.text-[#027BFF] { color: #027bff; }
.text-black { color: #000000; }

.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-[#027BFF] { border-color: #027bff; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 2px rgb(0 0 0 / 0.05); }
.shadow-sm { box-shadow: 0 1px 2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgb(0 0 0 / 0.1), 0 4px 6px rgb(0 0 0 / 0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgb(0 0 0 / 0.15), 0 10px 10px rgb(0 0 0 / 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px rgb(0 0 0 / 0.25); }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-evenly { justify-content: space-evenly; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.cursor-pointer { cursor: pointer; }
.whitespace-nowrap { white-space: nowrap; }

.text-center { text-align: center; }
.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-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }

.bg-white { background-color: #fff; }
.bg-[#F6FAFF] { background-color: #f6faff; }
.bg-[#027BFF] { background-color: #027bff; }
.bg-[#0066CC] { background-color: #0066cc; }

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

.transition-colors { transition-property: color, background-color, border-color, fill, stroke; }
.transition-opacity { transition-property: opacity; }
.transition-transform { transition-property: transform; }
.transition-all { transition-property: all; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:bg-\[\#0066CC\]:hover { background-color: #0066cc; }
.hover\:text-\[\#027BFF\]:hover { color: #027bff; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgb(0 0 0 / 0.15), 0 10px 10px rgb(0 0 0 / 0.05); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px rgb(0 0 0 / 0.25); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:ring-2:hover { box-shadow: 0 0 0 2px rgba(2, 123, 255, 0.2); }
.hover\:ring-\[\#027BFF\]\/20:hover { box-shadow: 0 0 0 2px rgba(2, 123, 255, 0.2); }
.hover\:border-\[\#027BFF\]:hover { border-color: #027bff; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px rgb(0 0 0 / 0.15); }

.list-disc { list-style-type: disc; }
.pl-6 { padding-left: 1.5rem; }

.border-2 { border-width: 2px; border-style: solid; }
.transform { transform: translateZ(0); }

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

.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-200 { color: #e5e7eb; }

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.divide-x { border-left: none; }
.divide-gray-300 > * + * { border-left: none; }

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

.uppercase { text-transform: uppercase; }

.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }

.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.01em; }

.hover\:text-\[\#027BFF\]:hover { color: #027bff; }
.hover\:border-\[\#027BFF\]:hover { border-color: #027bff; }

.underline { text-decoration: underline; }

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

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.bg-gradient-to-br { background-size: cover; }
.from-gray-50 { --tw-gradient-from: #f9fafb; }
.to-gray-100 { --tw-gradient-to: #f3f4f6; }

.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.08); }

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

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

.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

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

.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-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.625; }

.cursor-pointer { cursor: pointer; }

.bg-gradient-to-br.from-gray-50.to-gray-100 {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Marquee animations for sold domains ticker */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
  will-change: transform;
}

@media (max-width: 768px) {
  .animate-marquee { animation: marquee 8s linear infinite; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .animate-marquee { animation: marquee 16s linear infinite; }
}

.hover\:pause-marquee:hover { animation-play-state: paused; }

footer {
  position: relative;
  z-index: 40;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .animate-marquee { animation: none; }
  [style*="animation: fadeInUp"] { animation: none !important; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-button {
  background: linear-gradient(90deg, #027bff 0%, #0099ff 50%, #027bff 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.shimmer-button:hover { animation: shimmer 1.5s linear infinite; }

.border-b { border-bottom: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border { border: 1px solid #e5e7eb; }

.overflow-hidden { overflow: hidden; }
.overflow-hidden img { display: block; }

.relative { position: relative; }
.absolute { position: absolute; }

.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }

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

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

.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }

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

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

.bg-green-100 { background-color: #dcfce7; }
.text-green-800 { color: #166534; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-\[repeat\(auto-fit,minmax\(300px,1fr\)\)\] { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

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

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

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

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

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08); }

.transition-all { transition: all 0.2s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:opacity-80:hover { opacity: 0.8; }

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

.page-font {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-shell {
  min-height: 100vh;
  background: #ffffff;
}

.page-shell-soft {
  min-height: 100vh;
  background: #f6faff;
}

.tooltip-pos {
  transform: translate(-50%, -100%);
  white-space: nowrap;
}

.no-underline { text-decoration: none; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.max-w-\[120px\] { max-width: 120px; }
.min-h-\[80px\] { min-height: 80px; }
.select-none { user-select: none; }
.max-w-none { max-width: none; }
.block { display: block; }
.inline { display: inline; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-12 { padding: 3rem; }
.pt-24 { padding-top: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.border-b-0 { border-bottom: 0; }

/* Group hover helpers */
.group { position: relative; }
.group:hover .group-hover\:text-\[\#027BFF\] { color: #027bff; }
.group:hover .group-hover\:text-gray-900 { color: #111827; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Additional helpers */
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.border-white { border-color: #ffffff; }

.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-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.leading-relaxed { line-height: 1.625; }

.bg-gradient-to-br.from-gray-50.to-gray-100 {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

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

.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }

.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }
.bg-gray-200 { background: #e5e7eb; }

.border { border: 1px solid #e5e7eb; }
.border-2 { border: 2px solid #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-[#027BFF] { border-color: #027bff; }

.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.08); }

.tracking-tight { letter-spacing: -0.01em; }

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

.bg-green-100 { background-color: #dcfce7; }
.text-green-800 { color: #166534; }

.animate-ping {
  position: absolute;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.pointer-events-none { pointer-events: none; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }

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

.bg-[#027BFF] { background-color: #027bff; color: #ffffff; }
.hover\:bg-\[\#0066CC\]:hover { background-color: #0066cc; }

.hover\:text-\[\#027BFF\]:hover { color: #027bff; }

.bg-gray-200 { background-color: #e5e7eb; }

.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)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

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

.group-hover\:scale-110:hover { transform: scale(1.1); }

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

.leading-relaxed { line-height: 1.625; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }

.hover\:text-\[\#027BFF\]:hover { color: #027bff; }

.text-[#027BFF] { color: #027bff; }

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

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08); }

.transition-all { transition: all 0.2s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:opacity-80:hover { opacity: 0.8; }

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

.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-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.leading-relaxed { line-height: 1.625; }

.bg-gradient-to-br.from-gray-50.to-gray-100 {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

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

.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }

.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }
.bg-gray-200 { background: #e5e7eb; }

.border { border: 1px solid #e5e7eb; }
.border-2 { border: 2px solid #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-[#027BFF] { border-color: #027bff; }

.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.08); }

.tracking-tight { letter-spacing: -0.01em; }

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

.bg-green-100 { background-color: #dcfce7; }
.text-green-800 { color: #166534; }

.animate-ping {
  position: absolute;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.pointer-events-none { pointer-events: none; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }

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

.bg-[#027BFF] { background-color: #027bff; color: #ffffff; }
.hover\:bg-\[\#0066CC\]:hover { background-color: #0066cc; }

.hover\:text-\[\#027BFF\]:hover { color: #027bff; }

.bg-gray-200 { background-color: #e5e7eb; }

.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)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

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

.group-hover\:scale-110:hover { transform: scale(1.1); }

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

.leading-relaxed { line-height: 1.625; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }

.hover\:text-\[\#027BFF\]:hover { color: #027bff; }

.text-[#027BFF] { color: #027bff; }

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

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08); }

.transition-all { transition: all 0.2s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:opacity-80:hover { opacity: 0.8; }

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

/* Responsive variants */
@media (min-width: 640px) {
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:pr-4 { padding-right: 1rem; }
  .sm\:pl-4 { padding-left: 1rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 768px) {
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:flex-row { flex-direction: row; }
  .md\:space-y-0 > * + * { margin-top: 0; }
  .md\:space-y-0 > * { margin-left: 0; }
  .md\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .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\:grid-cols-\[repeat\(auto-fit,minmax\(300px,1fr\)\)\] { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

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