/* ==========================================================================
   Veteran Portal — hero, three-column intake layout, wizard, dashboard.
   Builds on the site tokens and the shared .field / .choice / .btn / .card
   rules in main.css. Desktop: progress rail | form | context rail. Under
   64em the rails stack below the form; the progress rail becomes a
   horizontal stepper.
   ========================================================================== */

/* Inside the portal, hidden means hidden: .btn and friends set display and
   would otherwise beat the browser's [hidden] rule. */
.vp [hidden] { display: none !important; }

/* Headings inside the portal follow the mockups (title case), not the
   site-wide uppercase rule. */
.vp h2, .vp h3, .vp .vp-progress__title, .vp .vp-help h2, .vp .vp-side h3, .vp .vp-section__title,
.vp .vp-step-head__title, .vp .vp-card__title, .vp .vp-review__head h3, .vp .vp-done__next h3 { text-transform: none; letter-spacing: 0; }

/* ---- Hero --------------------------------------------------------------- */
.vp-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.vp-hero__media { position: absolute; inset: 0; }
.vp-hero__media picture, .vp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: right 35%; }
.vp-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 29, 51, 0.97) 0%, rgba(11, 29, 51, 0.9) 45%, rgba(11, 29, 51, 0.55) 75%, rgba(11, 29, 51, 0.7) 100%);
}
.vp-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(16rem, 1fr);
  gap: 2rem;
  align-items: end;
  padding-block: 2.6rem 2.2rem;
}
.vp-hero__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
}
.vp-hero__sub {
  margin: 0.35rem 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.vp-hero__rule { width: 4.5rem; height: 4px; background: var(--red); margin: 1rem 0 1.1rem; }
.vp-hero__lead { margin: 0; max-width: 40rem; font-size: 1.05rem; color: var(--silver); }
.vp-hero__quote {
  margin: 0;
  justify-self: end;
  max-width: 17rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  text-align: right;
}
.vp-hero__quote p { margin: 0 0 0.5rem; }
.vp-hero__quote footer { font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--silver); }
.vp-hero__quote footer::before { content: ""; display: block; width: 3rem; height: 3px; background: var(--red); margin: 0 0 0.5rem auto; }
@media (max-width: 63.999em) {
  .vp-hero__inner { grid-template-columns: 1fr; gap: 1.2rem; padding-block: 2rem 1.6rem; }
  .vp-hero__quote { justify-self: start; text-align: left; max-width: 28rem; font-size: 0.95rem; }
  .vp-hero__quote footer::before { margin-left: 0; }
  .vp-hero__media img { object-position: right 20%; }
}

/* ---- Three-column body -------------------------------------------------- */
.vp-layout {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr) 14.5rem;
  gap: 1.6rem;
  align-items: start;
  padding-block: 1.8rem 3rem;
}
.vp-rail { display: grid; gap: 1.1rem; position: sticky; top: calc(var(--portal-sticky-h, 4.6rem) + 0.5rem); }
.vp-rail--right[hidden] { display: none; }
.vp-main { min-width: 0; }
@media (max-width: 79.999em) {
  .vp-layout { grid-template-columns: 12.5rem minmax(0, 1fr); }
  .vp-rail--right { grid-column: 1 / -1; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); position: static; }
}
@media (max-width: 63.999em) {
  .vp-layout { grid-template-columns: 1fr; gap: 1.2rem; padding-block: 1.2rem 2.5rem; }
  .vp-rail { position: static; }
  .vp-rail--left { display: contents; }
  .vp-rail--left .vp-help, .vp-rail--left .vp-flag { order: 3; }
  .vp-progress { order: 1; }
  .vp-main { order: 2; }
  .vp-rail--right { order: 4; }
}

