/* ============================================================
   Modals: shared overlay + Proposal / Year-End Letter / Evidence Pack
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 20, 35, .62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.overlay[hidden] { display: none; }
.modal { animation: dropin .35s cubic-bezier(.32, .72, 0, 1); }
.modal[hidden] { display: none; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* ---------- Lead capture (Service Model Builder Kit) ---------- */
.lead {
  position: relative;
  width: min(460px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.lead__close {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.lead__head {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff;
  padding: 30px 30px 26px;
}
.lead__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(176, 138, 62, .2);
  border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 99px;
  padding: 4px 12px;
}
.lead__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}
.lead__sub {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  margin: 10px 0 0;
}
.lead__body { padding: 26px 30px 28px; }
.lead__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.lead__input {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.lead__input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: var(--glow-sky);
}
.lead__error {
  font-size: 12.5px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 8px;
  padding: 8px 11px;
  margin: -6px 0 14px;
}
.lead__error[hidden] { display: none; }
.lead__submit {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.lead__submit:hover { background: var(--navy-mid); box-shadow: var(--shadow-md); }
.lead__submit:disabled { opacity: .6; cursor: default; }
.lead__fine {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 14px 0 0;
}
.lead__done { text-align: center; padding: 8px 0 4px; }
.lead__done[hidden] { display: none; }
.lead__done-icon {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--green-soft);
}
.lead__done-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 14px;
}
.lead__done-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 8px 0 0;
}
.lead__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 20px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.lead__download:hover { background: var(--gold-muted); color: #fff; }
.lead__download[hidden] { display: none; }

/* ---------- Proposal — the seven-scene journey ----------
   Ported from the proposal prototype (canyonops-ai/canyonops-v2-prototype ·
   styles.css ".pj-*"), on its "canyon" theme, which is this site's palette:
   navy #1B3A5C · deep #122844 · accent #7EC8E3 · accentSoft #EBF6FB · paper #F5F7FA.
   The prototype renders this full-bleed on a share link; here it scrolls
   inside the modal shell.                                                  */
.prop {
  position: relative;
  width: min(880px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--off-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.prop__closebar { position: sticky; top: 0; height: 0; z-index: 5; }
.prop__close {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(18, 40, 68, .55);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prop__close:hover { background: rgba(18, 40, 68, .8); }

/* Scene 1 — welcome */
.pj-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.pj-hero-in { max-width: 620px; margin: 0 auto; }
.pj-logo { width: 46px; height: 46px; margin: 0 auto 22px; }
.pj-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: 13px;
}
.pj-tier {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 16px;
  background: var(--gold);
  color: #fff;
}
.pj-hero .pj-title {
  font-family: var(--font-heading);
  font-size: clamp(27px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.pj-sub {
  font-size: 15.5px;
  line-height: 1.65;
  opacity: .86;
  margin: 0 auto;
}
.pj-scrollcue { margin-top: 28px; opacity: .55; animation: bob 2s ease-in-out infinite; }
.pj-scrollcue svg { margin: 0 auto; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Scenes 2–6 — body */
.pj-body-scene { padding: 52px 34px; background: var(--white); }
.pj-body-scene--soft { background: var(--sky-pale); }
.pj-body-scene--paper { background: var(--off-white); }
.pj-body-scene h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 15px;
}
.pj-prose { font-size: 15px; line-height: 1.75; color: var(--text-secondary); max-width: 660px; }
.pj-prose p { margin: 0 0 13px; }
.pj-prose p:last-child { margin-bottom: 0; }

.pj-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.pj-hl {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.pj-fin {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  max-width: 520px;
}
.pj-fin-tabs { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.pj-fin-tabs button {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.pj-fin-tabs button.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
.pj-fin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pj-fin-table[hidden] { display: none; }
.pj-fin-table td { padding: 7px 4px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.pj-fin-table td:last-child { text-align: right; font-weight: 700; color: var(--text); }
.pj-fin-table tr:last-child td { border-bottom: none; }

.pj-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.pj-goal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.pj-goal-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--sky);
  flex: 0 0 auto;
}
.pj-goal b { font-size: 13.5px; color: var(--text); }
.pj-goal-who { font-size: 11px; color: var(--muted); margin-top: 3px; }

.pj-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.pj-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.pj-pillar-t { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--navy); }
.pj-pillar-when {
  display: inline-block;
  margin: 7px 0 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 3px 9px;
}
.pj-pillar p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.pj-reassure {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-pale);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--navy);
}
.pj-reassure svg { flex: 0 0 auto; }

.pj-seasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.pj-season {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--season, var(--sky));
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.pj-season-tag { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text); }
.pj-season-tag .pin { width: 10px; height: 10px; border-radius: 50%; background: var(--season, var(--sky)); flex: 0 0 auto; }
.pj-season-tag b { letter-spacing: .1em; text-transform: uppercase; }
.pj-season-tag > span:last-child { margin-left: auto; color: var(--muted); }
.pj-season h3 { font-family: var(--font-heading); font-size: 16.5px; color: var(--navy); margin: 10px 0 6px; }
.pj-season p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.pj-expander {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 99px;
  padding: 8px 18px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.pj-expander:hover { border-color: var(--sky); box-shadow: var(--glow-sky); }
.pj-expander svg { transition: transform .2s cubic-bezier(.4, 0, .2, 1); }
.pj-expander[aria-expanded="true"] svg { transform: rotate(90deg); }
.pj-fulllist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.pj-fulllist[hidden] { display: none; }
.pj-fulllist > div > div { padding: 3px 0; border-bottom: 1px solid var(--border-light); }
.pj-fulllist > div > div:last-child { border-bottom: none; }

.pj-samples { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 22px; }
.pj-sample {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.pj-sample:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.pj-sample-page {
  height: 80px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 10px;
}
.pj-sample b { display: block; font-size: 12.5px; color: var(--text); }
.pj-sample span { font-size: 10px; color: var(--muted); }
.pj-samples-note { font-size: 11px; color: var(--muted); margin-top: 14px; }

/* Scene 7 — CTA */
.pj-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  text-align: center;
  padding: 60px 34px;
}
.pj-cta h2 { font-family: var(--font-heading); font-size: 27px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 13px; }
.pj-cta p { font-size: 14.5px; opacity: .84; max-width: 480px; margin: 0 auto 26px; line-height: 1.65; }
.pj-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sky);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 14.5px;
  border-radius: 99px;
  padding: 13px 28px;
  transition: transform .15s;
}
.pj-btn:hover { transform: translateY(-2px); color: var(--navy-dark); }
.pj-firm { margin-top: 30px; font-size: 11px; opacity: .55; }
.pj-disclose {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.7;
  padding: 22px 34px 30px;
  background: var(--off-white);
}

/* Shared gold CTA (year-end letter footer). */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.btn-gold:hover { background: var(--gold-muted); color: #fff; }

/* ---------- Year-End Letter (660px, paper) ---------- */
.letter {
  width: min(660px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.letter__close {
  top: 15px;
  right: 15px;
  border: 1px solid var(--paper-border);
  background: var(--white);
  color: var(--paper-ink);
}
.letter__body { padding: 36px 42px; color: var(--paper-ink); }
.letter__head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--paper-border);
  padding-bottom: 16px;
}
.letter__head img { width: 24px; height: 24px; }
.letter__firm { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--navy); }
.letter__date { margin-left: auto; font-size: 11px; color: var(--muted); }
.letter__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 18px;
}
.letter__salutation { font-size: 16px; margin: 12px 0 0; color: var(--navy); font-weight: 600; }
.letter__p { font-size: 13.5px; line-height: 1.7; margin: 12px 0 0; }
.letter__p--sp { margin-top: 16px; }
.letter__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0 0;
}
.stat-tile {
  background: var(--white);
  border: 1px solid var(--paper-border);
  border-radius: 9px;
  padding: 10px 8px;
  text-align: center;
}
.stat-tile__val { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--navy); }
.stat-tile__val--gold { color: var(--gold-muted); }
.stat-tile__label { font-size: 9px; color: var(--muted); line-height: 1.3; margin-top: 1px; }
.letter__h {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 20px 0 0;
}
.letter__items { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; }
.letter__items li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
}
.letter-cat {
  font-size: 8.5px;
  font-weight: 700;
  padding: 2.5px 7px;
  border-radius: 99px;
  margin-top: 2px;
  white-space: nowrap;
  background: color-mix(in srgb, var(--cat, var(--navy)) 13%, white);
  color: var(--cat, var(--navy));
}
.letter__ahead { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; }
.letter__ahead li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
}
.letter__arrow {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--sky-pale);
  border: 1.5px solid var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex: 0 0 auto;
}
.letter__sig-name { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--navy); margin-top: 2px; }
.letter__sig-firm { font-size: 12px; color: var(--muted); }
.letter__ps { font-size: 11.5px; color: var(--muted); font-style: italic; margin: 14px 0 0; }
.letter__footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--paper-border);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.letter__draft-note {
  font-size: 11px;
  color: var(--gold-muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Evidence Pack (840px, file browser) ---------- */
.ep-modal {
  width: min(840px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ep-modal__head {
  position: relative;
  background: var(--gold-pale);
  border-bottom: 1.5px dashed var(--gold);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.ep-modal__close {
  border: 1px solid var(--paper-border);
  background: var(--white);
  color: var(--paper-ink);
}
.ep-modal__zipicon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ep-modal__zipname { font-family: var(--font-mono); font-size: 13.5px; font-weight: 700; color: var(--navy); }
.ep-modal__meta {
  font-size: 10.5px;
  color: var(--gold-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ep-modal__sha { display: inline-flex; align-items: center; gap: 4px; color: var(--green); }
.ep-modal__grid { display: grid; grid-template-columns: 225px 1fr; gap: 0; }
.ep-rail {
  border-right: 1px solid var(--border-light);
  padding: 14px;
  background: var(--off-white);
}
.ep-rail__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px 2px;
}
.ep-rail__list { display: grid; gap: 6px; }
.ep-file {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  text-align: left;
  padding: 9px 11px;
  border-radius: 9px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
}
.ep-file.is-active {
  background: var(--sky-pale);
  border-color: var(--sky);
  box-shadow: var(--glow-sky);
}
.ep-file__icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--sky-pale);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ep-file__meta { flex: 1; min-width: 0; }
.ep-file__name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
}
.ep-file__size { display: block; font-size: 9.5px; color: var(--muted); }
.ep-pane { padding: 16px 18px; min-height: 340px; }
.ep-view { animation: dropin .25s ease; }
.ep-view[hidden] { display: none; }
.ep-cover {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.7;
  color: var(--paper-ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px 16px;
  white-space: pre-wrap;
  margin: 0;
}
.ep-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
}
.ep-table th {
  text-align: left;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 9px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  white-space: nowrap;
}
.ep-table td {
  font-size: 10.5px;
  color: var(--text);
  padding: 6.5px 9px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.ep-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  white-space: nowrap;
}
.ep-status--complete { background: var(--green-soft); color: var(--green); }
.ep-status--progress { background: var(--blue-soft); color: var(--blue); }
.ep-status--notstarted { background: var(--amber-soft); color: var(--amber); }
.ep-modal__footer {
  border-top: 1px solid var(--border-light);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ep-modal__footnote { font-size: 11px; color: var(--muted); max-width: 52ch; }
.ep-modal__dl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.ep-modal__dl:hover { background: var(--gold-muted); }

@media (max-width: 720px) {
  .overlay { padding: 16px; }
  .ep-modal__grid { grid-template-columns: 1fr; }
  .ep-rail { border-right: none; border-bottom: 1px solid var(--border-light); }
  .letter__stats { grid-template-columns: 1fr 1fr; }
  .pj-hero { padding: 48px 20px; }
  .pj-body-scene { padding: 40px 20px; }
  .pj-cta { padding: 48px 20px; }
  .pj-disclose { padding: 20px 20px 26px; }
  .pj-seasons { grid-template-columns: 1fr; }
  .lead__head { padding: 26px 22px 22px; }
  .lead__title { font-size: 21px; }
  .lead__body { padding: 22px; }
}
