/* Prairie Pickleball at HoopLife.
 *
 * Written for a phone first and for a reader in their sixties: 18px body text,
 * real contrast, no thin grey-on-grey, tap targets never under 44px, and
 * nothing that depends on hovering.
 *
 * Palette is the HoopLife red, black, white and the logo's grey. Nothing else.
 */

:root {
  --red: #bf202f;
  --red-dark: #9a1926;
  --ink: #14161a;
  --ink-soft: #3d434d;
  --grey: #6f757f;
  --line: #e2e5ea;
  --tint: #f6f7f9;
  --white: #fff;
  --wrap: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Rubik, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.2vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }

a { color: var(--red); }

.pb-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.pb-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.pb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- buttons ---------- */

.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.pb-btn-red { background: var(--red); color: #fff; }
.pb-btn-red:hover { background: var(--red-dark); }
.pb-btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.pb-btn-ghost:hover { background: var(--ink); color: #fff; }
.pb-btn-dark { background: var(--ink); color: #fff; }
.pb-btn-small { min-height: 46px; padding: 0 18px; font-size: 1rem; }
.pb-btn[disabled] { opacity: 0.6; cursor: default; }

/* An inline link that is a real destination gets a real tap box. */
.pb-textlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- top bar ---------- */

.pb-top {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.pb-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pb-logo { width: 210px; height: auto; }
.pb-top-logo { display: block; }

/* ---------- hero ---------- */

.pb-hero { padding: 44px 0 52px; }
.pb-hero-grid { display: grid; gap: 30px; }
.pb-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pb-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.pb-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 0; }
.pb-pill {
  display: inline-block;
  margin: 22px 0 0;
  padding: 10px 16px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
}
.pb-pill strong { font-size: 1.15rem; }
.pb-hero-photo img { border-radius: 8px; }

/* ---------- sections ---------- */

.pb-section { padding: 52px 0; border-top: 1px solid var(--line); }
.pb-tint { background: var(--tint); }
.pb-dark { background: var(--ink); color: #fff; border-top: none; }
.pb-dark h2, .pb-dark h3 { color: #fff; }
.pb-dark .pb-lead { color: #c9ced6; }
.pb-note { color: var(--grey); font-size: 1rem; }
.pb-foot { margin-top: 22px; color: var(--ink-soft); font-size: 1rem; max-width: 70ch; }
.pb-figure { margin: 30px 0 0; }
.pb-figure img { border-radius: 8px; }
.pb-figure-flat img { border-radius: 8px; }

/* ---------- steps ---------- */

.pb-steps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 22px; }
.pb-steps li { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.pb-stepn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}
.pb-steps p { margin: 0; color: var(--ink-soft); }

/* ---------- the split graphic ---------- */

.pb-split { display: grid; gap: 18px; margin-top: 26px; }
.pb-split-card {
  padding: 26px 20px;
  border: 1px solid #333a45;
  border-radius: 8px;
  background: #1c2027;
  text-align: center;
}
.pb-figures { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pb-fig { display: block; width: 20px; height: 26px; border-radius: 10px 10px 4px 4px; }
.pb-fig-red { background: var(--red); }
.pb-fig-grey { background: #6b727d; }
.pb-fig-rule { width: 70%; height: 2px; background: #454c57; }
.pb-fig-row { display: flex; gap: 8px; }
.pb-split-label { margin: 16px 0 2px; font-weight: 700; }
.pb-split-each { margin: 0; color: #ff8a93; font-weight: 700; font-size: 1.2rem; }

/* ---------- included ---------- */

.pb-included { display: grid; gap: 22px; margin-top: 26px; }
.pb-inc { padding-left: 16px; border-left: 4px solid var(--red); }
.pb-inc h3 { margin-bottom: 4px; }
.pb-inc p { margin: 0; color: var(--ink-soft); }

/* ---------- plans ---------- */

.pb-plans { display: grid; gap: 18px; margin-top: 26px; }
.pb-plan {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.pb-plan.is-main { border: 2px solid var(--red); }
.pb-plan-days { margin: 0; color: var(--red); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pb-plan-price { margin: 8px 0 16px; font-size: 2.6rem; font-weight: 800; line-height: 1; }
.pb-plan-tax { margin: 18px 0 0; color: var(--grey); font-size: 0.95rem; }
.pb-plan-sub { margin: 0 0 12px; padding-top: 12px; border-top: 1px solid var(--line); font-weight: 700; font-size: 0.95rem; }
.pb-plan-each { margin: 0 0 2px; color: var(--ink-soft); font-size: 1rem; }
.pb-plan .pb-btn { margin-top: 16px; }

/* ---------- the court board ---------- */

.pb-board { margin-top: 26px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.pb-board-head, .pb-board-row { display: grid; grid-template-columns: 1fr; }
.pb-board-head { display: none; }
.pb-board-row { border-top: 1px solid var(--line); padding: 14px 16px; }
.pb-board-row:first-child { border-top: none; }
.pb-board-time { font-weight: 700; }
.pb-board-day { font-weight: 700; font-size: 0.9rem; }
.pb-day-short { display: none; }
.pb-board-cell { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 0; }
.pb-board-cell::before {
  content: attr(data-day);
  color: var(--grey);
  font-size: 0.95rem;
}
.pb-slot { display: inline-flex; align-items: center; font-weight: 700; font-size: 0.95rem; }
.pb-slot.is-taken { color: var(--grey); font-weight: 500; }
.pb-slot.is-open { color: var(--red); }
.pb-slot em { font-style: normal; font-weight: 500; color: var(--grey); }
.pb-claim {
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- who ---------- */

.pb-who-grid { display: grid; gap: 30px; }
.pb-who { margin: 22px 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.pb-who li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.pb-who li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- closures ---------- */

.pb-closure { background: var(--tint); }
.pb-closure-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: start; }
/* Specificity matters here: `.pb-closure p` below would otherwise paint the
   number grey, and it did. */
.pb-closure .pb-closure-n { margin: 0; color: var(--red); font-size: 3.4rem; font-weight: 800; line-height: 0.9; flex: none; }
.pb-closure-head { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.pb-closure-head h2 { margin: 0; }
.pb-closure h2 { font-size: 1.4rem; }
.pb-closure p { color: var(--ink-soft); max-width: 62ch; }

/* ---------- forms ---------- */

.pb-apply-grid { display: grid; gap: 30px; }
.pb-form { display: grid; gap: 16px; padding: 26px 22px; border-radius: 8px; background: #fff; }
.pb-row { display: grid; gap: 16px; }
.pb-field { display: grid; gap: 6px; }
.pb-field label { color: var(--ink); font-weight: 600; font-size: 1rem; }
.pb-form input, .pb-form select, .pb-form textarea,
.pb-notify input, .pb-ask input, .pb-ask textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #b9bfc9;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  /* 16px is the floor: below it iOS zooms the page the moment a field is
     focused and never zooms back, which wrecks a half-filled form. */
  font: inherit;
  font-size: 17px;
}
.pb-form textarea, .pb-ask textarea { min-height: 96px; }
.pb-form input:focus, .pb-form select:focus, .pb-form textarea:focus { outline: 3px solid rgba(191, 32, 47, 0.35); border-color: var(--red); }
.pb-formdone {
  padding: 26px 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}
.pb-formfail { margin: 0; color: var(--red); font-weight: 600; font-size: 1rem; }

.pb-notify-block { max-width: 640px; }
.pb-notify { display: grid; gap: 12px; margin-top: 18px; }
.pb-notifydone { margin-top: 18px; font-weight: 700; }

/* ---------- faq ---------- */

.pb-faq { margin-top: 26px; border-top: 1px solid var(--line); }
.pb-faq details { border-bottom: 1px solid var(--line); }
.pb-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.pb-faq summary::-webkit-details-marker { display: none; }
.pb-faq summary::after { content: "+"; color: var(--red); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.pb-faq details[open] summary::after { content: "–"; }
.pb-faq p { margin: 0 0 18px; color: var(--ink-soft); max-width: 72ch; }

/* ---------- footer ---------- */

.pb-footer { padding: 40px 0 120px; border-top: 1px solid var(--line); background: #fff; }
.pb-footer-grid { display: grid; gap: 26px; }
.pb-logo-footer { width: 180px; margin-bottom: 14px; }
.pb-footer-name { margin: 0; font-weight: 700; }
.pb-footer p { margin: 0 0 4px; color: var(--ink-soft); font-size: 1rem; }
.pb-footer p a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; }
.pb-footer-links { display: grid; gap: 12px; align-content: start; }
.pb-footer-links a { min-height: 44px; display: flex; align-items: center; color: var(--ink); font-weight: 600; }

/* ---------- sticky bar ---------- */

.pb-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  transform: translateY(110%);
  transition: transform 0.22s ease;
}
.pb-sticky.is-on { transform: translateY(0); }
.pb-sticky-copy { font-size: 1rem; }
.pb-sticky-copy strong { color: #ff9ba3; }

/* ---------- ask bubble ---------- */

.pb-ask-tab {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 45;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.pb-ask {
  position: fixed;
  right: 12px;
  bottom: 86px;
  left: 12px;
  z-index: 46;
  max-width: 380px;
  margin-left: auto;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.pb-ask-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pb-ask-x {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--grey);
}
.pb-ask form { display: grid; gap: 10px; }
.pb-ask-done { margin: 0; font-weight: 600; }

/* ---------- wider screens ---------- */

@media (min-width: 760px) {
  .pb-row { grid-template-columns: 1fr 1fr; }
  .pb-steps { grid-template-columns: repeat(3, 1fr); }
  .pb-split { grid-template-columns: 1fr 1fr; }
  .pb-included { grid-template-columns: 1fr 1fr; gap: 26px 36px; }
  .pb-plans { grid-template-columns: repeat(3, 1fr); }
  .pb-footer-grid { grid-template-columns: 1.4fr 1fr; }
  .pb-footer-links { justify-items: end; }
}

@media (min-width: 900px) {
  body { font-size: 19px; }
  .pb-hero { padding: 64px 0 72px; }
  .pb-hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 46px; }
  .pb-section { padding: 68px 0; }
  .pb-who-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .pb-apply-grid { grid-template-columns: 0.95fr 1.05fr; align-items: start; gap: 44px; }
  .pb-sticky { padding: 14px 28px; }
  .pb-sticky-copy { font-size: 1.05rem; }

  /* The board becomes a real week grid only when there is room for one. */
  .pb-board-head { display: grid; }
  .pb-board-head,
  .pb-board-row { grid-template-columns: 150px repeat(5, 1fr); align-items: center; }
  .pb-board-head { padding: 14px 16px; background: var(--tint); }
  .pb-board-row { padding: 6px 16px; }
  .pb-board-cell { justify-content: center; padding: 10px 0; }
  .pb-board-cell::before { content: none; }
  .pb-day-long { display: inline; }
}

@media (max-width: 899px) {
  /* On a phone the board reads as a list of days under each time. */
  .pb-board-row { display: block; }
  .pb-board-time { display: block; margin-bottom: 4px; color: var(--red); }
}

/* ---------- the agreement page ---------- */

.pb-agreement { padding: 36px 0 90px; }
.pb-agr-wrap { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 20px; }
.pb-agr-head { margin-bottom: 26px; }
.pb-agr-head h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
.pb-agr-body { padding: 26px 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.pb-agr-body h2 { margin: 26px 0 8px; font-size: 1.1rem; color: var(--red); }
.pb-agr-body h2:first-child { margin-top: 0; }
.pb-agr-body h3 { margin: 0 0 4px; font-size: 1.15rem; }
.pb-agr-body p { margin: 0 0 10px; color: var(--ink-soft); font-size: 1.02rem; }
.pb-agr-gap { height: 8px; }
.pb-agr-signed {
  margin-bottom: 22px;
  padding: 20px 22px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff5f6;
}
.pb-agr-signed p { margin: 0 0 14px; }
.pb-agr-sign { margin-top: 26px; padding: 26px 22px; border-radius: 8px; background: var(--ink); color: #fff; display: grid; gap: 16px; }
.pb-agr-sign h2 { margin: 0; color: #fff; }
.pb-agr-sign .pb-field label { color: #fff; }
.pb-agr-sign .pb-note { color: #a8aeb8; margin: 0; }
.pb-agr-sign input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #5a616c;
  border-radius: 4px;
  font: inherit;
  font-size: 17px;
}
.pb-agr-check { display: flex; align-items: center; gap: 12px; min-height: 44px; cursor: pointer; }
.pb-agr-check input { width: 26px; height: 26px; accent-color: var(--red); }

/* ---------- what it costs a person to actually play ---------- */

.pb-plan-per { display: block; margin-top: 4px; color: var(--grey); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.pb-splits { margin: 14px 0 0; border-top: 1px solid var(--line); }
.pb-splitrow { padding: 12px 0; border-bottom: 1px solid var(--line); }
.pb-splitrow:last-child { border-bottom: 0; }
.pb-splitrow-label { margin: 0; color: var(--grey); font-size: 0.95rem; font-weight: 600; }
.pb-splitrow-month { margin: 2px 0 0; font-weight: 700; font-size: 1.05rem; }
.pb-splitrow-unit { margin: 2px 0 0; color: var(--red); font-weight: 700; font-size: 1rem; }
.pb-splitrow-unit span { color: var(--line); padding: 0 2px; }
.pb-split-hour { margin: 4px 0 0; color: #c9ced6; font-weight: 600; font-size: 1rem; }

/* ---------- more pictures ---------- */

.pb-figure-wide { margin-top: 34px; }
.pb-strip { display: grid; gap: 12px; margin-top: 30px; }
.pb-strip-item { margin: 0; }
.pb-strip-item img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.pb-figure-closure { margin: 0; }
.pb-figure-closure img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }

@media (min-width: 760px) {
  .pb-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .pb-closure-inner { grid-template-columns: minmax(0, 1fr) 420px; align-items: center; gap: 44px; }
  .pb-figure-closure { margin: 0; }
}


/* ======================================================================
   PHONE PASS (Andrew, 2026-09-16: "make it perfect for mobile, it's
   messed up in areas"). Checked on WebKit at 360, 390 and 430 wide.
   ====================================================================== */

/* The bottom bar: one line, three things. */
.pb-sticky { padding: 10px 14px; gap: 10px; }
.pb-sticky-copy { font-size: 0.95rem; line-height: 1.25; }
.pb-sticky-actions { display: flex; gap: 8px; flex: none; }
.pb-btn-ghost-light { background: transparent; color: #fff; border-color: #5a616c; }
.pb-btn-ghost-light:hover { border-color: #fff; }
.pb-long { display: none; }
.pb-short { display: inline; }

/* The floating Ask button lives in the bar on a phone. Two things covering
   the words all the way down the page was one too many. */
.pb-ask-tab { display: none; }

/* An open question panel on a phone sits at the bottom edge, over the bar,
   and scrolls inside itself rather than running off the top of the screen. */
.pb-ask { bottom: 12px; max-height: calc(100vh - 90px); overflow-y: auto; }

/* Safari draws a native select small and grey whatever height it is given. */
.pb-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2314161a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* The court board is a real week grid on a phone too, not twenty rows. */
.pb-time-short { display: none; }
@media (max-width: 899px) {
  .pb-board { overflow: hidden; }
  .pb-board-head { display: grid; }
  .pb-board-head,
  .pb-board-row { grid-template-columns: 62px repeat(5, minmax(0, 1fr)); align-items: center; }
  .pb-board-head { padding: 10px 8px; background: var(--tint); }
  .pb-board-row { display: grid; padding: 4px 8px; }
  .pb-board-time { display: block; margin: 0; color: var(--ink); font-size: 0.8rem; line-height: 1.2; font-weight: 700; }
  .pb-time-long { display: none; }
  .pb-time-short { display: inline; }
  .pb-board-head .pb-board-time { font-size: 0; }
  .pb-board-day { text-align: center; font-size: 0.85rem; }
  .pb-day-long { display: none; }
  .pb-day-short { display: inline; }
  .pb-board-cell { justify-content: center; padding: 2px 0; }
  .pb-board-cell::before { content: none; }
  .pb-claim { width: 100%; min-height: 48px; padding: 0 2px; text-decoration: none; }
  .pb-slot { flex-direction: column; justify-content: center; line-height: 1.1; font-size: 0.82rem; }
  .pb-slot.is-open {
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
    background: rgba(191, 32, 47, 0.08);
  }
  .pb-slot.is-taken { font-size: 0.78rem; }
  .pb-slot em { font-size: 0.7rem; margin-top: 2px; }
}
@media (min-width: 900px) {
  .pb-slot em { margin-left: 4px; }
  .pb-slot em::before { content: "("; }
  .pb-slot em::after { content: ")"; }
}

/* Three photos in a row swipe sideways on a phone rather than stacking into a
   wall of pictures to scroll past. */
@media (max-width: 759px) {
  .pb-strip {
    display: flex;
    gap: 12px;
    margin: 30px -20px 0;
    padding: 0 20px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pb-strip::-webkit-scrollbar { display: none; }
  .pb-strip-item { flex: 0 0 82%; scroll-snap-align: center; }
  .pb-figure-closure img { aspect-ratio: 16 / 10; }
  .pb-cta-row .pb-btn { flex: 1 1 100%; }
  .pb-hero { padding-top: 32px; }
  .pb-logo { width: 170px; }
}

@media (min-width: 760px) {
  .pb-sticky { padding: 12px 28px; }
  .pb-long { display: inline; }
  .pb-short { display: none; }
  .pb-ask-tab { display: inline-flex; align-items: center; }
  .pb-ask { bottom: 86px; }
}

/* ---------- agreement page on a phone ---------- */

.pb-agr-body p, .pb-agr-body h2 { overflow-wrap: anywhere; }

/* Safari draws a native checkbox small whatever size it is given, and it sat
   apart from its own words. This one is a real 28px box. */
.pb-agr-check { align-items: flex-start; gap: 14px; }
.pb-agr-check span { padding-top: 2px; }
.pb-agr-check input {
  -webkit-appearance: none;
  appearance: none;
  flex: none;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 2px solid #8b929c;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.pb-agr-check input:checked {
  border-color: var(--red);
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12'%3E%3Cpath d='M1.5 6l4.5 4.5L14.5 1.5' stroke='white' stroke-width='2.5' fill='none'/%3E%3C/svg%3E") center / 16px 12px no-repeat;
}
.pb-agr-check input:focus-visible { outline: 3px solid rgba(191, 32, 47, 0.45); outline-offset: 2px; }
.pb-agr-sign .pb-btn[disabled] { background: #5a1a21; color: #c9a3a8; }
