/* Shared styles for feature pillar pages. Loaded after home.css. */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.pillar-hero {
  position: relative;
  padding: clamp(36px, 5vw, 64px) 0 clamp(32px, 4.5vw, 52px);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  overflow: hidden;
}

.pillar-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: var(--ink-4);
}

.pillar-crumb a {
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: text-decoration-color 0.15s ease;
}

.pillar-crumb a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink-4);
}

.pillar-crumb b {
  font-weight: 500;
  color: var(--ink-2);
}

.pillar-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.pillar-hero__copy .section-context {
  margin-bottom: 14px;
}

.pillar-hero h1 {
  margin: 0 0 16px;
  max-width: 22ch;
  font-size: clamp(30px, 3.6vw, 46px);
}

.pillar-hero .lede {
  max-width: 52ch;
  font-size: 16.5px;
}

/* Copy-led pages use the full hero width without filling it with decorative UI. */

.editorial-hero__inner,
.pillar-hero--coach .editorial-hero__inner,
.pillar-hero--retail .editorial-hero__inner,
.pillar-hero--campaigns .editorial-hero__inner,
.pillar-hero--reporting .editorial-hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: end;
}

.editorial-hero__heading,
.pillar-hero--coach .editorial-hero__heading,
.pillar-hero--retail .editorial-hero__heading,
.pillar-hero--campaigns .editorial-hero__heading,
.pillar-hero--reporting .editorial-hero__heading {
  max-width: none;
}

.editorial-hero__heading h1 {
  max-width: 21ch;
  margin-bottom: 0;
}

.editorial-hero__support {
  padding-bottom: 2px;
}

.editorial-hero__support .lede {
  max-width: 48ch;
}

/* ---------- Local page navigation ---------- */

.page-jump {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}

.page-jump__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-jump__inner::-webkit-scrollbar {
  display: none;
}

.page-jump__label {
  flex: 0 0 auto;
  margin-right: 10px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.page-jump a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
}

.page-jump a:hover,
.page-jump a:focus-visible {
  color: var(--ink);
}

.page-jump a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  background: transparent;
}

.page-jump a:hover::after,
.page-jump a:focus-visible::after {
  background: var(--rink-blue);
}

/* Product proof sits after local navigation so the page hierarchy stays clear. */

.pillar-product-proof {
  padding: clamp(32px, 4vw, 52px) 0 clamp(44px, 5vw, 68px);
  background: var(--bg);
}

.pillar-product-proof__inner {
  display: flex;
  justify-content: center;
}

.pillar-product-proof .campaign-product-shot,
.pillar-product-proof .reporting-product-shot {
  width: min(100%, 1120px);
}

/* ---------- Bands: copy + mock, alternating ---------- */

.pillar-band {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0;
  scroll-margin-top: 72px;
}

.pillar-workflows.section {
  padding-block: 0;
}

main > .section[id] {
  scroll-margin-top: 72px;
}

.pillar-band + .pillar-band {
  border-top: 1px solid var(--line-soft);
}

.pillar-band--flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
}

.pillar-band--flip .pillar-band__copy {
  order: 2;
}

.pillar-band__copy h2 {
  margin: 0 0 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(27px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.pillar-band__copy h2 span {
  font-style: normal;
  color: inherit;
}

.pillar-band__copy > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

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

.pillar-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--rink-blue);
  border-bottom: 2px solid var(--rink-blue);
  transform: rotate(-45deg) scale(0.9);
}

/* ---------- Mock panel shell ---------- */

.mock {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  overflow: hidden;
}

.mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}

.mock__bar-title {
  display: grid;
  gap: 2px;
}

.mock__bar-title span {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-4);
}

.mock__bar-title strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mock__bar-meta {
  font-family: inherit;
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
}

.mock__body {
  padding: 18px;
}

.mock__tabs {
  display: flex;
  gap: 2px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.mock__tab {
  padding: 10px 12px 9px;
  font-size: 12.5px;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
}

.mock__tab.is-active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--ink);
}

.mock__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.mock__search {
  flex: 1 1 150px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-size: 12px;
  color: var(--ink-4);
}

.mock__select {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
}

.mock__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.mock__stat {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.mock__stat span {
  display: block;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-4);
  margin-bottom: 4px;
}

.mock__stat strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.mock-table th {
  padding: 7px 8px;
  text-align: left;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-4);
  border-bottom: 1px solid var(--line);
}

.mock-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  vertical-align: middle;
}

.mock-table tr:last-child td {
  border-bottom: 0;
}

.mock-table td b {
  font-weight: 600;
  color: var(--ink);
}

