/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY STATEMENT PAGE — Scoped Styles
   All selectors prefixed with .a11y-* to avoid global collisions.
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ────────────────────────────────────── */
.a11y-page {
  --a11y-blue:      #2F80ED;
  --a11y-blue-lt:   #EAF2FF;
  --a11y-blue-dk:   #1a6bd4;
  --a11y-text:      #1A202C;
  --a11y-muted:     #4A5568;
  --a11y-light:     #6B7280;
  --a11y-border:    #E2E8F0;
  --a11y-bg:        #F8FAFC;
  --a11y-white:     #ffffff;
  --a11y-warn:      #FFFBEB;
  --a11y-warn-bd:   #F59E0B;
  --a11y-warn-txt:  #92400E;
  --a11y-green:     #F0FDF4;
  --a11y-green-bd:  #22C55E;
  --a11y-green-txt: #14532D;
  --a11y-teal:      #EFF8FF;
  --a11y-teal-bd:   #0EA5E9;
  --a11y-teal-txt:  #0c4a6e;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.a11y-hero {
  background: #FAFBFC;
  border-bottom: 1px solid var(--a11y-border);
  padding: 150px 24px 60px;
  text-align: center;
}

.a11y-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.a11y-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--a11y-blue-lt);
  color: var(--a11y-blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47,128,237,.18);
  margin-bottom: 20px;
}

.a11y-hero__badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.a11y-hero__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--a11y-text);
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0 0 16px;
}

.a11y-hero__sub {
  font-size: 1.05rem;
  color: var(--a11y-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.a11y-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: .82rem;
  color: var(--a11y-light);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.a11y-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-hero__meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--a11y-blue);
  flex-shrink: 0;
}

.a11y-hero__anchors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.a11y-hero__anchor {
  display: inline-block;
  padding: 7px 16px;
  background: var(--a11y-white);
  border: 1px solid var(--a11y-border);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--a11y-muted);
  text-decoration: none;
  transition: border-color .18s, color .18s, background .18s;
}

.a11y-hero__anchor:hover,
.a11y-hero__anchor:focus-visible {
  border-color: var(--a11y-blue);
  color: var(--a11y-blue);
  background: var(--a11y-blue-lt);
  outline: none;
}

/* ─── MOBILE JUMP DROPDOWN ────────────────────────────────────── */
.a11y-mobile-nav {
  display: none;
  padding: 0 20px;
  background: var(--a11y-white);
  border-bottom: 1px solid var(--a11y-border);
}

.a11y-mobile-nav select {
  width: 100%;
  padding: 13px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--a11y-text);
  background: var(--a11y-white);
  border: 1px solid var(--a11y-border);
  border-radius: 8px;
  margin: 14px 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.a11y-mobile-nav select:focus {
  outline: none;
  border-color: var(--a11y-blue);
  box-shadow: 0 0 0 3px rgba(47,128,237,.12);
}

/* ─── LAYOUT GRID ─────────────────────────────────────────────── */
.a11y-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

/* ─── SIDEBAR ─────────────────────────────────────────────────── */
.a11y-sidebar {
  position: sticky;
  top: 80px;
  padding: 36px 0;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
}

.a11y-sidebar::-webkit-scrollbar { display: none; }

.a11y-sidebar__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--a11y-light);
  margin: 0 0 12px;
  padding: 0 4px;
}

.a11y-sidebar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.a11y-sidebar__nav li { margin: 0; }

.a11y-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--a11y-light);
  text-decoration: none;
  border-radius: 7px;
  transition: background .15s, color .15s;
  line-height: 1.3;
}

.a11y-sidebar__nav a:hover,
.a11y-sidebar__nav a:focus-visible {
  background: var(--a11y-blue-lt);
  color: var(--a11y-blue);
  outline: none;
}

.a11y-sidebar__nav a.active {
  background: var(--a11y-blue-lt);
  color: var(--a11y-blue);
  font-weight: 600;
}

.a11y-nav-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--a11y-blue);
  opacity: .65;
  min-width: 22px;
  flex-shrink: 0;
}

.a11y-sidebar__nav a.active .a11y-nav-num { opacity: 1; }

/* ─── DOCUMENT BODY ───────────────────────────────────────────── */
.a11y-doc {
  padding: 36px 0 36px 44px;
  border-left: 1px solid var(--a11y-border);
  min-width: 0;
}

/* ─── SECTION ─────────────────────────────────────────────────── */
.a11y-section {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--a11y-border);
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.a11y-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.a11y-section__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.a11y-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--a11y-blue-lt);
  color: var(--a11y-blue);
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(47,128,237,.15);
}

.a11y-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--a11y-text);
  margin: 0;
  letter-spacing: -.015em;
  line-height: 1.2;
}

/* ─── BODY TEXT ───────────────────────────────────────────────── */
.a11y-body {
  font-size: .93rem;
  line-height: 1.8;
  color: var(--a11y-muted);
  margin: 0 0 16px;
}

