@charset "UTF-8";

:root {
  --access-ink: var(--sr-color-ink);
  --access-deep: var(--sr-color-brand-deep);
  --access-deeper: var(--sr-color-brand-deeper);
  --access-teal: var(--sr-color-teal);
  --access-teal-bright: var(--sr-color-teal-bright);
  --access-mint: var(--sr-color-surface-mint);
  --access-soft: var(--sr-color-surface-soft);
  --access-white: var(--sr-color-surface);
  --access-gold: var(--sr-color-accent);
  --access-gold-deep: var(--sr-color-accent-text);
  --access-text: var(--sr-color-text);
  --access-muted: var(--sr-color-text-muted);
  --access-line: var(--sr-color-line);
  --access-shadow: var(--sr-shadow-lg);
  --access-shadow-soft: var(--sr-shadow-md);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

body.access-page {
  --sr-sticky-heading-top: 164px;
  min-width: 320px;
  padding-top: 0;
  overflow-x: clip;
  background: var(--access-white);
  color: var(--access-ink);
  font-family: var(--sr-font-sans);
}

.access-page *,
.access-page *::before,
.access-page *::after {
  box-sizing: border-box;
}

.access-page img {
  display: block;
  max-width: 100%;
}

.access-page main:focus {
  outline: 0;
}

.access-page main h1,
.access-page main h2,
.access-page main h3,
.access-page main p {
  margin-top: 0;
}

.access-page main h1,
.access-page main h2,
.access-page main h3 {
  color: var(--access-ink);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.access-page main p,
.access-page main li {
  color: var(--access-text);
}

.access-page :where(a, button, summary):focus-visible {
  outline: var(--sr-focus-outline);
  outline-offset: 3px;
}

.access-page :where(
  .navbar,
  footer,
  .access-boundary-card,
  .access-provider-copy,
  .access-rollout,
  .access-final
) :where(a, button, summary):focus-visible {
  outline: var(--sr-focus-outline-on-dark);
}

.access-page .navbar {
  margin-bottom: 0;
}

.access-skip-link {
  position: fixed;
  z-index: 1200;
  top: 10px;
  inset-inline-start: 12px;
  padding: 11px 16px;
  border-radius: 5px;
  background: var(--access-gold);
  color: var(--access-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.access-skip-link:focus {
  color: var(--access-ink);
  transform: translateY(0);
}

.access-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 26px;
  margin-bottom: 18px;
  color: var(--access-teal) !important;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.access-eyebrow::before {
  width: 3px;
  height: 26px;
  flex: 0 0 3px;
  border-radius: 2px;
  background: var(--access-gold);
  content: "";
}

.access-eyebrow-gold {
  color: var(--access-gold) !important;
}

.access-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.access-button .material-symbols-outlined {
  font-size: 21px;
}

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

.access-button-gold {
  background: var(--access-gold);
  color: var(--access-ink);
}

.access-button-gold:hover {
  background: #ffe394;
  color: var(--access-ink);
}

.access-button-outline {
  border-color: rgba(255, 255, 255, 0.66);
  background: transparent;
  color: var(--access-white);
}

.access-button-outline:hover {
  border-color: var(--access-white);
  background: var(--access-white);
  color: var(--access-ink);
}

.access-button-dark {
  background: var(--access-deep);
  color: var(--access-white);
}

.access-button-dark:hover {
  background: var(--access-deeper);
  color: var(--access-white);
}

.access-hero .access-button-primary {
  border-color: var(--access-teal);
  background: var(--access-teal);
  color: var(--access-white);
}

.access-hero .access-button-primary:hover {
  border-color: var(--access-deep);
  background: var(--access-deep);
  color: var(--access-white);
}

.access-hero .access-button-secondary {
  border-color: #71958f;
  background: var(--access-white);
  color: var(--access-deep);
}

.access-hero .access-button-secondary:hover {
  border-color: var(--access-teal);
  background: var(--access-soft);
  color: var(--access-teal);
}

.access-hero {
  position: relative;
  min-height: 700px;
  padding: 140px 0 36px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--access-line);
  background: var(--access-white);
}

.access-hero::before {
  display: none;
}

.access-hero-shell {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 524px;
}

.access-hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 48%);
  max-width: 610px;
  padding: 36px 0 42px;
}

.access-hero h1 {
  max-width: 610px;
  margin: 0;
  color: var(--access-deeper);
  font-size: 3.35rem;
  font-weight: 760;
  line-height: 1.04;
}

.access-hero-lead {
  max-width: 585px;
  margin: 24px 0 0;
  color: #3f615c !important;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

.access-hero-support {
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--access-teal) !important;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.58;
}

.access-page .access-hero-lead {
  margin: 24px 0 0;
  color: #3f615c !important;
}

.access-hero-actions,
.access-final-actions,
.access-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.access-hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.access-hero-note {
  display: flex;
  max-width: 585px;
  align-items: flex-start;
  gap: 9px;
  margin: var(--sr-space-6) 0 0;
  color: #4d6d68 !important;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.access-page .access-hero-note {
  margin: var(--sr-space-6) 0 0;
  color: #4d6d68 !important;
}

.access-hero-note .material-symbols-outlined {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--access-teal);
  font-size: 20px;
}

