:root {
  /* Color rules:
     - Navy + ink carry structure.
     - Blue is reserved for links and selected product states.
     - Green is reserved for primary actions and success.
     - Red is reserved for time-sensitive or error states inside product UI. */
  --c-navy: #545f77;
  --c-navy-deep: #2e3648;
  --c-navy-ink: #1a1f2b;
  --c-signal: #22d97e;
  --c-signal-deep: #0f9e5e;
  --rink-red: #b91f35;
  --rink-blue: #2d5aa8;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-frost: #eef1f5;
  --ink: #0e1220;
  --ink-2: #2a3142;
  --ink-3: #545f77;
  --ink-4: #5f6b7d;
  --line: #e4e8ee;
  --line-soft: #eff2f6;
  --shadow-card: 0 1px 2px rgba(20, 30, 50, 0.05);
  --shadow-schedule: 0 10px 28px rgba(20, 30, 50, 0.08);
  --shadow-phone:
    0 30px 60px rgba(20, 30, 50, 0.18), 0 4px 10px rgba(20, 30, 50, 0.08);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 8px;
  --radius-card: 12px;
  --radius-cta: 12px;
  --hour-h: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings:
    "ss01" on,
    "cv11" on;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #1f4f9a;
}

main[tabindex="-1"]:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #15223a;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(14, 18, 32, 0.22);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(60px, 7.5vw, 104px) 0;
}

.section--tight {
  padding: clamp(48px, 6vw, 88px) 0;
}

.section--band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.section--frost {
  background: var(--bg-frost);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-context {
  margin: 0 0 8px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.mono-label {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

.display,
.section-heading h2,
.thesis__quote,
.capability-row__title h3,
.final-cta h2 {
  text-wrap: balance;
}

.display {
  margin: 0 0 24px;
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display em,
.thesis__quote-emphasis {
  font: inherit;
  color: inherit;
}

.lede,
.section-heading p,
.thesis__body p,
.roster-highlight__copy p,
.capability-row__body p,
.rollout__copy p,
.footer__brand p,
.footer__brand small {
  color: var(--ink-3);
}

.lede {
  max-width: 58ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--c-signal);
  color: #06160d;
}

.button--primary:hover {
  background: var(--c-signal-deep);
  color: #fff;
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button--ghost:hover {
  border-color: var(--ink);
}

.button--ghost-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.button--ghost-on-dark:hover {
  border-color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #545f77;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.logo__image {
  width: auto;
  height: 40px;
}

.logo__mark {
  position: relative;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}

.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bg);
}

.logo__mark::before {
  top: 8px;
}

.logo__mark::after {
  bottom: 8px;
}

.logo__mark i {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%);
}

.nav__links,
.nav__actions,
.hero__actions,
.final-cta__actions,
.footer__bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__links {
  gap: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav__links a:hover,
.nav__signin:hover {
  color: #fff;
}

.footer a:hover {
  color: var(--ink);
}

.nav__signin {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav__links a {
  position: relative;
}

.nav__links a[aria-current="page"] {
  color: #fff;
}

/* Same active-page underline the app's tenant nav uses. */
.nav__signin {
  position: relative;
}

.nav__links a[aria-current="page"]::after,
.nav__signin[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: #fff;
}

.nav__signin[aria-current="page"] {
  color: #fff;
}

.nav__menu {
  display: none;
  position: relative;
}

.nav__menu summary {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  list-style: none;
}

.nav__menu summary::-webkit-details-marker {
  display: none;
}

.nav__menu summary svg {
  display: block;
  width: 24px;
  height: 24px;
}

.nav__menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  display: grid;
  min-width: 220px;
  max-height: calc(100vh - 88px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #2e3648;
  box-shadow: 0 18px 40px rgba(14, 18, 32, 0.2);
}

.nav__menu-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.nav__menu-panel a[aria-current="page"],
.nav__menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav .button--primary {
  background: var(--c-signal);
  color: #06160d;
}

.nav .button--primary:hover {
  background: #1fd47c;
  color: #06160d;
}

.demo-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: min(88vh, 920px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #fbfcfe;
  box-shadow: 0 30px 80px rgba(14, 18, 32, 0.26);
}

.demo-dialog::backdrop {
  background: rgba(14, 18, 32, 0.58);
}

.demo-dialog__shell {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.demo-dialog__head {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.demo-dialog__copy {
  display: grid;
  gap: 10px;
}

.demo-dialog__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.demo-dialog__copy p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
}

.demo-dialog__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.demo-dialog__close:hover {
  border-color: var(--ink-4);
  color: var(--ink);
}

.demo-form {
  display: grid;
  gap: 18px;
}

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

.demo-field {
  display: grid;
  gap: 8px;
}

.demo-field--full {
  grid-column: 1 / -1;
}

.demo-field label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.required-marker {
  margin-left: 2px;
  color: #b42318;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.demo-field textarea {
  min-height: 120px;
  resize: vertical;
}

.demo-field input::placeholder,
.demo-field textarea::placeholder {
  color: var(--ink-4);
}

.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  outline: 0;
  border-color: rgba(20, 181, 106, 0.6);
  box-shadow: 0 0 0 4px rgba(44, 239, 141, 0.12);
}

.demo-form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.demo-form__actions p {
  margin: 0;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.5;
}

.demo-form__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.demo-form__status {
  min-height: 20px;
  color: #11814e;
  font-size: 12px;
}

.demo-form__status[data-state="error"] {
  color: #b42318;
}

.demo-form__status[data-state="success"] {
  color: #11814e;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 8vw, 96px);
}

.hero__texture,
.final-cta__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(100% - 1px),
    var(--line-soft) 100%
  );
  background-size: 100% 48px;
  opacity: 0.35;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero .container {
  width: min(1320px, calc(100vw - (var(--gutter) * 2)));
}

.hero__copy {
  max-width: 620px;
}

.hero .display {
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: 1;
}

.hero__actions {
  flex-wrap: wrap;
}

.explainer-video__youtube-link {
  margin-top: 22px;
}

.explainer-video__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(20, 30, 50, 0.12);
  border-radius: 16px;
  background: var(--c-navy-deep);
  box-shadow: 0 16px 36px rgba(20, 30, 50, 0.12);
}

.explainer-video__poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: var(--c-navy-deep);
  cursor: pointer;
}

.explainer-video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explainer-video__poster:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -7px;
  box-shadow: inset 0 0 0 10px #1f4f9a;
}

.explainer-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--c-navy-deep);
  box-shadow: 0 8px 20px rgba(14, 18, 32, 0.22);
  transform: translate(-50%, -50%);
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.explainer-video__play svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.explainer-video__poster:hover .explainer-video__play {
  background: var(--c-signal);
  color: #06160d;
}

.explainer-video__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.explainer-video__fallback {
  margin: 0;
  padding: 16px;
  color: #ffffff;
  text-align: center;
}

