/* ==========================================================================
   Guardians of Choice — solicitud de charlas
   --------------------------------------------------------------------------
   Palette sampled from the real brand mark (Logo2-1-scaled.png), not from
   the WordPress theme's stock variables. The site currently ships
   itfirm's factory gradient (#7114ef violet → #1475f7 blue); the violet
   is demo furniture, not brand. The logo itself is navy → steel blue with
   a silver visor, so that is what drives this palette. #1475f7 is kept as
   the live accent because it IS their declared --secondary-color.

   Typography matches their theme.css: Fira Sans for body (54 rules),
   Saira for display (10 rules).
   ========================================================================== */

:root {
  --navy-900: #0a1f3c;
  --navy-800: #102a4c;
  --navy-700: #16305c;
  --steel-600: #204070;
  --steel-500: #2b5288;
  --steel-300: #7b93b8;

  --accent: #1475f7;
  --accent-dark: #1227b8;
  --accent-wash: #eaf2fe;

  --silver: #b0b0b0;

  --ink: #121217;
  --ink-muted: #55556d;
  --ink-subtle: #8a8aa3;

  --line: #e5e5e9;
  --line-strong: #d1d1db;
  --bg: #f4f6fa;
  --surface: #ffffff;

  --danger: #c0362c;
  --danger-wash: #fdf1f0;
  --success: #1f7a4d;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(10, 31, 60, .05), 0 12px 32px rgba(10, 31, 60, .08);
  --shadow-hover: 0 2px 4px rgba(10, 31, 60, .06), 0 16px 40px rgba(10, 31, 60, .12);

  --font-body: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Saira', 'Fira Sans', sans-serif;

  --shell: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, legend { font-family: var(--font-display); letter-spacing: -.01em; }

img { max-width: 100%; height: auto; display: block; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--navy-900);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */

.site-header {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand img { width: 52px; height: auto; }

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .01em;
}
.brand__text small {
  font-size: .74rem;
  color: var(--steel-300);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-header__link {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.site-header__link:hover { color: #fff; border-bottom-color: var(--accent); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 420px at 78% -10%, rgba(20, 117, 247, .34), transparent 62%),
    linear-gradient(158deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--steel-600) 100%);
  color: #fff;
  padding: 66px 0 104px;
  overflow: hidden;
}

/* Faint circuit-like rule to echo the tech/protection theme without noise. */
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.hero__inner { max-width: 760px; }

.hero__eyebrow {
  margin: 0 0 14px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-300);
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, .84);
  max-width: 62ch;
}

.hero__points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.hero__points li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .9);
}

/* A check, not a filled dot — a dot reads as a radio button, and this
   list sits directly above a form full of real ones. */
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 17px;
  margin-top: -8.5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 7px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Form section ---------- */

/* Above the hero: the card pulls up into it with a negative margin, and
   without a stacking context of its own the hero paints over the card's
   heading. */
.form-section {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.card {
  margin-top: -58px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 38px clamp(22px, 4vw, 44px) 34px;
}

.card__head { margin-bottom: 26px; }

.card__title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
}

.card__sub { margin: 0; color: var(--ink-muted); font-size: .93rem; }

.alert {
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .9rem;
  margin-bottom: 24px;
}
.alert--error {
  background: var(--danger-wash);
  border: 1px solid #f2d4d1;
  color: var(--danger);
}
.alert--error strong { display: block; font-weight: 600; }

/* Entrega parcial: algo salió y algo no. Ni error rojo (la decisión se
   guardó) ni info azul (hay que actuar) -- ámbar, con la barra a la
   izquierda para que se lea como "pendiente de que alguien avise". */
.alert--warn {
  background: #FEF3E2;
  border: 1px solid #F5D9A8;
  border-left: 4px solid #B45309;
  color: #7C2D12;
}
.alert--warn strong { display: block; font-weight: 600; }