.access-hero-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  inset-inline-end: -64px;
  width: min(820px, 62vw);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-46%);
  pointer-events: none;
  backdrop-filter: none;
}

.access-hero-visual::before {
  display: none;
}

.access-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 94% 94% at 50% 47%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 94% at 50% 47%, #000 72%, transparent 100%);
}

.access-hero-visual figcaption {
  margin: 0;
}

.access-hero-flow {
  position: absolute;
  inset-inline: 10% 5%;
  bottom: 6%;
  display: grid;
  grid-template-columns: max-content 32px max-content 32px max-content;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px 12px;
  border: 1px solid rgba(0, 88, 79, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(0, 47, 43, 0.14);
  color: var(--access-text);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.access-hero-flow i {
  color: var(--access-gold-deep);
  font-size: 18px;
  font-style: normal;
}

.access-hero-flow strong {
  color: var(--access-teal);
  font-size: 0.78rem;
}

.access-hero-flow small {
  grid-column: 1 / -1;
  color: var(--access-muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
}

.access-proof {
  border-bottom: 1px solid var(--access-line);
  background: var(--access-white);
}

.access-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.access-proof-item {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 17px;
  padding: 25px 28px;
  border-inline-end: 1px solid var(--access-line);
}

.access-proof-item:last-child {
  border-inline-end: 0;
}

.access-proof-item > .material-symbols-outlined {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: var(--access-mint);
  color: var(--access-teal);
  font-size: 25px;
}

.access-proof-item div {
  display: grid;
  gap: 4px;
}

.access-proof-item strong {
  color: var(--access-ink);
  font-size: 1.02rem;
}

.access-proof-item span {
  color: var(--access-text);
  font-size: 0.84rem;
  line-height: 1.45;
}

.access-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.access-heading-wide {
  max-width: 900px;
}

.access-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.access-heading-centred .access-eyebrow {
  justify-content: center;
}

.access-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
}

.access-heading > p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.access-intro,
.access-outcomes,
.access-compatibility,
.access-evaluation,
.access-failure,
.access-pricing,
.access-faq {
  padding: 112px 0;
}

.access-outcomes {
  border-bottom: 1px solid var(--access-line);
  background:
    radial-gradient(circle at 14% 18%, rgba(150, 228, 215, 0.18), transparent 24rem),
    var(--access-soft);
}

.access-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block-start: 1px solid var(--access-line);
  border-inline-start: 1px solid var(--access-line);
  background: var(--access-white);
  box-shadow: var(--access-shadow-soft);
}

.access-outcome-grid article {
  min-height: 318px;
  padding: 34px 28px;
  border-inline-end: 1px solid var(--access-line);
  border-block-end: 1px solid var(--access-line);
}

.access-outcome-grid article > .material-symbols-outlined {
  display: grid;
  width: 50px;
  height: 50px;
  margin-block-end: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--access-mint);
  color: var(--access-teal);
  font-size: 26px;
}

