:root {
  --ink: #17342f;
  --muted: #61736f;
  --line: #d9e4e1;
  --accent: #0d8b74;
  --accent-dark: #076b59;
  --soft: #eef8f5;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7faf9;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 280px; }
main { width: min(100%, 560px); margin: 0 auto; padding: 24px 18px 40px; }
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.mark { display: block; width: 46px; height: 46px; object-fit: contain; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 22px; }
h2 { font-size: 18px; margin-bottom: 14px; }
.eyebrow { margin-bottom: 2px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: 0 12px 30px rgba(23, 52, 47, .05); margin-bottom: 18px; }
.step { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 18px; }
.step > span { flex: 0 0 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); color: var(--accent-dark); font-weight: 800; }
.step strong, .step small { display: block; }
.step small { color: var(--muted); margin-top: 3px; line-height: 1.35; }
label { display: block; margin: 14px 0 6px; font-size: 13px; font-weight: 700; }
select { width: 100%; min-height: 44px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); background: white; color: var(--ink); font: inherit; }
.consent { display: flex; gap: 10px; align-items: flex-start; padding: 13px; margin: 16px 0; border-radius: 12px; background: var(--soft); font-weight: 500; line-height: 1.4; }
.consent input { margin-top: 3px; }
button { font: inherit; font-weight: 750; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .45; }
.primary, .secondary { width: 100%; min-height: 46px; border-radius: 11px; }
.primary { border: 0; background: var(--accent); color: white; }
.primary:hover:not(:disabled) { background: var(--accent-dark); }
.secondary { border: 1px solid var(--line); background: white; color: var(--ink); }
.privacy, .disclaimer, .muted { color: var(--muted); font-size: 12px; line-height: 1.45; }
.privacy { margin: 12px 0 0; text-align: center; }
.notice { padding: 12px 14px; margin-bottom: 16px; border-radius: 10px; background: #fff4dc; color: #694b0c; font-size: 13px; }
.status-row, .section-heading, .report-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.progress-track { height: 10px; margin: 14px 0 10px; overflow: hidden; border-radius: 999px; background: #dce9e5; }
#progress-bar { width: 0; height: 100%; background: var(--accent); transition: width .35s ease; }
#speech-label { color: var(--muted); font-size: 13px; }
.reports { margin-top: 26px; }
.text-button { border: 0; background: transparent; color: var(--accent-dark); padding: 6px; }
.report-list { display: grid; gap: 10px; }
.report-item { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.report-item p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.delete-report { border: 0; background: transparent; color: #a33d3d; font-size: 12px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 12px 0; }
.metric { padding: 12px; border-radius: 12px; background: var(--soft); }
.metric span, .metric strong { display: block; overflow-wrap: anywhere; }
.metric span { color: var(--muted); font-size: 11px; text-transform: capitalize; }
.metric strong { margin-top: 4px; font-size: 15px; }
.disclaimer { border-top: 1px solid var(--line); padding-top: 13px; margin: 16px 0 0; }
[hidden] { display: none !important; }