.alert--info {
  background: var(--accent-wash);
  border: 1px solid #cfe1fd;
  color: var(--navy-800);
}
.alert--info strong { display: block; font-weight: 600; }

/* ---------- Fieldsets ---------- */

/* Grouping uses role="group" + aria-labelledby rather than
   fieldset/legend. A real <legend> is painted INTO the fieldset's top
   border, so a `border-top` runs through the text like a strikethrough,
   and every workaround (floating it, absolute positioning) trades that
   bug for an overlap with the blocks below. A labelled group is the same
   thing to a screen reader and lays out predictably. */
.fieldset {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 28px 0 22px;
}
.fieldset:first-of-type { border-top: 0; padding-top: 0; }
.fieldset:last-of-type { padding-bottom: 6px; }

.fieldset__legend {
  padding: 0;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 18px; }
.grid .field { margin-bottom: 0; }
/* A field following a grid gets no spacing from the grid's own gap. */
.grid + .field { margin-top: 18px; }
.field:last-child { margin-bottom: 0; }
@media (min-width: 720px) { .field--half { max-width: calc(50% - 9px); } }

.label {
  display: block;
  margin-bottom: 7px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy-800);
}

.req-mark { color: var(--accent); font-weight: 700; }

.opt-mark {
  font-weight: 400;
  font-size: .78rem;
  color: var(--ink-subtle);
  letter-spacing: .02em;
}

.input {
  width: 100%;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.input::placeholder { color: #a9a9bc; }

.input:hover { border-color: var(--steel-300); }

.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 117, 247, .16);
}

.input--area { resize: vertical; min-height: 118px; line-height: 1.55; }

.field__hint { margin: 6px 0 0; font-size: .8rem; color: var(--ink-subtle); }

.field__error {
  margin: 6px 0 0;
  font-size: .82rem;
  font-weight: 500;
  color: var(--danger);
}
.field__error--block { margin-bottom: 12px; }

.field--error .input { border-color: var(--danger); }
.field--error .input:focus { box-shadow: 0 0 0 3px rgba(192, 54, 44, .14); }

/* ---------- Choice cards (tipo de actividad) ---------- */

.choices { display: grid; gap: 12px; }
@media (min-width: 640px) { .choices { grid-template-columns: 1fr 1fr; } }

.choice { position: relative; display: block; cursor: pointer; }

/* Visually hidden but still a real, focusable radio: keeps native
   keyboard behaviour (Tab into the group, arrows between options) and
   screen-reader semantics. Kept at 1px rather than 0×0 — a zero-sized
   box is skipped by some assistive tech. */
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.choice__box {
  display: block;
  height: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 15px 16px 15px 46px;
  background: var(--surface);
  transition: border-color .15s, background .15s, box-shadow .15s;
}

/* The radio dot, drawn so it lines up with the text baseline. */
.choice__box::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}

.choice:hover .choice__box { border-color: var(--steel-300); background: #fbfcfe; }

.choice input:checked + .choice__box {
  border-color: var(--accent);
  background: var(--accent-wash);
}

.choice input:checked + .choice__box::before {
  border-color: var(--accent);
  border-width: 5.5px;
}

.choice input:focus-visible + .choice__box {
  box-shadow: 0 0 0 3px rgba(20, 117, 247, .22);
}

.choice__title {
  display: block;
  font-weight: 600;
  font-size: .94rem;
  color: var(--navy-900);
}

.choice__desc {
  display: block;
  margin-top: 2px;
  font-size: .82rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.fieldset--error .choice__box { border-color: #e8bdb8; }

/* ---------- Honeypot ---------- */

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Actions ---------- */

.form__actions {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, box-shadow .15s, transform .12s;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 117, 247, .3);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20, 117, 247, .28);
}
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 8px 22px rgba(18, 39, 184, .3); }
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--navy-800);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

.btn--link {
  background: transparent;
  color: var(--ink-muted);
  padding-inline: 6px;
  font-weight: 500;
}
.btn--link:hover { color: var(--accent-dark); }