.access-outcome-grid h3 {
  min-height: 82px;
  margin-block-end: 14px;
  font-size: 1.17rem;
  line-height: 1.35;
}

.access-outcome-grid article > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.access-outcome-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-block-start: 24px;
  padding: 20px 24px;
  border-inline-start: 4px solid var(--access-gold);
  background: var(--access-white);
}

.access-outcome-note .material-symbols-outlined {
  color: var(--access-teal);
}

.access-outcome-note p {
  margin: 0;
  line-height: 1.62;
}

.access-intro {
  background: var(--access-white);
}

.access-boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: start;
  gap: 48px;
}

.access-boundary-flow {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-boundary-flow::before {
  position: absolute;
  top: 44px;
  bottom: 44px;
  inset-inline-start: 29px;
  width: 1px;
  background: var(--access-line);
  content: "";
}

.access-boundary-flow li {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 20px 0;
  padding-inline-start: 0;
  border-bottom: 1px solid var(--access-line);
}

.access-boundary-flow li:first-child {
  border-top: 1px solid var(--access-line);
}

.access-boundary-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--access-line);
  background: var(--access-white);
  color: var(--access-teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.access-boundary-flow strong {
  display: block;
  margin-bottom: 6px;
  color: var(--access-ink);
  font-size: 1.06rem;
}

.access-boundary-flow p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.access-boundary-flow li > .material-symbols-outlined {
  color: var(--access-teal);
  font-size: 28px;
}

.access-boundary-card {
  position: sticky;
  top: 162px;
  padding: 38px;
  border-top: 4px solid var(--access-gold);
  background: var(--access-deep);
  box-shadow: var(--access-shadow);
}

.access-boundary-card > .material-symbols-outlined {
  margin-bottom: 26px;
  color: var(--access-gold);
  font-size: 42px;
}

.access-card-label {
  margin-bottom: 12px;
  color: var(--access-teal) !important;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.access-boundary-card .access-card-label {
  color: var(--access-gold) !important;
}

.access-boundary-card h3 {
  margin-bottom: 18px;
  color: var(--access-white);
  font-size: 1.7rem;
  line-height: 1.2;
}

.access-boundary-card p:not(.access-card-label) {
  margin-bottom: 24px;
  color: #d7ebe7;
  line-height: 1.72;
}

.access-boundary-card a,
.access-provider-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--access-gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.access-boundary-card a:hover,
.access-provider-copy a:hover {
  color: var(--access-white);
}

.access-boundary-card a .material-symbols-outlined,
.access-provider-copy a .material-symbols-outlined {
  font-size: 19px;
}

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

.access-compatibility-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 50px;
  border-top: 1px solid var(--access-line);
  border-inline-start: 1px solid var(--access-line);
}

.access-compatibility-card {
  position: relative;
  min-height: 280px;
  padding: 30px 24px;
  border-inline-end: 1px solid var(--access-line);
  border-bottom: 1px solid var(--access-line);
  background: var(--access-white);
}

.access-compatibility-card > span {
  position: absolute;
  top: 20px;
  inset-inline-end: 19px;
  color: #a3b8b4;
  font-size: 0.72rem;
  font-weight: 900;
}

.access-compatibility-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  background: var(--access-mint);
  color: var(--access-teal);
  font-size: 25px;
  font-style: normal;
}

.access-compatibility-card h3 {
  min-height: 46px;
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.35;
}

.access-compatibility-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.62;
}

.access-provider-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border: 1px solid var(--access-line);
  background: var(--access-white);
  box-shadow: var(--access-shadow-soft);
}

.access-provider-copy {
  padding: 46px 50px;
  background: var(--access-deep);
}

.access-provider-copy .access-card-label {
  color: var(--access-gold) !important;
}

.access-provider-copy h3 {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--access-white);
  font-size: 2rem;
  line-height: 1.2;
}

