/* Focused utility CSS — covers exactly what this design uses. No Tailwind dependency. */
*, *::before, *::after { box-sizing: border-box; border: 0 solid #1A1A1F; }
html, body { margin: 0; padding: 0; }
button { background: transparent; border: 0; cursor: pointer; color: inherit; font: inherit; }
input { font: inherit; }
img, svg { display: block; max-width: 100%; }

/* Display */
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

/* Flex / grid props */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }
.place-content-center { place-content: center; }
.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)); }

/* Gap */
.gap-0\.5 { gap: 2px; }
.gap-1 { gap: 4px; }
.gap-1\.5 { gap: 6px; }
.gap-2 { gap: 8px; }
.gap-2\.5 { gap: 10px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-x-8 { column-gap: 32px; }
.gap-x-9 { column-gap: 36px; }
.gap-y-3 { row-gap: 12px; }
.gap-y-5 { row-gap: 20px; }

/* Spacing — padding */
.p-0 { padding: 0; }   .p-5 { padding: 20px; } .p-6 { padding: 24px; } .p-7 { padding: 28px; } .p-8 { padding: 32px; } .p-12 { padding: 48px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-9 { padding-left: 36px; padding-right: 36px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-3\.5 { padding-top: 14px; padding-bottom: 14px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.pl-10 { padding-left: 40px; }
.pr-3 { padding-right: 12px; }
.pt-5 { padding-top: 20px; }
.pt-10 { padding-top: 40px; }
.pb-24 { padding-bottom: 96px; }
.pb-12 { padding-bottom: 48px; }

/* Spacing — margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 2px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-7 { margin-top: 28px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mt-20 { margin-top: 80px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-7 { margin-bottom: 28px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }

/* Width / height */
.w-2\.5 { width: 10px; } .h-2\.5 { height: 10px; }
.w-9 { width: 36px; } .h-9 { height: 36px; }
.w-12 { width: 48px; } .h-12 { height: 48px; }
.w-16 { width: 64px; } .h-16 { height: 64px; }
.h-16 { height: 64px; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[720px\] { max-width: 720px; }
.h-screen { height: 100vh; }
.h-16 { height: 64px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.left-3 { left: 12px; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.z-20 { z-index: 20; }

/* Text */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-black { color: #0a0a0a; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.015em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.15; }
.leading-relaxed { line-height: 1.625; }

/* Borders / radius */
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 999px; }
.border { border-width: 1px; }

/* Background */
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }

/* Effects */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3); }
.transition { transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease, filter .15s ease; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Screen reader only */
.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;
}

/* Hover utilities */
.hover\:text-white:hover { color: #fff; }
.hover\:brightness-105:hover { filter: brightness(1.05); }

/* Specific arbitrary-value classes used inline */
/* text-[Xpx] */
.text-\[12px\] { font-size: 12px; }
.text-\[12\.5px\] { font-size: 12.5px; }
.text-\[13px\] { font-size: 13px; }
.text-\[13\.5px\] { font-size: 13.5px; }
.text-\[14px\] { font-size: 14px; }
.text-\[14\.5px\] { font-size: 14.5px; }
.text-\[15px\] { font-size: 15px; line-height: 1.5; }
.text-\[16px\] { font-size: 16px; line-height: 1.55; }
.text-\[17px\] { font-size: 17px; line-height: 1.5; }
.text-\[18px\] { font-size: 18px; line-height: 1.45; }
.text-\[24px\] { font-size: 24px; line-height: 1.25; }
.text-\[28px\] { font-size: 28px; line-height: 1.2; }
.text-\[30px\] { font-size: 30px; line-height: 1.15; }
.text-\[32px\] { font-size: 32px; line-height: 1.1; }
.text-\[36px\] { font-size: 36px; line-height: 1.05; }
.text-\[38px\] { font-size: 38px; line-height: 1.1; }
.text-\[44px\] { font-size: 44px; line-height: 1.04; }
.text-\[52px\] { font-size: 52px; line-height: 1.05; }
.text-\[56px\] { font-size: 56px; line-height: 1; }
.text-\[64px\] { font-size: 64px; line-height: 1.02; }
.text-\[76px\] { font-size: 76px; line-height: 1; }
.text-\[color\:var\(--text-2\)\] { color: var(--text-2); }
.text-\[color\:var\(--text-3\)\] { color: var(--text-3); }
.text-\[color\:var\(--amber-1\)\] { color: var(--amber-1); }
.text-\[color\:var\(--amber-2\)\] { color: var(--amber-2); }

/* leading */
.leading-\[1\.02\] { line-height: 1.02; }
.leading-\[1\.04\] { line-height: 1.04; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.15\] { line-height: 1.15; }

/* tracking-[X] */
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[\.04em\] { letter-spacing: 0.04em; }

/* placeholder */
.placeholder\:text-\[\#4B5563\]::placeholder { color: #4B5563; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
  .sm\:px-8 { padding-left: 32px; padding-right: 32px; }
  .sm\:py-5 { padding-top: 20px; padding-bottom: 20px; }
  .sm\:p-8 { padding: 32px; }
  .sm\:text-\[18px\] { font-size: 18px; line-height: 1.45; }
  .sm\:text-\[36px\] { font-size: 36px; line-height: 1.05; }
  .sm\:text-\[38px\] { font-size: 38px; line-height: 1.1; }
  .sm\:text-\[52px\] { font-size: 52px; line-height: 1.05; }
  .sm\:text-\[64px\] { font-size: 64px; line-height: 1.02; }
  .sm\:text-\[16px\] { font-size: 16px; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
  .lg\:text-\[76px\] { font-size: 76px; line-height: 1; }
}

/* white/90 helper used in nav */
.text-white\/90 { color: rgba(255,255,255,0.9); }

/* Additions for results screen */
.text-right { text-align: right; }
.mx-1 { margin-left: 4px; margin-right: 4px; }
.text-\[20px\] { font-size: 20px; line-height: 1.3; }
.justify-self-end { justify-self: end; }
.justify-center { justify-content: center; }