.form__note { margin: 0; font-size: .82rem; color: var(--ink-subtle); }

/* ---------- Trust strip ---------- */

.trust {
  margin-top: 26px;
  padding: 22px 26px;
  border-left: 3px solid var(--accent);
  background: #eef1f7;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.trust__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}

.trust__body { margin: 0; font-size: .88rem; color: var(--ink-muted); line-height: 1.6; }

/* ---------- Confirmation page ---------- */

.confirm { padding: 64px 0 84px; }

.confirm__inner {
  max-width: 660px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 46px clamp(24px, 5vw, 52px) 42px;
  text-align: center;
}

.confirm__badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--steel-500), var(--accent));
  box-shadow: 0 10px 26px rgba(20, 117, 247, .3);
}

.confirm__title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--navy-900);
}

.confirm__lead {
  margin: 0 auto 34px;
  max-width: 52ch;
  color: var(--ink-muted);
  font-size: 1.02rem;
}
.confirm__lead strong { color: var(--navy-800); }

.confirm__steps { text-align: left; border-top: 1px solid var(--line); padding-top: 26px; }

.confirm__steps-title {
  margin: 0 0 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }

.steps__item { display: flex; gap: 14px; align-items: flex-start; }

.steps__num {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-wash);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
}

.steps__text { font-size: .92rem; color: var(--ink-muted); line-height: 1.55; }
.steps__text strong { display: block; color: var(--navy-900); font-weight: 600; margin-bottom: 1px; }

.confirm__tagline {
  margin: 32px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--navy-900);
  letter-spacing: .01em;
}

.confirm__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .68); padding: 32px 0; }

.site-footer__inner { text-align: center; }

.site-footer__tagline {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  letter-spacing: .02em;
}

.site-footer__meta { margin: 0; font-size: .82rem; line-height: 1.5; }

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   Internal action pages (what the team lands on from the email buttons)
   ========================================================================== */

.panel { padding: 44px 0 72px; }

.panel__inner {
  max-width: 720px;
}

.panel__head {
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 30px clamp(22px, 4vw, 38px) 26px;
  border-top: 4px solid var(--accent);
}
.panel__head--ok    { border-top-color: var(--success); }
.panel__head--warn  { border-top-color: #b26b00; }
.panel__head--muted { border-top-color: var(--ink-subtle); }

.panel__eyebrow {
  margin: 0 0 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.panel__title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
}

.panel__intro { margin: 0; color: var(--ink-muted); font-size: 1rem; }

.panel__body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px clamp(22px, 4vw, 38px) 32px;
}

.panel__section-label {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.panel__body .panel__section-label:not(:first-child) { margin-top: 30px; }

.panel__note { margin: 0 0 8px; color: var(--ink-muted); font-size: .93rem; }

.panel__foot {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  color: var(--ink-subtle);
}

.form--panel { margin-top: 26px; }

/* ---------- Request summary ---------- */

.resumen {
  margin: 0;
  border-top: 1px solid var(--line);
}

.resumen__row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.resumen__row dt {
  flex: 0 0 38%;
  max-width: 210px;
  font-size: .76rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  padding-top: 2px;
}

.resumen__row dd { margin: 0; font-size: .95rem; color: var(--ink); min-width: 0; }
.resumen__row dd a { color: var(--accent); text-decoration: none; }
.resumen__row dd a:hover { text-decoration: underline; }

.resumen__row--block { flex-direction: column; gap: 6px; }
.resumen__row--block dt { flex: none; max-width: none; }

.resumen__mensaje { white-space: pre-wrap; color: var(--ink-muted); line-height: 1.6; }

@media (max-width: 560px) {
  .resumen__row { flex-direction: column; gap: 3px; }
  .resumen__row dt { flex: none; max-width: none; }
}

/* ---------- Outcome checklist ---------- */

.done-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 9px; }

.done-list__item {
  position: relative;
  padding: 11px 14px 11px 42px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  line-height: 1.5;
}