.a11y-body:last-child { margin-bottom: 0; }

.a11y-body strong { color: var(--a11y-text); }

.a11y-body a {
  color: var(--a11y-blue);
  font-weight: 600;
  text-decoration: none;
}

.a11y-body a:hover { text-decoration: underline; }

/* ─── SUBSECTION TITLE ────────────────────────────────────────── */
.a11y-subsection-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--a11y-text);
  margin: 26px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--a11y-blue);
  line-height: 1.3;
}

/* ─── FEATURE GRID ────────────────────────────────────────────── */
.a11y-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.a11y-feature-card {
  background: var(--a11y-bg);
  border: 1px solid var(--a11y-border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.a11y-feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--a11y-blue-lt);
  border: 1px solid rgba(47,128,237,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a11y-feature-card__icon svg {
  width: 15px;
  height: 15px;
  color: var(--a11y-blue);
}

.a11y-feature-card__text {
  min-width: 0;
}

.a11y-feature-card__title {
  font-size: .83rem;
  font-weight: 700;
  color: var(--a11y-text);
  margin: 0 0 4px;
  line-height: 1.3;
}

.a11y-feature-card__desc {
  font-size: .78rem;
  color: var(--a11y-light);
  line-height: 1.55;
  margin: 0;
}

/* ─── BULLETS ─────────────────────────────────────────────────── */
.a11y-bullets {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.a11y-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--a11y-muted);
  line-height: 1.7;
  padding: 5px 0;
}

.a11y-bullets li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a11y-blue);
  margin-top: 9px;
  flex-shrink: 0;
}

.a11y-bullets li strong { color: var(--a11y-text); }

/* ─── STEPS LIST ──────────────────────────────────────────────── */
.a11y-steps {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  counter-reset: a11y-step;
}

.a11y-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--a11y-muted);
  line-height: 1.7;
  border-bottom: 1px solid rgba(226,232,240,.5);
  counter-increment: a11y-step;
}

.a11y-steps li:last-child { border-bottom: none; }

.a11y-steps li::before {
  content: counter(a11y-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--a11y-blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.a11y-steps li strong { color: var(--a11y-text); }

/* ─── CONTACT CARD ────────────────────────────────────────────── */
.a11y-contact-card {
  background: var(--a11y-bg);
  border: 1px solid var(--a11y-border);
  border-radius: 14px;
  padding: 24px 26px;
  margin: 20px 0;
}

.a11y-contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(226,232,240,.5);
}

.a11y-contact-card__row:last-child { border-bottom: none; }

.a11y-contact-card__label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--a11y-text);
  min-width: 120px;
  padding-top: 2px;
  flex-shrink: 0;
}

.a11y-contact-card__value {
  color: var(--a11y-muted);
  line-height: 1.65;
  margin: 0;
}

.a11y-contact-card__value a {
  color: var(--a11y-blue);
  font-weight: 600;
  text-decoration: none;
}

.a11y-contact-card__value a:hover { text-decoration: underline; }

/* ─── HIGHLIGHT BOXES ─────────────────────────────────────────── */
.a11y-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 12px;
  margin: 22px 0;
  font-size: .9rem;
  line-height: 1.65;
}

.a11y-highlight__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a11y-highlight__icon svg {
  width: 17px;
  height: 17px;
}

.a11y-highlight__content { min-width: 0; }

.a11y-highlight__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.a11y-highlight__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.a11y-highlight__text {
  margin: 0;
  font-weight: 500;
}

.a11y-highlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .18s, background .18s;
  border: none;
  cursor: pointer;
}

.a11y-highlight__cta:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