.explainer-video__fallback a {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .explainer-video__media {
    border-radius: 12px;
  }
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__meta-key {
  margin-bottom: 6px;
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__meta-value {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hero__stage {
  position: relative;
  min-height: 650px;
}

.hero-product {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.hero-roster {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 1;
  width: 340px;
  overflow: hidden;
  border: 1px solid #d7dde6;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 30, 50, 0.08);
}

.hero-roster__bar,
.hero-roster__session,
.hero-roster__summary,
.hero-roster__person {
  display: flex;
  align-items: center;
}

.hero-roster__bar {
  justify-content: space-between;
  min-height: 46px;
  padding: 9px 13px;
  border-bottom: 1px solid #e2e7ee;
}

.hero-roster__bar span,
.hero-roster__session span,
.hero-roster__summary span,
.hero-roster__person > div span {
  color: #637083;
  font-size: 11px;
}

.hero-roster__bar strong {
  color: #111827;
  font-size: 14px;
}

.hero-roster__live {
  padding: 5px 8px;
  border: 1px solid #9bd7f2;
  border-radius: 999px;
  background: #effaff;
  color: #12658c !important;
  font-size: 10px !important;
  font-weight: 700;
}

.hero-roster__session {
  align-items: flex-start;
  padding: 13px 13px 12px;
}

.hero-roster__session-title {
  display: block;
  margin: 3px 0 2px;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-roster__session p {
  display: grid;
  gap: 1px;
  margin: 0;
  color: #637083;
  font-size: 12px;
}

.hero-roster__session p span {
  font-size: inherit;
}

.hero-roster__summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid #e2e7ee;
  border-bottom: 1px solid #e2e7ee;
}

.hero-roster__summary div {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-right: 1px solid #e2e7ee;
}

.hero-roster__summary div:last-child {
  border-right: 0;
}

.hero-roster__summary strong {
  color: #111827;
  font-size: 15px;
}

.hero-roster__list {
  display: grid;
  padding: 10px 12px 12px;
}

.hero-roster__list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 6px;
}

.hero-roster__list-head strong {
  color: #111827;
  font-size: 11px;
  font-weight: 600;
}

.hero-roster__list-head span {
  color: #637083;
  font-size: 10px;
}

.hero-roster__person {
  gap: 8px;
  min-height: 48px;
  padding: 7px 0;
  border-bottom: 1px solid #e2e7ee;
  background: #ffffff;
}

.hero-roster__person:last-child {
  border-bottom: 0;
}

.hero-roster__avatar {
  display: block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #e7ecf3;
  border: 1px solid #d8dee8;
  object-fit: cover;
  object-position: center;
}

.hero-roster__person > div {
  display: grid;
  flex: 1;
  gap: 1px;
  min-width: 0;
}

.hero-roster__person > div strong {
  overflow: hidden;
  color: #111827;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-roster__state,
.hero-roster__action {
  flex: 0 0 auto;
  font-size: 9px !important;
  font-weight: 700;
}

.hero-roster__state {
  color: #13764f !important;
}

.hero-roster__action {
  min-width: 62px;
  padding: 5px 7px;
  border: 1px solid #cbd3de;
  border-radius: 6px;
  background: #ffffff;
  color: #27344a !important;
  text-align: center;
}

.hero-phone {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 314px;
  height: 638px;
  padding: 8px;
  border: 1px solid #111827;
  border-radius: 40px;
  background: #0d1422;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-phone__screen {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: 32px;
  background: #f5faf7;
}

.hero-phone__status {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  padding: 10px 18px 4px;
  color: #102030;
  font-size: 9px;
  font-weight: 700;
}

.hero-phone__rink {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  margin: 0 14px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid #d0d7e0;
}

.hero-phone__rink img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.hero-phone__rink-switcher {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 0;
}

.hero-phone__rink-switcher strong {
  overflow: hidden;
  max-width: 190px;
  color: #102030;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone__rink-switcher span {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #526176;
  font-size: 10px;
}

.hero-phone__rink-switcher b {
  color: #0066b3;
  font-size: 12px;
  font-weight: 600;
}

.hero-phone__content {
  flex: 1;
  overflow: hidden;
  padding: 9px 14px 4px;
}

.hero-phone__title {
  display: block;
  margin: 0 0 10px;
  color: #102030;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.16;
}

.hero-phone__calendar-head,
.hero-phone__day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hero-phone__calendar-head strong {
  color: #102030;
  font-size: 16px;
}

.hero-phone__calendar-head div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-phone__calendar-head span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid #d0d7e0;
  border-radius: 8px;
  background: #ffffff;
  color: #0066b3;
  font-size: 10px;
  font-weight: 600;
}

.hero-phone__calendar-head span:first-child {
  padding: 0 9px;
}

.hero-phone__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  min-height: 59px;
  margin: 3px -5px 6px;
}

.hero-phone__week > div {
  display: grid;
  grid-template-rows: 11px 29px 6px;
  justify-items: center;
  gap: 3px;
  min-width: 0;
  color: #526176;
}

.hero-phone__week span {
  font-size: 9px;
  font-weight: 600;
}

.hero-phone__week strong {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #102030;
  font-size: 14px;
  line-height: 1;
}

.hero-phone__week .is-selected strong {
  background: #526176;
  color: #ffffff;
}

.hero-phone__markers {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 6px;
}

.hero-phone__markers i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14733f;
}

.hero-phone__day-heading {
  margin-bottom: 8px;
}

.hero-phone__day-heading > div {
  display: grid;
  gap: 1px;
}

.hero-phone__day-heading strong {
  color: #102030;
  font-size: 15px;
}

.hero-phone__day-heading span {
  color: #526176;
  font-size: 10px;
}

.hero-phone__filter {
  color: #0066b3 !important;
  font-weight: 600;
}

.hero-phone__sessions {
  display: grid;
  gap: 8px;
}

.hero-phone__session {
  position: relative;
  display: grid;
  grid-template-columns: 61px 1fr 12px;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  overflow: hidden;
  padding: 9px 9px 9px 10px;
  border: 1px solid #d0d7e0;
  border-radius: 12px;
  background: #ffffff;
}

.hero-phone__session::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 4px;
  background: var(--program-color);
  content: "";
}

.hero-phone__session--registered {
  background: #f3faf6;
}

.hero-phone__time,
.hero-phone__session-copy {
  display: grid;
  align-content: start;
}

.hero-phone__time {
  gap: 2px;
}

.hero-phone__time strong {
  color: #102030;
  font-size: 11px;
  font-weight: 600;
}

.hero-phone__time span {
  color: #526176;
  font-size: 10px;
  font-weight: 500;
}

.hero-phone__session-copy {
  gap: 1px;
  min-width: 0;
}

.hero-phone__session-copy small {
  color: #526176;
  font-size: 10px;
}

