:root { color-scheme: light; font-family: Inter, Arial, sans-serif; color: #182230; background: #f3f7fb; }
* { box-sizing: border-box; }
body { margin: 0; }
.page-shell { width: min(100% - 32px, 780px); margin: 0 auto; padding: 24px 0 48px; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid #d9e3ef; }
.site-header a { color: #145ea8; text-decoration: none; }
.site-brand { font-weight: 800; font-size: 1.2rem; }
.site-nav { display: flex; align-items: center; gap: 16px; font-size: .9rem; font-weight: 700; }
.site-nav a { padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav .is-active { border-color: #145ea8; }
.card { background: #fff; border: 1px solid #d9e3ef; border-radius: 16px; padding: clamp(20px, 5vw, 38px); margin-bottom: 16px; box-shadow: 0 8px 24px rgb(21 49 81 / 6%); }
.intro { background: linear-gradient(145deg, #e6f3ff, #fff); }
h1 { margin: 0 0 12px; font-size: clamp(1.7rem, 5vw, 2.5rem); line-height: 1.12; }
h2 { margin-top: 0; }
.eyebrow { color: #145ea8; font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.field { margin: 0 0 18px; }
label { display: block; margin-bottom: 7px; font-weight: 650; }
input:not([type=checkbox]) { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #9eafc1; border-radius: 8px; font: inherit; }
input[type=checkbox] { width: 18px; height: 18px; margin-right: 8px; vertical-align: text-bottom; }
button { width: 100%; min-height: 46px; border: 0; border-radius: 8px; background: #145ea8; color: white; font: inherit; font-weight: 750; cursor: pointer; }
button:hover { background: #0d4b88; }
.error, .form-errors { margin: 6px 0 0; color: #aa2635; font-size: .93rem; }
.status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
dt { color: #63758a; font-size: .85rem; } dd { margin: 4px 0 0; overflow-wrap: anywhere; }
.status { display: inline-block; padding: 3px 8px; border-radius: 100px; background: #e5eef7; font-weight: 700; }
.status-succeeded { background: #dff4e5; color: #166534; } .status-review_required { background: #fff0c9; color: #7a4b00; }
.notice { color: #526477; }
.site-footer { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 18px; border-top: 1px solid #d9e3ef; color: #63758a; font-size: .86rem; }
.site-footer a { color: #145ea8; }
@media (max-width: 560px) {
  .page-shell { width: min(100% - 24px, 780px); padding-top: 12px; }
  .site-header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .site-nav { width: 100%; justify-content: space-between; }
  .status-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