/* Info variant — blue */
.a11y-highlight--info {
  background: var(--a11y-blue-lt);
  border: 1px solid rgba(47,128,237,.2);
  color: #1e4e8c;
}
.a11y-highlight--info .a11y-highlight__label { color: var(--a11y-blue); }
.a11y-highlight--info .a11y-highlight__title { color: #1e3a6e; }
.a11y-highlight--info .a11y-highlight__icon { background: rgba(47,128,237,.12); color: var(--a11y-blue); }
.a11y-highlight--info .a11y-highlight__cta  { background: var(--a11y-blue); color: #fff; }
.a11y-highlight--info .a11y-highlight__cta:hover { opacity: .88; }

/* Success variant — green */
.a11y-highlight--success {
  background: var(--a11y-green);
  border: 1px solid rgba(34,197,94,.2);
  color: var(--a11y-green-txt);
}
.a11y-highlight--success .a11y-highlight__label { color: var(--a11y-green-bd); }
.a11y-highlight--success .a11y-highlight__title { color: #166534; }
.a11y-highlight--success .a11y-highlight__icon { background: rgba(34,197,94,.12); color: var(--a11y-green-bd); }
.a11y-highlight--success .a11y-highlight__cta  { background: var(--a11y-green-bd); color: #fff; }
.a11y-highlight--success .a11y-highlight__cta:hover { opacity: .88; }

/* Warn variant — amber */
.a11y-highlight--warn {
  background: var(--a11y-warn);
  border: 1px solid rgba(245,158,11,.25);
  color: var(--a11y-warn-txt);
}
.a11y-highlight--warn .a11y-highlight__label { color: var(--a11y-warn-bd); }
.a11y-highlight--warn .a11y-highlight__title { color: #78350f; }
.a11y-highlight--warn .a11y-highlight__icon { background: rgba(245,158,11,.12); color: var(--a11y-warn-bd); }
.a11y-highlight--warn .a11y-highlight__cta  { background: var(--a11y-warn-bd); color: #fff; }
.a11y-highlight--warn .a11y-highlight__cta:hover { opacity: .88; }

/* Teal variant — sky (for reporting / feedback) */
.a11y-highlight--teal {
  background: var(--a11y-teal);
  border: 1px solid rgba(14,165,233,.2);
  color: var(--a11y-teal-txt);
}
.a11y-highlight--teal .a11y-highlight__label { color: var(--a11y-teal-bd); }
.a11y-highlight--teal .a11y-highlight__title { color: #0c4a6e; }
.a11y-highlight--teal .a11y-highlight__icon { background: rgba(14,165,233,.12); color: var(--a11y-teal-bd); }
.a11y-highlight--teal .a11y-highlight__cta  { background: var(--a11y-teal-bd); color: #fff; }
.a11y-highlight--teal .a11y-highlight__cta:hover { opacity: .88; }

/* ─── STANDARDS TABLE ─────────────────────────────────────────── */
.a11y-standards-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
  margin: 18px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--a11y-border);
}

.a11y-standards-table th {
  background: var(--a11y-bg);
  color: var(--a11y-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--a11y-border);
}

.a11y-standards-table td {
  padding: 11px 16px;
  color: var(--a11y-muted);
  border-bottom: 1px solid rgba(226,232,240,.5);
  line-height: 1.6;
  vertical-align: top;
}

.a11y-standards-table tr:last-child td { border-bottom: none; }

.a11y-standards-table td:first-child {
  font-weight: 600;
  color: var(--a11y-text);
  white-space: nowrap;
}

.a11y-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.a11y-badge-status--progress {
  background: var(--a11y-blue-lt);
  color: var(--a11y-blue);
  border: 1px solid rgba(47,128,237,.2);
}

.a11y-badge-status--partial {
  background: var(--a11y-warn);
  color: var(--a11y-warn-txt);
  border: 1px solid rgba(245,158,11,.2);
}

.a11y-badge-status--planned {
  background: var(--a11y-teal);
  color: var(--a11y-teal-txt);
  border: 1px solid rgba(14,165,233,.2);
}

/* ─── PRE-FOOTER GRADIENT ─────────────────────────────────────── */
.a11y-prefooter {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.a11y-prefooter__bg-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(70px, 16vw, 150px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.032);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.a11y-prefooter__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.a11y-prefooter__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.a11y-prefooter__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}

.a11y-prefooter__sub {
  font-size: .97rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0 0 32px;
}

.a11y-prefooter__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.a11y-prefooter__link {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  color: rgba(255,255,255,.82);
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}

.a11y-prefooter__link:hover,
.a11y-prefooter__link:focus-visible {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  outline: none;
}

.a11y-prefooter__link--primary {
  background: var(--a11y-blue);
  border-color: var(--a11y-blue);
  color: #fff;
}

.a11y-prefooter__link--primary:hover,
.a11y-prefooter__link--primary:focus-visible {
  background: var(--a11y-blue-dk);
  border-color: var(--a11y-blue-dk);
}

/* ─── RESPONSIVE: TABLET ──────────────────────────────────────── */
@media (max-width: 960px) {
  .a11y-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .a11y-sidebar { display: none; }
  .a11y-mobile-nav { display: block; }
  .a11y-doc {
    padding: 28px 0;
    border-left: none;
  }
  .a11y-features-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* ─── RESPONSIVE: MOBILE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .a11y-hero { padding: 130px 20px 48px; }
  .a11y-hero__title { font-size: 1.75rem; }
  .a11y-hero__meta { flex-direction: column; gap: 8px; }
  .a11y-hero__anchors { gap: 6px; }
  .a11y-hero__anchor { font-size: .75rem; padding: 6px 12px; }
  .a11y-section { padding-bottom: 36px; margin-bottom: 36px; scroll-margin-top: 80px; }
  .a11y-section__title { font-size: 1.1rem; }
  .a11y-features-grid { grid-template-columns: 1fr; }
  .a11y-contact-card__row { flex-direction: column; gap: 4px; }
  .a11y-contact-card__label { min-width: unset; }
  .a11y-steps li { gap: 10px; }
  .a11y-subsection-title { margin-top: 18px; }
  .a11y-prefooter { padding: 60px 20px; }
  .a11y-standards-table { font-size: .8rem; }
  .a11y-standards-table th,
  .a11y-standards-table td { padding: 9px 12px; }
}