.hero-phone__session-copy strong {
  overflow: hidden;
  color: #102030;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone__session-copy span,
.hero-phone__session-copy em {
  color: #526176;
  font-size: 10px;
  font-style: normal;
}

.hero-phone__registration {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.hero-phone__registration img {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.hero-phone__registration em {
  color: #102030;
  font-weight: 600;
}

.hero-phone__chevron {
  align-self: center;
  color: #526176;
  font-size: 16px;
}

.hero-phone__tabs {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(4, 1fr);
  min-height: 59px;
  padding: 7px 8px 11px;
  border-top: 1px solid #d0d7e0;
  background: #ffffff;
}

.hero-phone__tabs div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: #637083;
}

.hero-phone__tabs svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-phone__tabs span {
  font-size: 9px;
  font-weight: 600;
}

.hero-phone__tabs .is-active {
  color: #0066b3;
}

.hero-phone__home {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.ice-ops {
  overflow: hidden;
  background: #e9eef4;
}

.ice-ops__inner {
  display: grid;
  grid-template-areas: "visual copy";
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.ice-ops__copy {
  grid-area: copy;
  color: var(--ink-2);
}

.ice-ops__copy .section-title {
  max-width: 13ch;
}

.ice-ops__copy p {
  margin: 0;
  max-width: 52ch;
}

.ice-ops__lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
}

.ice-ops__copy p + p {
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
}

.ice-ops__cta {
  margin-top: 24px;
}

.ice-ops__visual {
  grid-area: visual;
  margin: 0;
}

.ice-ops__visual picture {
  display: block;
}

.ice-ops__visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #c4ced8;
  border-radius: 8px;
}

.sports-coverage {
  border-top: 1px solid var(--line-soft);
}

.sports-coverage__header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
  margin-bottom: 30px;
}

.sports-coverage__copy {
  max-width: none;
}

.sports-coverage__copy h2,
.sports-coverage__copy p {
  margin: 0;
}

.sports-coverage__copy h2 {
  max-width: 18ch;
}

.sports-coverage__summary {
  max-width: 54ch;
  margin: 0;
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
}

.sports-strip {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sports-strip__group {
  min-width: 0;
  padding: 20px;
  border-top: 3px solid #1672a6;
  background: #edf5f9;
}

.sports-strip__group--planned {
  border-top-color: #cbd3dc;
  border-left: 1px solid var(--line);
  background: #f7f8fa;
}

.sports-strip__group h3 {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.sports-strip__group--planned h3 {
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.sports-strip__list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.sports-strip__list--supported {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sports-strip__list--planned {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sports-strip__list li {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.sports-strip__list img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sports-strip__list span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.sports-strip__group--planned img {
  width: 36px;
  height: 36px;
  opacity: 0.52;
  filter: grayscale(1);
}

.sports-strip__group--planned span {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
}

.sports-strip__more {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.schedule-card,
.roster-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  box-shadow: var(--shadow-schedule);
}

.schedule-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.schedule-card__toolbar,
.roster-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.schedule-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-chip,
.schedule-card__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.schedule-card__button {
  margin-left: auto;
  background: var(--c-signal);
  color: #06160d;
  border-color: transparent;
  font-weight: 500;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-signal);
  box-shadow: 0 0 0 2px rgba(44, 239, 141, 0.2);
}

.schedule-card__venue {
  color: var(--ink-3);
  font-size: 11px;
}

.schedule-header,
.schedule-grid {
  display: grid;
  grid-template-columns: 48px repeat(4, 1fr);
}

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

.schedule-header div {
  position: relative;
  padding: 10px 12px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.schedule-header div + div {
  border-left: 1px solid var(--line-soft);
}

.schedule-header .is-today {
  color: var(--ink);
  font-weight: 600;
}

.schedule-header .is-today::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--ink-2);
}

.schedule-hours {
  border-right: 1px solid var(--line);
}

.schedule-hours span,
.schedule-column::before {
  display: block;
  height: var(--hour-h);
  border-bottom: 1px solid var(--line-soft);
}

.schedule-hours span {
  padding-top: 6px;
  padding-right: 6px;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-align: right;
}

.schedule-column {
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--hour-h) - 1px),
    var(--line-soft) calc(var(--hour-h) - 1px),
    var(--line-soft) var(--hour-h)
  );
  border-right: 1px solid var(--line-soft);
}

.schedule-column:last-child {
  border-right: 0;
}

.schedule-column--today {
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--hour-h) - 1px),
      var(--line-soft) calc(var(--hour-h) - 1px),
      var(--line-soft) var(--hour-h)
    );
}

.schedule-session {
  position: absolute;
  left: 3px;
  right: 3px;
  top: calc((var(--start) - 8) * var(--hour-h));
  height: calc((var(--duration) * var(--hour-h)) - 2px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  border: 1px solid;
  border-left-width: 2px;
  padding: 8px 10px 7px;
  font-size: 11px;
  line-height: 1.3;
}

.schedule-session strong,
.staff-strip__row strong,
.roster-person strong {
  display: block;
}

.schedule-session strong {
  line-height: 1.2;
}

.schedule-session span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.76;
  line-height: 1.35;
  white-space: normal;
}

.schedule-session[style*="--duration: 1.5"] {
  padding-top: 7px;
  padding-bottom: 6px;
}

.schedule-session[style*="--duration: 1.5"] span {
  margin-top: 3px;
  line-height: 1.25;
}

.schedule-session--public {
  border-color: #8893a6;
  background: #e9edf4;
  color: #2a3142;
}

.schedule-session--figure {
  border-color: #5f7a9a;
  background: #dde6f1;
  color: #1f3a58;
}

.schedule-session--hockey {
  border-color: #0e1220;
  background: #1a2238;
  color: #f2f5fa;
}

.schedule-session--learn {
  border-color: #14b56a;
  background: #d7f5e5;
  color: #0a4a29;
}

.schedule-session--rental {
  border-color: #c79a55;
  background: #f4e7d3;
  color: #5a3e15;
}

.schedule-now {
  position: absolute;
  left: 0;
  right: 0;
  top: calc((var(--start) - 8) * var(--hour-h));
  border-top: 1.5px solid var(--rink-red);
}

.schedule-now span {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rink-red);
  box-shadow: 0 0 0 3px rgba(44, 239, 141, 0.25);
}

.schedule-now b {
  position: absolute;
  top: -16px;
  right: 6px;
  color: var(--rink-red);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.schedule-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-3);
  font-size: 11px;
}

.schedule-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.schedule-legend strong {
  margin-left: auto;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
}

.legend-swatch--public {
  border-color: #8893a6;
  background: #e9edf4;
}

.legend-swatch--figure {
  border-color: #5f7a9a;
  background: #dde6f1;
}

.legend-swatch--hockey {
  border-color: #0e1220;
  background: #1a2238;
}

.legend-swatch--learn {
  border-color: #14b56a;
  background: #d7f5e5;
}