/* ---- Progress rail ------------------------------------------------------- */
.vp-progress { padding: 1.1rem 1rem 0.6rem; }
.vp-progress__title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--silver);
}
.vp-progress__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.vp-progress__item a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.65rem;
  border-radius: var(--radius);
  color: var(--steel-text);
  text-decoration: none;
  border-bottom: 1px solid var(--cloud);
}
.vp-progress__item:last-child a { border-bottom: 0; }
.vp-progress__num {
  flex: 0 0 auto;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--silver); color: var(--steel-text);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
}
.vp-progress__text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.vp-progress__text strong { font-family: var(--font-heading); font-size: 0.86rem; font-weight: 600; color: inherit; }
.vp-progress__text small { font-size: 0.74rem; color: var(--steel-text); }
.vp-progress__state { margin-left: auto; display: inline-flex; color: var(--green); }
.vp-progress__state .icon { width: 1.05rem; height: 1.05rem; }
.vp-progress__item.is-active a { background: var(--navy); color: var(--white); box-shadow: var(--shadow-card); }
.vp-progress__item.is-active .vp-progress__num { background: var(--white); color: var(--navy); }
.vp-progress__item.is-active .vp-progress__text small { color: var(--gold); }
.vp-progress__item.is-complete .vp-progress__num { background: var(--navy); color: var(--white); }
.vp-progress__item.is-complete a { color: var(--navy); }
.vp-progress__item.is-locked a { pointer-events: none; opacity: 0.75; }
.vp-progress__item a:hover { background: var(--cloud); }
.vp-progress__item.is-active a:hover { background: var(--navy); }
.vp-progress__item a:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }
@media (max-width: 63.999em) {
  .vp-progress { padding: 0.6rem; }
  .vp-progress__title { display: none; }
  .vp-progress__list { grid-template-columns: repeat(4, 1fr); gap: 0.3rem; }
  .vp-progress__item a { flex-direction: column; text-align: center; gap: 0.3rem; padding: 0.5rem 0.2rem; border-bottom: 0; }
  .vp-progress__text small { display: none; }
  .vp-progress__text strong { font-size: 0.7rem; line-height: 1.15; }
  .vp-progress__state { margin: 0; }
  .vp-progress__state:empty { display: none; }
}

/* ---- Help + flag cards --------------------------------------------------- */
.vp-help { padding: 1.1rem 1rem; }
.vp-help h2 { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 1rem; color: var(--navy); }
.vp-help h2 .icon { width: 1.4rem; height: 1.4rem; color: var(--navy); }
.vp-help p { margin: 0 0 0.75rem; font-size: 0.84rem; color: var(--steel-text); }
.vp-help__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.86rem; }
.vp-help__list li { display: flex; align-items: center; gap: 0.5rem; }
.vp-help__list .icon { width: 1.1rem; height: 1.1rem; color: var(--red); flex: 0 0 auto; }
.vp-help__list a { color: var(--navy); font-weight: 700; text-decoration: none; }
.vp-help__list a:hover { text-decoration: underline; }
.vp-flag { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); min-height: 16rem; box-shadow: var(--shadow-card); }
.vp-flag picture, .vp-flag img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.vp-flag__text { position: relative; padding: 1.6rem 1.2rem; color: var(--white); font-family: var(--font-heading); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.95rem; line-height: 1.5; text-align: center; }
.vp-flag__text p { margin: 0; }
.vp-flag__rule { width: 3rem; height: 3px; background: var(--red); margin: 1rem auto; }
@media (max-width: 63.999em) {
  .vp-flag { display: none; }
}

