@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background: #f8fafc;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: #4f46e5; text-decoration: none; transition: color .2s; }
a:hover { color: #4338ca; }
img, svg { display: block; max-width: 100%; }
::selection { background: #c7d2fe; color: #1e1b4b; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 99px; border: 2px solid #e2e8f0; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* ===== Container ===== */
.container-page { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
main { min-height: 50vh; }

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 30px -8px rgba(15,23,42,.12);
}
.site-header::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 10%, #4f46e5 30%, #7c3aed 50%, #4f46e5 70%, transparent 90%);
    background-size: 200% 100%;
    opacity: .5;
    animation: headerGlow 8s linear infinite;
}
@keyframes headerGlow { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.header-brand {
    display: inline-flex; align-items: center; gap: .65rem;
    text-decoration: none;
    transition: transform .2s ease;
}
.header-brand:hover { transform: scale(1.02); }
.header-brand__logo {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: grid; place-items: center;
    color: #fff;
    box-shadow: 0 4px 14px -2px rgba(79,70,229,.4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.header-brand__logo::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.3), transparent 60%);
    opacity: 0; transition: opacity .3s;
}
.header-brand:hover .header-brand__logo::before { opacity: 1; }
.header-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.header-brand__name { font-weight: 900; font-size: 1.05rem; color: #0f172a; letter-spacing: -.02em; }
.header-brand__tag { font-size: .68rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .08em; }

.site-header-nav {
    align-items: center; gap: .35rem;
    font-size: .875rem; font-weight: 600;
}
.site-header-nav > a:not(.btn-primary), .site-header-nav > .site-nav-dropdown > .site-nav-dropdown__trigger {
    padding: .5rem .85rem; border-radius: 10px;
    color: #475569; transition: all .2s ease;
    position: relative; display: inline-block;
}
.site-header-nav > a:not(.btn-primary):hover, .site-nav-dropdown__trigger:hover {
    color: #4f46e5; background: #eef2ff; text-decoration: none;
}
.site-header-nav .btn-primary { padding: .55rem 1.15rem; color: #fff; }
.site-header-nav .btn-primary:hover { color: #fff; }

.site-nav-dropdown { position: relative; display: inline-block; }
.site-nav-dropdown__trigger { background: none; border: none; font: inherit; cursor: pointer; }
.site-nav-dropdown__trigger::after { content: '⌄'; margin-left: .25rem; color: #94a3b8; font-size: .8em; }
.site-nav-dropdown__menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(15,23,42,.15);
    min-width: 280px; padding: .5rem; margin-top: .5rem; z-index: 10;
}
.site-nav-dropdown:hover .site-nav-dropdown__menu,
.site-nav-dropdown:focus-within .site-nav-dropdown__menu {
    display: block; animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.site-nav-dropdown__menu a {
    display: flex; align-items: center; gap: .6rem;
    padding: .65rem .85rem; border-radius: 10px; color: #334155;
}
.site-nav-dropdown__menu a:hover { background: #eef2ff; color: #4f46e5; text-decoration: none; }
.site-nav-dropdown__menu a svg { width: 18px; height: 18px; color: #818cf8; flex-shrink: 0; }

.header-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .5rem;
}
.header-menu-toggle span { width: 24px; height: 2.5px; background: #0f172a; border-radius: 99px; transition: all .3s ease; }
.header-menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.header-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .header-menu-toggle { display: flex; }
    .site-header-nav {
        position: fixed; top: 65px; left: 0; right: 0;
        flex-direction: column; gap: 0; background: #fff;
        border-bottom: 1px solid #e2e8f0; padding: .5rem 1.25rem 1.25rem;
        box-shadow: 0 20px 40px -12px rgba(15,23,42,.12);
        transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
        align-items: stretch; max-height: calc(100vh - 65px); overflow-y: auto;
    }
    .site-header-nav.is-open { transform: translateY(0); }
    .site-header-nav > a, .site-header-nav > .site-nav-dropdown { padding: .85rem .5rem; border-bottom: 1px solid #f1f5f9; }
    .site-header-nav .btn-primary { margin-top: .75rem; text-align: center; }
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff; border: none; border-radius: 12px;
    font-weight: 700; cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 14px -2px rgba(79,70,229,.35);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    position: relative; overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px rgba(79,70,229,.45);
    color: #fff; text-decoration: none; filter: brightness(1.05);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary .scan-btn-glow {
    display: inline-block; width: 1rem; height: 1rem; margin-right: .5rem;
    border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
    border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Cards ===== */
.card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.card:hover {
    box-shadow: 0 16px 36px -12px rgba(15,23,42,.1);
    border-color: #c7d2fe; transform: translateY(-3px);
}

/* ===== Hero ===== */
.hero-fullscreen {
    padding: 4rem 0 3.5rem;
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(79,70,229,.12), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 10%, rgba(168,85,247,.1), transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(59,130,246,.06), transparent 60%),
        #f8fafc;
    position: relative; overflow: hidden;
}
.hero-title {
    font-size: 2.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -.035em;
    color: #0f172a; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both;
}
@media (min-width:768px) { .hero-title { font-size: 3.5rem; } }
.hero-subtitle {
    margin: 1.5rem auto 0; max-width: 42rem;
    font-size: 1.125rem; line-height: 1.75; color: #475569;
    animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-fullscreen .card { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .2s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 99px;
    padding: .4rem 1rem; font-size: .78rem; font-weight: 700;
    color: #4f46e5; text-transform: uppercase; letter-spacing: .06em;
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
    animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both;
}
.hero-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.15); animation: pulse 2s infinite; }

/* ===== Scan form ===== */
.scan-mode-fieldset { border: none; padding: 0; margin: 0; }
.scan-mode-legend { font-size: .85rem; font-weight: 700; color: #334155; margin-bottom: .75rem; }
.scan-mode-picker { display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width:640px) { .scan-mode-picker { grid-template-columns: repeat(3,1fr); } }
.scan-mode-option { cursor: pointer; }
.scan-mode-option input { display: none; }
.scan-mode-option__panel {
    display: block; border: 2px solid #e2e8f0; border-radius: 14px;
    padding: .9rem .65rem; text-align: center;
    transition: all .2s ease; background: #fff;
}
.scan-mode-option:hover .scan-mode-option__panel { border-color: #c7d2fe; transform: translateY(-2px); }
.scan-mode-option input:checked + .scan-mode-option__panel {
    border-color: #4f46e5;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    box-shadow: 0 6px 18px -6px rgba(79,70,229,.25);
}
.scan-mode-option__title { display: block; font-weight: 700; font-size: .9rem; color: #0f172a; }
.scan-mode-option__tags { display: block; margin-top: .2rem; font-size: .72rem; color: #4f46e5; font-weight: 600; }
.scan-mode-hint { margin-top: .65rem; font-size: .85rem; color: #64748b; }
.scan-url-input {
    font-size: 1rem; background: #fff; color: #0f172a;
    border: 1.5px solid #cbd5e1; border-radius: 12px;
    padding: .85rem 1.1rem; width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.scan-url-input::placeholder { color: #94a3b8; }
.scan-url-input:focus { border-color: #4f46e5; box-shadow: 0 0 0 4px rgba(79,70,229,.12); outline: none; }
.scan-url-error { color: #dc2626; }
.scan-consent-label { color: #475569; }
.scan-consent-checkbox { accent-color: #4f46e5; }

/* ===== Section titles ===== */
.section-title {
    font-size: 1.9rem; font-weight: 900; letter-spacing: -.025em;
    line-height: 1.2; color: #0f172a; display: inline-block;
}
.section-title::after {
    content: ''; display: block; width: 48px; height: 4px; margin-top: .8rem;
    background: linear-gradient(90deg, #4f46e5, #7c3aed); border-radius: 99px;
}
@media (min-width:768px) { .section-title { font-size: 2.4rem; } }
.link { color: #4f46e5; font-weight: 600; }
.link:hover { color: #4338ca; }

/* ===== Feature cards ===== */
.feature-card { position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; opacity: 0; transition: opacity .3s; }
.feature-card:hover::before { opacity: 1; }
.feature-card--free { color: #4f46e5; } .feature-card--free::before { background: linear-gradient(90deg,#4f46e5,#818cf8); }
.feature-card--tech { color: #0891b2; } .feature-card--tech::before { background: linear-gradient(90deg,#0891b2,#22d3ee); }
.feature-card--legal { color: #d97706; } .feature-card--legal::before { background: linear-gradient(90deg,#d97706,#fbbf24); }
.feature-card--lang { color: #7c3aed; } .feature-card--lang::before { background: linear-gradient(90deg,#7c3aed,#c084fc); }

/* ===== Penalty cards ===== */
.penalty-card { border-color: #fecaca; }
.penalty-card:hover { border-color: #fca5a5; box-shadow: 0 12px 32px -12px rgba(220,38,38,.12); }
.penalty-card__sum { color: #dc2626; font-weight: 800; }
.penalty-card--other { background: #f8fafc; border-color: #e2e8f0; }

/* ===== Benefit cards ===== */
.benefit-card { position: relative; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.benefit-card--1::before { background: linear-gradient(90deg,#4f46e5,#818cf8); }
.benefit-card--2::before { background: linear-gradient(90deg,#0891b2,#22d3ee); }
.benefit-card--3::before { background: linear-gradient(90deg,#d97706,#fbbf24); }
.benefit-card--4::before { background: linear-gradient(90deg,#7c3aed,#c084fc); }
.benefit-card p:first-child { color: #0f172a; }
.benefit-card p:last-child { color: #475569; }

/* ===== Report page ===== */
.report-verdict-card {
    background: linear-gradient(135deg, #1e1b4b, #4f46e5 50%, #7c3aed);
    color: #fff; border-radius: 20px;
    box-shadow: 0 20px 50px -16px rgba(79,70,229,.4);
    position: relative; overflow: hidden;
}
.report-verdict-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 60%); }
.report-verdict-headline--high { font-size: 2rem; font-weight: 900; letter-spacing: -.02em; position: relative; }
.report-pages-scanned { background: #f8fafc; border-color: #e2e8f0; }
.report-pages-list { list-style: decimal; padding-left: 1.25rem; }
.report-pages-list li { margin-bottom: .3rem; color: #334155; }
.report-detail-list { list-style: disc; padding-left: 1.25rem; }
.report-pdf-bar { border-color: #e2e8f0 !important; }
.scan-score-bar { transition: width .8s cubic-bezier(.16,1,.3,1) !important; }

.report-score-ring {
    --pct: 0; --color: #22c55e;
    width: 140px; height: 140px; border-radius: 50%;
    background: conic-gradient(var(--color) calc(var(--pct) * 1%), #e2e8f0 0);
    display: grid; place-items: center; position: relative; flex-shrink: 0;
}
.report-score-ring::after { content: ''; position: absolute; inset: 10px; background: #fff; border-radius: 50%; }
.report-score-ring__value { position: relative; z-index: 1; font-size: 2.25rem; font-weight: 900; color: #0f172a; letter-spacing: -.03em; }
.report-score-ring__value small { font-size: 1rem; font-weight: 700; color: #94a3b8; }

.report-block-score { position: relative; height: 10px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.report-block-score__fill { position: absolute; top: 0; left: 0; bottom: 0; border-radius: 99px; transition: width .8s cubic-bezier(.16,1,.3,1); }

.report-filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; }
.report-filter-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .45rem .9rem; border-radius: 99px; border: 1.5px solid #e2e8f0;
    background: #fff; font-size: .85rem; font-weight: 600; color: #475569;
    cursor: pointer; transition: all .2s;
}
.report-filter-chip:hover { border-color: #c7d2fe; color: #4f46e5; }
.report-filter-chip.is-active { background: #4f46e5; border-color: #4f46e5; color: #fff; }
.report-filter-chip__count { display: inline-grid; place-items: center; min-width: 1.4rem; height: 1.4rem; padding: 0 .35rem; border-radius: 99px; font-size: .72rem; font-weight: 700; background: rgba(255,255,255,.2); }
.report-filter-chip:not(.is-active) .report-filter-chip__count { background: #f1f5f9; color: #64748b; }

.violation-card { transition: box-shadow .2s; }
.violation-card__header { cursor: pointer; }
.violation-card__chevron { transition: transform .25s; flex-shrink: 0; }
.violation-card.is-expanded .violation-card__chevron { transform: rotate(180deg); }
.violation-card__body { display: none; }
.violation-card.is-expanded .violation-card__body { display: block; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Queue ===== */
.queue-waiting { border-color: #c7d2fe; background: linear-gradient(180deg, #eef2ff, #f8fafc); }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .65; } }
.queue-loader { position: relative; width: 5rem; height: 5rem; margin: 0 auto 1.5rem; }
.queue-loader__ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid transparent; border-top-color: #4f46e5; border-right-color: #818cf8; animation: spin 1.2s linear infinite; }
.queue-loader__ring--delay { animation-delay: -.6s; border-top-color: #a5b4fc; border-right-color: #c7d2fe; opacity: .6; transform: scale(.85); }
.queue-loader__icon { position: absolute; inset: 0; margin: auto; width: 1.75rem; height: 1.75rem; color: #4f46e5; animation: spinR 2.4s linear infinite; }
@keyframes spinR { to { transform: rotate(-360deg); } }

/* ===== Demo paywall ===== */
.demo-preview-issue__lock { display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; background: #4f46e5; border-radius: 50%; margin-left: .5rem; }
.demo-preview-issue__lock-icon { width: .875rem; height: .875rem; }
.demo-pages-locked { position: relative; min-height: 120px; }
.demo-pages-locked__blur { filter: blur(4px); opacity: .5; }
.demo-pages-locked__line { height: .75rem; background: #e2e8f0; border-radius: .25rem; margin-bottom: .5rem; }
.demo-pages-locked__line--mid { width: 80%; }
.demo-pages-locked__line--short { width: 60%; }
.demo-pages-locked__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgba(255,255,255,.92); border-radius: 14px; backdrop-filter: blur(4px); }

/* ===== Severity ===== */
.severity-critical { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.severity-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.severity-recommended { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.severity-info { background: #f8fafc; border-color: #e2e8f0; color: #334155; }
.severity-dot { display: inline-block; width: .6rem; height: .6rem; border-radius: 50%; margin-right: .4rem; }
.severity-dot--critical { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.severity-dot--warning { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.severity-dot--recommended { background: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.severity-dot--info { background: #64748b; box-shadow: 0 0 0 3px rgba(100,116,139,.15); }

/* ===== Footer ===== */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 3.5rem 0 1.5rem; margin-top: 3rem; }
.site-footer a { color: #94a3b8; font-weight: 500; transition: color .2s; }
.site-footer a:hover { color: #818cf8; }
.footer-brand { font-size: 1.25rem; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.footer-title { font-weight: 700; color: #fff; margin-bottom: .85rem; font-size: .95rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width:768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #1e293b; display: flex; flex-wrap: wrap; gap: 1rem; font-size: .875rem; color: #64748b; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Progress ===== */
.scan-progress { width: 100%; height: .625rem; background: #e2e8f0; border-radius: 99px; overflow: hidden; margin: 1rem 0; }
.scan-progress__bar { height: 100%; background: linear-gradient(90deg,#4f46e5,#7c3aed,#818cf8); background-size: 200% 100%; width: 0; transition: width .4s; animation: shimmer 2s linear infinite; border-radius: 99px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

table { border-collapse: collapse; width: 100%; }
th, td { padding: .6rem .75rem; vertical-align: top; color: #334155; }

/* ===== Utilities ===== */
.flex { display: flex; } .flex-col { flex-direction: column; } .flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; } .items-start { align-items: flex-start; } .items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.hidden { display: none; } .block { display: block; } .inline-block { display: inline-block; } .inline-flex { display: inline-flex; }
.grid { display: grid; } .grid-cols-1 { grid-template-columns: 1fr; }
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; }
.text-sm { font-size: .875rem; } .text-xs { font-size: .75rem; } .text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; }
.font-semibold { font-weight: 600; } .font-bold { font-weight: 700; } .font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; } .tracking-wide { letter-spacing: .025em; } .tracking-tight { letter-spacing: -.02em; }
.leading-7 { line-height: 1.75; } .leading-8 { line-height: 2; } .leading-relaxed { line-height: 1.625; } .leading-snug { line-height: 1.375; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .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-8 { margin-bottom: 2rem; } .mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; } .max-w-xl { max-width: 36rem; }
.w-full { width: 100%; } .w-2 { width: .5rem; } .w-4 { width: 1rem; } .w-8 { width: 2rem; } .min-w-0 { min-width: 0; }
.flex-1 { flex: 1 1 0%; } .min-h-12 { min-height: 3rem; } .shrink-0 { flex-shrink: 0; }
.h-2 { height: .5rem; } .h-4 { height: 1rem; } .h-8 { height: 2rem; } .h-3 { height: .75rem; }
.rounded-xl { border-radius: 12px; } .rounded-2xl { border-radius: 16px; } .rounded-3xl { border-radius: 20px; } .rounded-full { border-radius: 99px; }
.border { border-width: 1px; } .border-t { border-top-width: 1px; }
.border-slate-200 { border-color: #e2e8f0; } .border-slate-300 { border-color: #cbd5e1; } .border-slate-700 { border-color: #334155; }
.border-red-200 { border-color: #fecaca; } .border-red-300 { border-color: #fca5a5; }
.bg-white { background: #fff; } .bg-slate-50 { background: #f8fafc; } .bg-slate-100 { background: #f1f5f9; } .bg-slate-200 { background: #e2e8f0; }
.bg-blue-50 { background: #eff6ff; } .bg-blue-100 { background: #dbeafe; } .bg-blue-700 { background: #4f46e5; }
.bg-red-50 { background: #fef2f2; } .bg-red-100 { background: #fee2e2; } .bg-red-800 { background: #991b1b; }
.bg-amber-100 { background: #fef3c7; } .bg-amber-500 { background: #f59e0b; }
.bg-emerald-50 { background: #ecfdf5; } .bg-emerald-100 { background: #d1fae5; } .bg-emerald-500 { background: #22c55e; }
.bg-slate-800 { background: #1e293b; } .bg-slate-900 { background: #0f172a; } .bg-slate-950 { background: #020617; } .bg-red-500 { background: #ef4444; }
.text-white { color: #fff; } .text-slate-100 { color: #f1f5f9; } .text-slate-200 { color: #e2e8f0; } .text-slate-300 { color: #cbd5e1; }
.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-slate-950 { color: #020617; }
.text-blue-600 { color: #4f46e5; } .text-blue-700 { color: #4f46e5; } .text-blue-800 { color: #4338ca; }
.text-red-700 { color: #b91c1c; } .text-red-800 { color: #991b1b; } .text-red-950 { color: #450a0a; }
.text-emerald-600 { color: #16a34a; } .text-emerald-700 { color: #15803d; } .text-emerald-800 { color: #166534; } .text-emerald-950 { color: #14532d; }
.text-amber-700 { color: #b45309; } .text-amber-800 { color: #92400e; } .text-amber-400 { color: #fbbf24; } .text-amber-600 { color: #d97706; }
.text-cyan-400 { color: #22d3ee; } .text-fuchsia-400 { color: #e879f9; } .text-purple-400 { color: #a855f7; } .text-purple-600 { color: #9333ea; }
.p-2 { padding: .5rem; } .p-3 { padding: .75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-7 { padding: 1.75rem; } .p-8 { padding: 2rem; }
.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; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; } .py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; } .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; } .py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; } .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-5 { padding-top: 1.25rem; } .pt-6 { padding-top: 1.5rem; } .pl-5 { padding-left: 1.25rem; }
.list-disc { list-style-type: disc; } .list-decimal { list-style-type: decimal; }
.break-all { word-break: break-all; } .whitespace-pre-line { white-space: pre-line; }
.cursor-pointer { cursor: pointer; } .outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.space-y-2 > * + * { margin-top: .5rem; } .space-y-2\.5 > * + * { margin-top: .625rem; }
@media (min-width:640px) {
    .sm\:flex-row { flex-direction: row; } .sm\:grid-cols-2 { grid-template-columns: repeat(2,1fr); } .sm\:grid-cols-3 { grid-template-columns: repeat(3,1fr); }
    .sm\:p-5 { padding: 1.25rem; }
}
@media (min-width:768px) {
    .md\:flex { display: flex; } .md\:grid-cols-2 { grid-template-columns: repeat(2,1fr); } .md\:grid-cols-3 { grid-template-columns: repeat(3,1fr); }
    .md\:p-8 { padding: 2rem; } .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; } .md\:hidden { display: none; }
    .md\:items-center { align-items: center; }
}
@media (min-width:1024px) { .lg\:grid-cols-4 { grid-template-columns: repeat(4,1fr); } }

@media print {
    .site-header, .site-footer, .report-filter-bar, .no-print { display: none !important; }
    body { background: #fff; color: #000; }
    .card, .report-verdict-card { box-shadow: none !important; }
}