.access-provider-copy p:not(.access-card-label) {
  max-width: 720px;
  margin-bottom: 23px;
  color: #d5e9e5;
  line-height: 1.7;
}

.access-provider-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block: 0 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e4f1ef !important;
  font-size: 0.77rem;
  font-weight: 800;
}

.access-provider-reviewed .material-symbols-outlined {
  color: var(--access-gold);
  font-size: 18px;
}

.access-provider-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.access-provider-logo-card {
  display: flex;
  min-width: 0;
  min-height: 236px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 28px 20px;
  border-inline-end: 1px solid var(--access-line);
  background: var(--access-white);
}

.access-provider-logo-card:last-child {
  border-inline-end: 0;
}

.access-provider-logo-frame {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 144px;
  isolation: isolate;
  place-items: center;
  padding: 24px;
  background: var(--access-soft);
}

.access-provider-logo-frame::before {
  position: absolute;
  z-index: -1;
  width: min(calc(100% - 32px), 220px);
  height: 100px;
  border: 1px solid rgba(0, 88, 79, 0.14);
  border-radius: 10px;
  background: var(--access-white);
  box-shadow: 0 8px 22px rgba(0, 47, 43, 0.08);
  content: "";
}

.access-provider-logo-frame-dark {
  background: var(--access-soft);
}

.access-provider-logo-frame-dark::before,
.access-provider-logo-frame-native-sedisto::before {
  border-color: rgba(255, 255, 255, 0.12);
  background: #003f3a;
}

.access-provider-logo-frame-native-sedisto::before {
  background: #10403b;
}

.access-provider-logo-frame img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.access-provider-logo-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(180px, 100%);
  min-height: 72px;
  place-items: center;
  padding: 10px 13px;
  border: 0;
  background: transparent;
  color: var(--access-ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.access-provider-logo-card > div:last-child {
  display: grid;
  gap: 6px;
  text-align: center;
}

.access-provider-logo-card strong {
  color: var(--access-ink);
  font-size: 0.95rem;
}

.access-provider-logo-card > div:last-child span {
  color: var(--access-muted);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.4;
}

.access-provider-logo-card > div:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-block-start: 4px;
  color: var(--access-teal);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.access-provider-logo-card > div:last-child a:hover {
  color: var(--access-ink);
}

.access-provider-logo-card > div:last-child a .material-symbols-outlined {
  font-size: 15px;
}

.access-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
  padding: 23px 26px;
  border-inline-start: 4px solid var(--access-gold);
  background: var(--access-mint);
}

.access-answer .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--access-teal);
  font-size: 27px;
}

.access-answer p {
  margin: 0;
  line-height: 1.65;
}

.access-answer strong {
  color: var(--access-ink);
}

.access-evaluation {
  background: var(--access-white);
}

.access-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--access-line);
  border-inline-start: 1px solid var(--access-line);
}

.access-question-grid article {
  min-height: 330px;
  padding: 34px 32px;
  border-inline-end: 1px solid var(--access-line);
  border-bottom: 1px solid var(--access-line);
}

.access-question-grid article > .material-symbols-outlined {
  margin-bottom: 28px;
  color: var(--access-teal);
  font-size: 34px;
}

.access-question-grid h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

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

.access-question-grid li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 0.89rem;
  line-height: 1.58;
}

.access-question-grid li::before {
  position: absolute;
  top: 0.55em;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  background: var(--access-gold);
  content: "";
}

.access-rollout {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: var(--access-deep);
}

.access-rollout::after {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 34%;
  height: 100%;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.access-rollout .container {
  position: relative;
  z-index: 1;
}

.access-rollout .access-heading h2 {
  color: var(--access-white);
}

.access-rollout .access-heading > p:last-child {
  color: #d4e9e5;
}

.access-rollout-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.access-rollout-list li {
  min-height: 285px;
  padding: 29px 24px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.access-rollout-list li > span {
  display: inline-grid;
  width: 43px;
  height: 43px;
  margin-bottom: 54px;
  place-items: center;
  background: var(--access-gold);
  color: var(--access-ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.access-rollout-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--access-white);
  font-size: 1.04rem;
}

.access-rollout-list p {
  margin: 0;
  color: #c7e0dc;
  font-size: 0.85rem;
  line-height: 1.65;
}

.access-rollout-callout {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 26px;
  padding: 23px 26px;
  border: 1px solid rgba(255, 215, 106, 0.43);
  background: rgba(255, 215, 106, 0.08);
}

.access-rollout-callout > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--access-gold);
  font-size: 32px;
}