/* ---- Right rail cards ---------------------------------------------------- */
.vp-side { padding: 1rem 1rem 1.05rem; background: var(--cloud); box-shadow: none; border: 1px solid var(--silver); }
.vp-side h3 { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 0.92rem; color: var(--navy); }
.vp-side h3 .icon { width: 1.35rem; height: 1.35rem; color: var(--navy); flex: 0 0 auto; }
.vp-side p { margin: 0 0 0.5rem; font-size: 0.83rem; color: var(--steel-text); }
.vp-side p:last-child { margin-bottom: 0; }
.vp-side a { color: var(--navy); font-weight: 700; }
.vp-side__checks, .vp-side__list, .vp-side__steps { margin: 0; padding: 0; font-size: 0.83rem; color: var(--text); display: grid; gap: 0.4rem; }
.vp-side__checks { list-style: none; }
.vp-side__checks li { display: flex; gap: 0.45rem; align-items: flex-start; }
.vp-side__checks .icon { width: 1rem; height: 1rem; color: var(--red); flex: 0 0 auto; margin-top: 0.1rem; }
.vp-side__list { padding-left: 1.1rem; }
.vp-side__steps { padding-left: 1.2rem; }
.vp-side--alert { border-color: var(--red); background: #fdf3f4; }
.vp-side--alert h3 .icon { color: var(--red); }
.vp-side__quote { margin: 0; padding: 1.1rem 1rem; background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius-lg); text-align: center; font-style: italic; color: var(--navy); }
.vp-side__quote .icon { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.vp-side__quote p { margin: 0.35rem 0 0.4rem; font-size: 0.9rem; color: var(--navy); }
.vp-side__quote footer { font-style: normal; font-size: 0.8rem; color: var(--steel-text); }

/* ---- Main column generic ------------------------------------------------- */
.vp-loading { padding: 3rem 1rem; text-align: center; color: var(--steel-text); }
.vp-loading--error { color: var(--red-dark); font-weight: 700; }
.vp-card { padding: 1.5rem 1.6rem; }
.vp-card__title { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; color: var(--navy); margin: 0 0 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.vp-card__title .icon { width: 1.4rem; height: 1.4rem; color: var(--red); }
.vp-card__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.vp-card__head .vp-card__title { margin: 0; }
.vp-narrow { max-width: 32rem; }
.vp-muted { color: var(--steel-text); font-style: italic; }
.btn--link { background: none; border-color: transparent; color: var(--navy); text-decoration: underline; padding-inline: 0.4rem; text-transform: none; letter-spacing: 0; font-size: 0.9rem; }
.btn--link:hover { color: var(--red); }
.icon--flip { transform: scaleX(-1); }
.form-status.is-ok { color: var(--green); font-weight: 700; }
.form-status.is-error { color: var(--red-dark); font-weight: 700; }

/* ---- Landing ------------------------------------------------------------- */
.vp-landing { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.4rem; align-items: start; }
.vp-landing__create p { color: var(--steel-text); }
.vp-checklist { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.55rem; }
.vp-checklist li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.95rem; }
.vp-checklist .icon { width: 1.2rem; height: 1.2rem; color: var(--green); flex: 0 0 auto; margin-top: 0.15rem; }
.vp-landing .fine-print { margin: 0.9rem 0 0; }
@media (max-width: 59.999em) { .vp-landing { grid-template-columns: 1fr; } }

/* password field with show/hide */
.vp-pw { position: relative; }
.vp-pw input { padding-right: 2.8rem; }
.vp-pw__toggle { position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--steel); padding: 0.35rem; cursor: pointer; border-radius: var(--radius); display: inline-flex; }
.vp-pw__toggle .icon { width: 1.2rem; height: 1.2rem; }
.vp-pw__toggle .icon + .icon { display: none; }
.vp-pw__toggle[aria-pressed="true"] .icon { display: none; }
.vp-pw__toggle[aria-pressed="true"] .icon + .icon { display: block; }
.vp-pw__toggle:focus-visible { outline: var(--focus-ring); }

/* ---- Wizard step head ---------------------------------------------------- */
.vp-step-head { margin-bottom: 1.1rem; }
.vp-step-head__count { margin: 0 0 0.15rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--red); letter-spacing: 0.02em; }
.vp-step-head__title { margin: 0 0 0.4rem; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); line-height: 1.15; }
.vp-step-head__title:focus { outline: none; }
.vp-step-head__intro { margin: 0; color: var(--steel-text); max-width: 46rem; font-size: 0.98rem; }

/* ---- Sections ------------------------------------------------------------ */
.vp-section { background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius-lg); margin-bottom: 1.1rem; overflow: hidden; }
.vp-section[hidden] { display: none; }
.vp-section__title {
  display: flex; align-items: center; gap: 0.65rem;
  margin: 0; padding: 0.7rem 1.1rem;
  background: var(--cloud);
  border-bottom: 1px solid var(--silver);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--navy);
}
.vp-section__title .icon { width: 1.5rem; height: 1.5rem; color: var(--navy); flex: 0 0 auto; }
.vp-section__title small { font-weight: 500; color: var(--steel-text); font-size: 0.85em; }
.vp-section__note { margin: 0; padding: 0.7rem 1.1rem 0; font-size: 0.88rem; color: var(--steel-text); }
.vp-grid { padding: 1rem 1.1rem 1.15rem; gap: 0.95rem 1.1rem; }
.vp-grid .field__label { font-size: 0.83rem; }
.vp-grid .field input[type="text"], .vp-grid .field input[type="email"], .vp-grid .field input[type="tel"],
.vp-grid .field input[type="date"], .vp-grid .field input[type="month"], .vp-grid .field input[type="password"],
.vp-grid .field select, .vp-grid .field textarea { padding: 0.58rem 0.75rem; font-size: 0.95rem; }
.vp-grid .field input[type="month"] { font: inherit; font-size: 0.95rem; color: var(--text); background: var(--white); border: 1px solid #b9c2c9; border-radius: var(--radius); width: 100%; }
.vp-grid .field input[readonly] { background: var(--cloud); color: var(--steel-text); }
.vp-grid .field textarea { min-height: 5.5rem; }
.vp-grid .field[hidden] { display: none; }
.vp-group { gap: 0.9rem; }
.vp-group .field { grid-column: auto; }
.vp-counter { margin: -0.1rem 0 0; text-align: right; font-size: 0.75rem; color: var(--steel-text); }

/* choice groups */
.vp-choices { display: flex; flex-wrap: wrap; gap: 0.45rem 1.2rem; }
.vp-choices--stacked { flex-direction: column; gap: 0.45rem; }
.vp-choices--inline { gap: 0.4rem 1.4rem; }
.vp-choices--cols2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.45rem 1rem; }
.vp-choices .choice { margin: 0; align-items: flex-start; font-size: 0.92rem; }
.vp-choices .choice input { margin-top: 0.2rem; }
.vp-choices .choice span { display: inline-flex; flex-direction: column; }
.choice__hint { font-size: 0.76rem; color: var(--steel-text); font-weight: 400; }
@media (max-width: 39.999em) { .vp-choices--cols2 { grid-template-columns: 1fr; } }