.mock-table td small {
  display: block;
  font-size: 11.5px;
  color: var(--ink-4);
}

.mock-table th:last-child,
.mock-table td:last-child {
  text-align: right;
}

.mock-table .avatar {
  width: 26px;
  height: 26px;
  font-size: 10px;
}

.mock-table__person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mock__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
  font-size: 12.5px;
  color: var(--ink-3);
}

.mock__foot b {
  font-weight: 600;
  color: var(--ink-2);
}

/* ---------- Waivers: signing status panel ---------- */

.waiver-flow {
  display: grid;
  gap: 10px;
}

.waiver-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.waiver-step--person {
  grid-template-columns: 30px 32px minmax(0, 1fr) auto;
}

.waiver-step--done {
  border-color: rgba(20, 181, 106, 0.35);
  background: rgba(44, 239, 141, 0.05);
}

.waiver-step--blocked {
  border-style: dashed;
}

.waiver-step__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 11px;
  color: var(--ink-3);
}

.waiver-step--done .waiver-step__mark {
  border-color: var(--c-signal-deep);
  background: var(--c-signal-deep);
  color: #fff;
}

.waiver-step__copy strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.waiver-step__copy span {
  font-size: 12px;
  color: var(--ink-3);
}

.waiver-step__tag {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-3);
  white-space: nowrap;
}

.waiver-doc {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.waiver-doc__meta strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.waiver-doc__meta span {
  font-size: 12px;
  color: var(--ink-3);
}

.waiver-doc__chip {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-2);
  white-space: nowrap;
}

/* ---------- Waivers: actual signing and stored document ---------- */

.pillar-band--waiver-wide {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.pillar-band--waiver-wide .pillar-band__copy {
  max-width: 760px;
}

.waiver-signing-preview,
.waiver-record-preview {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.waiver-signing-preview__bar,
.waiver-record-preview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.waiver-signing-preview__bar > div,
.waiver-record-preview__toolbar > div:first-child {
  display: grid;
  gap: 2px;
}

.waiver-signing-preview__bar span,
.waiver-record-preview__toolbar span {
  color: var(--ink-4);
  font-size: 11.5px;
}

.waiver-signing-preview__bar strong,
.waiver-record-preview__toolbar strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.waiver-signing-preview__bar small {
  color: var(--ink-3);
  font-size: 12px;
}

.waiver-signing-preview__count {
  flex: 0 0 auto;
  font-weight: 600;
}

.waiver-signing-preview__body {
  padding: clamp(12px, 2vw, 20px);
  background: #eef2f5;
}

.waiver-signing-preview__card {
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d8dee7;
  border-radius: 10px;
  background: var(--bg);
}

.waiver-signing-preview__document,
.waiver-signing-preview__signer {
  min-width: 0;
  background: var(--bg);
}

.waiver-signing-preview__document {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.waiver-signing-preview__document-head,
.waiver-signing-preview__signer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.waiver-signing-preview__document-head > div {
  display: grid;
  gap: 3px;
}

.waiver-signing-preview__document-head strong,
.waiver-signing-preview__signer-head strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.waiver-signing-preview__document-head span,
.waiver-signing-preview__signer-head span {
  color: var(--ink-3);
  font-size: 11.5px;
}

.waiver-signing-preview__terms {
  padding: 17px 18px;
  color: var(--ink-2);
}

.waiver-signing-preview__terms p {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.55;
}

.waiver-signing-preview__terms h3 {
  margin: 15px 0 5px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 650;
}

.waiver-signing-preview__participant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}

.waiver-signing-preview__participant span {
  grid-column: 1 / -1;
  color: var(--ink-4);
  font-size: 11px;
}

.waiver-signing-preview__participant strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.waiver-signing-preview__participant small {
  align-self: center;
  color: var(--ink-3);
  font-size: 11.5px;
}

.waiver-signing-preview__signer {
  padding-bottom: 16px;
}

.waiver-signing-preview__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 0;
}

.waiver-signing-preview__fields label {
  min-width: 0;
}

.waiver-signing-preview__fields span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-3);
  font-size: 11px;
}