.thesis {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.thesis__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.thesis__content {
  max-width: 520px;
}

.thesis__quote {
  max-width: 22ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.thesis__quote-line,
.thesis__quote-emphasis {
  display: block;
}

.thesis__quote-line {
  white-space: nowrap;
}

.thesis__quote-emphasis {
  color: var(--ink);
}

.thesis__body {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.65;
}

.thesis__body p {
  margin: 0 0 14px;
}

.thesis__body p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading--narrow {
  display: grid;
  gap: 16px;
  margin-bottom: 72px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.section-heading h2 span,
.rollout__copy h2 span {
  color: inherit;
}

.section-heading > p {
  max-width: 62ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.final-cta h2 span {
  color: inherit;
}

.rollout,
.roster-highlight {
  display: grid;
  gap: 24px;
}

.roster-highlight__copy .section-title {
  max-width: 12ch;
  margin: 0 0 12px;
}

.roster-highlight {
  grid-template-columns: 2.2fr 1fr;
  grid-template-areas: "visual copy";
  align-items: start;
  gap: 48px;
}

.roster-highlight__copy {
  grid-area: copy;
}

.roster-card {
  grid-area: visual;
}

.roster-highlight__copy > p:not(.section-context) {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
}

.roster-highlight__copy > p:not(.section-context):last-of-type {
  margin-bottom: 0;
}

.roster-highlight__cta {
  margin-top: 20px;
}

.roster-card {
  display: grid;
  gap: 0;
  width: min(100%, 640px);
  justify-self: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
}

.roster-card__top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
}

.roster-card__heading {
  display: grid;
  gap: 4px;
}

.roster-card__heading p {
  margin: 0;
  color: var(--ink-3);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
}

.roster-card__heading strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.roster-card__heading span {
  color: var(--ink-3);
  font-size: 13px;
}

.roster-card__top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
}

.roster-card__top-meta span {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 500;
}

.roster-card__top-meta span + span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.roster-card__top-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #efe9ff;
  color: #5b34bf;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roster-card__top-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e7f8ef;
  color: #11814e;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roster-card__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.roster-card__summary > div {
  display: grid;
  gap: 3px;
  padding: 14px 20px;
}

.roster-card__summary > div + div {
  border-left: 1px solid var(--line);
}

.roster-card__summary dt {
  color: var(--ink-3);
  font-size: 12px;
}

.roster-card__summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.roster-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e8edf4;
}

.roster-progress__fill,
.roster-progress__checkins {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.roster-progress__fill {
  width: 92%;
  background: #cdebd8;
}

.roster-progress__checkins {
  width: 58%;
  background: #16a34a;
}

.roster-list {
  display: grid;
  gap: 10px;
}

.roster-list--single {
  padding: 6px 0 0;
}

.roster-entry {
  display: grid;
  grid-template-columns: 92px auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.roster-entry--ok {
  background: #ffffff;
}

.roster-entry--warn {
  background: #fffdf8;
}

.roster-entry__section {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-entry__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0e1220;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.roster-entry__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.roster-entry__copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

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

.roster-entry__copy small {
  color: #9a620c;
  font-size: 11px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.pill--ok {
  border-color: #d8dee8;
  background: #f5f7fa;
  color: #526176;
}

.pill--paid {
  border-color: #d8dee8;
  background: #f5f7fa;
  color: #526176;
}

.pill--warn {
  border-color: #dec596;
  background: #ffffff;
  color: #8a5a12;
}

.pill--err {
  border-color: #dfb5ae;
  background: #ffffff;
  color: #a33a2b;
}

.roster-entry__status,
.roster-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.roster-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.roster-action--muted {
  color: var(--ink-3);
}

.roster-action--disabled {
  color: #98a3b6;
  background: #f4f6fa;
}

.roster-action--primary {
  border-color: #0e1220;
  background: #0e1220;
  color: #fff;
}

.roster-groups {
  display: grid;
  gap: 22px;
  padding: 18px 20px 20px;
}

.roster-group {
  display: grid;
  gap: 9px;
}

.roster-group__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.roster-group__title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

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

.roster-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.roster-row--checked {
  background: #fafbfc;
}

.roster-row__avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9edf3;
  border: 1px solid #d8dee8;
  object-fit: cover;
  object-position: center;
}

.roster-row__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.roster-row__copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-row__copy span,
.roster-row__copy small {
  overflow: hidden;
  color: var(--ink-3);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-row__copy small {
  color: #8a5a12;
}

.roster-row__copy .roster-row__issue--payment {
  color: #a33a2b;
}

.roster-row__copy .roster-row__ready {
  color: var(--ink-3);
}

.roster-row__copy .roster-row__checked-at {
  color: #14733f;
  font-weight: 600;
}

.roster-row__checked {
  display: flex;
  align-items: center;
  gap: 12px;
}

.roster-row__checked > span:not(.roster-action) {
  color: #14733f;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.roster-action {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 12px;
}

.ledger {
  border-top: 1px solid var(--line);
}

.ledger__row {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 2.2fr);
  gap: 12px 56px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.ledger__title {
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 650;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ledger__body p {
  margin: 0 0 10px;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

.ledger__body p:last-child {
  margin-bottom: 0;
}

.ledger__links {
  color: var(--ink);
}

.ledger__links a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-4);
  transition: text-decoration-color 0.15s ease;
}

.ledger__links a:hover {
  text-decoration-color: var(--ink);
}

.ledger__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
}

.ledger__cta p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
}

.ledger__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.outcome-bars {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.outcome-bars__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px auto;
  gap: 12px;
  align-items: center;
}

.outcome-bars__row label {
  color: var(--ink-2);
  font-size: 13px;
}

.outcome-bars__row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe6ef;
}

.outcome-bars__row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fa662 0%, #69d68f 100%);
}

