.pricing-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pricing-card,
.pro-access-modal__plan {
  padding: 14px 14px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel-soft);
  box-shadow: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.pricing-card--featured,
.pro-access-modal__plan--featured {
  background: color-mix(in srgb, var(--primary) 5%, var(--panel) 95%);
  border-color: color-mix(in srgb, var(--primary) 16%, var(--border) 84%);
}

[data-theme="dark"] .pricing-card--featured,
[data-theme="dark"] .pro-access-modal__plan--featured {
  background: color-mix(in srgb, var(--primary) 10%, var(--panel) 90%);
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border) 76%);
}

.pricing-card--active {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, var(--panel) 94%);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

[data-theme="dark"] .pricing-card--active {
  background: color-mix(in srgb, var(--primary) 10%, var(--panel) 90%);
}

.pricing-card__eyebrow,
.pricing-card__meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.pricing-card__eyebrow {
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card__name {
  margin: 6px 0 3px;
  font-size: 18px;
  line-height: 1.3;
}

.pricing-card__price {
  margin: 0 0 2px;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.pricing-card__price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.pricing-card__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.pricing-card__meta {
  margin-top: 10px;
  color: var(--text);
  font-weight: 600;
  min-height: 1.45em;
}

.pricing-card__button {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 236px);
  min-width: 220px;
  min-height: 46px;
  margin-left: auto;
  margin-right: auto;
  padding: 11px 22px;
  border: 1px solid color-mix(in srgb, var(--primary) 56%, var(--border) 44%);
  border-radius: 13px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      color-mix(in srgb, var(--primary) 4%, var(--panel) 96%) 100%
    );
  color: color-mix(in srgb, var(--primary-active) 78%, var(--text) 22%);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  text-align: center;
  box-shadow:
    0 6px 16px rgba(15, 118, 110, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus-visible {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      color-mix(in srgb, var(--primary) 8%, var(--panel) 92%) 100%
    );
  border-color: color-mix(in srgb, var(--primary) 70%, var(--border) 30%);
  color: color-mix(in srgb, var(--primary-active) 86%, var(--text) 14%);
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(15, 118, 110, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pricing-card__button:focus-visible {
  outline: none;
  box-shadow:
    0 10px 22px rgba(15, 118, 110, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 4px rgba(20, 184, 166, 0.15);
}

.pricing-card__button[aria-disabled="true"],
.pricing-card__button.is-disabled {
  width: min(100%, 236px);
  min-width: 220px;
  margin-left: auto;
  margin-right: auto;
  background: var(--panel-soft);
  color: var(--muted-2);
  border-color: var(--border);
  box-shadow: none;
  text-decoration: none !important;
}

[data-theme="dark"] .pricing-card__button {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, #182233 86%, var(--panel) 14%) 0%,
      color-mix(in srgb, var(--primary) 6%, #101826 94%) 100%
    );
  color: #effffc;
  border-color: color-mix(in srgb, var(--primary) 54%, var(--border) 46%);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .pricing-card__button:hover,
[data-theme="dark"] .pricing-card__button:focus-visible {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, #1a273a 82%, var(--panel) 18%) 0%,
      color-mix(in srgb, var(--primary) 11%, #101826 89%) 100%
    );
  border-color: color-mix(in srgb, var(--primary) 68%, var(--border) 32%);
  color: #f7fffe;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .pricing-card__button:focus-visible {
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 4px rgba(20, 184, 166, 0.2);
}

.pricing-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.pricing-restore-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.access-status-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.pricing-restore-hint a {
  font-weight: 700;
}

.pricing-status-actions .button-link.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.restore-access-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.restore-access-form input {
  min-width: min(100%, 280px);
  flex: 1 1 240px;
}

.restore-access-form + .restore-access-form {
  margin-top: 10px;
}

.restore-access-form .button-link--secondary {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--border) 66%);
  background: color-mix(in srgb, var(--primary) 7%, var(--panel) 93%);
  color: var(--primary-active);
  box-shadow:
    0 4px 12px rgba(15, 118, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.restore-access-form .button-link--secondary:hover {
  background: color-mix(in srgb, var(--primary) 11%, var(--panel) 89%);
  border-color: color-mix(in srgb, var(--primary) 52%, var(--border) 48%);
  color: var(--primary-active);
  transform: translateY(-1px);
  box-shadow:
    0 8px 16px rgba(15, 118, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.restore-access-form .button-link--secondary:active {
  background: color-mix(in srgb, var(--primary) 14%, var(--panel) 86%);
  border-color: color-mix(in srgb, var(--primary) 58%, var(--border) 42%);
  transform: translateY(0);
  box-shadow:
    0 3px 8px rgba(15, 118, 110, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.restore-access-form .button-link--secondary:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 60%, var(--border) 40%);
  box-shadow:
    0 0 0 4px rgba(20, 184, 166, 0.16),
    0 8px 16px rgba(15, 118, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.restore-access-form .button-link--secondary[disabled],
.restore-access-form .button-link--secondary[aria-disabled="true"] {
  transform: none;
  box-shadow: none;
}

[data-theme="dark"] .restore-access-form .button-link--secondary {
  background: color-mix(in srgb, #182233 82%, var(--primary) 18%);
  border-color: color-mix(in srgb, var(--primary) 38%, var(--border) 62%);
  color: #eafffd;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .restore-access-form .button-link--secondary:hover {
  background: color-mix(in srgb, #182233 74%, var(--primary) 26%);
  border-color: color-mix(in srgb, var(--primary) 52%, var(--border) 48%);
  color: #f4fffe;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .restore-access-form .button-link--secondary:active {
  background: color-mix(in srgb, #182233 70%, var(--primary) 30%);
}

[data-theme="dark"] .restore-access-form .button-link--secondary:focus-visible {
  box-shadow:
    0 0 0 4px rgba(20, 184, 166, 0.2),
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.restore-access-status {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.restore-access-status.is-success {
  color: var(--text);
}

.restore-access-status.is-error {
  color: var(--danger, #dc2626);
}

.localhost-test-actions {
  margin-top: 14px;
}

.localhost-test-status {
  margin: 14px 0 0 !important;
}

body.has-pro-access-modal-open {
  overflow: hidden;
}

.pro-access-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
}

.pro-access-modal__dialog {
  position: relative;
  width: min(100%, 720px);
  padding: 22px 22px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

.pro-access-modal__close {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 2px 4px;
  border: 0;
  border-radius: 6px;
  background: transparent !important;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none !important;
  transition:
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pro-access-modal__close:hover,
.pro-access-modal__close:focus-visible,
.pro-access-modal__close:active {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--primary-active);
  transform: translateY(-1px);
}

.pro-access-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

[data-theme="dark"] .pro-access-modal__close {
  color: #c7d2dd;
}

[data-theme="dark"] .pro-access-modal__close:hover,
[data-theme="dark"] .pro-access-modal__close:focus-visible,
[data-theme="dark"] .pro-access-modal__close:active {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #effffc;
}

[data-theme="dark"] .pro-access-modal__close:focus-visible {
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

.pro-access-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-access-modal__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.25;
}

.pro-access-modal__body {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}

.pro-access-modal__plans {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pro-access-modal__plan {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.pro-access-modal__plan:hover,
.pro-access-modal__plan:focus-visible {
  background: color-mix(in srgb, var(--primary) 6%, var(--panel) 94%);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
  transform: translateY(-1px);
}

[data-theme="dark"] .pro-access-modal__plan:hover,
[data-theme="dark"] .pro-access-modal__plan:focus-visible {
  background: color-mix(in srgb, var(--primary) 10%, var(--panel) 90%);
}

.pro-access-modal__plan[disabled],
.pro-access-modal__plan[aria-disabled="true"] {
  background: var(--panel-soft);
  color: var(--muted);
  border-color: var(--border);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.pro-access-modal__plan.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.pro-access-modal__plan-eyebrow {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pro-access-modal__plan-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.pro-access-modal__plan-price {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.pro-access-modal__plan-price::first-letter {
  letter-spacing: -0.02em;
}

[data-theme="dark"] .pro-access-modal__plan-price {
  color: #effffc;
}

.pro-access-modal__plan-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pro-access-modal__footer {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.pro-access-modal__footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pro-access-modal__restore-hint {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--border) 66%);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0)),
    color-mix(in srgb, var(--primary) 10%, var(--panel) 90%);
  color: color-mix(in srgb, var(--primary-active) 62%, var(--text) 38%);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
  box-shadow:
    0 10px 22px rgba(15, 118, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.pro-access-modal__restore-hint a {
  font-weight: 800;
  text-decoration-thickness: 1.8px;
}

[data-theme="dark"] .pro-access-modal__restore-hint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    color-mix(in srgb, #172130 68%, var(--primary) 32%);
  border-color: color-mix(in srgb, var(--primary) 44%, var(--border) 56%);
  color: #e9fffb;
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pro-access-modal__status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pro-access-modal__status.is-success {
  color: var(--primary-strong, var(--primary));
}

.pro-access-modal__status.is-error {
  color: var(--danger, #dc2626);
}

.page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]),
.page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]),
.page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
.page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
.page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
.page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
.pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]) {
  color: var(--primary-active);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(15, 118, 110, 0.32);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: auto;
  transition:
    color 0.18s ease,
    text-decoration-color 0.18s ease,
    box-shadow 0.18s ease;
}

.page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):visited,
.page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):visited,
.page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
.page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
.page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
.page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
.pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited {
  color: #0b5f58;
  text-decoration-color: rgba(15, 118, 110, 0.32);
}

.page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):hover,
.page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
.page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):hover,
.page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
.page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
.page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
.page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
.page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
.page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
.pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible {
  color: var(--primary-hover);
  text-decoration-color: rgba(13, 148, 136, 0.52);
}

.page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
.page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
.page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
.pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.20);
  outline: none;
}

[data-theme="dark"] .page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]),
[data-theme="dark"] .page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]),
[data-theme="dark"] .page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
[data-theme="dark"] .page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
[data-theme="dark"] .page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
[data-theme="dark"] .page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]),
[data-theme="dark"] .pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]) {
  color: #6ee7da;
  text-decoration-color: rgba(110, 231, 218, 0.34);
}

[data-theme="dark"] .page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):visited,
[data-theme="dark"] .page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):visited,
[data-theme="dark"] .page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
[data-theme="dark"] .page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
[data-theme="dark"] .page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
[data-theme="dark"] .page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited,
[data-theme="dark"] .pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):visited {
  color: #56d8cb;
  text-decoration-color: rgba(110, 231, 218, 0.34);
}

[data-theme="dark"] .page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
[data-theme="dark"] .page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):hover,
[data-theme="dark"] .pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible {
  color: #97f4ea;
  text-decoration-color: rgba(151, 244, 234, 0.58);
}

[data-theme="dark"] .page-pricing .content-shell a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-pricing .content-link-panel a:not(.button-link):not(.mode-switch-link):not(.pricing-card__button):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-access .content-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-access .content-link-panel a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-bulk .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .page-labels .task-page-shell a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible,
[data-theme="dark"] .pro-access-modal a:not(.button-link):not(.mode-switch-link):not([href^="mailto:"]):focus-visible {
  box-shadow: 0 0 0 3px rgba(110, 231, 218, 0.22);
}

@media (max-width: 720px) {
  .pro-access-modal {
    padding: 14px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pro-access-modal__dialog {
    padding: 20px 18px 18px;
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