.waiver-signing-preview__fields b {
  display: block;
  min-height: 38px;
  overflow: hidden;
  padding: 10px 11px;
  border: 1px solid #d8dee7;
  border-radius: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waiver-signing-preview__signature {
  margin: 14px 16px 0;
}

.waiver-signing-preview__signature > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.waiver-signing-preview__tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.waiver-signing-preview__tabs span {
  padding: 7px 1px;
  color: var(--ink-3);
  font-size: 11.5px;
}

.waiver-signing-preview__tabs .is-active {
  margin-bottom: -1px;
  border-bottom: 2px solid var(--rink-blue);
  color: var(--ink);
  font-weight: 600;
}

.waiver-signing-preview__pad {
  display: grid;
  min-height: 98px;
  place-items: center;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 7px;
  background: #fff;
}

.waiver-signing-preview__pad img {
  display: block;
  width: min(88%, 420px);
  height: auto;
  mix-blend-mode: multiply;
}

.waiver-signing-preview__signature-help {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  color: var(--ink-4);
  font-size: 10.5px;
}

.waiver-signing-preview__signature-help b {
  color: var(--rink-blue);
  font-weight: 600;
}

.waiver-signing-preview__consent {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 16px;
  color: var(--ink-2);
}

.waiver-signing-preview__consent span {
  display: grid;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 4px;
  background: var(--rink-blue);
  color: #fff;
  font-size: 12px;
}

.waiver-signing-preview__consent b {
  font-size: 11.5px;
  font-weight: 500;
}

.waiver-signing-preview__action {
  display: grid;
  min-height: 38px;
  margin: 0 16px;
  place-items: center;
  border-radius: 7px;
  background: var(--rink-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
}

.waiver-record-preview__print {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #d5dbe4;
  border-radius: 7px;
  background: var(--bg);
  color: var(--ink-2) !important;
  font-weight: 600;
}

.waiver-record-preview__print svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waiver-record-preview__summary {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.waiver-record-preview__summary dl {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
}

.waiver-record-preview__summary dl > div {
  min-width: 0;
  padding: 13px 12px;
  border-right: 1px solid var(--line-soft);
}

.waiver-record-preview__summary dl > div:last-child {
  border-right: 0;
}

.waiver-record-preview__summary dt,
.waiver-record-preview__summary dd {
  margin: 0;
  line-height: 1.4;
}

.waiver-record-preview__summary dt {
  margin-bottom: 4px;
  color: var(--ink-4);
  font-size: 10px;
}

.waiver-record-preview__summary dd {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.waiver-record-preview__viewer {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  background: #dfe4ea;
}

.waiver-pdf-page {
  display: flex;
  width: min(100%, 600px);
  min-width: 0;
  aspect-ratio: 8.5 / 11;
  flex-direction: column;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  color: #132b3c;
  box-shadow: 0 8px 24px rgba(14, 18, 32, 0.16);
}

.waiver-pdf-page__venue {
  display: grid;
  gap: 3px;
}

.waiver-pdf-page__venue strong {
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 650;
}

.waiver-pdf-page__venue span,
.waiver-pdf-page__title span {
  color: #526176;
  font-size: clamp(7px, 0.75vw, 10px);
}

.waiver-pdf-page__rule {
  height: 1px;
  margin: clamp(13px, 2vw, 20px) 0;
  background: #d7dde4;
}

.waiver-pdf-page__title h3 {
  margin: 0 0 2px;
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 650;
}

.waiver-pdf-page__details {
  display: grid;
  gap: 3px;
  margin: clamp(11px, 1.6vw, 18px) 0 0;
}

.waiver-pdf-page__details > div {
  display: grid;
  grid-template-columns: clamp(62px, 8vw, 82px) minmax(0, 1fr);
  gap: 8px;
}

.waiver-pdf-page__details dt,
.waiver-pdf-page__details dd {
  margin: 0;
  font-size: clamp(7px, 0.78vw, 10px);
  line-height: 1.25;
}

.waiver-pdf-page__details dt {
  color: #42566a;
  font-weight: 650;
}

.waiver-pdf-page__terms h4 {
  margin: 0 0 8px;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 650;
}

.waiver-pdf-page__terms p,
.waiver-pdf-page__terms li {
  margin: 0;
  font-size: clamp(6.5px, 0.72vw, 9px);
  line-height: 1.4;
}

.waiver-pdf-page__terms ol {
  display: grid;
  gap: clamp(5px, 0.7vw, 8px);
  margin: clamp(8px, 1vw, 12px) 0;
  padding-left: 17px;
}

.waiver-pdf-page__terms b {
  font-weight: 650;
}

.waiver-pdf-page__signature {
  display: grid;
  grid-template-columns: clamp(42px, 7vw, 62px) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: auto;
  color: #42566a;
  font-size: clamp(6.5px, 0.72vw, 9px);
}

.waiver-pdf-page__signature > div {
  display: grid;
}

.waiver-pdf-page__signature img {
  width: min(100%, 270px);
  height: auto;
  justify-self: center;
}

.waiver-pdf-page__signature i {
  height: 1px;
  background: #d7dde4;
}

.waiver-pdf-page__signature small {
  font: inherit;
}

/* ---------- Leagues: actual product captures ---------- */

.league-product-shot {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.league-product-shot__viewport {
  overflow: hidden;
  background: var(--bg-soft);
}

.league-product-shot picture {
  display: block;
}

.league-product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Shared standings and game strip ---------- */

.standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.standings th {
  padding: 8px 10px;
  text-align: left;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-4);
  border-bottom: 1px solid var(--line);
}

.standings th:not(:first-child),
.standings td:not(:first-child) {
  text-align: right;
}

.standings td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
}

.standings tr:last-child td {
  border-bottom: 0;
}

.standings td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.standings tr.is-leader td {
  background: rgba(44, 239, 141, 0.06);
}

.standings .standings__pts {
  font-weight: 700;
  color: var(--ink);
}

.gamebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.gamebar__team {
  display: grid;
  gap: 2px;
}

.gamebar__team:last-child {
  text-align: right;
}

.gamebar__team strong {
  font-size: 14px;
  font-weight: 600;
}

.gamebar__team span {
  font-size: 11.5px;
  color: var(--ink-3);
}

.gamebar__score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

.gamebar__score em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0;
  color: var(--rink-blue);
}

/* ---------- Camps: photography, registration, and group board ---------- */

.camp-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.camp-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-photo--hero {
  aspect-ratio: 5 / 4;
  max-height: 500px;
}

.camp-photo--hero img {
  object-position: center 48%;
}

.camp-photo--day {
  aspect-ratio: 3 / 2;
}

.camp-photo--day img {
  object-position: center 44%;
}

.camp-registration-path {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.camp-registration-path li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.camp-registration-path__number {
  padding-top: 3px;
  color: var(--rink-blue);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.camp-registration-path h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.camp-registration-path p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.camp-plan {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.camp-plan__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.camp-plan__header div {
  display: grid;
  gap: 3px;
}

.camp-plan__header div span,
.camp-plan__header > span {
  color: var(--ink-4);
  font-size: 12px;
}

.camp-plan__header strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.camp-plan__header > span {
  flex: 0 0 auto;
}

.camp-plan__body {
  padding: 18px;
}

.camp-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.camp-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--bg);
}

.camp-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.camp-group__head strong {
  font-size: 13px;
  font-weight: 600;
}

.camp-group__head span {
  font-family: inherit;
  font-size: 10.5px;
  color: var(--ink-4);
  white-space: nowrap;
}

.camp-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.camp-group li {
  font-size: 12px;
  color: var(--ink-2);
  padding: 6px 0;
  border-top: 1px solid var(--line-soft);
}

.camp-curriculum {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.camp-curriculum > strong {
  font-size: 13px;
  font-weight: 600;
}

.camp-curriculum ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
}

.camp-curriculum li::marker {
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}

.camp-day {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}

.camp-day:last-child {
  border-bottom: 0;
}

.camp-day b {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  padding-top: 2px;
}

.camp-day strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
}

.camp-day span {
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------- Coaches: human context with a restrained product glimpse ---------- */

.pillar-hero--coach {
  scroll-margin-top: 72px;
}

.pillar-hero--coach .pillar-hero__copy {
  max-width: 860px;
}

.pillar-hero--coach h1 {
  max-width: 19ch;
}

.coach-benefit {
  align-items: center;
}

.coach-benefit__audience {
  display: block;
  margin-bottom: 10px;
  color: var(--rink-blue);
  font-size: 14px;
  font-weight: 600;
}

.coach-day-crop {
  width: min(100%, 520px);
  margin: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #f5faf7;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.coach-day-crop__preview {
  padding: clamp(18px, 2.2vw, 28px);
  color: #102030;
  font-family: Inter, sans-serif;
}

.coach-day-crop__preview h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.coach-day-crop__cards {
  display: grid;
  gap: 12px;
}

.coach-day-crop__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 0.8fr) minmax(0, 1.8fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 116px;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid #cad4df;
  border-radius: 16px;
  background: #fff;
}

.coach-day-crop__card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #0786d1;
}

.coach-day-crop__time {
  display: grid;
  gap: 2px;
}

.coach-day-crop__time strong {
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.15;
}

.coach-day-crop__time span,
.coach-day-crop__lesson > span,
.coach-day-crop__lesson small {
  color: #617086;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.25;
}

.coach-day-crop__lesson {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.coach-day-crop__lesson > strong {
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.15;
}

.coach-day-crop__student {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.coach-day-crop__student img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.coach-day-crop__student b {
  color: #102030;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.15;
}

.coach-day-crop__chevron {
  width: 10px;
  height: 18px;
  justify-self: end;
  fill: none;
  stroke: #8090a4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.coach-booking-preview {
  width: min(100%, 320px);
  margin: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid #d0d7e0;
  border-radius: 22px;
  background: #f5faf7;
}

.coach-booking-preview__screen {
  color: #102030;
  font-family: Inter, sans-serif;
}

.coach-booking-preview__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #d0d7e0;
  background: #fff;
  font-size: 12px;
}

.coach-booking-preview__nav > strong {
  font-size: 13px;
  font-weight: 700;
}

.coach-booking-preview__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0066b3;
}

.coach-booking-preview__back svg {
  width: 7px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.coach-booking-preview__body {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #eef3f9;
}

.coach-booking-preview__body h3 {
  margin: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.coach-booking-preview__calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.coach-booking-preview__calendar-head > strong {
  font-size: 16px;
  font-weight: 700;
}

.coach-booking-preview__calendar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.coach-booking-preview__today,
.coach-booking-preview__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #d0d7e0;
  border-radius: 7px;
  background: #fff;
  color: #24445f;
}

.coach-booking-preview__today {
  padding: 0 9px;
  font-size: 11px;
  font-weight: 600;
}

.coach-booking-preview__arrow {
  width: 34px;
}

.coach-booking-preview__arrow svg {
  width: 7px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.coach-booking-preview__week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-height: 54px;
}

.coach-booking-preview__week > span {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 3px;
  color: #102030;
}

.coach-booking-preview__week small {
  color: #526176;
  font-size: 9px;
  font-weight: 600;
}

.coach-booking-preview__week b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 14px;
}

.coach-booking-preview__week .is-selected b {
  background: #526176;
  color: #fff;
}

.coach-booking-preview__week i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0066b3;
}