.outcome-bars__row b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.insights {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.insights__copy {
  display: grid;
  gap: 16px;
}

.insights__copy h2 {
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.insights__copy h2 span {
  color: var(--rink-blue);
}

.insights__copy p {
  margin: 0;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.65;
}

.insights-panel {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
}

.insights-panel__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.insights-panel__top strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.insights-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.insights-panel__stats div {
  padding: 13px 18px;
  border-right: 1px solid var(--line);
}

.insights-panel__stats div:last-child {
  border-right: 0;
}

.insights-panel__stats dt {
  margin: 0;
  color: var(--ink-3);
  font-size: 12px;
}

.insights-panel__stats dd {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.metric-trend--positive {
  color: #14733f;
}

.metric-trend--negative {
  color: #a33a2b;
}

.session-performance {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.session-performance th {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
  text-align: left;
}

.session-performance th:first-child {
  width: 40%;
}

.session-performance th:nth-child(2),
.session-performance th:nth-child(3) {
  width: 14%;
}

.session-performance th:last-child {
  width: 32%;
}

.session-performance td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 12px;
  vertical-align: middle;
}

.session-performance td strong,
.session-performance td span {
  display: block;
}

.session-performance td strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.session-performance td span {
  margin-top: 2px;
  color: var(--ink-3);
  font-size: 11px;
}

.session-performance td .session-performance__metric {
  display: grid;
  gap: 2px;
  margin: 0;
}

.session-performance td .session-performance__metric strong {
  font-size: 12px;
}

.session-performance td .metric-trend {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  font-size: 10px;
}

.session-performance td .metric-trend--positive {
  color: #14733f;
}

.session-performance td .metric-trend--negative {
  color: #a33a2b;
}

.session-performance td:last-child {
  color: var(--ink);
  font-weight: 600;
}

.session-performance td .session-performance__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  width: fit-content;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.session-performance td .session-performance__action span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.session-performance td .session-performance__action--primary {
  border-color: #0e1220;
  background: #0e1220;
  color: #ffffff;
}

.session-performance td .session-performance__action--quiet {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-weight: 500;
}

.session-performance__attention {
  background: #fffafa;
}

.session-performance__attention td:first-child {
  border-left: 3px solid #a33a2b;
  padding-left: 11px;
}

.insights-panel__followup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
}

.insights-panel__followup > div {
  display: grid;
  gap: 2px;
}

.insights-panel__followup > div > span {
  color: var(--ink-3);
  font-size: 12px;
}

.insights-panel__followup strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.insights-panel__followup .insights-panel__footer-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.integration-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.integration-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f2f5f9 100%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.integration-logo img,
.integration-logo svg {
  width: 24px;
  height: 24px;
  display: block;
}

.integration-logo--more {
  color: var(--ink-3);
}

.integration-cell strong {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.integration-cell em {
  color: var(--ink-4);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.implementation {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.implementation--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.implementation--reverse .implementation__intro {
  grid-column: 2;
  grid-row: 1;
}

.implementation--reverse .implementation__list {
  grid-column: 1;
  grid-row: 1;
}

.implementation__intro h2,
.assurance-panel__header h2 {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.implementation__intro > p:last-child,
.assurance-panel__header > p:last-child {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.65;
}

.implementation__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.implementation__list li {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.implementation__list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.implementation__list span {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}

.assurance-panel {
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.assurance-panel__header {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px clamp(48px, 7vw, 96px);
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.assurance-panel__header .section-context {
  grid-column: 1;
  margin-bottom: -8px;
}

.assurance-panel__header h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 40px);
}

.assurance-panel__header > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  font-size: 15px;
}

.assurance-panel__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 32px;
}

.assurance-panel__items article {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.assurance-panel__items article:first-child {
  padding-left: 0;
  border-left: 0;
}

.assurance-panel__items article:last-child {
  padding-right: 0;
}

.assurance-panel__items h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.assurance-panel__items p {
  margin: 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.6;
}

.assurance-panel__link {
  display: inline-block;
  margin-top: 14px;
  color: var(--rink-blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accessibility-hero {
  padding: clamp(64px, 9vw, 112px) 0 clamp(44px, 7vw, 80px);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.accessibility-hero__inner {
  max-width: 850px;
}

.accessibility-hero h1 {
  max-width: 17ch;
  margin: 12px 0 22px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.accessibility-hero .lede {
  max-width: 70ch;
  margin-bottom: 18px;
}

.accessibility-hero__status {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.accessibility-statement {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.accessibility-statement__nav {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.accessibility-statement__nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

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

.accessibility-statement__nav a {
  color: var(--rink-blue);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.accessibility-statement__content {
  max-width: 760px;
}

.accessibility-statement__content section {
  padding: 0 0 36px;
  scroll-margin-top: 96px;
}

.accessibility-statement__content section + section {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.accessibility-statement__content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
}

.accessibility-statement__content h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.accessibility-statement__content p,
.accessibility-statement__content li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.accessibility-statement__content p {
  margin: 0 0 16px;
}

.accessibility-statement__content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.accessibility-statement__content a:not(.button) {
  color: #214f96;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accessibility-status-card {
  margin: 22px 0 4px;
  padding: 20px;
  border-left: 4px solid var(--rink-blue);
  background: #eef3fb;
}

.accessibility-status-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.accessibility-status-card p {
  margin: 0;
  font-size: 15px;
}

.accessibility-feedback {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.accessibility-feedback p:last-of-type {
  margin-bottom: 20px;
}

.rollout {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rollout__copy h2 {
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.timeline-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
  padding: 24px;
}

.timeline-card--activation {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.timeline-group {
  display: grid;
  gap: 12px;
}

.timeline-group__label {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.timeline-pill--live {
  border-color: rgba(44, 239, 141, 0.35);
  background: rgba(44, 239, 141, 0.1);
  color: #0a4a29;
}

.timeline-note {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.timeline-note strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.timeline-note span {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.status {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.status--live {
  background: #dff6ea;
  color: #0a4a29;
}

.status--ready {
  background: #eef1f5;
  color: #545f77;
}

.status--later {
  border: 1px dashed var(--line);
  color: var(--ink-4);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-cta);
  background: var(--c-navy-ink);
  color: #fff;
}

.final-cta__copy,
.final-cta__actions {
  position: relative;
  z-index: 1;
}

.final-cta__copy {
  min-width: 0;
}

.final-cta__copy .section-context {
  color: rgba(255, 255, 255, 0.55);
}

.final-cta h2 {
  max-width: 30ch;
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

main .section-title {
  margin-top: 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

main .section-title--compact {
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.final-cta__actions {
  justify-self: end;
  align-self: center;
  flex-wrap: wrap;
}

.final-cta__texture {
  background-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(100% - 1px),
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0.6;
}

.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}

.footer__brand p {
  max-width: 28ch;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer__brand-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer__brand small {
  display: block;
  margin-top: 18px;
  font-size: 12px;
}

.footer__socials {
  display: flex;
  margin-top: 14px;
}

.footer__social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-3);
}

.footer__social-link svg {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__social-link:hover {
  background: var(--bg-soft);
  color: #e62117;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--ink-4);
  font-size: 12px;
}

.cookie-preferences-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-preferences-button:hover {
  color: var(--ink);
}

body.has-cookie-consent-banner {
  padding-bottom: var(--cookie-consent-height, 0);
}

.cookie-consent {
  position: fixed;
  z-index: 1200;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 -8px 24px rgba(20, 30, 50, 0.12);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(var(--container), calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 22px 0;
}

.cookie-consent__copy h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.cookie-consent__copy p {
  max-width: 72ch;
  margin: 7px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent__copy a {
  color: #1f5fbf;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__status:empty {
  display: none;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent__actions button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--c-navy-deep);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--c-navy-deep);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent__actions button:hover {
  background: var(--bg-soft);
}

@media (max-width: 760px) {
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions button {
    flex: 1 1 180px;
  }
}

.login-page {
  background: var(--bg);
}

.facility-directory {
  padding: clamp(40px, 5vw, 60px) 0 clamp(44px, 6vw, 68px);
  border-bottom: 1px solid var(--line-soft);
  background: #f8fafc;
}

.facility-directory .container {
  max-width: 1080px;
}

.facility-directory__header {
  margin-bottom: 24px;
}

.facility-directory__header h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.facility-directory__header p:not(.section-context) {
  max-width: 660px;
  margin: 0;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.55;
}

.facility-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.facility-filter__search {
  display: grid;
  gap: 8px;
}

.facility-filter__search span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

.facility-filter__field {
  position: relative;
  display: block;
}

.facility-filter__field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 19px;
  height: 19px;
  color: var(--ink-4);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  transform: translateY(-50%);
  pointer-events: none;
}

.facility-filter__search input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 16px 0 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.facility-filter__search input:focus {
  border-color: rgba(20, 181, 106, 0.58);
  box-shadow: 0 0 0 3px rgba(44, 239, 141, 0.16);
}

.facility-filter__meta {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: flex-end;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-grid > li {
  display: flex;
  min-width: 0;
}

.facility-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.facility-card:hover {
  border-color: #b8c4d3;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.07);
  transform: translateY(-1px);
}

.facility-card:focus-visible {
  outline: 3px solid rgba(20, 181, 106, 0.38);
  outline-offset: 3px;
}

.facility-card__logo {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f3f5f8;
  color: var(--ink-3);
}

.facility-card__logo img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.facility-card__logo img[hidden] {
  display: none;
}

.facility-card__initials {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
}

.facility-card__initials[hidden] {
  display: none;
}

.facility-card__copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.facility-card__copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.3;
}

.facility-card__copy > span {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.5;
}

.facility-card__continue {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  color: var(--rink-blue);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.facility-card__continue svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facility-empty {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-3);
}

.facility-directory__help {
  margin: 20px 0 0;
  color: var(--ink-3);
  font-size: 13.5px;
}

.facility-directory__help a {
  color: var(--rink-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1320px) {
  .hero-product {
    max-width: 360px;
  }

  .hero-roster {
    display: none;
  }

  .hero-phone {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .rollout,
  .section-heading--split,
  .insights,
  .thesis__grid,
  .roster-highlight {
    grid-template-columns: 1fr;
  }

  .roster-highlight {
    grid-template-areas:
      "copy"
      "visual";
  }

  .hero__stage {
    min-height: 650px;
  }

  .hero__stage .schedule-card {
    inset: 0;
  }

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

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

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

@media (max-width: 900px) {
  .ice-ops__inner {
    grid-template-areas:
      "copy"
      "visual";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ice-ops__copy p {
    max-width: 68ch;
  }

  .sports-coverage__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .sports-coverage__summary {
    max-width: 68ch;
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .implementation,
  .assurance-panel__header {
    grid-template-columns: 1fr;
  }

  .implementation--reverse .implementation__intro,
  .implementation--reverse .implementation__list {
    grid-column: auto;
    grid-row: auto;
  }

  .assurance-panel__header > p:last-child {
    grid-column: 1;
    grid-row: auto;
    max-width: 62ch;
  }

  .ledger__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .roster-entry {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .roster-entry__status,
  .roster-entry__actions {
    justify-content: flex-start;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .nav__links {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .nav__inner {
    gap: 12px;
  }

  .logo {
    margin-right: auto;
  }

  .hero__stage {
    min-height: 650px;
  }

  .schedule-header,
  .schedule-grid {
    grid-template-columns: 40px repeat(4, 1fr);
  }

  .schedule-card__toolbar,
  .roster-card__top,
  .footer__bottom {
    flex-wrap: wrap;
  }

  .roster-card__summary {
    grid-template-columns: 1fr;
  }

  .schedule-legend {
    flex-wrap: wrap;
    gap: 12px;
  }

  .schedule-legend strong {
    width: 100%;
    margin-left: 0;
  }

  .hero__stage .schedule-card {
    inset: 0;
  }

  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom > div a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .accessibility-statement {
    grid-template-columns: 1fr;
  }

  .accessibility-statement__nav {
    position: static;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100vw - 36px));
  }

  .insights-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }

  .insights-panel__stats div {
    padding: 12px 14px;
  }

  .insights-panel__stats dd {
    font-size: 19px;
  }

  .session-performance,
  .session-performance tbody {
    display: block;
    width: 100%;
  }

  .session-performance thead {
    display: none;
  }

  .session-performance tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "session action"
      "fill repeat";
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .session-performance td {
    min-width: 0;
    width: auto;
    padding: 0;
    border: 0;
  }

  .session-performance td::before {
    display: block;
    margin-bottom: 5px;
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 500;
    content: attr(data-label);
  }

  .session-performance td:first-child {
    grid-area: session;
    display: block;
    padding: 0;
  }

  .session-performance td:first-child::before {
    content: none;
  }

  .session-performance td:nth-child(2) {
    grid-area: fill;
  }

  .session-performance td:nth-child(3) {
    grid-area: repeat;
  }

  .session-performance td:nth-child(2),
  .session-performance td:nth-child(3) {
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: var(--bg-soft);
  }

  .session-performance td .session-performance__metric {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 7px;
  }

  .session-performance td .session-performance__metric strong {
    font-size: 15px;
  }

  .session-performance td:last-child {
    grid-area: action;
    display: flex;
    align-self: start;
    justify-content: flex-end;
    padding: 0;
    border: 0;
  }

  .session-performance td:last-child::before {
    content: none;
  }

  .session-performance__attention {
    border-left: 3px solid #a33a2b;
    padding-left: 13px;
  }

  .session-performance__attention td:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .insights-panel__followup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .insights-panel__followup strong {
    text-align: left;
  }

  .nav__inner {
    min-height: 60px;
    gap: 10px;
  }

  .logo__image {
    height: 36px;
  }

  .nav__actions {
    gap: 8px;
  }

  .nav .button {
    font-size: 13px;
  }

  .nav__signin {
    display: none;
  }

  .nav__menu-panel {
    min-width: 200px;
  }

  .nav .button {
    min-height: 38px;
    padding: 0 14px;
  }

  .facility-directory {
    padding: 32px 0 36px;
  }

  .facility-directory__header h1 {
    font-size: 36px;
  }

  .facility-filter {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .facility-filter__meta {
    min-height: 0;
    justify-content: flex-start;
  }

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

  .facility-card {
    min-height: 0;
    padding: 14px;
  }

  .demo-dialog {
    width: min(100vw - 20px, 640px);
  }

  .demo-dialog__shell {
    gap: 20px;
    padding: 20px;
  }

  .demo-form__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .demo-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-form__buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .demo-form__buttons .button,
  .demo-form__buttons button {
    width: 100%;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__copy {
    text-align: center;
  }

  .ice-ops__lede {
    font-size: 16px;
    line-height: 1.6;
  }

  .sports-strip {
    grid-template-columns: 1fr;
  }

  .sports-strip__group--planned {
    border-top: 3px solid #cbd3dc;
    border-left: 0;
  }

  .sports-strip__list--planned {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sports-strip__list--supported img {
    width: 44px;
    height: 44px;
  }

  .sports-strip__list--planned img {
    width: 34px;
    height: 34px;
  }

  .hero .display {
    max-width: 13ch;
    margin-inline: auto;
    margin-bottom: 18px;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.96;
  }

  .hero .lede {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__meta {
    justify-content: center;
    margin-top: 28px;
    padding-top: 18px;
    gap: 16px;
  }

  .hero__meta-value {
    font-size: 15px;
  }

  .section {
    padding: clamp(56px, 10vw, 84px) 0;
  }

  .section--tight {
    padding: clamp(40px, 8vw, 64px) 0;
  }

  .implementation__list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .assurance-panel {
    padding: 28px 22px;
  }

  .assurance-panel__header {
    padding-bottom: 24px;
  }

  .assurance-panel__items {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .assurance-panel__items article,
  .assurance-panel__items article:first-child,
  .assurance-panel__items article:last-child {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-panel__items article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .thesis__grid,
  .insights,
  .roster-highlight,
  .rollout,
  .final-cta,
  .section-heading--split {
    gap: 24px;
  }

  .roster-card,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .roster-highlight {
    gap: 24px;
  }

  .roster-card {
    gap: 14px;
    padding: 16px;
  }

  .roster-card__top {
    display: grid;
    gap: 10px;
    padding: 12px 14px;
  }

  .roster-card__top-meta {
    justify-content: flex-start;
  }

  .roster-card__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 0 4px;
  }

  .roster-card__summary .roster-progress {
    grid-column: 1 / -1;
  }

  .roster-entry {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "section avatar"
      "copy avatar"
      "status status"
      "actions actions";
    gap: 8px 12px;
    align-items: start;
  }

  .roster-entry__section {
    grid-area: section;
  }

  .roster-entry__avatar {
    grid-area: avatar;
    align-self: start;
  }

  .roster-entry__copy {
    grid-area: copy;
  }

  .roster-entry__status {
    grid-area: status;
  }

  .roster-entry__actions,
  .roster-action {
    grid-area: actions;
  }

  .roster-entry__actions {
    justify-content: flex-start;
  }

  .roster-action {
    width: fit-content;
  }

  .roster-entry__copy strong {
    font-size: 14px;
  }

  .roster-entry__copy span {
    font-size: 11px;
  }

  .roster-entry__copy small {
    line-height: 1.35;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-cell {
    padding: 22px 14px 20px;
  }

  .integration-cell:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .integration-cell:nth-child(2n) {
    border-right: 0;
  }

  .integration-cell:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .integration-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero__actions,
  .footer__bottom,
  .final-cta__actions {
    flex-wrap: wrap;
  }

  .hero__stage {
    min-height: 680px;
    margin-top: 6px;
  }

  .hero__stage .schedule-card {
    inset: 0 0 120px;
  }

  .schedule-card__toolbar,
  .schedule-legend {
    padding-left: 12px;
    padding-right: 12px;
  }

  .schedule-card__left {
    flex-wrap: wrap;
  }

  .schedule-card__button {
    margin-left: 0;
  }

  .schedule-session {
    padding: 4px 5px;
    font-size: 9px;
  }

  .schedule-session span,
  .schedule-now b {
    font-size: 8px;
  }

}

@media (max-width: 380px) {
  .insights-panel__stats dd {
    display: grid;
    gap: 2px;
  }

  .session-performance tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "session session"
      "fill repeat"
      "action action";
  }

  .session-performance td:last-child {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100vw - 40px));
  }

  .nav__inner {
    min-height: 60px;
  }

  .logo__image {
    height: 34px;
  }

  .nav .button {
    min-height: 44px;
    padding: 0 12px;
  }

  .nav__menu summary {
    width: 44px;
    height: 44px;
  }

  .nav__menu-panel {
    left: -2px;
    width: min(220px, calc(100vw - 32px));
  }

  .facility-card {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .facility-card__logo {
    width: 44px;
    height: 44px;
  }

  .facility-card__continue {
    width: 24px;
    min-height: 44px;
    justify-content: center;
    font-size: 0;
  }

  .facility-card__continue svg {
    width: 18px;
    height: 18px;
  }

  .demo-dialog {
    width: min(100vw - 16px, 640px);
    border-radius: 16px;
  }

  .demo-dialog__shell {
    gap: 18px;
    padding: 18px 16px;
  }

  .demo-dialog__head {
    gap: 12px;
  }

  .demo-dialog__copy h2 {
    font-size: 28px;
  }

  .demo-dialog__close {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .demo-form {
    gap: 14px;
  }

  .demo-field input,
  .demo-field select,
  .demo-field textarea {
    min-height: 46px;
    padding: 11px 12px;
  }

  .hero .display {
    max-width: 13ch;
    font-size: clamp(30px, 9.8vw, 40px);
  }

  .hero .lede {
    font-size: 15px;
  }

  .hero__stage {
    min-height: 440px;
  }

  .hero__stage .schedule-card {
    inset: 0;
  }

  .roster-card {
    gap: 12px;
    padding: 14px;
  }

  .roster-card__top {
    gap: 8px;
    padding: 10px 12px;
  }

  .roster-card__heading p {
    font-size: 10px;
  }

  .roster-card__heading strong {
    font-size: 17px;
  }

  .roster-card__heading span {
    font-size: 12px;
  }

  .roster-card__top-meta {
    gap: 6px;
  }

  .roster-card__top-meta b,
  .roster-card__top-meta em {
    min-height: 26px;
    padding: 0 9px;
    font-size: 10px;
  }

  .roster-card__summary {
    gap: 8px 12px;
    padding: 0 2px;
  }

  .roster-card__summary strong {
    font-size: 15px;
  }

  .roster-progress {
    height: 9px;
  }

  .roster-entry {
    gap: 7px 10px;
    padding: 9px 10px;
  }

  .roster-entry__avatar {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .roster-entry__section {
    font-size: 10px;
  }

  .roster-entry__copy strong {
    font-size: 13px;
  }

  .roster-entry__status,
  .roster-entry__actions {
    gap: 5px;
  }

  .pill {
    min-height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }

  .integration-cell {
    gap: 10px;
    padding: 18px 10px 16px;
  }

  .integration-cell strong {
    font-size: 12px;
    text-align: center;
  }
}

/* ---------- Rink-line identity ---------- */

.hero__copy .display::after {
  content: none;
}

.ledger__links a {
  color: var(--rink-blue);
  text-decoration-color: rgba(45, 90, 168, 0.35);
}

.ledger__links a:hover {
  color: var(--rink-blue);
  text-decoration-color: var(--rink-blue);
}

/* The one motion on the site: the hero schedule settles into place. */
@media (prefers-reduced-motion: no-preference) {
  .hero__stage .schedule-session {
    opacity: 0;
    transform: translateY(10px);
    animation: session-settle 0.45s cubic-bezier(0.22, 0.8, 0.36, 1) forwards;
  }

  .hero__stage .schedule-column .schedule-session:nth-child(1) {
    animation-delay: 0.1s;
  }
  .hero__stage .schedule-column .schedule-session:nth-child(2) {
    animation-delay: 0.22s;
  }
  .hero__stage .schedule-column .schedule-session:nth-child(3) {
    animation-delay: 0.34s;
  }
  .hero__stage .schedule-column .schedule-session:nth-child(4) {
    animation-delay: 0.46s;
  }

  .hero__stage .schedule-now {
    opacity: 0;
    animation: now-line-in 0.4s ease-out 0.7s forwards;
  }
}

@keyframes session-settle {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes now-line-in {
  to {
    opacity: 1;
  }
}

/* ---------- Features navigation ---------- */

.nav__features {
  position: relative;
}

.nav__features > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: inherit;
  cursor: pointer;
  list-style: none;
}

.nav__features > summary::-webkit-details-marker {
  display: none;
}

.nav__features > summary svg {
  width: 12px;
  height: 12px;
  transition: transform 0.15s ease;
}

.nav__features[open] > summary svg {
  transform: rotate(180deg);
}

.nav__features[open] > summary,
body:is(
    [data-page="Features"],
    [data-page="Waivers"],
    [data-page="Camps"],
    [data-page="Leagues"],
    [data-page="Coaches"],
    [data-page="Retail"],
    [data-page="Communications"],
    [data-page="Reporting"]
  )
  .nav__features
  > summary {
  color: #fff;
}

body:is(
    [data-page="Features"],
    [data-page="Waivers"],
    [data-page="Camps"],
    [data-page="Leagues"],
    [data-page="Coaches"],
    [data-page="Retail"],
    [data-page="Communications"],
    [data-page="Reporting"]
  )
  .nav__features
  > summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: #fff;
}

.nav__features-panel {
  position: absolute;
  top: calc(100% + 9px);
  left: -150px;
  z-index: 60;
  width: min(680px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  box-shadow: 0 16px 34px rgba(14, 18, 32, 0.14);
  color: var(--ink);
}

.nav__features-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
}

.nav__features-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  border-radius: 6px 6px 0 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.nav__features-arrow {
  flex: 0 0 auto;
  color: var(--rink-blue);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.nav__links .nav__features-all:hover,
.nav__links .nav__features-all[aria-current="page"] {
  background: var(--bg-soft);
  color: var(--ink);
}

.nav__links .nav__features-all[aria-current="page"]::after {
  display: none;
}

.nav__features-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 12px;
}

.nav__features-group {
  min-width: 0;
  padding: 0 14px;
}

.nav__features-group:first-child {
  padding-left: 0;
}

.nav__features-group:last-child {
  padding-right: 0;
}

.nav__features-group + .nav__features-group {
  border-left: 1px solid var(--line);
}

.nav__links .nav__features-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  border-radius: 6px 6px 0 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.nav__links .nav__features-group > a:not(.nav__features-category) {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
}

.nav__links .nav__features-category:hover,
.nav__links .nav__features-group > a:not(.nav__features-category):hover,
.nav__links
  .nav__features-group
  > a:not(.nav__features-category)[aria-current="page"] {
  background: var(--bg-soft);
  color: var(--ink);
}

.nav__links
  .nav__features-group
  > a:not(.nav__features-category)[aria-current="page"]::after {
  display: none;
}

.nav__menu-features {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav__menu-features summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: auto;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}

.nav__menu-features summary::-webkit-details-marker {
  display: none;
}

.nav__menu-features summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.65);
}

.nav__menu-features[open] summary::after {
  content: "−";
}

.nav__menu-features-list {
  display: grid;
  padding: 0 0 8px 12px;
}

.nav__menu-panel .nav__menu-features-list a {
  min-height: 44px;
  padding: 0 12px;
}

@media (min-width: 821px) and (max-width: 900px) {
  .nav__features-panel {
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

/* ---------- Mock avatars ---------- */

.avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c-navy-deep);
  border: 1px solid #d8dee8;
  object-fit: cover;
  object-position: center;
}

.avatar--soft {
  background: #e6ebf3;
  color: var(--ink-2);
}

.hero__texture {
  display: none;
}

@media (max-width: 1080px) {
  .hero__stage {
    min-height: 650px;
  }

  .hero-product {
    max-width: 360px;
  }

  .hero-roster {
    display: none;
  }

  .hero-phone {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 700px) {
  .hero__stage {
    min-height: 638px;
  }

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

  .hero-roster {
    display: none;
  }

  .hero-phone {
    position: relative;
    top: 0;
    right: auto;
    width: min(100%, 314px);
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero__stage {
    min-height: 622px;
  }

  .hero-phone {
    height: 622px;
  }
}

@media (max-width: 700px) {
  .roster-card {
    padding: 0;
  }

  .roster-card__top {
    display: grid;
    gap: 10px;
    padding: 16px;
  }

  .roster-card__top-meta {
    justify-content: flex-start;
  }

  .roster-card__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .roster-card__summary > div {
    padding: 12px;
  }

  .roster-groups {
    gap: 16px;
    padding: 14px;
  }

  .roster-list {
    gap: 8px;
  }

  .roster-row {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    grid-template-areas: "avatar copy action";
    gap: 8px;
    min-height: 0;
    padding: 9px 10px;
  }

  .roster-row__avatar {
    grid-area: avatar;
    width: 32px;
    height: 32px;
  }

  .roster-row__copy {
    grid-area: copy;
  }

  .roster-row > .roster-action {
    grid-area: action;
    align-self: center;
    justify-self: end;
    min-height: 36px;
    padding: 0 11px;
    white-space: nowrap;
  }

}

@media (max-width: 380px) {
  .nav__inner,
  .nav__actions {
    flex-wrap: nowrap;
  }

  .nav__inner {
    gap: 6px;
  }

  .logo {
    min-width: 0;
  }

  .logo__image {
    max-width: 100%;
    height: 30px;
  }

  .nav .button {
    min-height: 40px;
    padding: 0 9px;
    font-size: 11px;
    white-space: nowrap;
  }

  .roster-groups {
    padding: 10px;
  }

  .roster-row {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 6px;
    padding: 8px;
  }

  .roster-row__avatar {
    width: 28px;
    height: 28px;
  }

  .roster-row__copy strong,
  .roster-row__copy small {
    overflow: visible;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  .roster-row > .roster-action {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }
}