.access-rollout-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--access-gold);
}

.access-rollout-callout p {
  margin: 0;
  color: #e4f1ef;
  line-height: 1.6;
}

.access-failure {
  background: var(--access-white);
}

.access-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--access-line);
  box-shadow: var(--access-shadow-soft);
  scrollbar-color: var(--access-teal) var(--access-mint);
}

.access-table-wrap:focus-visible {
  outline: var(--sr-focus-outline);
  outline-offset: 4px;
}

.access-ownership-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.access-ownership-table caption {
  padding: 16px 20px;
  border-bottom: 1px solid var(--access-line);
  background: var(--access-mint);
  color: var(--access-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: start;
}

.access-ownership-table thead {
  background: var(--access-deep);
}

.access-ownership-table th,
.access-ownership-table td {
  padding: 21px 23px;
  border-inline-end: 1px solid var(--access-line);
  border-bottom: 1px solid var(--access-line);
  text-align: start;
  vertical-align: top;
}

.access-ownership-table th:last-child,
.access-ownership-table td:last-child {
  border-inline-end: 0;
}

.access-ownership-table tbody tr:last-child th,
.access-ownership-table tbody tr:last-child td {
  border-bottom: 0;
}

.access-ownership-table thead th {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--access-white);
  font-size: 0.84rem;
}

.access-ownership-table tbody th {
  width: 34%;
  color: var(--access-ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.access-ownership-table tbody td {
  color: var(--access-text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.access-ownership-table tbody td:last-child {
  width: 23%;
  color: var(--access-teal);
  font-weight: 800;
}

.access-ownership-table tbody tr:nth-child(even) {
  background: var(--access-soft);
}

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

.access-price-grid {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.access-price-card {
  padding: 42px;
  border: 1px solid var(--access-line);
  background: var(--access-white);
  box-shadow: var(--access-shadow-soft);
}

.access-price-card-primary {
  border-top: 5px solid var(--access-gold);
}

.access-price-card:not(.access-price-card-primary) {
  border-top: 5px solid var(--access-teal);
}

.access-price-card h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.access-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--access-ink);
}

.access-price > span {
  color: var(--access-teal);
  font-size: 0.85rem;
  font-weight: 900;
}

.access-price > strong {
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.95;
}

.access-price > small {
  color: var(--access-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.access-price-scope {
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--access-line);
  font-size: 0.9rem;
  font-weight: 800;
}

.access-price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-price-card li {
  position: relative;
  padding-inline-start: 27px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.access-price-card li::before {
  position: absolute;
  top: -1px;
  inset-inline-start: 0;
  color: var(--access-teal);
  font-family: "Material Symbols Outlined";
  font-size: 19px;
  content: "check_circle";
}

.access-pricing-actions {
  justify-content: center;
  margin-top: 32px;
}

.access-commercial-note {
  display: flex;
  max-width: 1000px;
  align-items: flex-start;
  gap: 16px;
  margin: 22px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--access-line);
  border-inline-start: 4px solid var(--access-gold);
  background: var(--access-mint);
}

.access-commercial-note > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--access-teal);
  font-size: 26px;
}

.access-commercial-note h3 {
  margin-block-end: 7px;
  font-size: 1rem;
}

.access-commercial-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.62;
}

.access-text-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  color: var(--access-teal);
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.access-text-link:hover {
  color: var(--access-ink);
}

.access-text-link .material-symbols-outlined {
  font-size: 19px;
}

.access-faq {
  background: var(--access-white);
}

.access-faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 72px;
}

