:root {
  --ink: #10202b;
  --muted: #64727b;
  --line: #d9e1e5;
  --panel: #ffffff;
  --bg: #f3f6f7;
  --brand: #176987;
  --brand-dark: #11546d;
  --soft: #eaf3f6;
  --ok: #246b45;
  --bad: #9f2e2e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.shell { width: min(980px, calc(100% - 32px)); margin: 46px auto 70px; }
.hero { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; margin-bottom: 22px; }
.eyebrow { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .13em; color: var(--brand); }
h1 { margin: 0; font-size: clamp(32px, 5vw, 54px); line-height: .98; letter-spacing: -.035em; }
.lede { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.privacy { flex: 0 0 auto; background: var(--soft); color: var(--brand-dark); border-radius: 14px; padding: 12px 14px; font-size: 12px; line-height: 1.45; font-weight: 700; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: 0 8px 26px rgba(16,32,43,.05); margin-bottom: 18px; }
.controls { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
label { font-weight: 800; font-size: 15px; }
input[type="file"], input[type="date"], input[type="text"] {
  width: 100%; border: 1px solid #bfcbd1; border-radius: 10px; background: white; min-height: 46px; padding: 10px 12px; color: var(--ink); font: inherit;
}
input:focus { outline: 3px solid rgba(23,105,135,.15); border-color: var(--brand); }
.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.row { display: flex; align-items: center; flex-wrap: wrap; }
.small-gap { gap: 10px; }
.muted, .hint { color: var(--muted); font-size: 13px; }
.hint { margin: 0; }
button { border: 0; border-radius: 10px; min-height: 44px; padding: 0 16px; font: inherit; font-weight: 800; cursor: pointer; }
.primary { background: var(--brand); color: white; }
.primary:hover { background: var(--brand-dark); }
.secondary { background: var(--soft); color: var(--brand-dark); }
.ghost { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.status { min-height: 22px; font-size: 14px; font-weight: 700; }
.status.ok { color: var(--ok); }
.status.bad { color: var(--bad); }
.section-title { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
h2 { margin: 0; font-size: 19px; }
.pill { background: var(--soft); color: var(--brand-dark); font-size: 12px; font-weight: 800; border-radius: 999px; padding: 6px 9px; }
.schedule { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.schedule.empty { display: block; background: #fafcfc; color: var(--muted); padding: 20px; border-style: dashed; }
.schedule-item { background: white; padding: 12px 14px; display: flex; justify-content: space-between; gap: 12px; }
.schedule-item strong { font-size: 14px; }
.schedule-item span { color: var(--brand-dark); font-weight: 800; white-space: nowrap; }
.how { padding: 8px 2px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.how h2 { color: var(--ink); }
@media (max-width: 700px) {
  .hero { display: block; }
  .privacy { display: inline-block; margin-top: 16px; }
  .date-row, .schedule { grid-template-columns: 1fr; }
}