.coach-booking-preview__day-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d0d7e0;
  border-radius: 10px;
  background: #fff;
}

.coach-booking-preview__day-card > strong {
  font-size: 13px;
  font-weight: 700;
}

.coach-booking-preview__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.coach-booking-preview__slots > span {
  display: grid;
  min-height: 47px;
  align-content: center;
  justify-items: center;
  padding: 5px;
  border: 1px solid #d0d7e0;
  border-radius: 8px;
  background: #f5faf7;
}

.coach-booking-preview__slots b {
  font-size: 12px;
  font-weight: 700;
}

.coach-booking-preview__slots small {
  margin-top: 2px;
  color: #526176;
  font-size: 9px;
}

.coach-booking-preview__continue {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #d0d7e0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.coach-rink-photo {
  width: min(100%, 680px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #d6d6d6;
}

.coach-rink-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- Retail: product-grounded storefront and POS ---------- */

.pillar-hero--retail h1 {
  max-width: 25ch;
}

.retail-shop-preview,
.retail-pos-preview,
.retail-service-preview {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f3f6f8;
}

.retail-shop-preview__tabs b,
.retail-pos-keys__filters b {
  font-weight: 600;
}

.retail-shop-preview__tabs {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.retail-shop-preview__tabs > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink-2);
  font-size: 11.5px;
  font-weight: 600;
}

