/* Minimal stand-in for the Tailwind Play CDN (homepage only).
   Replaces the runtime Tailwind compiler with these few utilities,
   removing ~350KB of render-blocking JS. Keep values aligned with
   Tailwind's default scale. */

/* Base reset — mirrors Tailwind Preflight so removing the CDN
   does not change default browser margins / box-sizing. */
*,*::before,*::after{
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}
html{
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body{
  margin: 0;
  line-height: inherit;
}
h1,h2,h3,h4,h5,h6{
  font-size: inherit;
  font-weight: inherit;
}
a{
  color: inherit;
  text-decoration: inherit;
}
ul,ol{
  list-style: none;
  margin: 0;
  padding: 0;
}
blockquote,dl,dd,hr,figure,p,pre{
  margin: 0;
}
button,input,optgroup,select,textarea{
  font: inherit;
  color: inherit;
}
img,video{
  max-width: 100%;
  height: auto;
}
hr{
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

.flex{ display: flex; }
.flex-wrap{ flex-wrap: wrap; }
.items-center{ align-items: center; }
.justify-center{ justify-content: center; }

.gap-3{ gap: 0.75rem; }

.relative{ position: relative; }
.absolute{ position: absolute; }
.z-10{ z-index: 10; }
.pointer-events-none{ pointer-events: none; }

.mx-auto{ margin-left: auto; margin-right: auto; }
.mb-6{ margin-bottom: 1.5rem; }

.px-4{ padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .sm\:px-6{ padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .lg\:px-8{ padding-left: 2rem; padding-right: 2rem; } }

.max-w-5xl{ max-width: 64rem; }
.max-w-7xl{ max-width: 80rem; }

.min-h-screen{ min-height: 100vh; }
.text-center{ text-align: center; }
.overflow-hidden{ overflow: hidden; }
.overflow-x-hidden{ overflow-x: hidden; }

.text-2xl{ font-size: 1.5rem; line-height: 2rem; }
.font-extrabold{ font-weight: 800; }
.tracking-tight{ letter-spacing: -0.025em; }
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
