/*
 * EasyAudiology — precompiled stylesheet (finished artefact).
 * Tailwind-compatible preflight + the utility classes used by the views.
 * Hand-authored to avoid a Node toolchain on the deploy box.
 */

/* preflight */
*,*::before,*::after { box-sizing: border-box; border-width: 0; border-style: solid; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; line-height: 1.5; }
body { margin: 0; line-height: inherit; }
h1,h2,h3,h4,h5,h6,p,ul,ol,li,figure,blockquote { margin: 0; padding: 0; }
ul,ol { list-style: none; }
a { color: inherit; text-decoration: inherit; }
button,input,select,textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button { background-color: transparent; background-image: none; cursor: pointer; border: 0; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
img,svg,video,canvas,audio,iframe,embed,object { display: block; vertical-align: middle; }
summary { display: list-item; cursor: pointer; }

/* layout */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pr-4 { padding-right: 1rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.overflow-x-auto { overflow-x: auto; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-none { list-style: none; }
.list-none::-webkit-details-marker { display: none; }
.cursor-pointer { cursor: pointer; }
.transition { transition: all .15s ease-in-out; }

/* type */
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-medium { font-weight: 500; }
.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-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.no-underline { text-decoration: none; }
.text-left { text-align: left; }

/* color */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-900 { background-color: #0f172a; }
.bg-indigo-50 { background-color: #eef2ff; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-red-50 { background-color: #fef2f2; }
.bg-amber-50 { background-color: #fffbeb; }
.text-white { color: #ffffff; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-700 { color: #4338ca; }
.text-emerald-700 { color: #047857; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-amber-800 { color: #92400e; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-red-200 { border-color: #fecaca; }
.border-amber-200 { border-color: #fde68a; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

/* form */
input[type="password"], input[type="text"], input[type="email"] {
    background-color: #ffffff; color: #0f172a;
}
.focus\:border-indigo-500:focus { border-color: #6366f1; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px #6366f1; }
.focus\:ring-indigo-500:focus { box-shadow: 0 0 0 1px #6366f1; }

/* hover */
.hover\:text-indigo-600:hover { color: #4f46e5; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:underline:hover { text-decoration: underline; }

/* details/group state */
.group[open] .group-open\:rotate-90 { transform: rotate(90deg); }
.open\:shadow-sm[open] { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.rotate-90 { transform: rotate(90deg); }

table.min-w-full th, table.min-w-full td { vertical-align: top; }
[hidden] { display: none; }

/* --------- marketing page extras --------- */

/* grid */
.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)); }

/* larger text */
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.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; }

/* spacing extras */
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.p-8    { padding: 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; }
.py-20  { padding-top: 5rem;   padding-bottom: 5rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-6   { margin-bottom: 1.5rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-12  { margin-bottom: 3rem; }
.mt-6   { margin-top: 1.5rem; }
.mt-8   { margin-top: 2rem; }
.mt-12  { margin-top: 3rem; }
.mt-16  { margin-top: 4rem; }
.px-5   { padding-left: 1.25rem; padding-right: 1.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* sizes */
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-8  { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-8  { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }

/* flex helpers used by the home page */
.flex-wrap { flex-wrap: wrap; }
.flex-col  { flex-direction: column; }

/* additional hover used by the home CTA's secondary button */
.hover\:bg-slate-50:hover { background-color: #f8fafc; }

/* negative margins for full-bleed sections inside a padded container */
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }

/* max widths */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

/* type */
.text-center { text-align: center; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-balance { text-wrap: balance; }

/* colors used only by marketing */
.bg-slate-900\/5 { background-color: rgba(15, 23, 42, 0.05); }
.text-indigo-100 { color: #e0e7ff; }
.text-emerald-600 { color: #059669; }
.text-amber-600 { color: #d97706; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-indigo-100 { background-color: #e0e7ff; }
.ring-1 { box-shadow: 0 0 0 1px rgba(0,0,0,0.05); }
.ring-slate-200 { box-shadow: 0 0 0 1px #e2e8f0; }

/* gradient bg used on the hero */
.bg-hero {
    background-image: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* feature card */
.feature-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: #eef2ff;
    color: #4f46e5;
    margin-bottom: 1rem;
}

/* workflow chip */
.flow-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background-color: #f1f5f9;
    color: #1e293b;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}
.flow-chip.flow-decision { background-color: #eef2ff; color: #4338ca; }
.flow-chip.flow-danger { background-color: #fef2f2; color: #b91c1c; }
.flow-chip.flow-success { background-color: #ecfdf5; color: #047857; }

/* responsive: tablet+ */
@media (min-width: 768px) {
    .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\:text-5xl   { font-size: 3rem; line-height: 1; }
    .md\:text-xl    { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:py-20      { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:px-8       { padding-left: 2rem; padding-right: 2rem; }
}
