/* Get Access — the July 2026 price sheet on screen.
 *
 * Wide by default: this page is a comparison, and comparison wants the
 * options beside each other rather than stacked down a narrow column. */
.pr-section { margin-bottom: var(--sp-8); }
.pr-section .ml-rule-eyebrow { margin-bottom: var(--sp-4); }

.pr-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  align-items: start;
}
.pr-grid--two { grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr)); }

.pr-card {
  position: relative; display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: var(--sp-5); height: 100%;
}
/* The sheet's own recommendation, carried over. */
.pr-card--featured { border-color: var(--crimson); border-top: 4px solid var(--crimson); }
.pr-card--wide { max-width: 48rem; }
.pr-card__flag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: var(--crimson);
  border-radius: 999px; padding: .2rem .6rem;
}
.pr-card__name { font-family: var(--font-serif); margin: 0; }
.pr-card__price { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 700; margin: 0; color: var(--ink); }
.pr-card__blurb { margin: 0; color: var(--ink-soft); }
.pr-card__list { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.pr-card__list li { margin-bottom: var(--sp-1); }
.pr-card__fine { margin: 0; font-size: var(--text-sm); color: var(--ink-soft); }
/* Buttons sit at the bottom of every card so a row of them lines up
 * regardless of how much the descriptions differ. */
.pr-card > .h2h-btn, .pr-card > form:last-of-type, .pr-card__stack { margin-top: auto; }
.pr-card__stack { display: flex; flex-direction: column; gap: var(--sp-2); }
.pr-card__stack .h2h-btn, .pr-card > form .h2h-btn { width: 100%; }
.pr-card__form { display: flex; flex-direction: column; gap: var(--sp-2); }

.pr-bands { border-collapse: collapse; width: 100%; max-width: 26rem; }
.pr-bands th, .pr-bands td { text-align: left; padding: .5rem .75rem; border-bottom: 1px solid var(--line); }
.pr-bands th { font-size: var(--text-sm); color: var(--ink-soft); font-weight: 600; }
.pr-bands td:last-child { font-weight: 700; }

/* ── The series, before the price ──────────────────────────────────────────
 * A price list is a bad first impression for something people buy on
 * conviction, so the trailer leads and the options sit a scroll below. */
.pr-hero .ps-head__inner { align-items: center; gap: var(--sp-7); }
.pr-hero__facts {
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  margin: var(--sp-4) 0 var(--sp-5); color: var(--ink-soft); font-size: var(--text-sm);
}
.pr-hero__facts strong { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--ink); display: block; }
.pr-hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.pr-hero__player { flex: 0 1 34rem; min-width: 0; }

.pr-video {
  position: relative; padding-top: 56.25%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg, var(--shadow)); background: #000;
}
.pr-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pr-video__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--sp-3); margin-bottom: var(--sp-2);
}
.pr-video__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.pr-video__time { font-size: var(--text-sm); color: var(--ink-soft); }


.pr-section__lead { margin: 0 0 var(--sp-4); color: var(--ink-soft); max-width: 54rem; }

/* ── What's inside ─────────────────────────────────────────────────────────
 * Posters and titles only: this page is public, so nothing here may carry a
 * Vimeo identifier, and the cards deliberately don't link — every
 * destination is gated. */
.pr-inside__head { font-family: var(--font-serif); margin: 0 0 var(--sp-5); }
.pr-module { margin-bottom: var(--sp-6); }
.pr-module__name {
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2); border-bottom: 1px solid var(--line);
}
/* Four across: DD's modules are four episodes each, and that's the shape
 * they're authored in. Falls back to fitting whatever the width allows. */
.pr-episodes { display: grid; gap: var(--sp-4); grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 68rem) { .pr-episodes { grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); } }
.pr-episode__thumb {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; background: var(--navy-wash); border: 1px solid var(--line);
}
.pr-episode__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-episode__num {
  position: absolute; left: var(--sp-2); top: var(--sp-2);
  font-size: var(--text-sm); font-weight: 700; color: #fff;
  background: rgba(0,0,0,.62); border-radius: 999px; min-width: 1.6rem;
  height: 1.6rem; display: grid; place-items: center; padding: 0 .4rem;
}
.pr-episode__title { margin: var(--sp-2) 0 0; font-size: var(--text-sm); font-weight: 600; line-height: 1.35; }
.pr-inside__foot { margin: var(--sp-5) 0 0; }

@media (max-width: 60rem) {
  .pr-hero .ps-head__inner { flex-direction: column; align-items: stretch; }
  .pr-hero__player { flex: 1 1 auto; }
}