.done-list__item::before {
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.done-list__item--ok {
  background: #eef7f1;
  color: #14603a;
}
.done-list__item--ok::before { content: "✓"; color: var(--success); }

.done-list__item--bad {
  background: var(--danger-wash);
  color: #8f2a22;
}
.done-list__item--bad::before { content: "✕"; color: var(--danger); }

.done-list__item--pending {
  background: #f7f8fb;
  color: var(--ink-muted);
}
.done-list__item--pending::before { content: "•"; color: var(--ink-subtle); }

.done-list__item a { color: inherit; font-weight: 600; }

/* ---------- Quoted decision note ---------- */

.quote {
  background: #f7f8fb;
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  font-size: .93rem;
  color: var(--ink-muted);
  line-height: 1.6;
  white-space: pre-wrap;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Warning shown on the approval page when the team picks a Mon/Fri. */
.date-warn {
  margin: 8px 0 0;
  padding: 9px 12px;
  border-left: 3px solid #b26b00;
  background: #fff8ec;
  border-radius: 0 8px 8px 0;
  font-size: .84rem;
  color: #6d4300;
}
.date-warn[hidden] { display: none; }

/* Internal note — Add-on 2. Visually separated so nobody mistakes it for
   text the applicant will read. */
.field--internal {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fbfbfd;
  padding: 14px;
}
.field--internal .label { color: var(--navy-800); }
.internal-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--navy-800);
  color: #fff;
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ---------- /embed — WordPress snippet page (Add-on 3) ---------- */

.embed-preview {
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  margin-bottom: 26px;
}

.embed-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  line-height: 1.5;
  white-space: pre;
  overflow-x: auto;
  background: #fbfbfd;
}

.steps {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.75;
}
.steps strong { color: var(--ink); }

/* ---------- Native date input ----------
   The embedded calendar is gone; this is the compact single-line field
   that replaced it. Safari and iOS style type=date very differently from
   a text input, so height and font are pinned to match the others — an
   otherwise identical row of fields where one is 4px shorter reads as
   broken before anyone can say why. */

.input[type="date"] {
  /* Inherit .input's font and padding rather than restating them: pinning
     a min-height here made the field 6px taller than the text input
     beside it, which is exactly the mismatch this block exists to avoid.
     Only the bits type=date gets wrong on its own are set. */
  font-family: inherit;
  /* `normal` is what the UA computes for the text inputs, so this keeps
     the row even. The ~2px that remain are Chrome's picker-indicator box
     in the shadow DOM; closing them needs a magic padding that then
     leaves the field short in Safari, so they stay. */
  line-height: normal;
  -webkit-appearance: none;
  appearance: none;
}

.input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .55;
  transition: opacity .15s;
}
.input[type="date"]:hover::-webkit-calendar-picker-indicator,
.input[type="date"]:focus::-webkit-calendar-picker-indicator { opacity: 1; }

.field__error[hidden], .field__hint[hidden] { display: none; }

/* ---------- Approval page: requested date + divergence notice ---------- */

.asked {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: .9rem;
  color: var(--ink-muted);
}
.asked strong { color: var(--ink); }
.asked__note { color: var(--ink-subtle); font-weight: 400; }

.date-warn--past {
  border-left-color: var(--danger);
  background: var(--danger-wash);
  color: #7d241c;
}

/* Blue, not amber: changing the date is a legitimate decision, not a
   mistake. The amber warnings above it are the ones saying "are you
   sure"; this one only explains what happens next. */
.date-diff {
  margin: 8px 0 0;
  padding: 11px 14px;
  border-left: 3px solid var(--accent);
  background: var(--accent-wash);
  border-radius: 0 8px 8px 0;
  font-size: .84rem;
  color: var(--navy-800);
  line-height: 1.55;
}
.date-diff[hidden] { display: none; }
.date-diff__alt {
  display: block;
  margin-top: 6px;
  color: var(--ink-muted);
}