.access-faq-intro {
  margin: 0;
  text-align: start;
}

.access-faq-intro .access-eyebrow {
  justify-content: start;
}

@media (min-width: 1200px) {
  .access-faq-intro {
    position: sticky;
    top: var(--sr-sticky-heading-top);
    align-self: start;
  }
}

.access-faq-list {
  border-top: 1px solid var(--access-line);
}

.access-faq-list details {
  border-bottom: 1px solid var(--access-line);
}

.access-faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6px;
  color: var(--access-ink);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
}

.access-faq-list summary::-webkit-details-marker {
  display: none;
}

.access-faq-list summary .material-symbols-outlined {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border: 1px solid var(--access-line);
  border-radius: 50%;
  background: var(--access-mint);
  color: var(--access-teal);
  font-size: 21px;
  transition: transform 180ms ease;
}

.access-faq-list details[open] summary .material-symbols-outlined {
  transform: rotate(45deg);
}

.access-faq-list details > p {
  max-width: 840px;
  margin: 0;
  padding-block: 0 25px;
  padding-inline: 6px 56px;
  font-size: 0.94rem;
  line-height: 1.72;
}

.access-final {
  position: relative;
  overflow: hidden;
  background: var(--access-deeper);
}

.access-final::after {
  position: absolute;
  inset-inline-end: -8%;
  bottom: -110px;
  width: 440px;
  height: 240px;
  border: 1px solid rgba(255, 215, 106, 0.28);
  transform: rotate(-8deg);
  content: "";
}

.access-final-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: 58px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.access-final h2 {
  max-width: 760px;
  margin-bottom: 17px;
  color: var(--access-white);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
}

.access-final p:not(.access-eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #d2e7e3;
  line-height: 1.7;
}

.access-final-actions {
  justify-content: flex-end;
}

.access-page footer a[aria-current="page"] {
  color: #ffe082;
  font-weight: 700;
}

/* Dark surfaces must outrank the shared main-heading/body defaults above. */
.access-page .access-boundary-card h3,
.access-page .access-provider-copy h3,
.access-page .access-rollout .access-heading h2,
.access-page .access-final h2 {
  color: var(--access-white);
}

.access-page .access-boundary-card p:not(.access-card-label) {
  color: #d7ebe7;
}

.access-page .access-provider-copy p:not(.access-card-label) {
  color: #d5e9e5;
}

.access-page .access-rollout .access-heading > p:last-child {
  color: #d4e9e5;
}

.access-page .access-rollout-list p {
  color: #c7e0dc;
}

.access-page .access-rollout-callout p {
  color: #e4f1ef;
}

.access-page .access-final p:not(.access-eyebrow) {
  color: #d2e7e3;
}

@media (max-width: 1399px) {
  .access-compatibility-card {
    min-height: 300px;
    padding-inline: 19px;
  }
}