/* single acknowledgment checkbox */
.vp-check { margin: 0; align-items: flex-start; font-size: 0.92rem; }
.vp-check input { margin-top: 0.2rem; flex: 0 0 auto; }
.vp-check a { color: var(--navy); font-weight: 700; }

/* notes */
.vp-note { display: flex; gap: 0.55rem; align-items: flex-start; margin: 0; padding: 0.65rem 0.8rem; background: var(--cloud); border-radius: var(--radius); font-size: 0.85rem; color: var(--steel-text); }
.vp-note .icon { width: 1.15rem; height: 1.15rem; color: var(--green); flex: 0 0 auto; margin-top: 0.05rem; }
.vp-note--alert { background: #fdf3f4; color: var(--charcoal); border-left: 4px solid var(--red); }
.vp-note--alert .icon { color: var(--red); }

/* step-3 recap of step 2 */
.vp-summary { margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 0.6rem 1.2rem; }
.vp-summary dt { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-text); }
.vp-summary dd { margin: 0.1rem 0 0; font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.vp-summary__edit { margin: 0.8rem 0 0; font-size: 0.86rem; }
.vp-summary__edit a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--navy); font-weight: 700; }
.vp-summary__edit .icon { width: 1rem; height: 1rem; }

/* benefit-status matrix */
.vp-matrix__table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.vp-matrix__table th, .vp-matrix__table td { text-align: left; padding: 0.4rem 0.4rem; border-bottom: 1px solid var(--cloud); vertical-align: middle; }
.vp-matrix__table thead th { font-family: var(--font-heading); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-text); background: var(--cloud); }
.vp-matrix__table tbody th { font-weight: 500; color: var(--text); width: 60%; }
.vp-matrix__table select { max-width: 18rem; }
.vp-matrix__table select { width: 100%; font: inherit; font-size: 0.85rem; padding: 0.35rem 1.8rem 0.35rem 0.5rem; border: 1px solid #b9c2c9; border-radius: var(--radius); background: var(--white); }

/* file dropzone */
.vp-drop {
  display: grid; justify-items: center; gap: 0.5rem;
  padding: 1.2rem 1rem;
  border: 2px dashed #b9c2c9; border-radius: var(--radius-lg);
  background: var(--cloud); text-align: center;
}
.vp-drop.is-over { border-color: var(--navy); background: #eef3f8; }
.vp-drop--emphasis { border-color: var(--red); }
.vp-drop__label { display: grid; justify-items: center; gap: 0.2rem; cursor: pointer; font-size: 0.8rem; color: var(--steel-text); }
.vp-drop__label strong { font-family: var(--font-heading); font-size: 0.95rem; color: var(--navy); }
.vp-drop__icon { width: 2rem; height: 2rem; color: var(--navy); }
.vp-drop .fine-print { margin: 0; font-size: 0.76rem; }
.vp-drop--compact { grid-template-columns: auto 1fr; justify-items: start; align-items: center; text-align: left; padding: 0.8rem 1rem; margin-top: 0.8rem; }
.vp-drop--compact .fine-print { font-size: 0.8rem; }
@media (max-width: 39.999em) { .vp-drop--compact { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.vp-docs { margin-top: 0.7rem; }
.vp-docs__empty { margin: 0; }
.vp-docs__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.vp-docs__list li { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; padding: 0.55rem 0.7rem; background: var(--white); border: 1px solid var(--silver); border-radius: var(--radius); font-size: 0.88rem; }
.vp-docs__list .icon { width: 1rem; height: 1rem; color: var(--navy); flex: 0 0 auto; }
.vp-docs__name { font-weight: 700; color: var(--navy); word-break: break-all; }
.vp-docs__meta { color: var(--steel-text); font-size: 0.78rem; margin-right: auto; }
.vp-docs__list .btn { white-space: nowrap; }

/* error summary */
.vp-error-summary { margin: 0 0 1rem; padding: 0.9rem 1.1rem; border: 2px solid var(--red); border-radius: var(--radius-lg); background: #fdf3f4; color: var(--charcoal); }
.vp-error-summary:focus { outline: var(--focus-ring); outline-offset: 2px; }
.vp-error-summary p { margin: 0 0 0.4rem; }
.vp-error-summary ul { margin: 0; padding-left: 1.2rem; font-size: 0.9rem; display: grid; gap: 0.25rem; }
.vp-error-summary a { color: var(--red-dark); font-weight: 700; }

/* actions row */
.vp-actions { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.vp-actions--tight { margin-top: 1rem; }
.vp-actions__spacer { flex: 1 1 auto; }
.vp-actions .btn--lg { padding: 0.9rem 1.4rem; font-size: 0.92rem; }
.vp-actions .vp-actions__cancel, .vp-actions .btn--link { padding-inline: 0.3rem; }
.vp-actions__note { margin: 0.6rem 0 0; text-align: right; font-size: 0.8rem; }
@media (max-width: 39.999em) {
  .vp-actions { flex-direction: column; align-items: stretch; }
  .vp-actions .btn { width: 100%; }
  .vp-actions__spacer { display: none; }
  .vp-actions__note { text-align: center; }
}

/* ---- Review step --------------------------------------------------------- */
.vp-review { padding: 0; margin-bottom: 1rem; overflow: hidden; }
.vp-review__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1.1rem; background: var(--cloud); border-bottom: 1px solid var(--silver); }
.vp-review__head h3 { display: flex; align-items: center; gap: 0.55rem; margin: 0; font-family: var(--font-heading); font-size: 1rem; color: var(--navy); }
.vp-review__head .icon { width: 1.35rem; height: 1.35rem; color: var(--navy); }
.vp-review__edit { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.vp-review__edit .icon { width: 0.95rem; height: 0.95rem; }
.vp-review__dl { margin: 0; padding: 0.9rem 1.1rem 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 0.55rem 1.5rem; }
.vp-review__dl > div { display: grid; grid-template-columns: minmax(8rem, 40%) 1fr; gap: 0.3rem 0.8rem; align-items: baseline; font-size: 0.88rem; }
.vp-review__dl dt { font-weight: 600; color: var(--steel-text); }
.vp-review__dl dd { margin: 0; color: var(--navy); font-weight: 600; overflow-wrap: anywhere; }
.vp-review .vp-muted { display: block; padding: 0.9rem 1.1rem; margin: 0; font-size: 0.9rem; }
.vp-review--ack .vp-grid { padding-top: 0.9rem; }
@media (max-width: 39.999em) { .vp-review__dl > div { grid-template-columns: 1fr; gap: 0.1rem; } }

/* ---- Confirmation -------------------------------------------------------- */
.vp-done { text-align: center; padding: 2.2rem 1.6rem; }
.vp-done__icon { display: inline-flex; width: 4rem; height: 4rem; border-radius: 50%; background: #e6f0e8; color: var(--green); align-items: center; justify-content: center; margin-bottom: 0.8rem; }
.vp-done__icon .icon { width: 2.4rem; height: 2.4rem; }
.vp-done .vp-card__title { justify-content: center; }
.vp-done__ref { font-size: 1.05rem; color: var(--navy); }
.vp-done__ref strong { font-family: var(--font-heading); letter-spacing: 0.06em; }
.vp-done__next { text-align: left; margin: 1.4rem auto 0; max-width: 32rem; background: var(--cloud); border-radius: var(--radius-lg); padding: 1rem 1.2rem; }
.vp-done__next h3 { margin: 0 0 0.5rem; font-family: var(--font-heading); font-size: 0.95rem; color: var(--navy); }
.vp-done__next ol { margin: 0; padding-left: 1.2rem; font-size: 0.92rem; display: grid; gap: 0.3rem; }
.vp-done .vp-actions { justify-content: center; }

/* ---- Dashboard ----------------------------------------------------------- */
.vp-home { display: grid; gap: 1.1rem; }
.vp-pill { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 999px; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--silver); color: var(--navy); }
.vp-pill--draft { background: var(--sandstone); color: var(--charcoal); }
.vp-pill--submitted { background: var(--sky); color: var(--navy); }
.vp-pill--in_review { background: var(--gold); color: var(--navy); }
.vp-pill--contacted { background: #d7e6d5; color: var(--green); }
.vp-pill--closed { background: var(--silver); color: var(--steel-text); }
