/* Hand-written replacement for the Tailwind Play CDN (cdn.tailwindcss.com),
   which Tailwind explicitly warns against using in production. Covers only
   the utility classes actually used on this page — see the class inventory
   this was generated from. Values match Tailwind's own default scale. */

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

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

/* --- display / layout --- */
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.relative { position: relative; }
.sticky { position: sticky; top: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* --- gap --- */
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; }

/* --- spacing: padding --- */
.p-3 { padding: .75rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; } .p-12 { padding: 3rem; }
.px-4 { padding-inline: 1rem; } .px-8 { padding-inline: 2rem; }
.py-4 { padding-block: 1rem; } .py-10 { padding-block: 2.5rem; }
.py-16 { padding-block: 4rem; } .py-20 { padding-block: 5rem; }
.pt-8 { padding-top: 2rem; }

/* --- spacing: margin --- */
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: .25rem; } .mt-4 { margin-top: 1rem; } .mt-12 { margin-top: 3rem; }
.mx-auto { margin-inline: auto; }

/* --- stack spacing (Tailwind's space-y-*) --- */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-24 > * + * { margin-top: 6rem; }

/* --- sizing --- */
.w-2 { width: .5rem; } .w-3 { width: .75rem; } .w-6 { width: 1.5rem; }
.w-12 { width: 3rem; } .w-40 { width: 10rem; } .w-full { width: 100%; }
.h-2 { height: .5rem; } .h-3 { height: .75rem; } .h-6 { height: 1.5rem; }
.h-12 { height: 3rem; } .h-16 { height: 4rem; } .h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; } .max-w-7xl { max-width: 80rem; }

/* --- radius --- */
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[3rem\] { border-radius: 3rem; }

/* --- borders --- */
.border { border-width: 1px; border-style: solid; border-color: currentColor; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-700 { border-color: #334155; }
.border-teal-500 { border-color: #14b8a6; }
.border-white\/20 { border-color: rgb(255 255 255 / .2); }
.border-white\/30 { border-color: rgb(255 255 255 / .3); }

/* --- backgrounds --- */
.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgb(255 255 255 / .1); }
.bg-white\/20 { background-color: rgb(255 255 255 / .2); }
.bg-white\/80 { background-color: rgb(255 255 255 / .8); }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-400 { background-color: #94a3b8; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-400 { background-color: #2dd4bf; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-teal-600 { background-color: #0d9488; }
.bg-teal-700 { background-color: #0f766e; }
.bg-teal-800 { background-color: #115e59; }
.bg-rose-500 { background-color: #f43f5e; }
.bg-amber-500 { background-color: #f59e0b; }

/* --- text color --- */
.text-white { color: #fff; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-teal-300 { color: #5eead4; }
.text-teal-600 { color: #0d9488; }
.text-teal-700 { color: #0f766e; }
.text-teal-800 { color: #115e59; }

/* --- typography --- */
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.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; }

/* --- effects --- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.opacity-70 { opacity: .7; }
.opacity-80 { opacity: .8; }
.opacity-90 { opacity: .9; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }

/* --- interactive states --- */
.hover\:bg-teal-50:hover { background-color: #f0fdfa; }
.hover\:text-teal-600:hover { color: #0d9488; }
.accent-teal-500 { accent-color: #14b8a6; }

/* --- responsive: md (768px) --- */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .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\:p-8 { padding: 2rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* --- responsive: lg (1024px) --- */
@media (min-width: 1024px) {
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