@media (max-width: 1199px) {
  .access-proof-item {
    padding-inline: 20px;
  }

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

  .access-outcome-grid h3 {
    min-height: 0;
  }

  .access-compatibility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-compatibility-card {
    min-height: 255px;
  }

  .access-provider-panel {
    grid-template-columns: 1fr;
  }

  .access-provider-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 250px;
  }

  .access-provider-logo-card {
    border-top: 1px solid var(--access-line);
  }

  .access-provider-logo-card:nth-child(3) {
    border-inline-end: 0;
  }

  .access-rollout-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-rollout-list li {
    min-height: 250px;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 92px;
  }

  .access-page .navbar-collapse {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding-bottom: 16px;
  }

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

  .access-proof-item {
    min-height: 102px;
    border-inline-end: 1px solid var(--access-line);
    border-block-end: 1px solid var(--access-line);
  }

  .access-proof-item:nth-child(even) {
    border-inline-end: 0;
  }

  .access-proof-item:nth-last-child(-n + 2) {
    border-block-end: 0;
  }

  .access-intro,
  .access-outcomes,
  .access-compatibility,
  .access-evaluation,
  .access-failure,
  .access-pricing,
  .access-faq,
  .access-rollout {
    padding: 88px 0;
  }

  .access-boundary-layout {
    grid-template-columns: 1fr;
  }

  .access-faq-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .access-faq-intro {
    position: static;
    top: auto;
    max-width: 48rem;
  }

  .access-boundary-card {
    position: relative;
    top: auto;
  }

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

  .access-question-grid article {
    min-height: 300px;
  }

  .access-price-grid {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

  .access-final-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .access-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .access-final-actions .access-button {
    width: 100%;
  }

  .access-proof-grid,
  .access-outcome-grid {
    grid-template-columns: 1fr;
  }

  .access-proof-item,
  .access-proof-item:nth-child(even) {
    border-inline-end: 0;
    border-block-end: 1px solid var(--access-line);
  }

  .access-proof-item:nth-last-child(2) {
    border-block-end: 1px solid var(--access-line);
  }

  .access-proof-item:last-child {
    border-block-end: 0;
  }

  .access-heading {
    margin-bottom: 38px;
  }

  .access-heading h2 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .access-heading > p:last-child {
    font-size: 0.98rem;
  }

  .access-boundary-flow li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding-inline-end: 0;
  }

  .access-boundary-flow::before {
    inset-inline-start: 24px;
  }

  .access-boundary-number {
    width: 50px;
    height: 50px;
  }

  .access-boundary-flow li > .material-symbols-outlined {
    display: none;
  }

  .access-boundary-card,
  .access-provider-copy,
  .access-price-card {
    padding: 32px 28px;
  }

  .access-compatibility-grid,
  .access-question-grid,
  .access-rollout-list {
    grid-template-columns: 1fr;
  }

  .access-compatibility-card,
  .access-question-grid article,
  .access-rollout-list li {
    min-height: auto;
  }

  .access-compatibility-card > i {
    margin-bottom: 27px;
  }

  .access-compatibility-card h3 {
    min-height: 0;
  }

  .access-provider-logos {
    grid-template-columns: 1fr;
  }

  .access-provider-logo-card,
  .access-provider-logo-card:nth-child(3) {
    min-height: 230px;
    border-inline-end: 0;
    border-block-end: 1px solid var(--access-line);
  }

  .access-provider-logo-card:last-child {
    border-block-end: 0;
  }

  .access-answer,
  .access-rollout-callout {
    align-items: flex-start;
  }

  .access-question-grid article {
    padding: 30px 27px;
  }

  .access-rollout-list li > span {
    margin-bottom: 32px;
  }

  .access-pricing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .access-pricing-actions .access-text-link {
    justify-content: center;
  }

  .access-faq-list summary {
    min-height: 76px;
    font-size: 0.96rem;
  }

  .access-faq-list details > p {
    padding-inline-end: 6px;
  }

  .access-final-shell {
    min-height: 430px;
  }
}

@media (max-width: 575.98px) {
  .access-hero-note {
    margin-top: var(--sr-space-5);
  }
}

@media (max-width: 479px) {
  .access-eyebrow {
    font-size: 0.73rem;
  }

  .access-proof-item {
    align-items: flex-start;
    padding: 23px 15px;
  }

  .access-boundary-card,
  .access-provider-copy,
  .access-price-card {
    padding: 28px 22px;
  }

  .access-provider-copy h3 {
    font-size: 1.65rem;
  }

  .access-answer,
  .access-rollout-callout {
    padding: 20px;
  }

  .access-price {
    flex-wrap: wrap;
  }

  .access-price > strong {
    font-size: 3.6rem;
  }

  .access-final h2 {
    font-size: 2.35rem;
  }
}

/* Canonical responsive secondary-hero system. */
@media (max-width: 1399px) {
  .access-hero h1 {
    font-size: 3.2rem;
  }

  .access-hero-visual {
    inset-inline-end: -48px;
    width: min(760px, 60vw);
  }
}