/* ── The invitation, out of the way ────────────────────────────────────────
 * It had a full-width section and competed with the trailer for the same
 * attention. As a chip under the player it stays available without costing
 * anyone a scroll on the way to signing up. */
.pr-chip {
  display: flex; align-items: center; gap: var(--sp-3); width: 100%;
  margin-top: var(--sp-3); padding: var(--sp-2); text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
}
.pr-chip:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.pr-chip__thumb {
  position: relative; flex: 0 0 5.5rem; aspect-ratio: 16/9; border-radius: 4px;
  overflow: hidden; background: var(--navy-deep);
}
.pr-chip__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-chip__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: .8rem; text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.pr-chip__text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.pr-chip__label { font-weight: 600; font-size: var(--text-sm); }
.pr-chip__meta { font-size: var(--text-sm); color: var(--ink-soft); }

.pr-modal { border: 0; background: transparent; padding: 0; max-width: min(64rem, 92vw); width: 100%; }
.pr-modal::backdrop { background: rgba(8, 15, 30, .82); }
/* The close button lives in the dialog's own top padding: clear of the
 * player's controls, and never off-screen the way a negative offset can be.
 * It matters more than it looks — once someone clicks into the Vimeo iframe
 * the focus is cross-origin, so Escape goes to the player and not the
 * dialog. This button and the backdrop are the reliable ways out. */
.pr-modal__inner { position: relative; padding-top: 2.6rem; }
.pr-modal__close {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border: 0; border-radius: 50%;
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.pr-modal__close:hover { background: rgba(255,255,255,.28); }

/* ── Telling a small group not to buy the licence ──────────────────────────
 * Advisory, not an error: this is the page helping, so it reads as a note
 * rather than a warning. */
.gs-advice {
  margin: var(--sp-4) 0; padding: var(--sp-4);
  background: var(--gold-wash, var(--navy-wash)); border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.gs-advice__head { margin: 0 0 var(--sp-2); font-weight: 700; font-family: var(--font-serif); }
.gs-advice__math { margin: 0 0 var(--sp-2); }
.gs-advice__body { margin: 0; color: var(--ink-soft); font-size: var(--text-sm); }

/* The digital guide beside the printed one — same guide, two forms. */
.pr-guide {
  display: grid; gap: var(--sp-5); margin-bottom: var(--sp-5);
  grid-template-columns: 3fr 2fr; align-items: start;
}
.pr-guide p { margin: 0 0 var(--sp-2); color: var(--ink-soft); }
.pr-guide__digital {
  padding: var(--sp-5); background: var(--navy-wash);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
}
@media (max-width: 52rem) { .pr-guide { grid-template-columns: 1fr; } }

/* Persona members: a row of small buttons rather than a dozen table rows. */
.tester-members { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* Questions, at the very bottom and closed. Someone who came here to start
 * shouldn't have to scroll past them, and someone with a question shouldn't
 * have to email to get it answered. */
.pr-faq { max-width: 52rem; }
.pr-faq__item { border-bottom: 1px solid var(--line); }
.pr-faq__item summary {
  cursor: pointer; padding: var(--sp-3) 0; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; gap: var(--sp-3);
}
.pr-faq__item summary::-webkit-details-marker { display: none; }
.pr-faq__item summary::after { content: "+"; color: var(--ink-soft); font-weight: 400; }
.pr-faq__item[open] summary::after { content: "−"; }
.pr-faq__item summary:hover { color: var(--crimson); }
.pr-faq__item p { margin: 0 0 var(--sp-4); color: var(--ink-soft); max-width: 46rem; }
.pr-faq__top { margin: var(--sp-5) 0 0; font-size: var(--text-sm); color: var(--ink-soft); }
.pr-faq__sep { margin: 0 .5rem; opacity: .6; }

/* Checkout in a dialog. Wide enough for Stripe's own layout to breathe, and
 * scrollable, because the embedded form is taller than a phone. */
.co-modal { border: 0; border-radius: var(--radius-lg); padding: 0; max-width: 34rem; width: 92vw;
  max-height: 90vh; background: var(--page); box-shadow: var(--shadow-lift); }
.co-modal::backdrop { background: rgba(13, 31, 58, .55); }
.co-modal__inner { position: relative; padding: var(--sp-6) var(--sp-5) var(--sp-5); overflow-y: auto;
  max-height: 90vh; }
.co-modal__close { position: absolute; top: .4rem; right: .6rem; border: 0; background: transparent;
  font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.co-modal__close:hover { color: var(--ink); }