.retail-shop-preview__tabs > span.is-active {
  border-color: #142a38;
  background: #142a38;
  color: #fff;
}

.retail-shop-preview__tabs b,
.retail-pos-keys__filters b {
  color: inherit;
  opacity: 0.72;
}

.retail-shop-preview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  color: var(--ink-3);
  font-size: 11.5px;
}

.retail-shop-preview__toolbar b {
  color: var(--ink);
  font-weight: 600;
}

.retail-shop-preview__search {
  flex: 0 0 150px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink-4);
}

.retail-shop-preview__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 16px 16px;
}

.retail-product-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.retail-product-card__media {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  background: #fff;
}

.retail-product-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.retail-product-card__image--contain {
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.retail-product-card__image--cover {
  object-fit: cover;
  object-position: 50% center;
}

.retail-product-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.retail-product-card__title {
  display: grid;
  gap: 5px;
}

.retail-product-card__title strong {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

.retail-product-card__title b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.retail-product-card__title small {
  margin-left: 2px;
  color: var(--ink-3);
  font-size: 9.5px;
  font-weight: 500;
}

.retail-product-card__body p {
  margin: 0;
  color: var(--ink-3);
  font-size: 10.5px;
  line-height: 1.45;
}

.retail-product-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 600;
}

.retail-product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.retail-product-card__action.is-primary {
  border-color: #137d9d;
  background: #137d9d;
  color: #fff;
}

.pillar-band--retail-pos {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.pillar-band--retail-pos .pillar-band__copy {
  max-width: 760px;
}

.retail-pos-preview {
  border-color: #bcc4ce;
  background: #d9dde3;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
}

.retail-pos-preview__topbar {
  display: grid;
  grid-template-columns: auto auto minmax(140px, 1fr) auto minmax(180px, 260px) auto;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 9px 14px;
  background: #202b37;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
}

.retail-pos-preview__venue {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.retail-pos-preview__venue > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.retail-pos-preview__venue div {
  display: grid;
  gap: 1px;
}

.retail-pos-preview__venue strong {
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}

.retail-pos-preview__venue small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9.5px;
}

.retail-pos-preview__mode {
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}

.retail-pos-preview__lookup {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: #fff;
  color: var(--ink-4);
}

.retail-pos-preview__line-count {
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.retail-pos-preview__edit {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.retail-pos-preview__body {
  display: grid;
  grid-template-columns: minmax(410px, 0.88fr) minmax(500px, 1.12fr);
}

.retail-pos-sale {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid #b9c1cb;
  background: #fff;
}

.retail-pos-sale__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
}

.retail-pos-sale__head > div {
  display: grid;
  gap: 1px;
}

.retail-pos-sale__head strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.retail-pos-sale__head span {
  color: var(--ink-3);
  font-size: 10.5px;
}

.retail-pos-sale__head > span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.retail-pos-sale__labels,
.retail-pos-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px 64px 68px;
  gap: 8px;
  align-items: center;
}

.retail-pos-sale__labels {
  padding: 7px 12px;
  border-bottom: 1px solid var(--line);
  background: #eef2f6;
  color: var(--ink-4);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.retail-pos-sale__labels span:not(:first-child),
.retail-pos-line > span,
.retail-pos-line > b {
  text-align: right;
}

.retail-pos-line {
  min-height: 56px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.retail-pos-line > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.retail-pos-line strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.retail-pos-line span {
  color: var(--ink-3);
  font-size: 9.5px;
}

.retail-pos-line > b {
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
}

.retail-pos-sale__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.retail-pos-sale__actions span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 600;
}

.retail-pos-sale__summary {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 11px 12px 8px;
  border-top: 1px solid var(--line);
  background: #f6f8fa;
}

.retail-pos-sale__summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.retail-pos-sale__summary > div:not(.retail-pos-sale__total) > span,
.retail-pos-sale__summary > div:not(.retail-pos-sale__total) > b {
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 500;
}

.retail-pos-sale__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.retail-pos-sale__total span {
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
}

.retail-pos-sale__total strong {
  color: #1f6fae;
  font-size: 20px;
  font-weight: 650;
}

.retail-pos-sale__tenders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(84px, 1.4fr);
  gap: 5px;
  padding: 0 12px 12px;
  background: #f6f8fa;
}

.retail-pos-sale__tenders span,
.retail-pos-sale__tenders b {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
}

.retail-pos-sale__tenders span.is-selected,
.retail-pos-sale__tenders b {
  border-color: #245f91;
  background: #245f91;
  color: #fff;
}

.retail-pos-keys {
  min-width: 0;
  padding: 12px;
}

.retail-pos-keys__filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.retail-pos-keys__filters span {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 4px;
  border: 1px solid #9da7b3;
  border-radius: 4px;
  background: #fff;
  color: var(--ink-2);
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
}

.retail-pos-keys__filters span.is-active {
  border-color: #2f5f93;
  background: #3e78af;
  color: #fff;
}

.retail-pos-keys__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.retail-pos-key {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  padding: 11px;
  border: 1px solid;
  border-radius: 4px;
  color: var(--ink);
}

.retail-pos-key.is-rental {
  border-color: #caa567;
  background: #f2e1c8;
}

.retail-pos-key.is-service {
  border-color: #8eacc7;
  background: #cedfeb;
}

.retail-pos-key.is-product {
  border-color: #83b7c0;
  background: #cbe5e8;
}

.retail-pos-key strong {
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
}

.retail-pos-key > span {
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 9.5px;
  font-weight: 600;
}

.retail-pos-key > b {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.retail-pos-key small {
  color: var(--ink-3);
  font-size: 9.5px;
  font-weight: 500;
}

.retail-pos-key--with-image {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 9px;
}

.retail-pos-key__image {
  display: block;
  width: 48px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
}

.retail-pos-key__image--contain {
  padding: 3px;
  object-fit: contain;
}

.retail-pos-key__image--cover {
  object-fit: cover;
}

.retail-pos-key--with-image > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.retail-pos-key--with-image > div > strong {
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
}

.retail-pos-key--with-image > div > span {
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 9.5px;
  font-weight: 600;
}

.retail-pos-key--with-image > div > b {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.retail-service-preview {
  background: #fff;
}

.retail-service-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.retail-service-preview__head > div {
  display: grid;
  gap: 3px;
}

.retail-service-preview__head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.retail-service-preview__head span {
  color: var(--ink-3);
  font-size: 11px;
}

.retail-service-row {
  display: grid;
  grid-template-columns: 70px minmax(120px, 0.9fr) minmax(170px, 1.25fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line-soft);
}

.retail-service-row:last-child {
  border-bottom: 0;
}

.retail-service-row__time,
.retail-service-row__service {
  display: grid;
  gap: 3px;
}

.retail-service-row__time strong,
.retail-service-row__service strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.retail-service-row__time span,
.retail-service-row__service span {
  color: var(--ink-3);
  font-size: 10.5px;
}

.retail-service-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.retail-service-row dl div {
  display: grid;
  gap: 3px;
}

.retail-service-row dt {
  color: var(--ink-4);
  font-size: 9.5px;
  font-weight: 600;
}

.retail-service-row dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 10.5px;
  line-height: 1.35;
}

.retail-service-row__status {
  display: grid;
  min-width: 82px;
  gap: 7px;
  justify-items: stretch;
  text-align: center;
}

.retail-service-row__status span {
  color: var(--ink-2);
  font-size: 10.5px;
  font-weight: 600;
}

.retail-service-row__status b {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
}

/* ---------- Communications: actual campaign product captures ---------- */

.pillar-hero--campaigns .pillar-hero__copy {
  max-width: 900px;
}

.pillar-hero--campaigns h1 {
  max-width: 22ch;
}

.campaign-product-shot {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.campaign-product-shot__viewport {
  overflow: hidden;
  background: var(--bg-soft);
}

.campaign-product-shot picture {
  display: block;
}

.campaign-product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-product-shot--hero {
  margin-top: clamp(4px, 1vw, 12px);
}

.campaign-product-shot--segment {
  width: min(100%, 560px);
  justify-self: end;
}

/* ---------- Reporting: real product captures ---------- */

.pillar-hero--reporting .pillar-hero__copy {
  max-width: 980px;
}

.pillar-hero--reporting h1 {
  max-width: 22ch;
}

.reporting-product-shot {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.reporting-product-shot__viewport {
  overflow: hidden;
  padding: 12px;
  background: var(--bg-soft);
}

.reporting-product-shot picture {
  display: block;
}

.reporting-product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.reporting-product-shot--hero {
  margin-top: clamp(4px, 1vw, 12px);
}

/* ---------- Cross-links to other pillars ---------- */

.pillar-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.pillar-next__card {
  display: block;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.pillar-next__card:hover {
  border-color: var(--rink-blue);
}

.pillar-next__context {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.pillar-next__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.pillar-next__card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

.pillar-next__action {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rink-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Feature index grid (features hub) ---------- */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hub-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.hub-card:hover {
  border-color: var(--ink-4);
  box-shadow: none;
}

.hub-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hub-card__top h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hub-card > p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.hub-card__list {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-3);
}

.hub-card em {
  display: inline-block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rink-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Keep the feature family on one typographic scale. */

.section-heading h2,
.final-cta h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-heading,
.section-heading--narrow {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.final-cta {
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-card);
}

.final-cta h2 {
  margin-top: 0;
}

.final-cta__texture {
  display: none;
}

/* ---------- Responsive ---------- */

@media (min-width: 901px) {
  .pillar-band {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .pillar-band > :not(.pillar-band__copy) {
    align-self: end;
  }

  .pillar-workflows + .section--tight {
    padding-top: 16px;
    padding-bottom: 48px;
  }

  body[data-page="Leagues"] #game-night .league-product-shot__viewport {
    aspect-ratio: 2304 / 1274;
  }

  body[data-page="Leagues"] #public-pages .league-product-shot__viewport {
    position: relative;
    padding-bottom: 12px;
    background: var(--bg);
  }

  body[data-page="Leagues"] #public-pages
    .league-product-shot__viewport::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 11px;
    left: 0;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0 2.35%,
      var(--line) 2.35% 49.2%,
      transparent 49.2% 50.8%,
      var(--line) 50.8% 97.65%,
      transparent 97.65% 100%
    );
    pointer-events: none;
  }
}

@media (min-width: 1100px) {
  .pillar-band--waiver-wide {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  #records.pillar-band--waiver-wide {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  }

  #records.pillar-band--waiver-wide .pillar-band__copy {
    order: 2;
  }
}

@media (max-width: 900px) {
  .pillar-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-hero__inner,
  .pillar-hero--coach .editorial-hero__inner,
  .pillar-hero--retail .editorial-hero__inner,
  .pillar-hero--campaigns .editorial-hero__inner,
  .pillar-hero--reporting .editorial-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .editorial-hero__support {
    max-width: 640px;
    padding-bottom: 0;
  }

  .pillar-band,
  .pillar-band--flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pillar-band--flip .pillar-band__copy {
    order: 0;
  }

  .waiver-record-preview__summary dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .campaign-product-shot--segment {
    justify-self: center;
  }

  .pillar-next {
    grid-template-columns: 1fr;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .camp-photo--hero {
    aspect-ratio: 3 / 2;
    max-height: none;
  }

  .camp-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retail-pos-preview__topbar {
    grid-template-columns: auto auto minmax(180px, 1fr) auto;
  }

  .retail-pos-preview__register,
  .retail-pos-preview__line-count {
    display: none;
  }

  .retail-pos-preview__body {
    grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  }
}

@media (max-width: 720px) {
  .retail-pos-preview__body {
    grid-template-columns: 1fr;
  }

  .retail-pos-sale {
    border-right: 0;
    border-bottom: 1px solid #b9c1cb;
  }

  .retail-service-row {
    grid-template-columns: 70px minmax(0, 1fr) auto;
  }

  .retail-service-row dl {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .retail-service-row__status {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  body[data-page="Reporting"] .reporting-product-shot__viewport {
    padding: 8px;
  }

  body[data-page="Leagues"] .pillar-hero__inner {
    gap: 24px;
  }

  body[data-page="Leagues"] .page-jump__label {
    display: none;
  }

  body[data-page="Leagues"] .page-jump a:first-of-type {
    padding-left: 0;
  }

  body[data-page="Leagues"] .pillar-band,
  body[data-page="Leagues"] .pillar-band--flip {
    gap: 22px;
    padding-block: 28px;
  }

  body[data-page="Leagues"] #public-pages {
    padding-bottom: 20px;
  }

  body[data-page="Leagues"] #cta {
    padding-top: 24px;
  }

  body[data-page="Leagues"] .pillar-band__copy h2 {
    margin-bottom: 12px;
    font-size: clamp(25px, 7.5vw, 30px);
  }

  body[data-page="Leagues"] .pillar-band__copy > p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  body[data-page="Leagues"] .pillar-list {
    gap: 8px;
  }

  body[data-page="Leagues"] .pillar-list li {
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  body[data-page="Leagues"] .league-product-shot--portrait-preview {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  body[data-page="Leagues"] #public-pages
    .league-product-shot--portrait-preview
    .league-product-shot__viewport {
    aspect-ratio: 7 / 11;
  }

  .page-jump__inner {
    width: 100%;
  }

  .page-jump__label {
    position: sticky;
    left: 0;
    z-index: 1;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding-right: 10px;
    background: var(--bg);
  }

  .mock__bar-meta {
    display: none;
  }

  .waiver-signing-preview__bar,
  .waiver-record-preview__toolbar {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px;
  }

  .waiver-signing-preview__body {
    padding: 10px;
  }

  .waiver-signing-preview__fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .waiver-record-preview__summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waiver-record-preview__summary dl > div {
    border-bottom: 1px solid var(--line-soft);
  }

  .waiver-record-preview__viewer {
    padding: 14px;
  }

  .waiver-pdf-page {
    padding: 16px;
  }

  .camp-groups {
    grid-template-columns: 1fr;
  }

  .camp-plan__header {
    align-items: flex-start;
  }

  .camp-curriculum {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .standings th:nth-child(4),
  .standings td:nth-child(4) {
    display: none;
  }

  .retail-shop-preview__tabs,
  .retail-shop-preview__toolbar {
    overflow-x: auto;
  }

  .retail-shop-preview__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .retail-shop-preview__search {
    flex-basis: auto;
  }

  .retail-shop-preview__products {
    grid-template-columns: 1fr;
  }

  .retail-pos-preview__topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .retail-pos-preview__topbar > span:not(.retail-pos-preview__mode):not(.retail-pos-preview__lookup) {
    display: none;
  }

  .retail-pos-preview__lookup {
    grid-column: 1 / -1;
  }

  .retail-pos-keys__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retail-pos-keys__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retail-service-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .retail-service-row dl,
  .retail-service-row__status {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .retail-service-row__status {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 360px) {
  body[data-page="Leagues"] .final-cta__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  body[data-page="Leagues"] .final-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .retail-pos-keys__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