@media (max-width: 1199px) {
  .access-hero {
    min-height: 680px;
    padding-top: 132px;
  }

  .access-hero-shell {
    display: block;
    min-height: 512px;
  }

  .access-hero-copy {
    width: min(530px, 48%);
    max-width: 530px;
    padding: 32px 0 40px;
  }

  .access-hero h1 {
    max-width: 530px;
    font-size: 3rem;
  }

  .access-hero-lead,
  .access-hero-support,
  .access-hero-note {
    max-width: 520px;
  }

  .access-hero-lead {
    font-size: 1rem;
  }

  .access-hero-actions .access-button {
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .access-hero-visual {
    inset-inline-end: -42px;
    width: min(650px, 56vw);
  }
}

@media (max-width: 991px) {
  body.access-page {
    padding-top: 0;
  }

  .access-hero {
    min-height: 0;
    padding: 112px 0 0;
  }

  .access-hero-shell {
    display: block;
    min-height: 0;
    padding: 0 calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  }

  .access-hero-copy {
    width: 100%;
    max-width: 730px;
    margin-inline: auto;
    padding: 0;
    text-align: center;
  }

  .access-hero-copy > * {
    max-width: 730px;
    margin-inline: auto;
  }

  .access-hero h1 {
    max-width: 730px;
    font-size: 3.1rem;
  }

  .access-hero-lead {
    max-width: 700px;
  }

  .access-hero-actions,
  .access-hero-note {
    justify-content: center;
  }

  .access-hero-actions .access-button {
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .access-hero-visual {
    position: relative;
    top: auto;
    inset-inline: auto;
    width: 100%;
    max-width: 760px;
    margin: 28px auto -1px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .access-hero-visual img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .access-hero-flow {
    inset-inline: 6%;
    bottom: 4%;
  }
}

@media (max-width: 767px) {
  .access-hero-copy {
    text-align: start;
  }

  .access-hero-copy > * {
    margin-inline: 0;
  }

  .access-hero h1 {
    font-size: 2.65rem;
    line-height: 1.08;
  }

  .access-hero-lead {
    font-size: 1rem;
  }

  .access-hero-actions {
    align-items: stretch;
    flex-direction: column;
    justify-content: start;
  }

  .access-hero-actions,
  .access-hero-actions .access-button {
    width: 100%;
  }

  .access-hero-note {
    justify-content: start;
  }

  .access-hero-visual {
    width: 100%;
    max-width: none;
    margin: 22px auto -1px;
  }

  .access-hero-flow {
    inset-inline: 4%;
  }
}

@media (max-width: 575.98px) {
  .access-hero {
    padding-top: 98px;
  }

  .access-hero h1 {
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .access-hero-lead {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .access-hero-support {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .access-hero-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .access-hero-actions .access-button {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  .access-hero-note {
    margin-top: var(--sr-space-5);
    font-size: 0.8rem;
  }

  .access-page .access-hero-lead {
    margin-top: 18px;
  }

  .access-page .access-hero-note {
    margin-top: var(--sr-space-5);
  }

  .access-hero-visual {
    margin-top: 10px;
  }

  .access-hero-flow {
    grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
    gap: 2px;
    padding: 8px 6px 7px;
    font-size: 0.56rem;
  }

  .access-hero-flow strong {
    font-size: 0.6rem;
  }

  .access-hero-flow i {
    font-size: 14px;
  }

  .access-hero-flow small {
    font-size: 0.54rem;
  }
}

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

  .access-page *,
  .access-page *::before,
  .access-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body.access-page {
    padding-top: 0;
  }

  .access-page .navbar,
  .access-section-nav,
  .access-hero-actions,
  .access-final,
  .access-page footer {
    display: none !important;
  }

  .access-hero,
  .access-rollout,
  .access-boundary-card,
  .access-provider-copy {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .access-hero h1,
  .access-rollout h2,
  .access-boundary-card h3,
  .access-provider-copy h3,
  .access-rollout strong {
    color: #000000 !important;
  }

  .access-hero p,
  .access-rollout p,
  .access-boundary-card p,
  .access-provider-copy p {
    color: #333333 !important;
  }
}
