* { box-sizing: border-box; }
body {
margin: 0;
font-family: var(--es-font-ui);
font-size: var(--es-text-body);
line-height: var(--es-lh-body);
color: var(--es-charcoal);
background: var(--es-white);
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; color: var(--es-deep-teal); line-height: var(--es-lh-heading); }
:focus-visible { outline: none; box-shadow: var(--es-focus-ring); border-radius: 4px; }
.es-display { font-family: var(--es-font-display); font-size: var(--es-text-display); font-weight: 560; line-height: var(--es-lh-display); }
.es-h1 { font-family: var(--es-font-display); font-size: var(--es-text-h1); font-weight: 560; line-height: 1.12; }
.es-h2 { font-family: var(--es-font-display); font-size: var(--es-text-h2); font-weight: 560; line-height: 1.15; }
.es-h3 { font-size: var(--es-text-h3); font-weight: 650; }
.es-h4 { font-size: var(--es-text-h4); font-weight: 650; }
.es-body-lg { font-size: var(--es-text-body-lg); }
.es-body-sm { font-size: var(--es-text-body-sm); line-height: var(--es-lh-label); }
.es-caption { font-size: var(--es-text-caption); line-height: var(--es-lh-label); color: var(--es-slate); }
.es-eyebrow {
font-size: var(--es-text-caption); font-weight: 600; letter-spacing: 0.14em;
text-transform: uppercase; color: var(--es-heritage-teal);
}
.es-muted { color: var(--es-slate); }
.es-btn {
display: inline-flex; align-items: center; justify-content: center; gap: var(--es-sp-2);
min-height: var(--es-touch-target);
padding: 10px 22px;
border-radius: var(--es-r-button);
font-family: var(--es-font-ui); font-size: var(--es-text-body); font-weight: 600;
line-height: 1.2; cursor: pointer; text-decoration: none;
border: 1.5px solid transparent;
transition: background var(--es-motion-fast) var(--es-ease), border-color var(--es-motion-fast) var(--es-ease);
}
.es-btn-primary { background: var(--es-deep-teal); color: var(--es-white); min-height: 48px; }
.es-btn-primary:hover { background: #143b46; }
.es-btn-primary:active { background: #0a2027; }
.es-btn-secondary { background: var(--es-white); color: var(--es-deep-teal); border-color: var(--es-deep-teal); }
.es-btn-secondary:hover { background: var(--es-ivory); }
.es-btn-tertiary { background: transparent; color: var(--es-heritage-teal); border: none; padding: 10px 8px; }
.es-btn-tertiary:hover { text-decoration: underline; }
.es-btn[disabled], .es-btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; }
.es-btn.is-loading { position: relative; color: transparent; pointer-events: none; }
.es-btn.is-loading::after {
content: ""; position: absolute; width: 18px; height: 18px;
border: 2px solid rgba(255,255,255,0.35); border-top-color: var(--es-white);
border-radius: 50%; animation: es-spin 0.7s linear infinite;
}
.es-btn-secondary.is-loading::after { border-color: rgba(14,43,51,0.25); border-top-color: var(--es-deep-teal); }
@keyframes es-spin { to { transform: rotate(360deg); } }
.es-badge {
display: inline-flex; align-items: center; gap: 6px;
padding: 3px 10px; border-radius: 999px;
font-size: var(--es-text-caption); font-weight: 600; line-height: 1.6;
}
.es-badge-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.es-badge-neutral { background: var(--es-stone); color: var(--es-slate-strong); }
.es-badge-neutral .es-badge-dot { background: var(--es-slate); }
.es-badge-success { background: var(--es-success-tint); color: var(--es-success-text); }
.es-badge-success .es-badge-dot { background: var(--es-success); }
.es-badge-attention { background: var(--es-attention-tint); color: var(--es-attention-text); }
.es-badge-attention .es-badge-dot { background: var(--es-attention-ui); }
.es-badge-critical { background: var(--es-critical-tint); color: var(--es-critical-text); }
.es-badge-critical .es-badge-dot { background: var(--es-critical); }
.es-badge-info { background: var(--es-info-tint); color: var(--es-info-text); }
.es-badge-info .es-badge-dot { background: var(--es-info); }
.es-badge-required { background: var(--es-stone); color: var(--es-slate-strong); font-weight: 500; }
.es-badge-sample { background: var(--es-deep-teal); color: var(--es-white); letter-spacing: 0.08em; }
.es-banner {
display: flex; gap: var(--es-sp-3); align-items: flex-start;
padding: var(--es-sp-3) var(--es-sp-4); border-radius: var(--es-r-input);
font-size: var(--es-text-body-sm); line-height: var(--es-lh-label);
border: 1px solid transparent;
}
.es-banner strong { display: block; margin-bottom: 2px; }
.es-banner-info { background: var(--es-info-tint); color: var(--es-info-text); border-color: #C9DDE8; }
.es-banner-success { background: var(--es-success-tint); color: var(--es-success-text); border-color: #C4E4D3; }
.es-banner-attention { background: var(--es-attention-tint); color: var(--es-attention-text); border-color: #EFD9B4; }
.es-banner-critical { background: var(--es-critical-tint); color: var(--es-critical-text); border-color: #ECC7C0; }
.es-toast {
display: inline-flex; align-items: center; gap: var(--es-sp-2);
background: var(--es-deep-teal); color: var(--es-white);
padding: 10px 16px; border-radius: var(--es-r-input);
font-size: var(--es-text-body-sm); box-shadow: var(--es-shadow-modal);
}
.es-options { display: flex; flex-direction: column; gap: 2px; border: none; margin: 0; padding: 0; }
.es-option {
display: flex; align-items: center; gap: var(--es-sp-3);
min-height: var(--es-touch-target); padding: 8px 12px; margin: 0 -12px;
border-radius: var(--es-r-input); cursor: pointer;
transition: background var(--es-motion-fast) var(--es-ease);
}
@media (min-width: 1024px) {
.es-option { min-height: 36px; padding: 5px 10px; margin: 0 -10px; }
.es-option .es-control { width: 20px; height: 20px; }
.es-option .es-control::after { width: 9px; height: 9px; }
}
.es-option:hover { background: var(--es-ivory); }
.es-option input { position: absolute; opacity: 0; pointer-events: none; }
.es-option .es-control {
width: 22px; height: 22px; flex: none; border-radius: 50%;
border: 2px solid var(--es-slate); background: var(--es-white);
display: inline-flex; align-items: center; justify-content: center;
transition: border-color var(--es-motion-fast) var(--es-ease);
}
.es-option .es-control::after {
content: ""; width: 10px; height: 10px; border-radius: 50%;
background: var(--es-deep-teal); transform: scale(0);
transition: transform var(--es-motion-fast) var(--es-ease);
}
.es-option input:checked + .es-control { border-color: var(--es-deep-teal); }
.es-option input:checked + .es-control::after { transform: scale(1); }
.es-option input:checked ~ .es-option-label { font-weight: 600; color: var(--es-deep-teal); }
.es-option input:focus-visible + .es-control { box-shadow: var(--es-focus-ring); }
.es-option.is-disabled { opacity: 0.45; cursor: not-allowed; }
.es-option.is-disabled:hover { background: transparent; }
.es-checkbox .es-control { border-radius: 6px; }
.es-checkbox .es-control::after {
width: 12px; height: 7px; border-radius: 0; background: transparent;
border-left: 2.5px solid var(--es-white); border-bottom: 2.5px solid var(--es-white);
transform: scale(0) rotate(-45deg); margin-top: -3px;
}
.es-checkbox input:checked + .es-control { background: var(--es-deep-teal); border-color: var(--es-deep-teal); }
.es-checkbox input:checked + .es-control::after { transform: scale(1) rotate(-45deg); }
.es-field-label { display: block; font-weight: 600; font-size: var(--es-text-body-sm); margin-bottom: var(--es-sp-1); color: var(--es-deep-teal); }
.es-field-instruction { font-size: var(--es-text-body-sm); color: var(--es-slate); margin: 0 0 var(--es-sp-2); }
.es-input, .es-select, .es-textarea {
width: 100%; font-family: var(--es-font-ui); font-size: var(--es-text-body);
color: var(--es-charcoal); background: var(--es-white);
border: 1.5px solid #C7CFD2; border-radius: var(--es-r-input);
padding: 10px 12px; min-height: var(--es-touch-target);
transition: border-color var(--es-motion-fast) var(--es-ease);
}
.es-input:hover, .es-textarea:hover, .es-select:hover { border-color: var(--es-slate); }
.es-input:focus-visible, .es-textarea:focus-visible, .es-select:focus-visible {
border-color: var(--es-heritage-teal);
box-shadow: 0 0 0 3px rgba(23, 74, 87, 0.12);
}
.es-textarea { min-height: 150px; resize: vertical; line-height: var(--es-lh-body); }
.es-field.is-attention .es-input, .es-field.is-attention .es-textarea { border-color: var(--es-attention-ui); }
.es-field.is-error .es-input, .es-field.is-error .es-textarea { border-color: var(--es-critical); }
.es-field.is-success .es-textarea { border-color: var(--es-success); }
.es-field.is-disabled { opacity: 0.5; }
.es-field-meta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--es-sp-1) var(--es-sp-3); margin-top: var(--es-sp-1); font-size: var(--es-text-caption); }
.es-charcount { color: var(--es-slate); }
.es-validation { display: inline-flex; align-items: center; gap: 7px; font-size: var(--es-text-caption); font-weight: 600; }
.es-validation-success { color: var(--es-success-text); }
.es-validation-attention { color: var(--es-attention-text); }
.es-validation-error { color: var(--es-critical-text); }
.es-field.is-attention .es-validation,
.es-field.is-error .es-validation {
flex-basis: 100%; justify-content: flex-start;
padding: 8px 12px; border-radius: var(--es-r-input);
font-size: 13px; line-height: var(--es-lh-label); text-wrap: pretty;
}
.es-field.is-attention .es-validation { background: var(--es-attention-tint); }
.es-field.is-error .es-validation { background: var(--es-critical-tint); }
.es-field.is-attention .es-validation::before,
.es-field.is-error .es-validation::before {
content: "!"; width: 16px; height: 16px; border-radius: 50%; flex: none;
display: inline-flex; align-items: center; justify-content: center;
font-size: 11px; font-weight: 700; color: var(--es-white);
}
.es-field.is-attention .es-validation::before { background: var(--es-attention-ui); }
.es-field.is-error .es-validation::before { background: var(--es-critical); }
.es-guidance {
display: flex; gap: var(--es-sp-2); align-items: flex-start;
margin-top: var(--es-sp-2); padding: var(--es-sp-2) var(--es-sp-3);
background: var(--es-info-tint); border-radius: var(--es-r-input);
font-size: var(--es-text-body-sm); color: var(--es-info-text); line-height: var(--es-lh-label);
}
.es-guidance.is-dismissed { display: none; }
.es-time { display: flex; gap: var(--es-sp-2); align-items: center; }
.es-time .es-select { width: auto; min-width: 84px; }
.es-upload {
border: 1.5px dashed #C7CFD2; border-radius: var(--es-r-card);
padding: var(--es-sp-5); text-align: center; color: var(--es-slate);
font-size: var(--es-text-body-sm); background: var(--es-white);
}
.es-upload.is-error { border-color: var(--es-critical); background: var(--es-critical-tint); color: var(--es-critical-text); }
.es-upload-thumbs { display: flex; gap: var(--es-sp-2); flex-wrap: wrap; margin-top: var(--es-sp-3); }
.es-thumb {
width: 72px; height: 72px; border-radius: var(--es-r-input);
background: var(--es-stone); display: inline-flex; align-items: center; justify-content: center;
color: var(--es-slate-strong); font-size: var(--es-text-caption); position: relative;
}
.es-thumb.is-loading::after {
content: ""; position: absolute; width: 18px; height: 18px;
border: 2px solid rgba(14,43,51,0.2); border-top-color: var(--es-deep-teal);
border-radius: 50%; animation: es-spin 0.7s linear infinite;
}
.es-evidence { display: flex; flex-direction: column; gap: var(--es-sp-1); }
.es-evidence-item {
display: flex; align-items: center; gap: var(--es-sp-2);
font-size: var(--es-text-body-sm); min-height: 32px;
}
.es-evidence-item .tick { width: 18px; height: 18px; border-radius: 50%; flex: none;
display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.es-evidence-item.is-done .tick { background: var(--es-success); color: var(--es-white); }
.es-evidence-item.is-open .tick { border: 1.5px dashed var(--es-slate); color: transparent; }
.es-qcard {
--qpad: var(--es-sp-6);
background: var(--es-white); border: 1px solid #E5E9EB;
border-radius: var(--es-r-card); padding: var(--qpad);
box-shadow: var(--es-shadow-card);
}
@media (max-width: 700px) { .es-qcard { --qpad: var(--es-sp-4); } }
.es-qcard + .es-qcard { margin-top: var(--es-sp-4); }
.es-qcard-head { display: flex; align-items: flex-start; gap: var(--es-sp-3); margin-bottom: var(--es-sp-2); }
.es-qnum {
background: var(--es-stone); color: var(--es-deep-teal); font-weight: 650;
font-size: var(--es-text-body-sm); border-radius: 6px; padding: 3px 8px; flex: none;
}
.es-qtitle { font-size: var(--es-text-body-lg); font-weight: 650; color: var(--es-deep-teal); flex: 1; text-wrap: balance; }
.es-qcard.is-attention { border-color: var(--es-attention-ui); }
.es-qcard.is-error { border-color: var(--es-critical); }
.es-qcard:focus-within { border-color: var(--es-heritage-teal); }
.es-child-q {
margin-top: var(--es-sp-4); padding: var(--es-sp-4);
border-left: 3px solid var(--es-heritage-teal);
background: var(--es-ivory); border-radius: 0 var(--es-r-input) var(--es-r-input) 0;
}
.es-child-q[hidden] { display: none; }
.es-child-q .es-caption { margin-bottom: var(--es-sp-2); display: block; }
.es-appbar {
display: flex; align-items: center; gap: var(--es-sp-4);
padding: var(--es-sp-3) var(--es-sp-5);
background: var(--es-white); border-bottom: 1px solid #E2E6E7;
}
@media (max-width: 600px) { .es-appbar { flex-wrap: wrap; gap: var(--es-sp-2) var(--es-sp-3); } }
.es-appbar .brand img { height: 32px; display: block; }
.es-appbar .ctx { flex: 1; min-width: 0; border-left: 1px solid #E2E6E7; padding-left: var(--es-sp-4); }
.es-appbar .ctx .name { font-weight: 650; color: var(--es-deep-teal); font-size: var(--es-text-body); }
.es-appbar .ctx .sub { font-size: var(--es-text-body-sm); color: var(--es-slate); }
.es-save { display: inline-flex; align-items: center; gap: 7px; font-size: var(--es-text-body-sm); font-weight: 500; }
.es-save .dot { width: 8px; height: 8px; border-radius: 50%; }
.es-save.is-saved { color: var(--es-success-text); } .es-save.is-saved .dot { background: var(--es-success); }
.es-save.is-saving { color: var(--es-slate); } .es-save.is-saving .dot { background: var(--es-slate); animation: es-pulse 1s infinite; }
.es-save.is-retrying { color: var(--es-attention-text); } .es-save.is-retrying .dot { background: var(--es-attention-ui); }
.es-save.is-offline { color: var(--es-info-text); } .es-save.is-offline .dot { background: var(--es-info); }
@keyframes es-pulse { 50% { opacity: 0.3; } }
.es-rail { display: flex; flex-direction: column; gap: 2px; }
.es-rail-item {
display: flex; align-items: center; gap: var(--es-sp-3);
padding: 9px 12px; border-radius: var(--es-r-input);
font-size: var(--es-text-body-sm); font-weight: 500; color: var(--es-charcoal);
text-decoration: none; min-height: 40px;
}
.es-rail-item:hover { background: var(--es-ivory); }
.es-rail-item .mark {
width: 24px; height: 24px; border-radius: 50%; flex: none;
display: inline-flex; align-items: center; justify-content: center;
font-size: var(--es-text-caption); font-weight: 650;
border: 1.5px solid #C7CFD2; color: var(--es-slate);
background: var(--es-white);
}
.es-rail-item.is-complete .mark { background: var(--es-success-tint); border-color: transparent; color: var(--es-success-text); }
.es-rail-item.is-current { background: #EFF3F3; color: var(--es-deep-teal); font-weight: 650; }
.es-rail-item.is-current .mark { background: var(--es-deep-teal); border-color: var(--es-deep-teal); color: var(--es-white); }
.es-rail-item.is-attention .mark { border-color: var(--es-attention-ui); color: var(--es-attention-text); }
.es-mprogress { display: flex; align-items: center; gap: var(--es-sp-3); }
.es-mprogress .bar { flex: 1; height: 6px; border-radius: 999px; background: var(--es-stone); overflow: hidden; }
.es-mprogress .bar > span { display: block; height: 100%; background: var(--es-deep-teal); border-radius: 999px; }
.es-mprogress .count { font-size: var(--es-text-body-sm); font-weight: 600; color: var(--es-deep-teal); white-space: nowrap; }
.es-coach {
background: var(--es-white); border: 1px solid #E2E6E7;
border-radius: var(--es-r-card); overflow: hidden;
}
.es-coach-head {
display: flex; align-items: center; gap: var(--es-sp-2);
padding: var(--es-sp-3) var(--es-sp-4);
border-bottom: 1px solid #EEF1F1;
}
.es-coach-head .title { font-weight: 650; color: var(--es-deep-teal); font-size: var(--es-text-body); flex: 1; }
.es-coach-mark { width: 22px; height: 22px; border-radius: 6px; background: var(--es-gold); flex: none;
display: inline-flex; align-items: center; justify-content: center; }
.es-coach-mark::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--es-deep-teal); }
.es-coach-body { padding: var(--es-sp-4); display: flex; flex-direction: column; gap: var(--es-sp-3); }
.es-coach-status { font-size: var(--es-text-body-sm); color: var(--es-slate); }
.es-coach-allclear { display: flex; gap: var(--es-sp-2); align-items: center; color: var(--es-success-text); font-weight: 600; font-size: var(--es-text-body-sm); }
.es-trustline { font-size: var(--es-text-caption); color: var(--es-slate); border-top: 1px solid #EEF1F1; padding: var(--es-sp-2) var(--es-sp-4); }
.es-skeleton { border-radius: 6px; background: linear-gradient(90deg, var(--es-stone) 25%, #F4F6F6 50%, var(--es-stone) 75%); background-size: 200% 100%; animation: es-shimmer 1.2s infinite; height: 14px; }
@keyframes es-shimmer { to { background-position: -200% 0; } }
.es-suggestion {
border: 1px solid #E2E6E7; border-left-width: 3px; border-radius: var(--es-r-input);
padding: var(--es-sp-3); display: flex; flex-direction: column; gap: var(--es-sp-2);
font-size: var(--es-text-body-sm); line-height: var(--es-lh-label);
}
.es-suggestion .kind { font-size: var(--es-text-caption); font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.es-suggestion .why { color: var(--es-slate); }
.es-suggestion-optional { border-left-color: var(--es-attention-ui); }
.es-suggestion-optional .kind { color: var(--es-attention-text); }
.es-suggestion-required { border-left-color: var(--es-critical); }
.es-suggestion-required .kind { color: var(--es-critical-text); }
.es-suggestion .acts { display: flex; gap: var(--es-sp-2); flex-wrap: wrap; }
.es-chipbtn {
min-height: 32px; padding: 4px 12px; border-radius: 999px;
border: 1.5px solid var(--es-deep-teal); background: var(--es-white);
color: var(--es-deep-teal); font-size: var(--es-text-caption); font-weight: 600; cursor: pointer;
}
.es-chipbtn:hover { background: var(--es-ivory); }
.es-chipbtn.primary { background: var(--es-deep-teal); color: var(--es-white); }
.es-suggestion.is-accepted { border-left-color: var(--es-success); background: var(--es-success-tint); }
.es-suggestion.is-ignored { opacity: 0.55; }
.es-suggestion .resolved { font-weight: 600; }
.es-suggestion.is-accepted .resolved { color: var(--es-success-text); }
.es-rewrite { border: 1px solid #E2E6E7; border-radius: var(--es-r-input); overflow: hidden; font-size: var(--es-text-body-sm); }
.es-rewrite .part { padding: var(--es-sp-3); }
.es-rewrite .part + .part { border-top: 1px solid #EEF1F1; }
.es-rewrite .lbl { font-size: var(--es-text-caption); font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.es-rewrite .yours .lbl { color: var(--es-slate); }
.es-rewrite .stronger { background: #FBF8F2; }
.es-rewrite .stronger .lbl { color: var(--es-attention-text); }
.es-rewrite .stronger q { font-style: italic; }
.es-strength { display: flex; flex-direction: column; gap: 6px; }
.es-strength .lbl { display: flex; justify-content: space-between; font-size: var(--es-text-caption); font-weight: 600; color: var(--es-slate-strong); }
.es-strength .track { height: 8px; border-radius: 999px; background: var(--es-stone); overflow: hidden; }
.es-strength .track > span { display: block; height: 100%; border-radius: 999px; background: var(--es-heritage-teal); }
.es-qcard.has-note { border-color: #E5E9EB; }
.es-qcard.has-note.all-resolved { border-color: #E5E9EB; }
.es-qcard.has-required { border-color: #E5E9EB; }
.es-coach-band {
display: flex; gap: var(--es-sp-3); align-items: flex-start; flex-wrap: wrap;
margin: var(--es-sp-4) calc(-1 * var(--qpad)) calc(-1 * var(--qpad));
padding: 14px var(--qpad) 16px;
background: var(--es-attention-tint);
border-top: 3px solid var(--es-attention-ui);
border-radius: 0 0 calc(var(--es-r-card) - 1px) calc(var(--es-r-card) - 1px);
}
.es-coach-band.required { background: var(--es-critical-tint); border-top-color: var(--es-critical); }
.es-coach-band.resolved { background: var(--es-success-tint); border-top-color: var(--es-success); }
.es-coach-band.resolved .need { display: none; }
.es-coach-band .done { display: none; }
.es-coach-band.resolved .done {
display: flex; gap: 8px; align-items: center;
color: var(--es-success-text); font-weight: 650; font-size: var(--es-text-body-sm);
}
.es-chipbtn.attn { border-color: var(--es-attention-ui); background: var(--es-white); color: var(--es-attention-text); }
.es-coach-band .es-coach-mark { margin-top: 3px; }
.es-coach-band .body { flex: 1 1 260px; min-width: 0; }
.es-coach-band .lbl {
font-size: 11px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--es-attention-text); margin-bottom: 3px;
}
.es-coach-band.required .lbl { color: var(--es-critical-text); }
.es-coach-band .title { font-size: 15px; font-weight: 650; color: var(--es-deep-teal); line-height: 1.35; text-wrap: balance; }
.es-coach-band .why { font-size: 13px; color: var(--es-slate); margin-top: 2px; line-height: var(--es-lh-label); text-wrap: pretty; }
.es-coach-band .acts { display: flex; gap: var(--es-sp-2); align-items: center; padding-top: 18px; }
.es-coach-band .linkbtn {
background: none; border: none; padding: 0; margin-top: 6px; cursor: pointer;
font-size: 13px; font-weight: 600; color: var(--es-heritage-teal); text-decoration: underline;
}
.es-coach-band .ex { margin-top: 10px; }
.es-coach-band .ex[hidden] { display: none; }
.es-coach-band .es-beats {
list-style: none; margin: 10px 0 0; padding: 10px 12px;
background: var(--es-ivory, #FBFAF7); border-radius: var(--es-r-input, 8px);
display: flex; flex-direction: column; gap: 6px;
}
.es-coach-band .es-beats li {
display: flex; gap: 8px; align-items: flex-start;
font-size: 13px; line-height: var(--es-lh-label); text-wrap: pretty;
}
.es-coach-band .es-beats .tick { flex: none; width: 14px; text-align: center; font-weight: 700; }
.es-coach-band .es-beats .has { color: var(--es-slate); }
.es-coach-band .es-beats .has .tick { color: var(--es-success-text); }
.es-coach-band .es-beats .gap { color: var(--es-deep-teal); font-weight: 500; }
.es-coach-band .es-beats .gap .tick { color: var(--es-attention-text); }
.es-sr-only {
position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.es-degraded {
display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
padding: 12px; margin-bottom: var(--es-sp-3);
border-radius: var(--es-r-input); border: 1px solid var(--es-attention-text);
background: var(--es-attention-tint, #FDF6EA);
font-size: 13px; line-height: var(--es-lh-label); text-wrap: pretty;
}
.es-degraded strong { color: var(--es-attention-text); }
.es-review-summary {
display: flex; gap: var(--es-sp-3); align-items: flex-start;
padding: 14px 16px; border-radius: var(--es-r-card);
background: var(--es-white); border: 1px solid #E2E6E7; border-left: 3px solid var(--es-gold);
box-shadow: var(--es-shadow-card); margin-bottom: var(--es-sp-4);
font-size: var(--es-text-body-sm); line-height: var(--es-lh-label);
}
.es-review-summary .txt { flex: 1; }
.es-review-summary .txt strong { display: block; color: var(--es-deep-teal); font-size: var(--es-text-body); }
@keyframes es-card-flag {
0% { box-shadow: 0 0 0 0 rgba(216, 139, 31, 0.5); }
100% { box-shadow: 0 0 0 14px rgba(216, 139, 31, 0); }
}
.es-qcard.just-flagged { animation: es-card-flag 800ms var(--es-ease) 2; }
@keyframes es-band-in {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: none; }
}
.es-coach-band { animation: es-band-in 350ms var(--es-ease) both; }
.es-review { display: flex; flex-direction: column; gap: var(--es-sp-3); }
.es-review-row { display: flex; gap: var(--es-sp-2); align-items: flex-start; font-size: var(--es-text-body-sm); line-height: var(--es-lh-label); }
.es-review-row .ico { flex: none; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.es-review-row.good .ico { background: var(--es-success-tint); color: var(--es-success-text); }
.es-review-row.attn .ico { background: var(--es-attention-tint); color: var(--es-attention-text); }
.es-review-row.block .ico { background: var(--es-critical-tint); color: var(--es-critical-text); }
.es-actionbar {
display: flex; gap: var(--es-sp-3); justify-content: flex-end; align-items: center;
padding: var(--es-sp-3) var(--es-sp-5);
background: var(--es-white); border-top: 1px solid #E2E6E7;
}
.es-sheet {
background: var(--es-white); border-radius: var(--es-r-surface) var(--es-r-surface) 0 0;
box-shadow: var(--es-shadow-sheet); border: 1px solid #E2E6E7; border-bottom: none;
}
.es-sheet .grab { width: 40px; height: 4px; border-radius: 999px; background: #C7CFD2; margin: 8px auto 0; }
.es-sheet-head { display: flex; align-items: center; gap: var(--es-sp-2); padding: var(--es-sp-2) var(--es-sp-4) var(--es-sp-3); }
.es-sheet-head .title { font-weight: 650; color: var(--es-deep-teal); flex: 1; font-size: var(--es-text-body); }
.es-sheet-body { padding: 0 var(--es-sp-4) var(--es-sp-4); display: flex; flex-direction: column; gap: var(--es-sp-3); }
.es-sheet.is-peek .es-sheet-body { display: none; }
.es-sheet.is-hidden { display: none; }
.es-state { text-align: center; padding: var(--es-sp-7) var(--es-sp-5); border-radius: var(--es-r-card); }
.es-state .mark { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto var(--es-sp-3); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.es-state h4 { margin-bottom: var(--es-sp-2); }
.es-state p { margin: 0 auto var(--es-sp-3); max-width: 46ch; font-size: var(--es-text-body-sm); color: var(--es-slate); text-wrap: pretty; }
.es-state-empty { background: var(--es-ivory); }
.es-state-empty .mark { background: var(--es-stone); color: var(--es-slate-strong); }
.es-state-error .mark { background: var(--es-critical-tint); color: var(--es-critical-text); }
.es-state-success .mark { background: var(--es-success-tint); color: var(--es-success-text); }
.es-diff { display: grid; grid-template-columns: 1fr 1fr; gap: var(--es-sp-3); }
@media (max-width: 767px) { .es-diff { grid-template-columns: 1fr; } }
.es-diff .pane { border: 1px solid #E2E6E7; border-radius: var(--es-r-input); padding: var(--es-sp-3); font-size: var(--es-text-body-sm); line-height: var(--es-lh-label); }
.es-diff .pane .lbl { font-size: var(--es-text-caption); font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--es-slate); margin-bottom: 6px; }
.es-diff .pane.revision { background: var(--es-ivory); }
.es-tracked ins { background: var(--es-success-tint); color: var(--es-success-text); text-decoration: none; padding: 0 2px; border-radius: 3px; }
.es-tracked del { background: var(--es-critical-tint); color: var(--es-critical-text); padding: 0 2px; border-radius: 3px; }
.es-editor-actions { display: flex; gap: var(--es-sp-2); flex-wrap: wrap; }
.es-returned {
border: 1px solid var(--es-attention-ui); border-radius: var(--es-r-card);
overflow: hidden;
}
.es-returned .head { background: var(--es-attention-tint); color: var(--es-attention-text); font-weight: 650; padding: var(--es-sp-2) var(--es-sp-4); font-size: var(--es-text-body-sm); display: flex; gap: var(--es-sp-2); align-items: center; }
.es-returned .body { padding: var(--es-sp-3) var(--es-sp-4); font-size: var(--es-text-body-sm); line-height: var(--es-lh-label); }
.es-thread { display: flex; flex-direction: column; gap: var(--es-sp-3); }
.es-comment { display: flex; gap: var(--es-sp-3); font-size: var(--es-text-body-sm); }
.es-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--es-heritage-teal); color: var(--es-white); display: inline-flex; align-items: center; justify-content: center; font-size: var(--es-text-caption); font-weight: 650; flex: none; }
.es-comment .bubble { background: var(--es-ivory); border-radius: var(--es-r-input); padding: var(--es-sp-2) var(--es-sp-3); line-height: var(--es-lh-label); }
.es-comment .meta { font-size: var(--es-text-caption); color: var(--es-slate); margin-top: 3px; }
.es-audit { display: flex; flex-direction: column; gap: 0; font-size: var(--es-text-body-sm); }
.es-audit-row { display: flex; gap: var(--es-sp-3); padding: var(--es-sp-2) 0; border-bottom: 1px solid #EEF1F1; }
.es-audit-row .when { color: var(--es-slate); white-space: nowrap; font-size: var(--es-text-caption); padding-top: 2px; }