:root {
  --background: hsl(210 40% 98%);
  --foreground: hsl(222 47% 11%);
  --card: #fff;
  --primary: hsl(169 88% 30%);
  --secondary: hsl(222 36% 12%);
  --muted: hsl(214 32% 91%);
  --muted-foreground: hsl(215 16% 36%);
  --border: hsl(214 32% 86%);
  --input: hsl(214 32% 82%);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.min-h-screen { min-height: 100vh; }
.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.left-3 { left: .75rem; }
.right-4 { right: 1rem; }
.top-4 { top: 1rem; }
.z-40 { z-index: 40; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.pt-0 { padding-top: 0; }
.pt-2 { padding-top: .5rem; }
.pt-3 { padding-top: .75rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-3 { padding-left: .75rem; padding-right: .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; }
.p-0 { padding: 0; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-9 { padding-left: 2.25rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-52 { height: 13rem; }
.min-h-11 { min-height: 2.75rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-t { border-top-left-radius: .25rem; border-top-right-radius: .25rem; }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-primary { border-color: var(--primary); }
.border-input { border-color: var(--input); }
.border-red-200 { border-color: #fecaca; }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-primary\/20 { border-color: color-mix(in srgb, var(--primary) 20%, transparent); }
.border-border { border-color: var(--border); }
.border-border\/80 { border-color: color-mix(in srgb, var(--border) 80%, transparent); }

.bg-background { background: var(--background); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-muted { background: var(--muted); }
.bg-red-50 { background: #fef2f2; }
.bg-white\/5 { background: rgba(255,255,255,.05); }
.bg-muted\/35 { background: color-mix(in srgb, var(--muted) 35%, transparent); }
.bg-muted\/40 { background: color-mix(in srgb, var(--muted) 40%, transparent); }
.bg-muted\/55 { background: color-mix(in srgb, var(--muted) 55%, transparent); }
.bg-primary\/10 { background: color-mix(in srgb, var(--primary) 10%, transparent); }
.bg-background\/90 { background: color-mix(in srgb, var(--background) 90%, transparent); }
.backdrop-blur { backdrop-filter: blur(12px); }
.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .06); }
.shadow-lg { box-shadow: 0 18px 45px rgba(15, 23, 42, .12); }
.shadow-2xl { box-shadow: 0 25px 80px rgba(15, 23, 42, .25); }
.overflow-hidden { overflow: hidden; }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: #fff; }
.text-secondary-foreground { color: #fff; }
.text-red-700 { color: #b91c1c; }
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .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; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-none { line-height: 1; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.1; }
.tracking-normal { letter-spacing: 0; }
.uppercase { text-transform: uppercase; }

.transition-colors { transition: color .15s ease, background-color .15s ease, border-color .15s ease; }
.outline-none { outline: 0; }
.pointer-events-none { pointer-events: none; }
.-translate-y-1\/2 { transform: translateY(-50%); }

input {
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
}
input::placeholder { color: var(--muted-foreground); }
input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 30%, transparent);
  outline-offset: 2px;
}
button, .inline-flex[role="button"] { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
.hover\:bg-muted:hover { background: var(--muted); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-primary\/80:hover { color: color-mix(in srgb, var(--primary) 80%, #000); }
.hover\:bg-primary\/90:hover { background: color-mix(in srgb, var(--primary) 90%, #000); }

dialog::backdrop { background: rgba(15, 23, 42, .35); }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:p-6 { padding: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: .9fr 1.1fr; }
  .lg\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: .95fr 1.05fr; }
  .lg\:grid-cols-\[1\.02fr_0\.98fr\] { grid-template-columns: 1.02fr .98fr; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
