.org-scope-document,
.org-scope-document body {
  background: var(--bg, #f6f7fb);
}

.org-scope-blocked {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: var(--bg, #f6f7fb);
  color: var(--text, #172033);
}

.org-scope-card {
  width: min(100%, 560px);
  box-sizing: border-box;
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
  border-radius: 24px;
  background: var(--surface, #fff);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--text, #172033) 14%, transparent);
  text-align: center;
}

.org-scope-card__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.org-scope-card h1 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.15;
}

.org-scope-card p {
  max-width: 42ch;
  margin: 0 auto 28px;
  color: var(--muted, #637087);
  line-height: 1.6;
}

.org-scope-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--blue, #1977e8);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.org-scope-card__link:hover,
.org-scope-card__link:focus-visible {
  filter: brightness(.96);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .org-scope-card__link { transition: none; }
}
