* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--sans); }
.shell { max-width: 920px; margin: 0 auto; padding: 1.25rem 1.5rem 5.5rem; }
.top { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.brand { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; letter-spacing: 0.04em; }
.subtitle, .hero p, .note { color: var(--muted); }
.subtitle { margin-top: 0.15rem; font-size: 0.85rem; }
.ghost { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.hero { max-width: 42rem; padding: 2rem 0 1.25rem; }
.eyebrow { margin: 0 0 0.4rem; color: var(--accent) !important; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; }
.hero p:last-child { margin: 0.7rem 0 0; line-height: 1.5; }
.report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
.report-card { display: flex; min-height: 12rem; flex-direction: column; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); color: var(--text); text-decoration: none; }
.report-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.report-card h2 { margin: 0; font-family: var(--font-display); font-size: 1.3rem; }
.report-card p { margin: 0.55rem 0; color: var(--muted); line-height: 1.45; }
.report-card span { margin-top: auto; color: var(--accent); font-weight: 700; font-size: 0.9rem; }
.note { max-width: 42rem; margin: 1.4rem 0 0; font-size: 0.9rem; line-height: 1.45; }
@media (max-width: 720px) { .shell { padding: 1rem 1rem 5.75rem; } .report-grid { grid-template-columns: 1fr; } }